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::{
    clock::Clock,
    event,
    stream::{application::Builder as StreamBuilder, environment::Environment, server::stats},
    sync::mpmc as channel,
};
use core::time::Duration;
use s2n_quic_core::time::Clock as _;

#[derive(Clone, Debug)]
pub struct Pruner {
    /// Any sojourn duration multiplied by this value is unlikely to be accepted in time
    pub sojourn_multiplier: u32,

    /// Don't prune anything under this amount, just so we can handle bursts of streams and
    /// not prematurely drop things.
    pub min_threshold: Duration,

    /// Anything older than this amount has likely timed out at this point. No need to hold
    /// on to the stream any longer at this point
    pub max_threshold: Duration,

    /// Minimum amount of time to sleep before pruning the queue again
    pub min_sleep_time: Duration,

    /// Maximum amount of time to sleep before pruning the queue again
    pub max_sleep_time: Duration,
}

impl Default for Pruner {
    fn default() -> Self {
        Self {
            sojourn_multiplier: 3,
            min_threshold: Duration::from_millis(100),
            max_threshold: Duration::from_secs(5),
            min_sleep_time: Duration::from_millis(100),
            max_sleep_time: Duration::from_secs(1),
        }
    }
}

impl Pruner {
    /// A task which prunes the accept queue to enforce a maximum sojourn time
    pub async fn run<Env>(
        self,
        env: Env,
        channel: channel::WeakReceiver<StreamBuilder<Env::Subscriber>>,
        stats: stats::Stats,
    ) where
        Env: Environment,
    {
        let Self {
            sojourn_multiplier,
            min_threshold,
            max_threshold,
            min_sleep_time,
            max_sleep_time,
        } = self;

        let clock = env.clock().clone();
        let mut timer = clock.timer();
        timer.sleep(clock.get_time() + min_sleep_time).await;

        loop {
            let now = clock.get_time();
            let smoothed_sojourn_time = stats.smoothed_sojourn_time();

            // compute the oldest allowed queue time
            let Some(queue_time_threshold) = now.checked_sub(
                (smoothed_sojourn_time * sojourn_multiplier).clamp(min_threshold, max_threshold),
            ) else {
                timer.sleep(now + min_sleep_time).await;
                continue;
            };

            // Use optional locks to avoid lock contention. If there is contention on the channel, the
            // old streams will naturally be pruned, since old ones will be dropped in favor of new
            // ones.
            let priority = channel::Priority::Optional;

            loop {
                // pop off any items that have expired
                let res = channel.pop_back_if(priority, |stream| {
                    stream
                        .app_queue_time
                        .expect("server streams only")
                        .has_elapsed(queue_time_threshold)
                });

                match res {
                    // we pruned a stream
                    Ok(Some(stream)) => {
                        stream.prune(
                            event::builder::AcceptorStreamPruneReason::MaxSojournTimeExceeded,
                        );
                        continue;
                    }
                    // no more streams left to prune
                    Ok(None) => break,
                    // the channel was closed
                    Err(_) => return,
                }
            }

            // wake up later based on the smoothed sojourn time
            let target = smoothed_sojourn_time.clamp(min_sleep_time, max_sleep_time);
            let target = clock.get_time() + target;
            timer.sleep(target).await;
        }
    }
}