* [service] Fix check for invalid kext handle * [windows_kext] Use BTreeMap as cache structure * [windows_kext] Fix synchronization bug * Update windows_kext/kextinterface/kext_file.go Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Update windows_kext/kextinterface/kext_file.go Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Update windows_kext/kextinterface/kext_file.go Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
130 lines
3.7 KiB
Rust
130 lines
3.7 KiB
Rust
use crate::{
|
|
connection::{Connection, ConnectionV4, ConnectionV6, RedirectInfo, Verdict},
|
|
connection_map::{ConnectionMap, Key},
|
|
};
|
|
use alloc::vec::Vec;
|
|
|
|
use smoltcp::wire::IpProtocol;
|
|
use wdk::rw_spin_lock::RwSpinLock;
|
|
|
|
pub struct ConnectionCache {
|
|
connections_v4: ConnectionMap<ConnectionV4>,
|
|
connections_v6: ConnectionMap<ConnectionV6>,
|
|
lock_v4: RwSpinLock,
|
|
lock_v6: RwSpinLock,
|
|
}
|
|
|
|
impl ConnectionCache {
|
|
pub fn new() -> Self {
|
|
Self {
|
|
connections_v4: ConnectionMap::new(),
|
|
connections_v6: ConnectionMap::new(),
|
|
lock_v4: RwSpinLock::default(),
|
|
lock_v6: RwSpinLock::default(),
|
|
}
|
|
}
|
|
|
|
pub fn add_connection_v4(&mut self, connection: ConnectionV4) {
|
|
let _guard = self.lock_v4.write_lock();
|
|
self.connections_v4.add(connection);
|
|
}
|
|
|
|
pub fn add_connection_v6(&mut self, connection: ConnectionV6) {
|
|
let _guard = self.lock_v6.write_lock();
|
|
self.connections_v6.add(connection);
|
|
}
|
|
|
|
pub fn update_connection(&mut self, key: Key, verdict: Verdict) -> Option<RedirectInfo> {
|
|
if key.is_ipv6() {
|
|
let _guard = self.lock_v6.write_lock();
|
|
if let Some(conn) = self.connections_v6.get_mut(&key) {
|
|
conn.verdict = verdict;
|
|
return conn.redirect_info();
|
|
}
|
|
} else {
|
|
let _guard = self.lock_v4.write_lock();
|
|
if let Some(conn) = self.connections_v4.get_mut(&key) {
|
|
conn.verdict = verdict;
|
|
return conn.redirect_info();
|
|
}
|
|
}
|
|
None
|
|
}
|
|
|
|
pub fn read_connection_v4<T>(
|
|
&self,
|
|
key: &Key,
|
|
process_connection: fn(&ConnectionV4) -> Option<T>,
|
|
) -> Option<T> {
|
|
let _guard = self.lock_v4.read_lock();
|
|
self.connections_v4.read(key, process_connection)
|
|
}
|
|
|
|
pub fn read_connection_v6<T>(
|
|
&self,
|
|
key: &Key,
|
|
process_connection: fn(&ConnectionV6) -> Option<T>,
|
|
) -> Option<T> {
|
|
let _guard = self.lock_v6.read_lock();
|
|
self.connections_v6.read(key, process_connection)
|
|
}
|
|
|
|
pub fn end_connection_v4(&mut self, key: Key) -> Option<ConnectionV4> {
|
|
let _guard = self.lock_v4.write_lock();
|
|
self.connections_v4.end(key)
|
|
}
|
|
|
|
pub fn end_connection_v6(&mut self, key: Key) -> Option<ConnectionV6> {
|
|
let _guard = self.lock_v6.write_lock();
|
|
self.connections_v6.end(key)
|
|
}
|
|
|
|
pub fn end_all_on_port_v4(&mut self, key: (IpProtocol, u16)) -> Option<Vec<ConnectionV4>> {
|
|
let _guard = self.lock_v4.write_lock();
|
|
self.connections_v4.end_all_on_port(key)
|
|
}
|
|
|
|
pub fn end_all_on_port_v6(&mut self, key: (IpProtocol, u16)) -> Option<Vec<ConnectionV6>> {
|
|
let _guard = self.lock_v6.write_lock();
|
|
self.connections_v6.end_all_on_port(key)
|
|
}
|
|
|
|
pub fn clean_ended_connections(&mut self) {
|
|
{
|
|
let _guard = self.lock_v4.write_lock();
|
|
self.connections_v4.clean_ended_connections();
|
|
}
|
|
{
|
|
let _guard = self.lock_v6.write_lock();
|
|
self.connections_v6.clean_ended_connections();
|
|
}
|
|
}
|
|
|
|
pub fn clear(&mut self) {
|
|
{
|
|
let _guard = self.lock_v4.write_lock();
|
|
self.connections_v4.clear();
|
|
}
|
|
{
|
|
let _guard = self.lock_v6.write_lock();
|
|
self.connections_v6.clear();
|
|
}
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
pub fn get_entries_count(&self) -> usize {
|
|
let mut size = 0;
|
|
{
|
|
let _guard = self.lock_v4.read_lock();
|
|
size += self.connections_v4.get_count();
|
|
}
|
|
|
|
{
|
|
let _guard = self.lock_v6.read_lock();
|
|
size += self.connections_v6.get_count();
|
|
}
|
|
|
|
return size;
|
|
}
|
|
}
|