Allow remote profiling with build flag
This commit is contained in:
parent
1122e1c800
commit
2d5551ea03
12
Cargo.toml
12
Cargo.toml
@ -12,12 +12,22 @@ license = "GPL-3.0"
|
|||||||
keywords = []
|
keywords = []
|
||||||
categories = []
|
categories = []
|
||||||
|
|
||||||
|
[features]
|
||||||
|
default = []
|
||||||
|
enable-profiling = ["profiling/profile-with-puffin", "puffin_http"]
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread", "process"] }
|
tokio = { version = "1.29.1", features = [
|
||||||
|
"macros",
|
||||||
|
"rt-multi-thread",
|
||||||
|
"process"
|
||||||
|
] }
|
||||||
clap = { version = "4.3.11", features = ["derive"] }
|
clap = { version = "4.3.11", features = ["derive"] }
|
||||||
serde = { version = "1.0.171", features = ["derive"] }
|
serde = { version = "1.0.171", features = ["derive"] }
|
||||||
ipnet = { version = "2.8.0", features = ["serde"] }
|
ipnet = { version = "2.8.0", features = ["serde"] }
|
||||||
|
puffin_http = { version = "0.13.0", optional = true }
|
||||||
|
profiling = "1.0.8"
|
||||||
toml = "0.7.6"
|
toml = "0.7.6"
|
||||||
log = "0.4.19"
|
log = "0.4.19"
|
||||||
fern = "0.6.2"
|
fern = "0.6.2"
|
||||||
|
1
Dockerfile
Normal file
1
Dockerfile
Normal file
@ -0,0 +1 @@
|
|||||||
|
# FROM
|
@ -5,11 +5,15 @@ use clap::Parser;
|
|||||||
#[derive(Parser, Debug)]
|
#[derive(Parser, Debug)]
|
||||||
#[command(author, version, about, long_about = None)]
|
#[command(author, version, about, long_about = None)]
|
||||||
pub struct Args {
|
pub struct Args {
|
||||||
|
|
||||||
/// Path to the config file
|
/// Path to the config file
|
||||||
pub config_file: PathBuf,
|
pub config_file: PathBuf,
|
||||||
|
|
||||||
/// Enable verbose logging
|
/// Enable verbose logging
|
||||||
#[clap(short, long)]
|
#[clap(short, long)]
|
||||||
pub verbose: bool,
|
pub verbose: bool,
|
||||||
|
|
||||||
|
/// Enable the puffin profiling server for debugging
|
||||||
|
#[cfg(feature = "enable-profiling")]
|
||||||
|
#[clap(long)]
|
||||||
|
pub enable_profiling: bool,
|
||||||
}
|
}
|
||||||
|
10
src/main.rs
10
src/main.rs
@ -49,6 +49,16 @@ pub async fn main() {
|
|||||||
log::debug!("Verbose logging enabled");
|
log::debug!("Verbose logging enabled");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If the binary was built with profiling support, enable it
|
||||||
|
#[cfg(feature = "enable-profiling")]
|
||||||
|
let _puffin_server: puffin_http::Server;
|
||||||
|
#[cfg(feature = "enable-profiling")]
|
||||||
|
if args.enable_profiling {
|
||||||
|
_puffin_server =
|
||||||
|
puffin_http::Server::new(&format!("0.0.0.0:{}", puffin_http::DEFAULT_PORT)).unwrap();
|
||||||
|
log::info!("Puffin profiling server started");
|
||||||
|
}
|
||||||
|
|
||||||
// Parse the config file
|
// Parse the config file
|
||||||
let config = Config::load(args.config_file).unwrap();
|
let config = Config::load(args.config_file).unwrap();
|
||||||
|
|
||||||
|
@ -119,6 +119,8 @@ impl Nat64 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl Nat64 {
|
impl Nat64 {
|
||||||
|
|
||||||
|
#[profiling::function]
|
||||||
async fn process_packet<'a>(
|
async fn process_packet<'a>(
|
||||||
&mut self,
|
&mut self,
|
||||||
packet: IpPacket<'a>,
|
packet: IpPacket<'a>,
|
||||||
|
@ -67,6 +67,7 @@ impl Nat64Table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Get or assign an IPv4 address for the given IPv6 address
|
/// Get or assign an IPv4 address for the given IPv6 address
|
||||||
|
#[profiling::function]
|
||||||
pub fn get_or_assign_ipv4(&mut self, ipv6: Ipv6Addr) -> Result<Ipv4Addr, TableError> {
|
pub fn get_or_assign_ipv4(&mut self, ipv6: Ipv6Addr) -> Result<Ipv4Addr, TableError> {
|
||||||
// Prune old reservations
|
// Prune old reservations
|
||||||
self.prune();
|
self.prune();
|
||||||
@ -100,6 +101,7 @@ impl Nat64Table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Try to find an IPv6 address for the given IPv4 address
|
/// Try to find an IPv6 address for the given IPv4 address
|
||||||
|
#[profiling::function]
|
||||||
pub fn get_reverse(&mut self, ipv4: Ipv4Addr) -> Result<Ipv6Addr, TableError> {
|
pub fn get_reverse(&mut self, ipv4: Ipv4Addr) -> Result<Ipv6Addr, TableError> {
|
||||||
// Prune old reservations
|
// Prune old reservations
|
||||||
self.prune();
|
self.prune();
|
||||||
@ -124,6 +126,7 @@ impl Nat64Table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Calculate the translated version of any address
|
/// Calculate the translated version of any address
|
||||||
|
#[profiling::function]
|
||||||
pub fn calculate_xlat_addr(
|
pub fn calculate_xlat_addr(
|
||||||
&mut self,
|
&mut self,
|
||||||
input: &IpAddr,
|
input: &IpAddr,
|
||||||
@ -176,6 +179,7 @@ impl Nat64Table {
|
|||||||
|
|
||||||
impl Nat64Table {
|
impl Nat64Table {
|
||||||
/// Prune old reservations
|
/// Prune old reservations
|
||||||
|
#[profiling::function]
|
||||||
pub fn prune(&mut self) {
|
pub fn prune(&mut self) {
|
||||||
let now = Instant::now();
|
let now = Instant::now();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user