mirror of
https://github.com/telemt/telemt.git
synced 2026-09-05 18:16:06 +03:00
8b2b88f30c
Co-Authored-By: brekotis <93345790+brekotis@users.noreply.github.com>
365 lines
12 KiB
Rust
365 lines
12 KiB
Rust
use std::collections::HashMap;
|
|
use std::sync::Arc;
|
|
use std::sync::atomic::{AtomicBool, Ordering};
|
|
|
|
use parking_lot::Mutex;
|
|
use tokio::sync::Notify;
|
|
|
|
use super::ProfileKey;
|
|
use crate::config::WebLimitsConfig;
|
|
use crate::web::session::QUEUE_ITEM_COST;
|
|
|
|
/// WebSocket allocation class with a distinct pressure watermark.
|
|
#[derive(Clone, Copy)]
|
|
pub(super) enum WebSocketBudgetClass {
|
|
/// Long-lived codec and driver memory acquired before an upgrade commits.
|
|
Base,
|
|
/// One bounded inbound message or outbound write staging allocation.
|
|
Data,
|
|
}
|
|
|
|
#[derive(Default)]
|
|
struct BudgetState {
|
|
queue_bytes: usize,
|
|
queue_items: usize,
|
|
queue_control_bytes: usize,
|
|
queue_control_items: usize,
|
|
websocket_bytes: usize,
|
|
owner_bytes: HashMap<ProfileKey, usize>,
|
|
high_water_bytes: usize,
|
|
closed: bool,
|
|
}
|
|
|
|
/// Process-owned byte and item governor shared by queues and WebSocket I/O.
|
|
pub(super) struct WebDataBudget {
|
|
limits: WebLimitsConfig,
|
|
state: Mutex<BudgetState>,
|
|
notify: Arc<Notify>,
|
|
pressured: AtomicBool,
|
|
}
|
|
|
|
/// One exact WebSocket allocation released on every cancellation path.
|
|
pub(crate) struct WebSocketBudgetLease {
|
|
budget: Arc<WebDataBudget>,
|
|
owner: ProfileKey,
|
|
bytes: usize,
|
|
}
|
|
|
|
/// Lock-free diagnostic snapshot of one short locked budget state.
|
|
#[derive(Clone, Copy, Debug, Default)]
|
|
pub(crate) struct WebDataBudgetSnapshot {
|
|
/// Total queue bytes currently retained.
|
|
pub(crate) queue_bytes: usize,
|
|
/// Total queue items currently retained.
|
|
pub(crate) queue_items: usize,
|
|
/// Total WebSocket bytes currently retained.
|
|
pub(crate) websocket_bytes: usize,
|
|
/// Largest combined byte usage observed since process start.
|
|
pub(crate) high_water_bytes: usize,
|
|
}
|
|
|
|
impl WebDataBudget {
|
|
pub(super) fn new(limits: WebLimitsConfig) -> Arc<Self> {
|
|
Arc::new(Self {
|
|
limits,
|
|
state: Mutex::new(BudgetState::default()),
|
|
notify: Arc::new(Notify::new()),
|
|
pressured: AtomicBool::new(false),
|
|
})
|
|
}
|
|
|
|
pub(super) fn try_reserve_queue(
|
|
&self,
|
|
owner: ProfileKey,
|
|
bytes: usize,
|
|
items: usize,
|
|
control: bool,
|
|
downlink: bool,
|
|
) -> bool {
|
|
let mut state = self.state.lock();
|
|
if state.closed {
|
|
return false;
|
|
}
|
|
let control_item_reserve = control_item_reserve(&self.limits);
|
|
let data_byte_limit = self
|
|
.limits
|
|
.pending_bytes_global
|
|
.saturating_sub(self.limits.control_bytes_global);
|
|
let data_item_limit = self
|
|
.limits
|
|
.pending_items_global
|
|
.saturating_sub(control_item_reserve);
|
|
let (fits, websocket_byte_pressure) = if control {
|
|
let byte_pressure = state.websocket_bytes != 0
|
|
&& state.queue_bytes.saturating_add(state.websocket_bytes)
|
|
> self.limits.pending_bytes_global.saturating_sub(bytes);
|
|
let fits = bytes <= self.limits.control_bytes_global
|
|
&& items <= control_item_reserve
|
|
&& state.queue_bytes.saturating_add(state.websocket_bytes)
|
|
<= self.limits.pending_bytes_global.saturating_sub(bytes)
|
|
&& state.queue_items <= self.limits.pending_items_global.saturating_sub(items)
|
|
&& state.queue_control_bytes
|
|
<= self.limits.control_bytes_global.saturating_sub(bytes)
|
|
&& state.queue_control_items <= control_item_reserve.saturating_sub(items);
|
|
(fits, byte_pressure)
|
|
} else {
|
|
let queue_data_bytes = state.queue_bytes.saturating_sub(state.queue_control_bytes);
|
|
let queue_data_items = state.queue_items.saturating_sub(state.queue_control_items);
|
|
let (byte_limit, item_limit) = if downlink {
|
|
let uplink_bytes = self.limits.max_body_bytes.saturating_add(
|
|
self.limits
|
|
.max_frames_per_body
|
|
.saturating_mul(QUEUE_ITEM_COST),
|
|
);
|
|
(
|
|
data_byte_limit
|
|
.saturating_sub(uplink_bytes)
|
|
.saturating_sub(self.limits.carrier_batch_bytes),
|
|
data_item_limit.saturating_sub(self.limits.max_frames_per_body),
|
|
)
|
|
} else {
|
|
(data_byte_limit, data_item_limit)
|
|
};
|
|
let byte_pressure = state.websocket_bytes != 0
|
|
&& queue_data_bytes.saturating_add(state.websocket_bytes)
|
|
> byte_limit.saturating_sub(bytes);
|
|
let fits = bytes <= byte_limit
|
|
&& items <= item_limit
|
|
&& queue_data_bytes.saturating_add(state.websocket_bytes)
|
|
<= byte_limit.saturating_sub(bytes)
|
|
&& queue_data_items <= item_limit.saturating_sub(items);
|
|
(fits, byte_pressure)
|
|
};
|
|
if !fits {
|
|
if websocket_byte_pressure {
|
|
self.pressured.store(true, Ordering::Release);
|
|
}
|
|
return false;
|
|
}
|
|
state.queue_bytes += bytes;
|
|
state.queue_items += items;
|
|
if control {
|
|
state.queue_control_bytes += bytes;
|
|
state.queue_control_items += items;
|
|
}
|
|
add_owner(&mut state.owner_bytes, owner, bytes);
|
|
update_high_water(&mut state);
|
|
true
|
|
}
|
|
|
|
pub(super) fn release_queue(
|
|
&self,
|
|
owner: ProfileKey,
|
|
bytes: usize,
|
|
items: usize,
|
|
control: bool,
|
|
) {
|
|
let mut state = self.state.lock();
|
|
state.queue_bytes = state.queue_bytes.saturating_sub(bytes);
|
|
state.queue_items = state.queue_items.saturating_sub(items);
|
|
if control {
|
|
state.queue_control_bytes = state.queue_control_bytes.saturating_sub(bytes);
|
|
state.queue_control_items = state.queue_control_items.saturating_sub(items);
|
|
}
|
|
remove_owner(&mut state.owner_bytes, owner, bytes);
|
|
drop(state);
|
|
self.notify.notify_waiters();
|
|
}
|
|
|
|
pub(super) fn try_reserve_websocket(
|
|
self: &Arc<Self>,
|
|
owner: ProfileKey,
|
|
bytes: usize,
|
|
class: WebSocketBudgetClass,
|
|
) -> Option<WebSocketBudgetLease> {
|
|
let mut state = self.state.lock();
|
|
if state.closed || bytes == 0 {
|
|
return None;
|
|
}
|
|
let websocket_limit = match class {
|
|
WebSocketBudgetClass::Base => watermark(
|
|
self.limits.websocket_bytes_global,
|
|
self.limits.websocket_admission_watermark_pct,
|
|
),
|
|
WebSocketBudgetClass::Data => watermark(
|
|
self.limits.websocket_bytes_global,
|
|
self.limits.websocket_eviction_watermark_pct,
|
|
),
|
|
};
|
|
let data_byte_limit = self
|
|
.limits
|
|
.pending_bytes_global
|
|
.saturating_sub(self.limits.control_bytes_global);
|
|
let queue_data_bytes = state.queue_bytes.saturating_sub(state.queue_control_bytes);
|
|
if state.websocket_bytes > websocket_limit.saturating_sub(bytes)
|
|
|| queue_data_bytes.saturating_add(state.websocket_bytes)
|
|
> data_byte_limit.saturating_sub(bytes)
|
|
{
|
|
self.pressured.store(true, Ordering::Release);
|
|
return None;
|
|
}
|
|
state.websocket_bytes += bytes;
|
|
add_owner(&mut state.owner_bytes, owner, bytes);
|
|
update_high_water(&mut state);
|
|
Some(WebSocketBudgetLease {
|
|
budget: Arc::clone(self),
|
|
owner,
|
|
bytes,
|
|
})
|
|
}
|
|
|
|
pub(super) fn notify(&self) -> Arc<Notify> {
|
|
Arc::clone(&self.notify)
|
|
}
|
|
|
|
pub(super) fn take_pressure(&self) -> bool {
|
|
self.pressured.swap(false, Ordering::AcqRel)
|
|
}
|
|
|
|
pub(super) fn owner_usage(&self, owner: ProfileKey) -> usize {
|
|
self.state
|
|
.lock()
|
|
.owner_bytes
|
|
.get(&owner)
|
|
.copied()
|
|
.unwrap_or(0)
|
|
}
|
|
|
|
pub(super) fn fair_share(&self, additional_owner: Option<ProfileKey>) -> usize {
|
|
let state = self.state.lock();
|
|
let mut owners = state.owner_bytes.len();
|
|
if additional_owner.is_some_and(|owner| !state.owner_bytes.contains_key(&owner)) {
|
|
owners += 1;
|
|
}
|
|
let admission = watermark(
|
|
self.limits.websocket_bytes_global,
|
|
self.limits.websocket_admission_watermark_pct,
|
|
);
|
|
admission / owners.max(1)
|
|
}
|
|
|
|
pub(super) fn snapshot(&self) -> WebDataBudgetSnapshot {
|
|
let state = self.state.lock();
|
|
WebDataBudgetSnapshot {
|
|
queue_bytes: state.queue_bytes,
|
|
queue_items: state.queue_items,
|
|
websocket_bytes: state.websocket_bytes,
|
|
high_water_bytes: state.high_water_bytes,
|
|
}
|
|
}
|
|
|
|
pub(super) fn close(&self) {
|
|
self.state.lock().closed = true;
|
|
self.notify.notify_waiters();
|
|
}
|
|
|
|
fn release_websocket(&self, owner: ProfileKey, bytes: usize) {
|
|
let mut state = self.state.lock();
|
|
state.websocket_bytes = state.websocket_bytes.saturating_sub(bytes);
|
|
remove_owner(&mut state.owner_bytes, owner, bytes);
|
|
drop(state);
|
|
self.notify.notify_waiters();
|
|
}
|
|
}
|
|
|
|
impl WebSocketBudgetLease {
|
|
/// Releases unused worst-case capacity after one message is assembled.
|
|
pub(crate) fn shrink_to(&mut self, bytes: usize) {
|
|
let bytes = bytes.min(self.bytes);
|
|
let released = self.bytes - bytes;
|
|
if released == 0 {
|
|
return;
|
|
}
|
|
self.bytes = bytes;
|
|
self.budget.release_websocket(self.owner, released);
|
|
}
|
|
}
|
|
|
|
impl Drop for WebSocketBudgetLease {
|
|
fn drop(&mut self) {
|
|
self.budget.release_websocket(self.owner, self.bytes);
|
|
}
|
|
}
|
|
|
|
fn watermark(limit: usize, percentage: u8) -> usize {
|
|
limit.saturating_mul(usize::from(percentage)) / 100
|
|
}
|
|
|
|
pub(super) fn control_item_reserve(limits: &WebLimitsConfig) -> usize {
|
|
limits
|
|
.max_sessions_global
|
|
.saturating_mul(16usize.saturating_add(limits.max_streams_per_session.saturating_mul(3)))
|
|
}
|
|
|
|
fn add_owner(values: &mut HashMap<ProfileKey, usize>, owner: ProfileKey, bytes: usize) {
|
|
*values.entry(owner).or_insert(0) += bytes;
|
|
}
|
|
|
|
fn remove_owner(values: &mut HashMap<ProfileKey, usize>, owner: ProfileKey, bytes: usize) {
|
|
let remove = if let Some(value) = values.get_mut(&owner) {
|
|
*value = value.saturating_sub(bytes);
|
|
*value == 0
|
|
} else {
|
|
false
|
|
};
|
|
if remove {
|
|
values.remove(&owner);
|
|
}
|
|
}
|
|
|
|
fn update_high_water(state: &mut BudgetState) {
|
|
state.high_water_bytes = state
|
|
.high_water_bytes
|
|
.max(state.queue_bytes.saturating_add(state.websocket_bytes));
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn downlink_reservation_preserves_one_uplink_and_websocket_batch() {
|
|
let limits = WebLimitsConfig::default();
|
|
let uplink_bytes = limits
|
|
.max_body_bytes
|
|
.saturating_add(limits.max_frames_per_body.saturating_mul(QUEUE_ITEM_COST));
|
|
let downlink_bytes = limits
|
|
.pending_bytes_global
|
|
.saturating_sub(limits.control_bytes_global)
|
|
.saturating_sub(uplink_bytes)
|
|
.saturating_sub(limits.carrier_batch_bytes);
|
|
let budget = WebDataBudget::new(limits);
|
|
|
|
assert!(budget.try_reserve_queue([1; 32], downlink_bytes, 1, false, true));
|
|
assert!(!budget.try_reserve_queue([1; 32], 1, 1, false, true));
|
|
}
|
|
|
|
#[test]
|
|
fn item_limit_rejection_does_not_request_websocket_eviction() {
|
|
let limits = WebLimitsConfig::default();
|
|
let rejected_items = limits.pending_items_global.saturating_add(1);
|
|
let budget = WebDataBudget::new(limits);
|
|
let _websocket = budget
|
|
.try_reserve_websocket([1; 32], 1, WebSocketBudgetClass::Data)
|
|
.unwrap();
|
|
|
|
assert!(!budget.try_reserve_queue([2; 32], 1, rejected_items, false, false));
|
|
assert!(!budget.take_pressure());
|
|
}
|
|
|
|
#[test]
|
|
fn websocket_byte_conflict_requests_pressure_eviction() {
|
|
let limits = WebLimitsConfig::default();
|
|
let data_bytes = limits
|
|
.pending_bytes_global
|
|
.saturating_sub(limits.control_bytes_global);
|
|
let budget = WebDataBudget::new(limits);
|
|
let _websocket = budget
|
|
.try_reserve_websocket([1; 32], 1, WebSocketBudgetClass::Data)
|
|
.unwrap();
|
|
|
|
assert!(!budget.try_reserve_queue([2; 32], data_bytes, 1, false, false));
|
|
assert!(budget.take_pressure());
|
|
}
|
|
}
|