Browse Source

arp: ignore ARP packets that are not REQUEST or RESPONSE.

Dario Nieuwenhuis 3 years ago
parent
commit
db7b2249ed
1 changed files with 6 additions and 0 deletions
  1. 6 0
      src/iface/interface.rs

+ 6 - 0
src/iface/interface.rs

@@ -1011,6 +1011,12 @@ impl<'a> InterfaceInner<'a> {
                     return Ok(None);
                 }
 
+                // Only process REQUEST and RESPONSE.
+                if let ArpOperation::Unknown(_) = operation {
+                    net_debug!("arp: unknown operation code");
+                    return Err(Error::Malformed);
+                }
+
                 // Discard packets with non-unicast source addresses.
                 if !source_protocol_addr.is_unicast() || !source_hardware_addr.is_unicast() {
                     net_debug!("arp: non-unicast source address");