s2n-quic-dc 0.88.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 super::{
    descriptor::{Descriptor, DescriptorInner},
    free_list::{self, FreeVec},
    handle::{Control, Sender, Stream},
    keys::Keys,
    sender::{self, Senders},
};
use crate::sync::ring_deque::Capacity;
use s2n_quic_core::varint::VarInt;
use std::{alloc::Layout, hash::Hash, marker::PhantomData, ptr::NonNull, sync::Arc};

pub struct Pool<T: 'static + Send, Key: 'static + Send, const PAGE_SIZE: usize> {
    senders: Arc<sender::State<T, Key>>,
    keys: Keys<Key>,
    free: Arc<FreeVec<T, Key>>,
    /// Holds the backing memory allocated as long as there's at least one reference
    memory_handle: Arc<free_list::Memory<T, Key>>,
    stream_capacity: Capacity,
    control_capacity: Capacity,
    epoch: VarInt,
    base: VarInt,
}

impl<T: 'static + Send, Key: 'static + Send, const PAGE_SIZE: usize> Clone
    for Pool<T, Key, PAGE_SIZE>
{
    #[inline]
    fn clone(&self) -> Self {
        Self {
            free: self.free.clone(),
            memory_handle: self.memory_handle.clone(),
            senders: self.senders.clone(),
            keys: self.keys.clone(),
            stream_capacity: self.stream_capacity,
            control_capacity: self.control_capacity,
            epoch: self.epoch,
            base: self.base,
        }
    }
}

impl<T, Key, const PAGE_SIZE: usize> Pool<T, Key, PAGE_SIZE>
where
    T: 'static + Send + Sync,
    Key: 'static + Send + Sync + Copy + Eq + Hash,
{
    #[inline]
    pub fn new(epoch: VarInt, stream_capacity: Capacity, control_capacity: Capacity) -> Self {
        let keys = Keys::new(PAGE_SIZE);
        let senders = sender::State::new(epoch);
        let (free, memory_handle) = FreeVec::new(PAGE_SIZE, keys.clone());
        let mut pool = Pool {
            free,
            memory_handle,
            senders,
            stream_capacity,
            control_capacity,
            epoch,
            keys,
            base: epoch,
        };
        pool.grow();
        pool
    }

    #[inline]
    pub fn senders(&self) -> Senders<T, Key, PAGE_SIZE> {
        Senders {
            state: self.senders.clone(),
            // make sure the memory lives as long as this sender is alive
            memory_handle: self.memory_handle.clone(),
            local: Default::default(),
            base: self.base,
        }
    }

    pub fn keys(&self) -> Keys<Key> {
        self.keys.clone()
    }

    #[inline]
    pub fn alloc(&self, key: Option<&Key>) -> Option<(Control<T, Key>, Stream<T, Key>)> {
        self.free.alloc(key)
    }

    #[inline]
    pub fn alloc_or_grow(&mut self, key: Option<&Key>) -> (Control<T, Key>, Stream<T, Key>) {
        loop {
            if let Some(descriptor) = self.alloc(key) {
                return descriptor;
            }
            self.grow();
        }
    }

    #[inline(never)] // this should happen rarely
    fn grow(&mut self) {
        let (region, layout) = Region::alloc(PAGE_SIZE);

        let ptr = region.ptr;

        let mut pending_desc = vec![];
        let mut pending_senders = vec![];

        for idx in 0..PAGE_SIZE {
            let offset = layout.size() * idx;

            unsafe {
                let descriptor = ptr.as_ptr().add(offset).cast::<DescriptorInner<T, Key>>();

                // Give the descriptor a non-`Strong` reference to the free list, since this will be the
                // last reference to get dropped.
                let free_list = self.free.clone();

                // initialize the descriptor with the channels
                descriptor.write(DescriptorInner::new(
                    self.epoch + idx,
                    self.stream_capacity,
                    self.control_capacity,
                    free_list,
                ));

                let descriptor = NonNull::new_unchecked(descriptor);
                let descriptor = Descriptor::new(descriptor);
                let sender = Sender::new(descriptor.clone_for_sender());

                // push the descriptor into the free list
                pending_desc.push(descriptor);

                // push the senders into the sender page
                pending_senders.push(sender);
            }
        }

        let pending_senders: Arc<[_]> = pending_senders.into();

        #[expect(
            clippy::unwrap_used,
            reason = "the lock is only poisoned if another thread already panicked while holding it"
        )]
        let mut senders = self.senders.pages.write().unwrap();

        // check if another pool instance already updated the senders list
        if senders.epoch != self.epoch {
            // update our local copy
            self.epoch = senders.epoch;

            // Drop senders first since their drop impl accesses the descriptor's fields
            drop(pending_senders);

            // Now it's safe to destroy the descriptors
            for desc in pending_desc {
                unsafe {
                    desc.drop_in_place();
                }
            }

            // return back to the alloc method, which may have a free descriptor now
            return;
        }

        // update the epoch with the latest value
        let target_epoch = self.epoch + PAGE_SIZE;
        senders.epoch = target_epoch;
        self.epoch = target_epoch;

        // update the sender list with the newly allocated channels
        senders.pages.push(pending_senders);
        // we don't need to synchronize with the senders any more so drop the local
        drop(senders);

        // push all of the descriptors into the free list
        self.free.record_region(region, pending_desc);
    }
}

pub(super) struct Region<T: 'static, Key: 'static> {
    ptr: NonNull<u8>,
    layout: Layout,
    phantom: PhantomData<(T, Key)>,
}

unsafe impl<T: Send, Key: Send> Send for Region<T, Key> {}
unsafe impl<T: Sync, Key: Sync> Sync for Region<T, Key> {}

impl<T: 'static, Key: 'static> Region<T, Key> {
    #[inline]
    fn alloc(page_size: usize) -> (Self, Layout) {
        debug_assert!(page_size > 0, "need at least 1 entry in page");

        // first create the descriptor layout
        let descriptor = Layout::new::<DescriptorInner<T, Key>>().pad_to_align();

        #[expect(
            clippy::unwrap_used,
            reason = "page_size is the PAGE_SIZE const generic (256, or 8 under debug_assertions) and the descriptor size is a compile-time constant, so the multiplication and layout construction cannot overflow"
        )]
        let descriptors = {
            // TODO use `descriptor.repeat(page_size)` once stable
            // https://doc.rust-lang.org/stable/core/alloc/struct.Layout.html#method.repeat
            Layout::from_size_align(
                descriptor.size().checked_mul(page_size).unwrap(),
                descriptor.align(),
            )
            .unwrap()
        };

        let ptr = unsafe {
            // SAFETY: the layout is non-zero size
            debug_assert_ne!(descriptors.size(), 0);
            // ensure that the allocation is zeroed out so we don't have to worry about MaybeUninit
            std::alloc::alloc_zeroed(descriptors)
        };
        let ptr = NonNull::new(ptr).unwrap_or_else(|| std::alloc::handle_alloc_error(descriptors));

        let region = Self {
            ptr,
            layout: descriptors,
            phantom: PhantomData,
        };

        (region, descriptor)
    }
}

impl<T, Key> Drop for Region<T, Key> {
    #[inline]
    fn drop(&mut self) {
        unsafe {
            std::alloc::dealloc(self.ptr.as_ptr(), self.layout);
        }
    }
}