diff --git a/src/main.rs b/src/main.rs index dcd5c25..7bcf3ef 100644 --- a/src/main.rs +++ b/src/main.rs @@ -30,7 +30,7 @@ pub async fn main() { let config = Config::load(args.config_file).unwrap(); // Create the NAT64 instance - let nat64 = Nat64::new( + let mut nat64 = Nat64::new( config.interface.address_v4, config.interface.address_v6, config.interface.pool, @@ -45,5 +45,6 @@ pub async fn main() { .await .unwrap(); - loop{} + // Handle packets + nat64.run().await.unwrap(); } diff --git a/src/nat/mod.rs b/src/nat/mod.rs index 51d4ca1..005932e 100644 --- a/src/nat/mod.rs +++ b/src/nat/mod.rs @@ -82,4 +82,36 @@ impl Nat64 { Ok(Self { interface }) } + + + /// Block and run the NAT instance. This will handle all packets + pub async fn run(&mut self) -> Result<(), std::io::Error> { + // Read the interface MTU + let mtu: u16 = + std::fs::read_to_string(format!("/sys/class/net/{}/mtu", self.interface.name())) + .expect("Failed to read interface MTU").strip_suffix("\n").unwrap() + .parse().unwrap(); + + // Allocate a buffer for incoming packets + // NOTE: Add 4 to account for the Tun header + let mut buffer = vec![0; (mtu as usize) + 4]; + + loop { + // Read incoming packet + let len = self.interface.recv(&mut buffer)?; + + // Process the packet + let response = self.process(&buffer[..len]).await?; + + // If there is a response, send it + if let Some(response) = response { + self.interface.send(&response)?; + } + } + } + + async fn process(&mut self, packet: &[u8]) -> Result>, std::io::Error> { + log::debug!("Processing packet: {:?}", packet); + Ok(None) + } }