Преглед изворни кода

Check for correct header length field for `IPv6Routing::Type2`

An IPv6Routing::Type2 header could contain a header length that does not
match the real length of such a header. Since the header length is used
for calculating offsets in the getter/setter/payload functions, we need
to check if this is correctly set.
Thibaut Vandervelden пре 2 година
родитељ
комит
3057ee5b30
1 измењених фајлова са 7 додато и 0 уклоњено
  1. 7 0
      src/wire/ipv6routing.rs

+ 7 - 0
src/wire/ipv6routing.rs

@@ -173,6 +173,13 @@ impl<T: AsRef<[u8]>> Header<T> {
             return Err(Error);
         }
 
+        // The header lenght field could be wrong and thus we need to check this as well:
+        if matches!(self.routing_type(), Type::Type2)
+            && field::DATA(self.header_len()).end != field::HOME_ADDRESS.end
+        {
+            return Err(Error);
+        }
+
         Ok(())
     }