ipv6option.rs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625
  1. use super::{Error, Result};
  2. #[cfg(feature = "proto-rpl")]
  3. use super::{RplHopByHopPacket, RplHopByHopRepr};
  4. use core::fmt;
  5. enum_with_unknown! {
  6. /// IPv6 Extension Header Option Type
  7. pub enum Type(u8) {
  8. /// 1 byte of padding
  9. Pad1 = 0,
  10. /// Multiple bytes of padding
  11. PadN = 1,
  12. /// RPL Option
  13. Rpl = 0x63,
  14. }
  15. }
  16. impl fmt::Display for Type {
  17. fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
  18. match *self {
  19. Type::Pad1 => write!(f, "Pad1"),
  20. Type::PadN => write!(f, "PadN"),
  21. Type::Rpl => write!(f, "RPL"),
  22. Type::Unknown(id) => write!(f, "{id}"),
  23. }
  24. }
  25. }
  26. enum_with_unknown! {
  27. /// Action required when parsing the given IPv6 Extension
  28. /// Header Option Type fails
  29. pub enum FailureType(u8) {
  30. /// Skip this option and continue processing the packet
  31. Skip = 0b00000000,
  32. /// Discard the containing packet
  33. Discard = 0b01000000,
  34. /// Discard the containing packet and notify the sender
  35. DiscardSendAll = 0b10000000,
  36. /// Discard the containing packet and only notify the sender
  37. /// if the sender is a unicast address
  38. DiscardSendUnicast = 0b11000000,
  39. }
  40. }
  41. impl fmt::Display for FailureType {
  42. fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
  43. match *self {
  44. FailureType::Skip => write!(f, "skip"),
  45. FailureType::Discard => write!(f, "discard"),
  46. FailureType::DiscardSendAll => write!(f, "discard and send error"),
  47. FailureType::DiscardSendUnicast => write!(f, "discard and send error if unicast"),
  48. FailureType::Unknown(id) => write!(f, "Unknown({id})"),
  49. }
  50. }
  51. }
  52. impl From<Type> for FailureType {
  53. fn from(other: Type) -> FailureType {
  54. let raw: u8 = other.into();
  55. Self::from(raw & 0b11000000u8)
  56. }
  57. }
  58. /// A read/write wrapper around an IPv6 Extension Header Option.
  59. #[derive(Debug, PartialEq, Eq)]
  60. #[cfg_attr(feature = "defmt", derive(defmt::Format))]
  61. pub struct Ipv6Option<T: AsRef<[u8]>> {
  62. buffer: T,
  63. }
  64. // Format of Option
  65. //
  66. // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- - - - - - - - -
  67. // | Option Type | Opt Data Len | Option Data
  68. // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- - - - - - - - -
  69. //
  70. //
  71. // See https://tools.ietf.org/html/rfc8200#section-4.2 for details.
  72. mod field {
  73. #![allow(non_snake_case)]
  74. use crate::wire::field::*;
  75. // 8-bit identifier of the type of option.
  76. pub const TYPE: usize = 0;
  77. // 8-bit unsigned integer. Length of the DATA field of this option, in octets.
  78. pub const LENGTH: usize = 1;
  79. // Variable-length field. Option-Type-specific data.
  80. pub const fn DATA(length: u8) -> Field {
  81. 2..length as usize + 2
  82. }
  83. }
  84. impl<T: AsRef<[u8]>> Ipv6Option<T> {
  85. /// Create a raw octet buffer with an IPv6 Extension Header Option structure.
  86. pub const fn new_unchecked(buffer: T) -> Ipv6Option<T> {
  87. Ipv6Option { buffer }
  88. }
  89. /// Shorthand for a combination of [new_unchecked] and [check_len].
  90. ///
  91. /// [new_unchecked]: #method.new_unchecked
  92. /// [check_len]: #method.check_len
  93. pub fn new_checked(buffer: T) -> Result<Ipv6Option<T>> {
  94. let opt = Self::new_unchecked(buffer);
  95. opt.check_len()?;
  96. Ok(opt)
  97. }
  98. /// Ensure that no accessor method will panic if called.
  99. /// Returns `Err(Error)` if the buffer is too short.
  100. ///
  101. /// The result of this check is invalidated by calling [set_data_len].
  102. ///
  103. /// [set_data_len]: #method.set_data_len
  104. pub fn check_len(&self) -> Result<()> {
  105. let data = self.buffer.as_ref();
  106. let len = data.len();
  107. if len < field::LENGTH {
  108. return Err(Error);
  109. }
  110. if self.option_type() == Type::Pad1 {
  111. return Ok(());
  112. }
  113. if len == field::LENGTH {
  114. return Err(Error);
  115. }
  116. let df = field::DATA(data[field::LENGTH]);
  117. if len < df.end {
  118. return Err(Error);
  119. }
  120. Ok(())
  121. }
  122. /// Consume the ipv6 option, returning the underlying buffer.
  123. pub fn into_inner(self) -> T {
  124. self.buffer
  125. }
  126. /// Return the option type.
  127. #[inline]
  128. pub fn option_type(&self) -> Type {
  129. let data = self.buffer.as_ref();
  130. Type::from(data[field::TYPE])
  131. }
  132. /// Return the length of the data.
  133. ///
  134. /// # Panics
  135. /// This function panics if this is an 1-byte padding option.
  136. #[inline]
  137. pub fn data_len(&self) -> u8 {
  138. let data = self.buffer.as_ref();
  139. data[field::LENGTH]
  140. }
  141. }
  142. impl<'a, T: AsRef<[u8]> + ?Sized> Ipv6Option<&'a T> {
  143. /// Return the option data.
  144. ///
  145. /// # Panics
  146. /// This function panics if this is an 1-byte padding option.
  147. #[inline]
  148. pub fn data(&self) -> &'a [u8] {
  149. let len = self.data_len();
  150. let data = self.buffer.as_ref();
  151. &data[field::DATA(len)]
  152. }
  153. }
  154. impl<T: AsRef<[u8]> + AsMut<[u8]>> Ipv6Option<T> {
  155. /// Set the option type.
  156. #[inline]
  157. pub fn set_option_type(&mut self, value: Type) {
  158. let data = self.buffer.as_mut();
  159. data[field::TYPE] = value.into();
  160. }
  161. /// Set the option data length.
  162. ///
  163. /// # Panics
  164. /// This function panics if this is an 1-byte padding option.
  165. #[inline]
  166. pub fn set_data_len(&mut self, value: u8) {
  167. let data = self.buffer.as_mut();
  168. data[field::LENGTH] = value;
  169. }
  170. }
  171. impl<'a, T: AsRef<[u8]> + AsMut<[u8]> + ?Sized> Ipv6Option<&'a mut T> {
  172. /// Return a mutable pointer to the option data.
  173. ///
  174. /// # Panics
  175. /// This function panics if this is an 1-byte padding option.
  176. #[inline]
  177. pub fn data_mut(&mut self) -> &mut [u8] {
  178. let len = self.data_len();
  179. let data = self.buffer.as_mut();
  180. &mut data[field::DATA(len)]
  181. }
  182. }
  183. impl<'a, T: AsRef<[u8]> + ?Sized> fmt::Display for Ipv6Option<&'a T> {
  184. fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
  185. match Repr::parse(self) {
  186. Ok(repr) => write!(f, "{repr}"),
  187. Err(err) => {
  188. write!(f, "IPv6 Extension Option ({err})")?;
  189. Ok(())
  190. }
  191. }
  192. }
  193. }
  194. /// A high-level representation of an IPv6 Extension Header Option.
  195. #[derive(Debug, PartialEq, Eq, Clone, Copy)]
  196. #[cfg_attr(feature = "defmt", derive(defmt::Format))]
  197. #[non_exhaustive]
  198. pub enum Repr<'a> {
  199. Pad1,
  200. PadN(u8),
  201. #[cfg(feature = "proto-rpl")]
  202. Rpl(RplHopByHopRepr),
  203. Unknown {
  204. type_: Type,
  205. length: u8,
  206. data: &'a [u8],
  207. },
  208. }
  209. impl<'a> Repr<'a> {
  210. /// Parse an IPv6 Extension Header Option and return a high-level representation.
  211. pub fn parse<T>(opt: &Ipv6Option<&'a T>) -> Result<Repr<'a>>
  212. where
  213. T: AsRef<[u8]> + ?Sized,
  214. {
  215. match opt.option_type() {
  216. Type::Pad1 => Ok(Repr::Pad1),
  217. Type::PadN => Ok(Repr::PadN(opt.data_len())),
  218. #[cfg(feature = "proto-rpl")]
  219. Type::Rpl => Ok(Repr::Rpl(RplHopByHopRepr::parse(
  220. &RplHopByHopPacket::new_checked(opt.data())?,
  221. ))),
  222. #[cfg(not(feature = "proto-rpl"))]
  223. Type::Rpl => Ok(Repr::Unknown {
  224. type_: Type::Rpl,
  225. length: opt.data_len(),
  226. data: opt.data(),
  227. }),
  228. unknown_type @ Type::Unknown(_) => Ok(Repr::Unknown {
  229. type_: unknown_type,
  230. length: opt.data_len(),
  231. data: opt.data(),
  232. }),
  233. }
  234. }
  235. /// Return the length of a header that will be emitted from this high-level representation.
  236. pub const fn buffer_len(&self) -> usize {
  237. match *self {
  238. Repr::Pad1 => 1,
  239. Repr::PadN(length) => field::DATA(length).end,
  240. #[cfg(feature = "proto-rpl")]
  241. Repr::Rpl(opt) => field::DATA(opt.buffer_len() as u8).end,
  242. Repr::Unknown { length, .. } => field::DATA(length).end,
  243. }
  244. }
  245. /// Emit a high-level representation into an IPv6 Extension Header Option.
  246. pub fn emit<T: AsRef<[u8]> + AsMut<[u8]> + ?Sized>(&self, opt: &mut Ipv6Option<&'a mut T>) {
  247. match *self {
  248. Repr::Pad1 => opt.set_option_type(Type::Pad1),
  249. Repr::PadN(len) => {
  250. opt.set_option_type(Type::PadN);
  251. opt.set_data_len(len);
  252. // Ensure all padding bytes are set to zero.
  253. for x in opt.data_mut().iter_mut() {
  254. *x = 0
  255. }
  256. }
  257. #[cfg(feature = "proto-rpl")]
  258. Repr::Rpl(rpl) => {
  259. opt.set_option_type(Type::Rpl);
  260. opt.set_data_len(4);
  261. rpl.emit(&mut crate::wire::RplHopByHopPacket::new_unchecked(
  262. opt.data_mut(),
  263. ));
  264. }
  265. Repr::Unknown {
  266. type_,
  267. length,
  268. data,
  269. } => {
  270. opt.set_option_type(type_);
  271. opt.set_data_len(length);
  272. opt.data_mut().copy_from_slice(&data[..length as usize]);
  273. }
  274. }
  275. }
  276. }
  277. /// A iterator for IPv6 options.
  278. #[derive(Debug)]
  279. #[cfg_attr(feature = "defmt", derive(defmt::Format))]
  280. pub struct Ipv6OptionsIterator<'a> {
  281. pos: usize,
  282. length: usize,
  283. data: &'a [u8],
  284. hit_error: bool,
  285. }
  286. impl<'a> Ipv6OptionsIterator<'a> {
  287. /// Create a new `Ipv6OptionsIterator`, used to iterate over the
  288. /// options contained in a IPv6 Extension Header (e.g. the Hop-by-Hop
  289. /// header).
  290. ///
  291. /// # Panics
  292. /// This function panics if the `length` provided is larger than the
  293. /// length of the `data` buffer.
  294. pub fn new(data: &'a [u8], length: usize) -> Ipv6OptionsIterator<'a> {
  295. assert!(length <= data.len());
  296. Ipv6OptionsIterator {
  297. pos: 0,
  298. hit_error: false,
  299. length,
  300. data,
  301. }
  302. }
  303. }
  304. impl<'a> Iterator for Ipv6OptionsIterator<'a> {
  305. type Item = Result<Repr<'a>>;
  306. fn next(&mut self) -> Option<Self::Item> {
  307. if self.pos < self.length && !self.hit_error {
  308. // If we still have data to parse and we have not previously
  309. // hit an error, attempt to parse the next option.
  310. match Ipv6Option::new_checked(&self.data[self.pos..]) {
  311. Ok(hdr) => match Repr::parse(&hdr) {
  312. Ok(repr) => {
  313. self.pos += repr.buffer_len();
  314. Some(Ok(repr))
  315. }
  316. Err(e) => {
  317. self.hit_error = true;
  318. Some(Err(e))
  319. }
  320. },
  321. Err(e) => {
  322. self.hit_error = true;
  323. Some(Err(e))
  324. }
  325. }
  326. } else {
  327. // If we failed to parse a previous option or hit the end of the
  328. // buffer, we do not continue to iterate.
  329. None
  330. }
  331. }
  332. }
  333. impl<'a> fmt::Display for Repr<'a> {
  334. fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
  335. write!(f, "IPv6 Option ")?;
  336. match *self {
  337. Repr::Pad1 => write!(f, "{} ", Type::Pad1),
  338. Repr::PadN(len) => write!(f, "{} length={} ", Type::PadN, len),
  339. #[cfg(feature = "proto-rpl")]
  340. Repr::Rpl(rpl) => write!(f, "{} {rpl}", Type::Rpl),
  341. Repr::Unknown { type_, length, .. } => write!(f, "{type_} length={length} "),
  342. }
  343. }
  344. }
  345. #[cfg(test)]
  346. mod test {
  347. use super::*;
  348. static IPV6OPTION_BYTES_PAD1: [u8; 1] = [0x0];
  349. static IPV6OPTION_BYTES_PADN: [u8; 3] = [0x1, 0x1, 0x0];
  350. static IPV6OPTION_BYTES_UNKNOWN: [u8; 5] = [0xff, 0x3, 0x0, 0x0, 0x0];
  351. #[cfg(feature = "proto-rpl")]
  352. static IPV6OPTION_BYTES_RPL: [u8; 6] = [0x63, 0x04, 0x00, 0x1e, 0x08, 0x00];
  353. #[test]
  354. fn test_check_len() {
  355. let bytes = [0u8];
  356. // zero byte buffer
  357. assert_eq!(
  358. Err(Error),
  359. Ipv6Option::new_unchecked(&bytes[..0]).check_len()
  360. );
  361. // pad1
  362. assert_eq!(
  363. Ok(()),
  364. Ipv6Option::new_unchecked(&IPV6OPTION_BYTES_PAD1).check_len()
  365. );
  366. // padn with truncated data
  367. assert_eq!(
  368. Err(Error),
  369. Ipv6Option::new_unchecked(&IPV6OPTION_BYTES_PADN[..2]).check_len()
  370. );
  371. // padn
  372. assert_eq!(
  373. Ok(()),
  374. Ipv6Option::new_unchecked(&IPV6OPTION_BYTES_PADN).check_len()
  375. );
  376. // unknown option type with truncated data
  377. assert_eq!(
  378. Err(Error),
  379. Ipv6Option::new_unchecked(&IPV6OPTION_BYTES_UNKNOWN[..4]).check_len()
  380. );
  381. assert_eq!(
  382. Err(Error),
  383. Ipv6Option::new_unchecked(&IPV6OPTION_BYTES_UNKNOWN[..1]).check_len()
  384. );
  385. // unknown type
  386. assert_eq!(
  387. Ok(()),
  388. Ipv6Option::new_unchecked(&IPV6OPTION_BYTES_UNKNOWN).check_len()
  389. );
  390. #[cfg(feature = "proto-rpl")]
  391. {
  392. assert_eq!(
  393. Ok(()),
  394. Ipv6Option::new_unchecked(&IPV6OPTION_BYTES_RPL).check_len()
  395. );
  396. }
  397. }
  398. #[test]
  399. #[should_panic(expected = "index out of bounds")]
  400. fn test_data_len() {
  401. let opt = Ipv6Option::new_unchecked(&IPV6OPTION_BYTES_PAD1);
  402. opt.data_len();
  403. }
  404. #[test]
  405. fn test_option_deconstruct() {
  406. // one octet of padding
  407. let opt = Ipv6Option::new_unchecked(&IPV6OPTION_BYTES_PAD1);
  408. assert_eq!(opt.option_type(), Type::Pad1);
  409. // two octets of padding
  410. let bytes: [u8; 2] = [0x1, 0x0];
  411. let opt = Ipv6Option::new_unchecked(&bytes);
  412. assert_eq!(opt.option_type(), Type::PadN);
  413. assert_eq!(opt.data_len(), 0);
  414. // three octets of padding
  415. let opt = Ipv6Option::new_unchecked(&IPV6OPTION_BYTES_PADN);
  416. assert_eq!(opt.option_type(), Type::PadN);
  417. assert_eq!(opt.data_len(), 1);
  418. assert_eq!(opt.data(), &[0]);
  419. // extra bytes in buffer
  420. let bytes: [u8; 10] = [0x1, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff];
  421. let opt = Ipv6Option::new_unchecked(&bytes);
  422. assert_eq!(opt.option_type(), Type::PadN);
  423. assert_eq!(opt.data_len(), 7);
  424. assert_eq!(opt.data(), &[0, 0, 0, 0, 0, 0, 0]);
  425. // unrecognized option
  426. let bytes: [u8; 1] = [0xff];
  427. let opt = Ipv6Option::new_unchecked(&bytes);
  428. assert_eq!(opt.option_type(), Type::Unknown(255));
  429. // unrecognized option without length and data
  430. assert_eq!(Ipv6Option::new_checked(&bytes), Err(Error));
  431. #[cfg(feature = "proto-rpl")]
  432. {
  433. let opt = Ipv6Option::new_unchecked(&IPV6OPTION_BYTES_RPL);
  434. assert_eq!(opt.option_type(), Type::Rpl);
  435. assert_eq!(opt.data_len(), 4);
  436. assert_eq!(opt.data(), &[0x00, 0x1e, 0x08, 0x00]);
  437. }
  438. }
  439. #[test]
  440. fn test_option_parse() {
  441. // one octet of padding
  442. let opt = Ipv6Option::new_unchecked(&IPV6OPTION_BYTES_PAD1);
  443. let pad1 = Repr::parse(&opt).unwrap();
  444. assert_eq!(pad1, Repr::Pad1);
  445. assert_eq!(pad1.buffer_len(), 1);
  446. // two or more octets of padding
  447. let opt = Ipv6Option::new_unchecked(&IPV6OPTION_BYTES_PADN);
  448. let padn = Repr::parse(&opt).unwrap();
  449. assert_eq!(padn, Repr::PadN(1));
  450. assert_eq!(padn.buffer_len(), 3);
  451. // unrecognized option type
  452. let data = [0u8; 3];
  453. let opt = Ipv6Option::new_unchecked(&IPV6OPTION_BYTES_UNKNOWN);
  454. let unknown = Repr::parse(&opt).unwrap();
  455. assert_eq!(
  456. unknown,
  457. Repr::Unknown {
  458. type_: Type::Unknown(255),
  459. length: 3,
  460. data: &data
  461. }
  462. );
  463. #[cfg(feature = "proto-rpl")]
  464. {
  465. let opt = Ipv6Option::new_unchecked(&IPV6OPTION_BYTES_RPL);
  466. let rpl = Repr::parse(&opt).unwrap();
  467. assert_eq!(
  468. rpl,
  469. Repr::Rpl(crate::wire::RplHopByHopRepr {
  470. down: false,
  471. rank_error: false,
  472. forwarding_error: false,
  473. instance_id: crate::wire::RplInstanceId::from(0x1e),
  474. sender_rank: 0x0800,
  475. })
  476. );
  477. }
  478. }
  479. #[test]
  480. fn test_option_emit() {
  481. let repr = Repr::Pad1;
  482. let mut bytes = [255u8; 1]; // don't assume bytes are initialized to zero
  483. let mut opt = Ipv6Option::new_unchecked(&mut bytes);
  484. repr.emit(&mut opt);
  485. assert_eq!(opt.into_inner(), &IPV6OPTION_BYTES_PAD1);
  486. let repr = Repr::PadN(1);
  487. let mut bytes = [255u8; 3]; // don't assume bytes are initialized to zero
  488. let mut opt = Ipv6Option::new_unchecked(&mut bytes);
  489. repr.emit(&mut opt);
  490. assert_eq!(opt.into_inner(), &IPV6OPTION_BYTES_PADN);
  491. let data = [0u8; 3];
  492. let repr = Repr::Unknown {
  493. type_: Type::Unknown(255),
  494. length: 3,
  495. data: &data,
  496. };
  497. let mut bytes = [254u8; 5]; // don't assume bytes are initialized to zero
  498. let mut opt = Ipv6Option::new_unchecked(&mut bytes);
  499. repr.emit(&mut opt);
  500. assert_eq!(opt.into_inner(), &IPV6OPTION_BYTES_UNKNOWN);
  501. #[cfg(feature = "proto-rpl")]
  502. {
  503. let opt = Ipv6Option::new_unchecked(&IPV6OPTION_BYTES_RPL);
  504. let rpl = Repr::parse(&opt).unwrap();
  505. let mut bytes = [0u8; 6];
  506. rpl.emit(&mut Ipv6Option::new_unchecked(&mut bytes));
  507. assert_eq!(&bytes, &IPV6OPTION_BYTES_RPL);
  508. }
  509. }
  510. #[test]
  511. fn test_failure_type() {
  512. let mut failure_type: FailureType = Type::Pad1.into();
  513. assert_eq!(failure_type, FailureType::Skip);
  514. failure_type = Type::PadN.into();
  515. assert_eq!(failure_type, FailureType::Skip);
  516. failure_type = Type::Unknown(0b01000001).into();
  517. assert_eq!(failure_type, FailureType::Discard);
  518. failure_type = Type::Unknown(0b10100000).into();
  519. assert_eq!(failure_type, FailureType::DiscardSendAll);
  520. failure_type = Type::Unknown(0b11000100).into();
  521. assert_eq!(failure_type, FailureType::DiscardSendUnicast);
  522. }
  523. #[test]
  524. fn test_options_iter() {
  525. let options = [
  526. 0x00, 0x01, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x11, 0x00, 0x01,
  527. 0x08, 0x00,
  528. ];
  529. let mut iterator = Ipv6OptionsIterator::new(&options, 0);
  530. assert_eq!(iterator.next(), None);
  531. iterator = Ipv6OptionsIterator::new(&options, 16);
  532. for (i, opt) in iterator.enumerate() {
  533. match (i, opt) {
  534. (0, Ok(Repr::Pad1)) => continue,
  535. (1, Ok(Repr::PadN(1))) => continue,
  536. (2, Ok(Repr::PadN(2))) => continue,
  537. (3, Ok(Repr::PadN(0))) => continue,
  538. (4, Ok(Repr::Pad1)) => continue,
  539. (
  540. 5,
  541. Ok(Repr::Unknown {
  542. type_: Type::Unknown(0x11),
  543. length: 0,
  544. ..
  545. }),
  546. ) => continue,
  547. (6, Err(Error)) => continue,
  548. (i, res) => panic!("Unexpected option `{res:?}` at index {i}"),
  549. }
  550. }
  551. }
  552. #[test]
  553. #[should_panic(expected = "length <= data.len()")]
  554. fn test_options_iter_truncated() {
  555. let options = [0x01, 0x02, 0x00, 0x00];
  556. let _ = Ipv6OptionsIterator::new(&options, 5);
  557. }
  558. }