s2n-quic-dc 0.83.0

Internal crate used by s2n-quic
Documentation
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

use crate::{
    path::secret,
    psk::io::{
        Result, DEFAULT_IDLE_TIMEOUT, DEFAULT_MAX_DATA, DEFAULT_MTU, DEFAULT_PTO_JITTER_PERCENTAGE,
        DEFAULT_THREAD_COUNT,
    },
};
use s2n_quic::provider::{event::Subscriber as Sub, tls::Provider as Prov};
use std::{net::SocketAddr, time::Duration};

use super::Provider;

pub struct Builder<
    Event: s2n_quic::provider::event::Subscriber = s2n_quic::provider::event::default::Subscriber,
> {
    pub(crate) event_subscriber: Event,
    pub(crate) data_window: u64,
    pub(crate) initial_data_window: Option<u64>,
    pub(crate) mtu: u16,
    pub(crate) max_idle_timeout: Duration,
    pub(crate) pto_jitter_percentage: u8,
    #[cfg(any(test, feature = "testing"))]
    pub(crate) endpoint_limits: Option<TestEndpointLimiter>,
    pub(crate) thread_offload_count: usize,
}

/// A wrapper type for test endpoint limiters
#[cfg(any(test, feature = "testing"))]
pub struct TestEndpointLimiter(
    pub Box<dyn s2n_quic::provider::endpoint_limits::Limiter + Send + Sync>,
);

#[cfg(any(test, feature = "testing"))]
impl s2n_quic::provider::endpoint_limits::Limiter for TestEndpointLimiter {
    fn on_connection_attempt(
        &mut self,
        info: &s2n_quic::provider::endpoint_limits::ConnectionAttempt,
    ) -> s2n_quic::provider::endpoint_limits::Outcome {
        self.0.on_connection_attempt(info)
    }
}

impl Default for Builder<s2n_quic::provider::event::default::Subscriber> {
    fn default() -> Self {
        Self {
            event_subscriber: Default::default(),
            data_window: DEFAULT_MAX_DATA,
            initial_data_window: None,
            mtu: DEFAULT_MTU,
            max_idle_timeout: DEFAULT_IDLE_TIMEOUT,
            pto_jitter_percentage: DEFAULT_PTO_JITTER_PERCENTAGE,
            #[cfg(any(test, feature = "testing"))]
            endpoint_limits: None,
            thread_offload_count: DEFAULT_THREAD_COUNT,
        }
    }
}

impl<Event: s2n_quic::provider::event::Subscriber> Builder<Event> {
    /// Sets an event subscriber
    pub fn with_event_subscriber<E: s2n_quic::provider::event::Subscriber>(
        self,
        event_subscriber: E,
    ) -> Builder<E> {
        Builder {
            event_subscriber,
            data_window: self.data_window,
            initial_data_window: self.initial_data_window,
            mtu: self.mtu,
            max_idle_timeout: self.max_idle_timeout,
            pto_jitter_percentage: self.pto_jitter_percentage,
            #[cfg(any(test, feature = "testing"))]
            endpoint_limits: self.endpoint_limits,
            thread_offload_count: self.thread_offload_count,
        }
    }

    /// Sets endpoint limits for testing purposes only
    #[cfg(any(test, feature = "testing"))]
    pub fn with_endpoint_limits<
        L: s2n_quic::provider::endpoint_limits::Limiter + Send + Sync + 'static,
    >(
        mut self,
        limiter: L,
    ) -> Self {
        self.endpoint_limits = Some(TestEndpointLimiter(Box::new(limiter)));
        self
    }

    /// Sets the data window to use for flow control
    pub fn with_data_window(mut self, data_window: u64) -> Self {
        self.data_window = data_window;
        self
    }

    /// Sets the initial amount of data that the peer is allowed to send before the application
    /// accepts the stream
    ///
    /// This defaults to 10x the MTU if not set.
    pub fn with_initial_data_window(mut self, initial_data_window: u64) -> Self {
        self.initial_data_window = Some(initial_data_window);
        self
    }

    /// Sets the largest maximum transmission unit (MTU) that will be used for transmission
    pub fn with_mtu(mut self, mtu: u16) -> Self {
        self.mtu = mtu;
        self
    }

    /// Sets the maximum amount of time a stream will wait without response before closing with an error
    ///
    /// The default value is 30s. Applications can set this to [`Duration::MAX`] to effectively disable the
    /// timeout.
    pub fn with_max_idle_timeout(mut self, max_idle_timeout: Duration) -> Self {
        self.max_idle_timeout = max_idle_timeout;
        self
    }

    /// Sets the PTO jitter percentage (default: 33)
    ///
    /// Adds random jitter to Probe Timeout (PTO) calculations to prevent synchronized
    /// timeouts across multiple connections. The jitter is applied as a percentage
    /// of the base PTO period, with values between -X% and +X% where X is the
    /// configured percentage.
    ///
    /// Valid range: 0-50% (default: 33%)
    /// - 0%: No jitter
    /// - 1-50%: Applies random jitter within ±percentage of base PTO
    pub fn with_pto_jitter_percentage(mut self, pto_jitter_percentage: u8) -> Self {
        self.pto_jitter_percentage = pto_jitter_percentage;
        self
    }

    /// Controls the number of extra threads used to process incoming TLS handshakes
    ///
    /// dc-quic can offload the TLS handshake work to separate threads outside of the main event loop
    /// in order to avoid blocking the event loop. Increase the thread count for better TPS
    /// in the case of many clients trying to handshake with the server.
    /// - 0: Offloading not enabled
    /// - 1+: One extra thread performing offload from primary event loop
    pub fn with_thread_count(mut self, count: usize) -> Self {
        self.thread_offload_count = count;
        self
    }

    /// Starts the server listening to the given address.
    pub async fn start<
        TlsProvider: Prov + Send + Sync + 'static,
        Subscriber: Sub + Send + Sync + 'static,
    >(
        self,
        bind: SocketAddr,
        tls_materials_provider: TlsProvider,
        subscriber: Subscriber,
        map: secret::Map,
    ) -> Result<Provider> {
        let (rx, guard) = Provider::setup::<TlsProvider, Subscriber, Event>(
            bind,
            map.clone(),
            tls_materials_provider,
            subscriber,
            self,
        );
        let local_addr = rx.await??;
        Ok(Provider::new(map, local_addr, guard))
    }

    /// Starts the server listening to the given address, blocking until the server has been bound to the address.
    pub fn start_blocking<
        TlsProvider: Prov + Send + Sync + 'static,
        Subscriber: Sub + Send + Sync + 'static,
    >(
        self,
        bind: SocketAddr,
        tls_materials_provider: TlsProvider,
        subscriber: Subscriber,
        map: secret::Map,
    ) -> Result<Provider> {
        let (rx, guard) = Provider::setup::<TlsProvider, Subscriber, Event>(
            bind,
            map.clone(),
            tls_materials_provider,
            subscriber,
            self,
        );
        let local_addr = rx.blocking_recv()??;
        Ok(Provider::new(map, local_addr, guard))
    }
}