diff --git a/schemes/ipd/src/interface/ethernet.rs b/schemes/ipd/src/interface/ethernet.rs index 4c0bb785be9f2fa1ae521e29e07b18c2bc50b5cb..d914a784316b034d87a927e24306044eb623f416 100644 --- a/schemes/ipd/src/interface/ethernet.rs +++ b/schemes/ipd/src/interface/ethernet.rs @@ -37,6 +37,10 @@ impl Interface for EthernetInterface { self.ip } + fn routable(&self, dst: Ipv4Addr) -> bool { + dst != Ipv4Addr::LOOPBACK + } + fn arp_event(&mut self) -> Result<()> { loop { let mut bytes = [0; 65536]; diff --git a/schemes/ipd/src/interface/loopback.rs b/schemes/ipd/src/interface/loopback.rs index 61c7e8c7693a8d7160d9c7cd24bd1685ced45ac7..a957ef8818ab74943a1650c3f04f58c37249b758 100644 --- a/schemes/ipd/src/interface/loopback.rs +++ b/schemes/ipd/src/interface/loopback.rs @@ -4,14 +4,12 @@ use std::io::Result; use interface::Interface; pub struct LoopbackInterface { - ip: Ipv4Addr, packets: Vec<Ipv4> } impl LoopbackInterface { pub fn new() -> Self { LoopbackInterface { - ip: Ipv4Addr::LOOPBACK, packets: Vec::new() } } @@ -19,7 +17,11 @@ impl LoopbackInterface { impl Interface for LoopbackInterface { fn ip(&self) -> Ipv4Addr { - self.ip + Ipv4Addr::LOOPBACK + } + + fn routable(&self, dst: Ipv4Addr) -> bool { + dst == Ipv4Addr::LOOPBACK } fn recv(&mut self) -> Result<Vec<Ipv4>> { diff --git a/schemes/ipd/src/interface/mod.rs b/schemes/ipd/src/interface/mod.rs index 279e2beab93d3cb2c7c6df5d4e951692b01d6814..2fa89d9d2e9c8642de2471e30918cda93030f9a7 100644 --- a/schemes/ipd/src/interface/mod.rs +++ b/schemes/ipd/src/interface/mod.rs @@ -9,6 +9,7 @@ mod loopback; pub trait Interface { fn ip(&self) -> Ipv4Addr; + fn routable(&self, dst: Ipv4Addr) -> bool; fn recv(&mut self) -> Result<Vec<Ipv4>>; fn send(&mut self, ip: Ipv4) -> Result<usize>; diff --git a/schemes/ipd/src/main.rs b/schemes/ipd/src/main.rs index 7c4fcaf646bfab1bd93b6595bad3847d902f60d1..52ae0cbdca4242e2a7340ef01e3ef42187a0bd61 100644 --- a/schemes/ipd/src/main.rs +++ b/schemes/ipd/src/main.rs @@ -194,7 +194,7 @@ impl SchemeMut for Ipd { if let Some(mut ip) = Ipv4::from_bytes(buf) { for mut interface in self.interfaces.iter_mut() { let if_ip = interface.ip(); - if ip.header.src == if_ip || ip.header.src == Ipv4Addr::NULL { + if ip.header.src == if_ip || (ip.header.src == Ipv4Addr::NULL && interface.routable(ip.header.dst)) { ip.header.src = if_ip; ip.header.proto = handle.proto;