tokio_quiche/http3/driver/
mod.rs

1// Copyright (C) 2025, Cloudflare, Inc.
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met:
7//
8//     * Redistributions of source code must retain the above copyright notice,
9//       this list of conditions and the following disclaimer.
10//
11//     * Redistributions in binary form must reproduce the above copyright
12//       notice, this list of conditions and the following disclaimer in the
13//       documentation and/or other materials provided with the distribution.
14//
15// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
16// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
17// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
19// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
22// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
23// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
24// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
27mod client;
28/// Wrapper for running HTTP/3 connections.
29pub mod connection;
30mod datagram;
31// `DriverHooks` must stay private to prevent users from creating their own
32// H3Drivers.
33mod hooks;
34mod server;
35mod streams;
36
37use std::collections::BTreeMap;
38use std::error::Error;
39use std::fmt;
40use std::marker::PhantomData;
41use std::sync::Arc;
42
43use datagram_socket::StreamClosureKind;
44use foundations::telemetry::log;
45use futures::FutureExt;
46use futures_util::stream::FuturesUnordered;
47use quiche::h3;
48use tokio::select;
49use tokio::sync::mpsc;
50use tokio::sync::mpsc::error::TryRecvError;
51use tokio::sync::mpsc::error::TrySendError;
52use tokio::sync::mpsc::UnboundedReceiver;
53use tokio::sync::mpsc::UnboundedSender;
54use tokio_stream::StreamExt;
55use tokio_util::sync::PollSender;
56
57use self::hooks::DriverHooks;
58use self::hooks::InboundHeaders;
59use self::streams::FlowCtx;
60use self::streams::HaveUpstreamCapacity;
61use self::streams::ReceivedDownstreamData;
62use self::streams::StreamCtx;
63use self::streams::StreamReady;
64use self::streams::WaitForDownstreamData;
65use self::streams::WaitForStream;
66use self::streams::WaitForUpstreamCapacity;
67use crate::buf_factory::BufFactory;
68use crate::buf_factory::PooledBuf;
69use crate::buf_factory::PooledDgram;
70use crate::http3::settings::Http3Settings;
71use crate::http3::H3AuditStats;
72use crate::metrics::Metrics;
73use crate::quic::HandshakeInfo;
74use crate::quic::QuicCommand;
75use crate::quic::QuicheConnection;
76use crate::ApplicationOverQuic;
77use crate::QuicResult;
78
79pub use self::client::ClientEventStream;
80pub use self::client::ClientH3Command;
81pub use self::client::ClientH3Controller;
82pub use self::client::ClientH3Driver;
83pub use self::client::ClientH3Event;
84pub use self::client::ClientRequestSender;
85pub use self::client::NewClientRequest;
86pub use self::server::ServerEventStream;
87pub use self::server::ServerH3Command;
88pub use self::server::ServerH3Controller;
89pub use self::server::ServerH3Driver;
90pub use self::server::ServerH3Event;
91
92// The priority of all HTTP/3 responses is currently fixed at this value.
93// TODO: make this configurable as part of `OutboundFrame::Headers`
94const DEFAULT_PRIO: h3::Priority = h3::Priority::new(3, true);
95
96// For a stream use a channel with 16 entries, which works out to 16 * 64KB =
97// 1MB of max buffered data.
98#[cfg(not(any(test, debug_assertions)))]
99const STREAM_CAPACITY: usize = 16;
100#[cfg(any(test, debug_assertions))]
101const STREAM_CAPACITY: usize = 1; // Set to 1 to stress write_pending under test conditions
102
103// For *all* flows use a shared channel with 2048 entries, which works out
104// to 3MB of max buffered data at 1500 bytes per datagram.
105const FLOW_CAPACITY: usize = 2048;
106
107/// Used by a local task to send [`OutboundFrame`]s to a peer on the
108/// stream or flow associated with this channel.
109pub type OutboundFrameSender = PollSender<OutboundFrame>;
110
111/// Used internally to receive [`OutboundFrame`]s which should be sent to a peer
112/// on the stream or flow associated with this channel.
113type OutboundFrameStream = mpsc::Receiver<OutboundFrame>;
114
115/// Used internally to send [`InboundFrame`]s (data) from the peer to a local
116/// task on the stream or flow associated with this channel.
117type InboundFrameSender = PollSender<InboundFrame>;
118
119/// Used by a local task to receive [`InboundFrame`]s (data) on the stream or
120/// flow associated with this channel.
121pub type InboundFrameStream = mpsc::Receiver<InboundFrame>;
122
123/// The error type used internally in [H3Driver].
124///
125/// Note that [`ApplicationOverQuic`] errors are not exposed to users at this
126/// time. The type is public to document the failure modes in [H3Driver].
127#[derive(Debug, PartialEq, Eq)]
128#[non_exhaustive]
129pub enum H3ConnectionError {
130    /// The controller task was shut down and is no longer listening.
131    ControllerWentAway,
132    /// Other error at the connection, but not stream level.
133    H3(h3::Error),
134    /// Received a GOAWAY frame from the peer.
135    GoAway,
136    /// Received data for a stream that was closed or never opened.
137    NonexistentStream,
138    /// The server's post-accept timeout was hit.
139    /// The timeout can be configured in [`Http3Settings`].
140    PostAcceptTimeout,
141}
142
143impl From<h3::Error> for H3ConnectionError {
144    fn from(err: h3::Error) -> Self {
145        H3ConnectionError::H3(err)
146    }
147}
148
149impl From<quiche::Error> for H3ConnectionError {
150    fn from(err: quiche::Error) -> Self {
151        H3ConnectionError::H3(h3::Error::TransportError(err))
152    }
153}
154
155impl Error for H3ConnectionError {}
156
157impl fmt::Display for H3ConnectionError {
158    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
159        let s: &dyn fmt::Display = match self {
160            Self::ControllerWentAway => &"controller went away",
161            Self::H3(e) => e,
162            Self::GoAway => &"goaway",
163            Self::NonexistentStream => &"nonexistent stream",
164            Self::PostAcceptTimeout => &"post accept timeout hit",
165        };
166
167        write!(f, "H3ConnectionError: {s}")
168    }
169}
170
171type H3ConnectionResult<T> = Result<T, H3ConnectionError>;
172
173/// HTTP/3 headers that were received on a stream.
174///
175/// `recv` is used to read the message body, while `send` is used to transmit
176/// data back to the peer.
177#[derive(Debug)]
178pub struct IncomingH3Headers {
179    /// Stream ID of the frame.
180    pub stream_id: u64,
181    /// The actual [`h3::Header`]s which were received.
182    pub headers: Vec<h3::Header>,
183    /// An [`OutboundFrameSender`] for streaming body data to the peer. For
184    /// [ClientH3Driver], note that the request body can also be passed a
185    /// cloned sender via [`NewClientRequest`].
186    pub send: OutboundFrameSender,
187    /// An [`InboundFrameStream`] of body data received from the peer.
188    pub recv: InboundFrameStream,
189    /// Whether there is a body associated with the incoming headers.
190    pub read_fin: bool,
191    /// Handle to the [`H3AuditStats`] for the message's stream.
192    pub h3_audit_stats: Arc<H3AuditStats>,
193}
194
195/// [`H3Event`]s are produced by an [H3Driver] to describe HTTP/3 state updates.
196///
197/// Both [ServerH3Driver] and [ClientH3Driver] may extend this enum with
198/// endpoint-specific variants. The events must be consumed by users of the
199/// drivers, like a higher-level `Server` or `Client` controller.
200#[derive(Debug)]
201pub enum H3Event {
202    /// A SETTINGS frame was received.
203    IncomingSettings {
204        /// Raw HTTP/3 setting pairs, in the order received from the peer.
205        settings: Vec<(u64, u64)>,
206    },
207
208    /// A HEADERS frame was received on the given stream. This is either a
209    /// request or a response depending on the perspective of the [`H3Event`]
210    /// receiver.
211    IncomingHeaders(IncomingH3Headers),
212
213    /// A DATAGRAM flow was created and associated with the given `flow_id`.
214    /// This event is fired before a HEADERS event for CONNECT[-UDP] requests.
215    NewFlow {
216        /// Flow ID of the new flow.
217        flow_id: u64,
218        /// An [`OutboundFrameSender`] for transmitting datagrams to the peer.
219        send: OutboundFrameSender,
220        /// An [`InboundFrameStream`] for receiving datagrams from the peer.
221        recv: InboundFrameStream,
222    },
223    /// A RST_STREAM frame was seen on the given `stream_id`. The user of the
224    /// driver should clean up any state allocated for this stream.
225    ResetStream { stream_id: u64 },
226    /// The connection has irrecoverably errored and is shutting down.
227    ConnectionError(h3::Error),
228    /// The connection has been shutdown, optionally due to an
229    /// [`H3ConnectionError`].
230    ConnectionShutdown(Option<H3ConnectionError>),
231    /// Body data has been received over a stream.
232    BodyBytesReceived {
233        /// Stream ID of the body data.
234        stream_id: u64,
235        /// Number of bytes received.
236        num_bytes: u64,
237        /// Whether the stream is finished and won't yield any more data.
238        fin: bool,
239    },
240    /// The stream has been closed. This is used to signal stream closures that
241    /// don't result from RST_STREAM frames, unlike the
242    /// [`H3Event::ResetStream`] variant.
243    StreamClosed { stream_id: u64 },
244}
245
246impl H3Event {
247    /// Generates an event from an applicable [`H3ConnectionError`].
248    fn from_error(err: &H3ConnectionError) -> Option<Self> {
249        Some(match err {
250            H3ConnectionError::H3(e) => Self::ConnectionError(*e),
251            H3ConnectionError::PostAcceptTimeout => Self::ConnectionShutdown(
252                Some(H3ConnectionError::PostAcceptTimeout),
253            ),
254            _ => return None,
255        })
256    }
257}
258
259/// An [`OutboundFrame`] is a data frame that should be sent from a local task
260/// to a peer over a [`quiche::h3::Connection`].
261///
262/// This is used, for example, to send response body data to a peer, or proxied
263/// UDP datagrams.
264#[derive(Debug)]
265pub enum OutboundFrame {
266    /// Response headers to be sent to the peer.
267    Headers(Vec<h3::Header>),
268    /// Response body/CONNECT downstream data plus FIN flag.
269    #[cfg(feature = "zero-copy")]
270    Body(crate::buf_factory::QuicheBuf, bool),
271    /// Response body/CONNECT downstream data plus FIN flag.
272    #[cfg(not(feature = "zero-copy"))]
273    Body(PooledBuf, bool),
274    /// CONNECT-UDP (DATAGRAM) downstream data plus flow ID.
275    Datagram(PooledDgram, u64),
276    /// An error encountered when serving the request. Stream should be closed.
277    PeerStreamError,
278    /// DATAGRAM flow explicitly closed.
279    FlowShutdown { flow_id: u64, stream_id: u64 },
280}
281
282impl OutboundFrame {
283    /// Creates a body frame with the provided buffer.
284    pub fn body(body: PooledBuf, fin: bool) -> Self {
285        #[cfg(feature = "zero-copy")]
286        let body = crate::buf_factory::QuicheBuf::new(body);
287
288        OutboundFrame::Body(body, fin)
289    }
290}
291
292/// An [`InboundFrame`] is a data frame that was received from the peer over a
293/// [`quiche::h3::Connection`]. This is used by peers to send body or datagrams
294/// to the local task.
295#[derive(Debug)]
296pub enum InboundFrame {
297    /// Request body/CONNECT upstream data plus FIN flag.
298    Body(PooledBuf, bool),
299    /// CONNECT-UDP (DATAGRAM) upstream data.
300    Datagram(PooledDgram),
301}
302
303/// A ready-made [`ApplicationOverQuic`] which can handle HTTP/3 and MASQUE.
304/// Depending on the `DriverHooks` in use, it powers either a client or a
305/// server.
306///
307/// Use the [ClientH3Driver] and [ServerH3Driver] aliases to access the
308/// respective driver types. The driver is passed into an I/O loop and
309/// communicates with the driver's user (e.g., an HTTP client or a server) via
310/// its associated [H3Controller]. The controller allows the application to both
311/// listen for [`H3Event`]s of note and send [`H3Command`]s into the I/O loop.
312pub struct H3Driver<H: DriverHooks> {
313    /// Configuration used to initialize `conn`. Created from [`Http3Settings`]
314    /// in the constructor.
315    h3_config: h3::Config,
316    /// The underlying HTTP/3 connection. Initialized in
317    /// `ApplicationOverQuic::on_conn_established`.
318    conn: Option<h3::Connection>,
319    /// State required by the client/server hooks.
320    hooks: H,
321    /// Sends [`H3Event`]s to the [H3Controller] paired with this driver.
322    h3_event_sender: mpsc::UnboundedSender<H::Event>,
323    /// Receives [`H3Command`]s from the [H3Controller] paired with this driver.
324    cmd_recv: mpsc::UnboundedReceiver<H::Command>,
325
326    /// A map of stream IDs to their [StreamCtx]. This is mainly used to
327    /// retrieve the internal Tokio channels associated with the stream.
328    stream_map: BTreeMap<u64, StreamCtx>,
329    /// A map of flow IDs to their [FlowCtx]. This is mainly used to retrieve
330    /// the internal Tokio channels associated with the flow.
331    flow_map: BTreeMap<u64, FlowCtx>,
332    /// Set of [`WaitForStream`] futures. A stream is added to this set if
333    /// we need to send to it and its channel is at capacity, or if we need
334    /// data from its channel and the channel is empty.
335    waiting_streams: FuturesUnordered<WaitForStream>,
336
337    /// Receives [`OutboundFrame`]s from all datagram flows on the connection.
338    dgram_recv: OutboundFrameStream,
339    /// Keeps the datagram channel open such that datagram flows can be created.
340    dgram_send: OutboundFrameSender,
341
342    /// The buffer used to interact with the underlying IoWorker.
343    pooled_buf: PooledBuf,
344    /// The maximum HTTP/3 stream ID seen on this connection.
345    max_stream_seen: u64,
346
347    /// Tracks whether we have forwarded the HTTP/3 SETTINGS frame
348    /// to the [H3Controller] once.
349    settings_received_and_forwarded: bool,
350}
351
352impl<H: DriverHooks> H3Driver<H> {
353    /// Builds a new [H3Driver] and an associated [H3Controller].
354    ///
355    /// The driver should then be passed to
356    /// [`InitialQuicConnection`](crate::InitialQuicConnection)'s `start`
357    /// method.
358    pub fn new(http3_settings: Http3Settings) -> (Self, H3Controller<H>) {
359        let (dgram_send, dgram_recv) = mpsc::channel(FLOW_CAPACITY);
360        let (cmd_sender, cmd_recv) = mpsc::unbounded_channel();
361        let (h3_event_sender, h3_event_recv) = mpsc::unbounded_channel();
362
363        (
364            H3Driver {
365                h3_config: (&http3_settings).into(),
366                conn: None,
367                hooks: H::new(&http3_settings),
368                h3_event_sender,
369                cmd_recv,
370
371                stream_map: BTreeMap::new(),
372                flow_map: BTreeMap::new(),
373
374                dgram_recv,
375                dgram_send: PollSender::new(dgram_send),
376                pooled_buf: BufFactory::get_max_buf(),
377                max_stream_seen: 0,
378
379                waiting_streams: FuturesUnordered::new(),
380
381                settings_received_and_forwarded: false,
382            },
383            H3Controller {
384                cmd_sender,
385                h3_event_recv: Some(h3_event_recv),
386            },
387        )
388    }
389
390    /// Retrieve the [FlowCtx] associated with the given `flow_id`. If no
391    /// context is found, a new one will be created.
392    fn get_or_insert_flow(
393        &mut self, flow_id: u64,
394    ) -> H3ConnectionResult<&mut FlowCtx> {
395        use std::collections::btree_map::Entry;
396        Ok(match self.flow_map.entry(flow_id) {
397            Entry::Vacant(e) => {
398                // This is a datagram for a new flow we haven't seen before
399                let (flow, recv) = FlowCtx::new(FLOW_CAPACITY);
400                let flow_req = H3Event::NewFlow {
401                    flow_id,
402                    recv,
403                    send: self.dgram_send.clone(),
404                };
405                self.h3_event_sender
406                    .send(flow_req.into())
407                    .map_err(|_| H3ConnectionError::ControllerWentAway)?;
408                e.insert(flow)
409            },
410            Entry::Occupied(e) => e.into_mut(),
411        })
412    }
413
414    /// Adds a [StreamCtx] to the stream map with the given `stream_id`.
415    fn insert_stream(&mut self, stream_id: u64, ctx: StreamCtx) {
416        self.stream_map.insert(stream_id, ctx);
417        self.max_stream_seen = self.max_stream_seen.max(stream_id);
418    }
419
420    /// Fetches body chunks from the [`quiche::h3::Connection`] and forwards
421    /// them to the stream's associated [`InboundFrameStream`].
422    fn process_h3_data(
423        &mut self, qconn: &mut QuicheConnection, stream_id: u64,
424    ) -> H3ConnectionResult<()> {
425        // Split self borrow between conn and stream_map
426        let conn = self.conn.as_mut().ok_or(Self::connection_not_present())?;
427        let ctx = self
428            .stream_map
429            .get_mut(&stream_id)
430            .ok_or(H3ConnectionError::NonexistentStream)?;
431
432        enum StreamStatus {
433            Done { close: bool },
434            Blocked,
435        }
436
437        let status = loop {
438            let Some(sender) = ctx.send.as_ref().and_then(PollSender::get_ref)
439            else {
440                // already waiting for capacity
441                break StreamStatus::Done { close: false };
442            };
443
444            let permit = match sender.try_reserve() {
445                Ok(permit) => permit,
446                Err(TrySendError::Closed(())) => {
447                    break StreamStatus::Done {
448                        close: ctx.fin_sent && ctx.fin_recv,
449                    };
450                },
451                Err(TrySendError::Full(())) => {
452                    if ctx.fin_recv || qconn.stream_readable(stream_id) {
453                        break StreamStatus::Blocked;
454                    }
455                    break StreamStatus::Done { close: false };
456                },
457            };
458
459            if ctx.fin_recv {
460                // Signal end-of-body to upstream
461                permit
462                    .send(InboundFrame::Body(BufFactory::get_empty_buf(), true));
463                break StreamStatus::Done {
464                    close: ctx.fin_sent,
465                };
466            }
467
468            match conn.recv_body(qconn, stream_id, &mut self.pooled_buf) {
469                Ok(n) => {
470                    let mut body = std::mem::replace(
471                        &mut self.pooled_buf,
472                        BufFactory::get_max_buf(),
473                    );
474                    body.truncate(n);
475
476                    ctx.audit_stats.add_downstream_bytes_recvd(n as u64);
477                    let event = H3Event::BodyBytesReceived {
478                        stream_id,
479                        num_bytes: n as u64,
480                        fin: false,
481                    };
482                    let _ = self.h3_event_sender.send(event.into());
483
484                    permit.send(InboundFrame::Body(body, false));
485                },
486                Err(h3::Error::Done) =>
487                    break StreamStatus::Done { close: false },
488                Err(_) => break StreamStatus::Done { close: true },
489            }
490        };
491
492        match status {
493            StreamStatus::Done { close } => {
494                if close {
495                    return self.finish_stream(qconn, stream_id, None, None);
496                }
497
498                // The QUIC stream is finished, manually invoke `process_h3_fin`
499                // in case `h3::poll()` is never called again.
500                //
501                // Note that this case will not conflict with StreamStatus::Done
502                // being returned due to the body channel being
503                // blocked. qconn.stream_finished() will guarantee
504                // that we've fully parsed the body as it only returns true
505                // if we've seen a Fin for the read half of the stream.
506                if !ctx.fin_recv && qconn.stream_finished(stream_id) {
507                    return self.process_h3_fin(qconn, stream_id);
508                }
509            },
510            StreamStatus::Blocked => {
511                self.waiting_streams.push(ctx.wait_for_send(stream_id));
512            },
513        }
514
515        Ok(())
516    }
517
518    /// Processes an end-of-stream event from the [`quiche::h3::Connection`].
519    fn process_h3_fin(
520        &mut self, qconn: &mut QuicheConnection, stream_id: u64,
521    ) -> H3ConnectionResult<()> {
522        let ctx = self.stream_map.get_mut(&stream_id).filter(|c| !c.fin_recv);
523        let Some(ctx) = ctx else {
524            // Stream is already finished, nothing to do
525            return Ok(());
526        };
527
528        ctx.fin_recv = true;
529        ctx.audit_stats
530            .set_recvd_stream_fin(StreamClosureKind::Explicit);
531
532        // It's important to send this H3Event before process_h3_data so that
533        // a server can (potentially) generate the control response before the
534        // corresponding receiver drops.
535        let event = H3Event::BodyBytesReceived {
536            stream_id,
537            num_bytes: 0,
538            fin: true,
539        };
540        let _ = self.h3_event_sender.send(event.into());
541
542        // Communicate fin to upstream. Since `ctx.fin_recv` is true now,
543        // there can't be a recursive loop.
544        self.process_h3_data(qconn, stream_id)
545    }
546
547    /// Processes a single [`quiche::h3::Event`] received from the underlying
548    /// [`quiche::h3::Connection`]. Some events are dispatched to helper
549    /// methods.
550    fn process_read_event(
551        &mut self, qconn: &mut QuicheConnection, stream_id: u64, event: h3::Event,
552    ) -> H3ConnectionResult<()> {
553        self.forward_settings()?;
554
555        match event {
556            // Requests/responses are exclusively handled by hooks.
557            #[cfg(not(feature = "gcongestion"))]
558            h3::Event::Headers { list, more_frames } =>
559                H::headers_received(self, qconn, InboundHeaders {
560                    stream_id,
561                    headers: list,
562                    has_body: more_frames,
563                }),
564
565            #[cfg(feature = "gcongestion")]
566            h3::Event::Headers { list, has_body } =>
567                H::headers_received(self, qconn, InboundHeaders {
568                    stream_id,
569                    headers: list,
570                    has_body,
571                }),
572
573            h3::Event::Data => self.process_h3_data(qconn, stream_id),
574            h3::Event::Finished => self.process_h3_fin(qconn, stream_id),
575
576            h3::Event::Reset(code) => {
577                if let Some(ctx) = self.stream_map.get(&stream_id) {
578                    ctx.audit_stats.set_recvd_reset_stream_error_code(code as _);
579                }
580
581                self.h3_event_sender
582                    .send(H3Event::ResetStream { stream_id }.into())
583                    .map_err(|_| H3ConnectionError::ControllerWentAway)?;
584
585                self.finish_stream(qconn, stream_id, None, None)
586            },
587
588            h3::Event::PriorityUpdate => Ok(()),
589            h3::Event::GoAway => Err(H3ConnectionError::GoAway),
590        }
591    }
592
593    /// The SETTINGS frame can be received at any point, so we
594    /// need to check `peer_settings_raw` to decide if we've received it.
595    ///
596    /// Settings should only be sent once, so we generate a single event
597    /// when `peer_settings_raw` transitions from None to Some.
598    fn forward_settings(&mut self) -> H3ConnectionResult<()> {
599        if self.settings_received_and_forwarded {
600            return Ok(());
601        }
602
603        // capture the peer settings and forward it
604        if let Some(settings) = self.conn_mut()?.peer_settings_raw() {
605            let incoming_settings = H3Event::IncomingSettings {
606                settings: settings.to_vec(),
607            };
608
609            self.h3_event_sender
610                .send(incoming_settings.into())
611                .map_err(|_| H3ConnectionError::ControllerWentAway)?;
612
613            self.settings_received_and_forwarded = true;
614        }
615        Ok(())
616    }
617
618    /// Send an individual frame to the underlying [`quiche::h3::Connection`] to
619    /// be flushed at a later time.
620    ///
621    /// `Self::process_writes` will iterate over all writable streams and call
622    /// this method in a loop for each stream to send all writable packets.
623    fn process_write_frame(
624        conn: &mut h3::Connection, qconn: &mut QuicheConnection,
625        ctx: &mut StreamCtx,
626    ) -> h3::Result<()> {
627        let Some(frame) = &mut ctx.queued_frame else {
628            return Ok(());
629        };
630
631        let audit_stats = &ctx.audit_stats;
632        let stream_id = audit_stats.stream_id();
633
634        match frame {
635            // Initial headers were already sent, send additional headers now.
636            #[cfg(not(feature = "gcongestion"))]
637            OutboundFrame::Headers(headers) if ctx.initial_headers_sent => conn
638                .send_additional_headers(qconn, stream_id, headers, false, false),
639
640            // Send initial headers.
641            OutboundFrame::Headers(headers) => conn
642                .send_response_with_priority(
643                    qconn,
644                    stream_id,
645                    headers,
646                    &DEFAULT_PRIO,
647                    false,
648                )
649                .inspect(|_| ctx.initial_headers_sent = true),
650
651            OutboundFrame::Body(body, fin) => {
652                let len = body.as_ref().len();
653                if *fin {
654                    // If this is the last body frame, close the receiver in the
655                    // stream map to signal that we shouldn't
656                    // receive any more frames.
657                    ctx.recv.as_mut().expect("channel").close();
658                }
659                #[cfg(feature = "zero-copy")]
660                let n = conn.send_body_zc(qconn, stream_id, body, *fin)?;
661
662                #[cfg(not(feature = "zero-copy"))]
663                let n = conn.send_body(qconn, stream_id, body, *fin)?;
664
665                audit_stats.add_downstream_bytes_sent(n as _);
666                if n != len {
667                    // Couldn't write the entire body, keep what remains for
668                    // future retry.
669                    #[cfg(not(feature = "zero-copy"))]
670                    body.pop_front(n);
671
672                    Err(h3::Error::StreamBlocked)
673                } else {
674                    if *fin {
675                        ctx.fin_sent = true;
676                        audit_stats
677                            .set_sent_stream_fin(StreamClosureKind::Explicit);
678                        if ctx.fin_recv {
679                            // Return a TransportError to trigger stream cleanup
680                            // instead of h3::Error::Done
681                            return Err(h3::Error::TransportError(
682                                quiche::Error::Done,
683                            ));
684                        }
685                    }
686                    Ok(())
687                }
688            },
689
690            OutboundFrame::PeerStreamError => Err(h3::Error::MessageError),
691
692            OutboundFrame::FlowShutdown { .. } => {
693                unreachable!("Only flows send shutdowns")
694            },
695
696            OutboundFrame::Datagram(..) => {
697                unreachable!("Only flows send datagrams")
698            },
699        }
700    }
701
702    /// Resumes reads or writes to the connection when a stream channel becomes
703    /// unblocked.
704    ///
705    /// If we were waiting for more data from a channel, we resume writing to
706    /// the connection. Otherwise, we were blocked on channel capacity and
707    /// continue reading from the connection. `Upstream` in this context is
708    /// the consumer of the stream.
709    fn upstream_ready(
710        &mut self, qconn: &mut QuicheConnection, ready: StreamReady,
711    ) -> H3ConnectionResult<()> {
712        match ready {
713            StreamReady::Downstream(r) => self.upstream_read_ready(qconn, r),
714            StreamReady::Upstream(r) => self.upstream_write_ready(qconn, r),
715        }
716    }
717
718    fn upstream_read_ready(
719        &mut self, qconn: &mut QuicheConnection,
720        read_ready: ReceivedDownstreamData,
721    ) -> H3ConnectionResult<()> {
722        let ReceivedDownstreamData {
723            stream_id,
724            chan,
725            data,
726        } = read_ready;
727
728        match self.stream_map.get_mut(&stream_id) {
729            None => Ok(()),
730            Some(stream) => {
731                stream.recv = Some(chan);
732                stream.queued_frame = data;
733                self.process_writable_stream(qconn, stream_id)
734            },
735        }
736    }
737
738    fn upstream_write_ready(
739        &mut self, qconn: &mut QuicheConnection,
740        write_ready: HaveUpstreamCapacity,
741    ) -> H3ConnectionResult<()> {
742        let HaveUpstreamCapacity {
743            stream_id,
744            mut chan,
745        } = write_ready;
746
747        match self.stream_map.get_mut(&stream_id) {
748            None => Ok(()),
749            Some(stream) => {
750                chan.abort_send(); // Have to do it to release the associated permit
751                stream.send = Some(chan);
752                self.process_h3_data(qconn, stream_id)
753            },
754        }
755    }
756
757    /// Processes all queued outbound datagrams from the `dgram_recv` channel.
758    fn dgram_ready(
759        &mut self, qconn: &mut QuicheConnection, frame: OutboundFrame,
760    ) -> H3ConnectionResult<()> {
761        let mut frame = Ok(frame);
762
763        loop {
764            match frame {
765                Ok(OutboundFrame::Datagram(dgram, flow_id)) => {
766                    // Drop datagrams if there is no capacity
767                    let _ = datagram::send_h3_dgram(qconn, flow_id, dgram);
768                },
769                Ok(OutboundFrame::FlowShutdown { flow_id, stream_id }) => {
770                    self.finish_stream(
771                        qconn,
772                        stream_id,
773                        Some(quiche::h3::WireErrorCode::NoError as u64),
774                        Some(quiche::h3::WireErrorCode::NoError as u64),
775                    )?;
776                    self.flow_map.remove(&flow_id);
777                    break;
778                },
779                Ok(_) => unreachable!("Flows can't send frame of other types"),
780                Err(TryRecvError::Empty) => break,
781                Err(TryRecvError::Disconnected) =>
782                    return Err(H3ConnectionError::ControllerWentAway),
783            }
784
785            frame = self.dgram_recv.try_recv();
786        }
787
788        Ok(())
789    }
790
791    /// Return a mutable reference to the driver's HTTP/3 connection.
792    ///
793    /// If the connection doesn't exist yet, this function returns
794    /// a `Self::connection_not_present()` error.
795    fn conn_mut(&mut self) -> H3ConnectionResult<&mut h3::Connection> {
796        self.conn.as_mut().ok_or(Self::connection_not_present())
797    }
798
799    /// Alias for [`quiche::Error::TlsFail`], which is used in the case where
800    /// this driver doesn't have an established HTTP/3 connection attached
801    /// to it yet.
802    const fn connection_not_present() -> H3ConnectionError {
803        H3ConnectionError::H3(h3::Error::TransportError(quiche::Error::TlsFail))
804    }
805
806    /// Removes a stream from the stream map if it exists. Also optionally sends
807    /// `RESET` or `STOP_SENDING` frames if `write` or `read` is set to an
808    /// error code, respectively.
809    fn finish_stream(
810        &mut self, qconn: &mut QuicheConnection, stream_id: u64,
811        read: Option<u64>, write: Option<u64>,
812    ) -> H3ConnectionResult<()> {
813        let Some(stream_ctx) = self.stream_map.remove(&stream_id) else {
814            return Ok(());
815        };
816
817        let audit_stats = &stream_ctx.audit_stats;
818
819        if let Some(err) = read {
820            audit_stats.set_sent_stop_sending_error_code(err as _);
821            let _ = qconn.stream_shutdown(stream_id, quiche::Shutdown::Read, err);
822        }
823
824        if let Some(err) = write {
825            audit_stats.set_sent_reset_stream_error_code(err as _);
826            let _ =
827                qconn.stream_shutdown(stream_id, quiche::Shutdown::Write, err);
828        }
829
830        // Find if the stream also has any pending futures associated with it
831        for pending in self.waiting_streams.iter_mut() {
832            match pending {
833                WaitForStream::Downstream(WaitForDownstreamData {
834                    stream_id: id,
835                    chan: Some(chan),
836                }) if stream_id == *id => {
837                    chan.close();
838                },
839                WaitForStream::Upstream(WaitForUpstreamCapacity {
840                    stream_id: id,
841                    chan: Some(chan),
842                }) if stream_id == *id => {
843                    chan.close();
844                },
845                _ => {},
846            }
847        }
848
849        // Close any DATAGRAM-proxying channels when we close the stream, if they
850        // exist
851        if let Some(mapped_flow_id) = stream_ctx.associated_dgram_flow_id {
852            self.flow_map.remove(&mapped_flow_id);
853        }
854
855        if qconn.is_server() {
856            // Signal the server to remove the stream from its map
857            let _ = self
858                .h3_event_sender
859                .send(H3Event::StreamClosed { stream_id }.into());
860        }
861
862        Ok(())
863    }
864
865    /// Handles a regular [`H3Command`]. May be called internally by
866    /// [DriverHooks] for non-endpoint-specific [`H3Command`]s.
867    fn handle_core_command(
868        &mut self, qconn: &mut QuicheConnection, cmd: H3Command,
869    ) -> H3ConnectionResult<()> {
870        match cmd {
871            H3Command::QuicCmd(cmd) => cmd.execute(qconn),
872            H3Command::GoAway => {
873                let max_id = self.max_stream_seen;
874                self.conn_mut()
875                    .expect("connection should be established")
876                    .send_goaway(qconn, max_id)?;
877            },
878        }
879        Ok(())
880    }
881}
882
883impl<H: DriverHooks> H3Driver<H> {
884    /// Reads all buffered datagrams out of `qconn` and distributes them to
885    /// their flow channels.
886    fn process_available_dgrams(
887        &mut self, qconn: &mut QuicheConnection,
888    ) -> H3ConnectionResult<()> {
889        loop {
890            match datagram::receive_h3_dgram(qconn) {
891                Ok((flow_id, dgram)) => {
892                    self.get_or_insert_flow(flow_id)?.send_best_effort(dgram);
893                },
894                Err(quiche::Error::Done) => return Ok(()),
895                Err(err) => return Err(H3ConnectionError::from(err)),
896            }
897        }
898    }
899
900    /// Flushes any queued-up frames for `stream_id` into `qconn` until either
901    /// there is no more capacity in `qconn` or no more frames to send.
902    fn process_writable_stream(
903        &mut self, qconn: &mut QuicheConnection, stream_id: u64,
904    ) -> H3ConnectionResult<()> {
905        // Split self borrow between conn and stream_map
906        let conn = self.conn.as_mut().ok_or(Self::connection_not_present())?;
907        let Some(ctx) = self.stream_map.get_mut(&stream_id) else {
908            return Ok(()); // Unknown stream_id
909        };
910
911        loop {
912            // Process each writable frame, queue the next frame for processing
913            // and shut down any errored streams.
914            match Self::process_write_frame(conn, qconn, ctx) {
915                Ok(()) => ctx.queued_frame = None,
916                Err(h3::Error::StreamBlocked | h3::Error::Done) => break,
917                Err(h3::Error::MessageError) => {
918                    return self.finish_stream(
919                        qconn,
920                        stream_id,
921                        Some(quiche::h3::WireErrorCode::MessageError as u64),
922                        Some(quiche::h3::WireErrorCode::MessageError as u64),
923                    );
924                },
925                Err(h3::Error::TransportError(quiche::Error::StreamStopped(
926                    e,
927                ))) => {
928                    ctx.audit_stats.set_recvd_stop_sending_error_code(e as i64);
929                    return self.finish_stream(qconn, stream_id, Some(e), None);
930                },
931                Err(h3::Error::TransportError(
932                    quiche::Error::InvalidStreamState(stream),
933                )) => {
934                    return self.finish_stream(qconn, stream, None, None);
935                },
936                Err(_) => {
937                    return self.finish_stream(qconn, stream_id, None, None);
938                },
939            }
940
941            let Some(recv) = ctx.recv.as_mut() else {
942                return Ok(()); // This stream is already waiting for data
943            };
944
945            // Attempt to queue the next frame for processing. The corresponding
946            // sender is created at the same time as the `StreamCtx`
947            // and ultimately ends up in an `H3Body`. The body then
948            // determines which frames to send to the peer via
949            // this processing loop.
950            match recv.try_recv() {
951                Ok(frame) => ctx.queued_frame = Some(frame),
952                Err(TryRecvError::Disconnected) => break,
953                Err(TryRecvError::Empty) => {
954                    self.waiting_streams.push(ctx.wait_for_recv(stream_id));
955                    break;
956                },
957            }
958        }
959
960        Ok(())
961    }
962
963    /// Tests `qconn` for either a local or peer error and increments
964    /// the associated HTTP/3 or QUIC error counter.
965    fn record_quiche_error(qconn: &mut QuicheConnection, metrics: &impl Metrics) {
966        // split metrics between local/peer and QUIC/HTTP/3 level errors
967        if let Some(err) = qconn.local_error() {
968            if err.is_app {
969                metrics.local_h3_conn_close_error_count(err.error_code.into())
970            } else {
971                metrics.local_quic_conn_close_error_count(err.error_code.into())
972            }
973            .inc();
974        } else if let Some(err) = qconn.peer_error() {
975            if err.is_app {
976                metrics.peer_h3_conn_close_error_count(err.error_code.into())
977            } else {
978                metrics.peer_quic_conn_close_error_count(err.error_code.into())
979            }
980            .inc();
981        }
982    }
983}
984
985impl<H: DriverHooks> ApplicationOverQuic for H3Driver<H> {
986    fn on_conn_established(
987        &mut self, quiche_conn: &mut QuicheConnection,
988        handshake_info: &HandshakeInfo,
989    ) -> QuicResult<()> {
990        let conn = h3::Connection::with_transport(quiche_conn, &self.h3_config)?;
991        self.conn = Some(conn);
992
993        H::conn_established(self, quiche_conn, handshake_info)?;
994        Ok(())
995    }
996
997    #[inline]
998    fn should_act(&self) -> bool {
999        self.conn.is_some()
1000    }
1001
1002    #[inline]
1003    fn buffer(&mut self) -> &mut [u8] {
1004        &mut self.pooled_buf
1005    }
1006
1007    /// Poll the underlying [`quiche::h3::Connection`] for
1008    /// [`quiche::h3::Event`]s and DATAGRAMs, delegating processing to
1009    /// `Self::process_read_event`.
1010    ///
1011    /// If a DATAGRAM is found, it is sent to the receiver on its channel.
1012    fn process_reads(&mut self, qconn: &mut QuicheConnection) -> QuicResult<()> {
1013        loop {
1014            match self.conn_mut()?.poll(qconn) {
1015                Ok((stream_id, event)) =>
1016                    self.process_read_event(qconn, stream_id, event)?,
1017                Err(h3::Error::Done) => break,
1018                Err(err) => {
1019                    // Don't bubble error up, instead keep the worker loop going
1020                    // until quiche reports the connection is
1021                    // closed.
1022                    log::debug!("connection closed due to h3 protocol error"; "error"=>?err);
1023                    return Ok(());
1024                },
1025            };
1026        }
1027
1028        self.process_available_dgrams(qconn)?;
1029        Ok(())
1030    }
1031
1032    /// Write as much data as possible into the [`quiche::h3::Connection`] from
1033    /// all sources. This will attempt to write any queued frames into their
1034    /// respective streams, if writable.
1035    fn process_writes(&mut self, qconn: &mut QuicheConnection) -> QuicResult<()> {
1036        while let Some(stream_id) = qconn.stream_writable_next() {
1037            self.process_writable_stream(qconn, stream_id)?;
1038        }
1039
1040        // Also optimistically check for any ready streams
1041        while let Some(Some(ready)) = self.waiting_streams.next().now_or_never() {
1042            self.upstream_ready(qconn, ready)?;
1043        }
1044
1045        Ok(())
1046    }
1047
1048    /// Reports connection-level error metrics and forwards
1049    /// IOWorker errors to the associated [H3Controller].
1050    fn on_conn_close<M: Metrics>(
1051        &mut self, quiche_conn: &mut QuicheConnection, metrics: &M,
1052        work_loop_result: &QuicResult<()>,
1053    ) {
1054        let max_stream_seen = self.max_stream_seen;
1055        metrics
1056            .maximum_writable_streams()
1057            .observe(max_stream_seen as f64);
1058
1059        let Err(work_loop_error) = work_loop_result else {
1060            return;
1061        };
1062
1063        Self::record_quiche_error(quiche_conn, metrics);
1064
1065        let Some(h3_err) = work_loop_error.downcast_ref::<H3ConnectionError>()
1066        else {
1067            log::error!("Found non-H3ConnectionError"; "error" => %work_loop_error);
1068            return;
1069        };
1070
1071        if matches!(h3_err, H3ConnectionError::ControllerWentAway) {
1072            // Inform client that we won't (can't) respond anymore
1073            let _ =
1074                quiche_conn.close(true, h3::WireErrorCode::NoError as u64, &[]);
1075            return;
1076        }
1077
1078        if let Some(ev) = H3Event::from_error(h3_err) {
1079            let _ = self.h3_event_sender.send(ev.into());
1080            #[expect(clippy::needless_return)]
1081            return; // avoid accidental fallthrough in the future
1082        }
1083    }
1084
1085    /// Wait for incoming data from the [H3Controller]. The next iteration of
1086    /// the I/O loop commences when one of the `select!`ed futures triggers.
1087    #[inline]
1088    async fn wait_for_data(
1089        &mut self, qconn: &mut QuicheConnection,
1090    ) -> QuicResult<()> {
1091        select! {
1092            biased;
1093            Some(ready) = self.waiting_streams.next() => self.upstream_ready(qconn, ready),
1094            Some(dgram) = self.dgram_recv.recv() => self.dgram_ready(qconn, dgram),
1095            Some(cmd) = self.cmd_recv.recv() => H::conn_command(self, qconn, cmd),
1096            r = self.hooks.wait_for_action(qconn), if H::has_wait_action(self) => r,
1097        }?;
1098
1099        // Make sure controller is not starved, but also not prioritized in the
1100        // biased select. So poll it last, however also perform a try_recv
1101        // each iteration.
1102        if let Ok(cmd) = self.cmd_recv.try_recv() {
1103            H::conn_command(self, qconn, cmd)?;
1104        }
1105
1106        Ok(())
1107    }
1108}
1109
1110impl<H: DriverHooks> Drop for H3Driver<H> {
1111    fn drop(&mut self) {
1112        for stream in self.stream_map.values() {
1113            stream
1114                .audit_stats
1115                .set_recvd_stream_fin(StreamClosureKind::Implicit);
1116        }
1117    }
1118}
1119
1120/// [`H3Command`]s are sent by the [H3Controller] to alter the [H3Driver]'s
1121/// state.
1122///
1123/// Both [ServerH3Driver] and [ClientH3Driver] may extend this enum with
1124/// endpoint-specific variants.
1125#[derive(Debug)]
1126pub enum H3Command {
1127    /// A connection-level command that executes directly on the
1128    /// [`quiche::Connection`].
1129    QuicCmd(QuicCommand),
1130    /// Send a GOAWAY frame to the peer to initiate a graceful connection
1131    /// shutdown.
1132    GoAway,
1133}
1134
1135/// Sends [`H3Command`]s to an [H3Driver]. The sender is typed and internally
1136/// wraps instances of `T` in the appropriate `H3Command` variant.
1137pub struct RequestSender<C, T> {
1138    sender: UnboundedSender<C>,
1139    // Required to work around dangling type parameter
1140    _r: PhantomData<fn() -> T>,
1141}
1142
1143impl<C, T: Into<C>> RequestSender<C, T> {
1144    /// Send a request to the [H3Driver]. This can only fail if the driver is
1145    /// gone.
1146    #[inline(always)]
1147    pub fn send(&self, v: T) -> Result<(), mpsc::error::SendError<C>> {
1148        self.sender.send(v.into())
1149    }
1150}
1151
1152impl<C, T> Clone for RequestSender<C, T> {
1153    fn clone(&self) -> Self {
1154        Self {
1155            sender: self.sender.clone(),
1156            _r: Default::default(),
1157        }
1158    }
1159}
1160
1161/// Interface to communicate with a paired [H3Driver].
1162///
1163/// An [H3Controller] receives [`H3Event`]s from its driver, which must be
1164/// consumed by the application built on top of the driver to react to incoming
1165/// events. The controller also allows the application to send ad-hoc
1166/// [`H3Command`]s to the driver, which will be processed when the driver waits
1167/// for incoming data.
1168pub struct H3Controller<H: DriverHooks> {
1169    /// Sends [`H3Command`]s to the [H3Driver], like [`QuicCommand`]s or
1170    /// outbound HTTP requests.
1171    cmd_sender: UnboundedSender<H::Command>,
1172    /// Receives [`H3Event`]s from the [H3Driver]. Can be extracted and
1173    /// used independently of the [H3Controller].
1174    h3_event_recv: Option<UnboundedReceiver<H::Event>>,
1175}
1176
1177impl<H: DriverHooks> H3Controller<H> {
1178    /// Gets a mut reference to the [`H3Event`] receiver for the paired
1179    /// [H3Driver].
1180    pub fn event_receiver_mut(&mut self) -> &mut UnboundedReceiver<H::Event> {
1181        self.h3_event_recv
1182            .as_mut()
1183            .expect("No event receiver on H3Controller")
1184    }
1185
1186    /// Takes the [`H3Event`] receiver for the paired [H3Driver].
1187    pub fn take_event_receiver(&mut self) -> UnboundedReceiver<H::Event> {
1188        self.h3_event_recv
1189            .take()
1190            .expect("No event receiver on H3Controller")
1191    }
1192
1193    /// Creates a [`QuicCommand`] sender for the paired [H3Driver].
1194    pub fn cmd_sender(&self) -> RequestSender<H::Command, QuicCommand> {
1195        RequestSender {
1196            sender: self.cmd_sender.clone(),
1197            _r: Default::default(),
1198        }
1199    }
1200
1201    /// Sends a GOAWAY frame to initiate a graceful connection shutdown.
1202    pub fn send_goaway(&self) {
1203        let _ = self.cmd_sender.send(H3Command::GoAway.into());
1204    }
1205}