1

Packet processing

This commit is contained in:
Evan Pratten 2023-07-14 16:16:41 -04:00
parent 63fff79c33
commit db0f73fd21
2 changed files with 35 additions and 2 deletions

View File

@ -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();
}

View File

@ -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<Option<Vec<u8>>, std::io::Error> {
log::debug!("Processing packet: {:?}", packet);
Ok(None)
}
}