Browse Source

arp; reject packets with source address not in our network.

Fixes #536
Dario Nieuwenhuis 3 years ago
parent
commit
6951ccf297
1 changed files with 5 additions and 0 deletions
  1. 5 0
      src/iface/interface.rs

+ 5 - 0
src/iface/interface.rs

@@ -1017,6 +1017,11 @@ impl<'a> InterfaceInner<'a> {
                     return Err(Error::Malformed);
                 }
 
+                if !self.in_same_network(&IpAddress::Ipv4(source_protocol_addr)) {
+                    net_debug!("arp: source IP address not in same network as us");
+                    return Err(Error::Malformed);
+                }
+
                 // Fill the ARP cache from any ARP packet aimed at us (both request or response).
                 // We fill from requests too because if someone is requesting our address they
                 // are probably going to talk to us, so we avoid having to request their address