2021-12-11 22:43:41 -05:00
|
|
|
//! Client connection state
|
2021-12-05 19:14:14 -05:00
|
|
|
use crate::close::Close;
|
2021-12-12 11:50:16 -05:00
|
|
|
use crate::error::Error;
|
2021-12-05 19:14:14 -05:00
|
|
|
use crate::error::Result;
|
2021-12-12 11:50:16 -05:00
|
|
|
|
2021-12-05 19:14:14 -05:00
|
|
|
use crate::subscription::Subscription;
|
|
|
|
use std::collections::HashMap;
|
2022-12-22 16:47:33 -05:00
|
|
|
use tracing::{debug, trace};
|
2021-12-05 17:53:26 -05:00
|
|
|
use uuid::Uuid;
|
|
|
|
|
2021-12-11 22:43:41 -05:00
|
|
|
/// A subscription identifier has a maximum length
|
2021-12-05 19:14:14 -05:00
|
|
|
const MAX_SUBSCRIPTION_ID_LEN: usize = 256;
|
|
|
|
|
2021-12-11 22:43:41 -05:00
|
|
|
/// State for a client connection
|
2021-12-05 17:53:26 -05:00
|
|
|
pub struct ClientConn {
|
2022-11-02 19:33:44 -04:00
|
|
|
/// Client IP (either from socket, or configured proxy header
|
2023-01-22 10:49:49 -05:00
|
|
|
client_ip_addr: String,
|
2021-12-11 22:43:41 -05:00
|
|
|
/// Unique client identifier generated at connection time
|
2021-12-05 21:28:02 -05:00
|
|
|
client_id: Uuid,
|
2021-12-11 22:43:41 -05:00
|
|
|
/// The current set of active client subscriptions
|
2021-12-05 19:14:14 -05:00
|
|
|
subscriptions: HashMap<String, Subscription>,
|
2021-12-11 22:43:41 -05:00
|
|
|
/// Per-connection maximum concurrent subscriptions
|
2021-12-05 19:14:14 -05:00
|
|
|
max_subs: usize,
|
2021-12-05 17:53:26 -05:00
|
|
|
}
|
|
|
|
|
2021-12-11 22:56:52 -05:00
|
|
|
impl Default for ClientConn {
|
|
|
|
fn default() -> Self {
|
2022-11-02 19:33:44 -04:00
|
|
|
Self::new("unknown".to_owned())
|
2021-12-11 22:56:52 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-05 17:53:26 -05:00
|
|
|
impl ClientConn {
|
2021-12-11 22:43:41 -05:00
|
|
|
/// Create a new, empty connection state.
|
2022-09-24 10:01:09 -04:00
|
|
|
#[must_use]
|
2023-01-22 10:49:49 -05:00
|
|
|
pub fn new(client_ip_addr: String) -> Self {
|
2021-12-05 17:53:26 -05:00
|
|
|
let client_id = Uuid::new_v4();
|
|
|
|
ClientConn {
|
2023-01-22 10:49:49 -05:00
|
|
|
client_ip_addr,
|
2021-12-11 22:43:41 -05:00
|
|
|
client_id,
|
2021-12-05 19:14:14 -05:00
|
|
|
subscriptions: HashMap::new(),
|
2021-12-12 11:50:16 -05:00
|
|
|
max_subs: 32,
|
2021-12-05 19:14:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-22 10:49:49 -05:00
|
|
|
#[must_use] pub fn subscriptions(&self) -> &HashMap<String, Subscription> {
|
2022-11-08 21:02:27 -05:00
|
|
|
&self.subscriptions
|
|
|
|
}
|
|
|
|
|
2022-12-17 21:46:58 -05:00
|
|
|
/// Check if the given subscription already exists
|
2023-01-22 10:49:49 -05:00
|
|
|
#[must_use] pub fn has_subscription(&self, sub: &Subscription) -> bool {
|
2022-12-17 21:46:58 -05:00
|
|
|
self.subscriptions.values().any(|x| x == sub)
|
|
|
|
}
|
|
|
|
|
2021-12-11 22:43:41 -05:00
|
|
|
/// Get a short prefix of the client's unique identifier, suitable
|
|
|
|
/// for logging.
|
2022-09-24 10:01:09 -04:00
|
|
|
#[must_use]
|
2021-12-05 21:28:02 -05:00
|
|
|
pub fn get_client_prefix(&self) -> String {
|
|
|
|
self.client_id.to_string().chars().take(8).collect()
|
|
|
|
}
|
|
|
|
|
2022-11-02 19:33:44 -04:00
|
|
|
#[must_use]
|
|
|
|
pub fn ip(&self) -> &str {
|
2023-01-22 10:49:49 -05:00
|
|
|
&self.client_ip_addr
|
2022-11-02 19:33:44 -04:00
|
|
|
}
|
|
|
|
|
2021-12-11 22:43:41 -05:00
|
|
|
/// Add a new subscription for this connection.
|
2022-09-24 10:19:16 -04:00
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// Will return `Err` if the client has too many subscriptions, or
|
|
|
|
/// if the provided name is excessively long.
|
2021-12-05 19:14:14 -05:00
|
|
|
pub fn subscribe(&mut self, s: Subscription) -> Result<()> {
|
|
|
|
let k = s.get_id();
|
|
|
|
let sub_id_len = k.len();
|
2021-12-11 22:43:41 -05:00
|
|
|
// prevent arbitrarily long subscription identifiers from
|
|
|
|
// being used.
|
2021-12-05 19:14:14 -05:00
|
|
|
if sub_id_len > MAX_SUBSCRIPTION_ID_LEN {
|
2022-12-22 16:47:33 -05:00
|
|
|
debug!(
|
2021-12-12 11:03:28 -05:00
|
|
|
"ignoring sub request with excessive length: ({})",
|
|
|
|
sub_id_len
|
|
|
|
);
|
2021-12-12 11:50:16 -05:00
|
|
|
return Err(Error::SubIdMaxLengthError);
|
2021-12-05 19:14:14 -05:00
|
|
|
}
|
|
|
|
// check if an existing subscription exists, and replace if so
|
|
|
|
if self.subscriptions.contains_key(&k) {
|
|
|
|
self.subscriptions.remove(&k);
|
2022-12-16 16:22:27 -05:00
|
|
|
self.subscriptions.insert(k, s.clone());
|
2022-12-22 16:47:33 -05:00
|
|
|
trace!(
|
2022-12-16 16:22:27 -05:00
|
|
|
"replaced existing subscription (cid: {}, sub: {:?})",
|
|
|
|
self.get_client_prefix(),
|
|
|
|
s.get_id()
|
|
|
|
);
|
2021-12-05 19:14:14 -05:00
|
|
|
return Ok(());
|
2021-12-05 17:53:26 -05:00
|
|
|
}
|
2021-12-05 19:14:14 -05:00
|
|
|
|
|
|
|
// check if there is room for another subscription.
|
|
|
|
if self.subscriptions.len() >= self.max_subs {
|
2021-12-12 11:50:16 -05:00
|
|
|
return Err(Error::SubMaxExceededError);
|
2021-12-05 19:14:14 -05:00
|
|
|
}
|
|
|
|
// add subscription
|
|
|
|
self.subscriptions.insert(k, s);
|
2022-12-22 16:47:33 -05:00
|
|
|
trace!(
|
2022-12-16 16:22:27 -05:00
|
|
|
"registered new subscription, currently have {} active subs (cid: {})",
|
|
|
|
self.subscriptions.len(),
|
|
|
|
self.get_client_prefix(),
|
2021-12-05 19:14:14 -05:00
|
|
|
);
|
2021-12-11 22:56:52 -05:00
|
|
|
Ok(())
|
2021-12-05 19:14:14 -05:00
|
|
|
}
|
|
|
|
|
2021-12-11 22:43:41 -05:00
|
|
|
/// Remove the subscription for this connection.
|
2022-09-24 10:19:16 -04:00
|
|
|
pub fn unsubscribe(&mut self, c: &Close) {
|
2021-12-05 19:14:14 -05:00
|
|
|
// TODO: return notice if subscription did not exist.
|
2021-12-11 22:43:41 -05:00
|
|
|
self.subscriptions.remove(&c.id);
|
2022-12-22 16:47:33 -05:00
|
|
|
trace!(
|
2022-12-16 16:22:27 -05:00
|
|
|
"removed subscription, currently have {} active subs (cid: {})",
|
2022-08-21 12:11:38 -04:00
|
|
|
self.subscriptions.len(),
|
2022-11-05 16:59:39 -04:00
|
|
|
self.get_client_prefix(),
|
2021-12-05 19:14:14 -05:00
|
|
|
);
|
2021-12-05 17:53:26 -05:00
|
|
|
}
|
|
|
|
}
|