mod.rs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  1. /*! Low-level packet access and construction.
  2. The `wire` module deals with the packet *representation*. It provides two levels
  3. of functionality.
  4. * First, it provides functions to extract fields from sequences of octets,
  5. and to insert fields into sequences of octets. This happens `Packet` family of
  6. structures, e.g. [EthernetFrame] or [Ipv4Packet].
  7. * Second, in cases where the space of valid field values is much smaller than the space
  8. of possible field values, it provides a compact, high-level representation
  9. of packet data that can be parsed from and emitted into a sequence of octets.
  10. This happens through the `Repr` family of structs and enums, e.g. [ArpRepr] or [Ipv4Repr].
  11. [EthernetFrame]: struct.EthernetFrame.html
  12. [Ipv4Packet]: struct.Ipv4Packet.html
  13. [ArpRepr]: enum.ArpRepr.html
  14. [Ipv4Repr]: struct.Ipv4Repr.html
  15. The functions in the `wire` module are designed for use together with `-Cpanic=abort`.
  16. The `Packet` family of data structures guarantees that, if the `Packet::check_len()` method
  17. returned `Ok(())`, then no accessor or setter method will panic; however, the guarantee
  18. provided by `Packet::check_len()` may no longer hold after changing certain fields,
  19. which are listed in the documentation for the specific packet.
  20. The `Packet::new_checked` method is a shorthand for a combination of `Packet::new_unchecked`
  21. and `Packet::check_len`.
  22. When parsing untrusted input, it is *necessary* to use `Packet::new_checked()`;
  23. so long as the buffer is not modified, no accessor will fail.
  24. When emitting output, though, it is *incorrect* to use `Packet::new_checked()`;
  25. the length check is likely to succeed on a zeroed buffer, but fail on a buffer
  26. filled with data from a previous packet, such as when reusing buffers, resulting
  27. in nondeterministic panics with some network devices but not others.
  28. The buffer length for emission is not calculated by the `Packet` layer.
  29. In the `Repr` family of data structures, the `Repr::parse()` method never panics
  30. as long as `Packet::new_checked()` (or `Packet::check_len()`) has succeeded, and
  31. the `Repr::emit()` method never panics as long as the underlying buffer is exactly
  32. `Repr::buffer_len()` octets long.
  33. # Examples
  34. To emit an IP packet header into an octet buffer, and then parse it back:
  35. ```rust
  36. # #[cfg(feature = "proto-ipv4")]
  37. # {
  38. use smoltcp::phy::ChecksumCapabilities;
  39. use smoltcp::wire::*;
  40. let repr = Ipv4Repr {
  41. src_addr: Ipv4Address::new(10, 0, 0, 1),
  42. dst_addr: Ipv4Address::new(10, 0, 0, 2),
  43. next_header: IpProtocol::Tcp,
  44. payload_len: 10,
  45. hop_limit: 64,
  46. };
  47. let mut buffer = vec![0; repr.buffer_len() + repr.payload_len];
  48. { // emission
  49. let mut packet = Ipv4Packet::new_unchecked(&mut buffer);
  50. repr.emit(&mut packet, &ChecksumCapabilities::default());
  51. }
  52. { // parsing
  53. let packet = Ipv4Packet::new_checked(&buffer)
  54. .expect("truncated packet");
  55. let parsed = Ipv4Repr::parse(&packet, &ChecksumCapabilities::default())
  56. .expect("malformed packet");
  57. assert_eq!(repr, parsed);
  58. }
  59. # }
  60. ```
  61. */
  62. mod field {
  63. pub type Field = ::core::ops::Range<usize>;
  64. pub type Rest = ::core::ops::RangeFrom<usize>;
  65. }
  66. pub mod pretty_print;
  67. #[cfg(all(feature = "proto-ipv4", feature = "medium-ethernet"))]
  68. mod arp;
  69. #[cfg(feature = "proto-dhcpv4")]
  70. pub(crate) mod dhcpv4;
  71. #[cfg(feature = "proto-dns")]
  72. pub(crate) mod dns;
  73. #[cfg(feature = "medium-ethernet")]
  74. mod ethernet;
  75. #[cfg(any(feature = "proto-ipv4", feature = "proto-ipv6"))]
  76. mod icmp;
  77. #[cfg(feature = "proto-ipv4")]
  78. mod icmpv4;
  79. #[cfg(feature = "proto-ipv6")]
  80. mod icmpv6;
  81. #[cfg(feature = "medium-ieee802154")]
  82. pub mod ieee802154;
  83. #[cfg(feature = "proto-igmp")]
  84. mod igmp;
  85. pub(crate) mod ip;
  86. #[cfg(feature = "proto-ipv4")]
  87. mod ipv4;
  88. #[cfg(feature = "proto-ipv6")]
  89. mod ipv6;
  90. #[cfg(feature = "proto-ipv6")]
  91. mod ipv6fragment;
  92. #[cfg(feature = "proto-ipv6")]
  93. mod ipv6hopbyhop;
  94. #[cfg(feature = "proto-ipv6")]
  95. mod ipv6option;
  96. #[cfg(feature = "proto-ipv6")]
  97. mod ipv6routing;
  98. #[cfg(feature = "proto-ipv6")]
  99. mod mld;
  100. #[cfg(all(
  101. feature = "proto-ipv6",
  102. any(feature = "medium-ethernet", feature = "medium-ieee802154")
  103. ))]
  104. mod ndisc;
  105. #[cfg(all(
  106. feature = "proto-ipv6",
  107. any(feature = "medium-ethernet", feature = "medium-ieee802154")
  108. ))]
  109. mod ndiscoption;
  110. #[cfg(feature = "proto-rpl")]
  111. mod rpl;
  112. #[cfg(all(feature = "proto-sixlowpan", feature = "medium-ieee802154"))]
  113. mod sixlowpan;
  114. mod tcp;
  115. mod udp;
  116. use core::fmt;
  117. use crate::phy::Medium;
  118. pub use self::pretty_print::PrettyPrinter;
  119. #[cfg(feature = "medium-ethernet")]
  120. pub use self::ethernet::{
  121. Address as EthernetAddress, EtherType as EthernetProtocol, Frame as EthernetFrame,
  122. Repr as EthernetRepr, HEADER_LEN as ETHERNET_HEADER_LEN,
  123. };
  124. #[cfg(all(feature = "proto-ipv4", feature = "medium-ethernet"))]
  125. pub use self::arp::{
  126. Hardware as ArpHardware, Operation as ArpOperation, Packet as ArpPacket, Repr as ArpRepr,
  127. };
  128. #[cfg(feature = "proto-rpl")]
  129. pub use self::rpl::{
  130. data::HopByHopOption as RplHopByHopRepr, data::Packet as RplHopByHopPacket,
  131. options::Packet as RplOptionPacket, options::Repr as RplOptionRepr,
  132. InstanceId as RplInstanceId, Repr as RplRepr,
  133. };
  134. #[cfg(all(feature = "proto-sixlowpan", feature = "medium-ieee802154"))]
  135. pub use self::sixlowpan::{
  136. frag::{Key as SixlowpanFragKey, Packet as SixlowpanFragPacket, Repr as SixlowpanFragRepr},
  137. iphc::{Packet as SixlowpanIphcPacket, Repr as SixlowpanIphcRepr},
  138. nhc::{
  139. ExtHeaderPacket as SixlowpanExtHeaderPacket, ExtHeaderRepr as SixlowpanExtHeaderRepr,
  140. NhcPacket as SixlowpanNhcPacket, UdpNhcPacket as SixlowpanUdpNhcPacket,
  141. UdpNhcRepr as SixlowpanUdpNhcRepr,
  142. },
  143. AddressContext as SixlowpanAddressContext, NextHeader as SixlowpanNextHeader, SixlowpanPacket,
  144. };
  145. #[cfg(feature = "medium-ieee802154")]
  146. pub use self::ieee802154::{
  147. Address as Ieee802154Address, AddressingMode as Ieee802154AddressingMode,
  148. Frame as Ieee802154Frame, FrameType as Ieee802154FrameType,
  149. FrameVersion as Ieee802154FrameVersion, Pan as Ieee802154Pan, Repr as Ieee802154Repr,
  150. };
  151. pub use self::ip::{
  152. Address as IpAddress, Cidr as IpCidr, Endpoint as IpEndpoint,
  153. ListenEndpoint as IpListenEndpoint, Protocol as IpProtocol, Repr as IpRepr,
  154. Version as IpVersion,
  155. };
  156. #[cfg(feature = "proto-ipv4")]
  157. pub use self::ipv4::{
  158. Address as Ipv4Address, Cidr as Ipv4Cidr, Key as Ipv4FragKey, Packet as Ipv4Packet,
  159. Repr as Ipv4Repr, HEADER_LEN as IPV4_HEADER_LEN, MIN_MTU as IPV4_MIN_MTU,
  160. };
  161. #[cfg(feature = "proto-ipv6")]
  162. pub use self::ipv6::{
  163. Address as Ipv6Address, Cidr as Ipv6Cidr, Packet as Ipv6Packet, Repr as Ipv6Repr,
  164. HEADER_LEN as IPV6_HEADER_LEN, MIN_MTU as IPV6_MIN_MTU,
  165. };
  166. #[cfg(feature = "proto-ipv6")]
  167. pub use self::ipv6option::{
  168. FailureType as Ipv6OptionFailureType, Ipv6Option, Repr as Ipv6OptionRepr,
  169. Type as Ipv6OptionType,
  170. };
  171. #[cfg(feature = "proto-ipv6")]
  172. pub use self::ipv6hopbyhop::{Header as Ipv6HopByHopHeader, Repr as Ipv6HopByHopRepr};
  173. #[cfg(feature = "proto-ipv6")]
  174. pub use self::ipv6fragment::{Header as Ipv6FragmentHeader, Repr as Ipv6FragmentRepr};
  175. #[cfg(feature = "proto-ipv6")]
  176. pub use self::ipv6routing::{
  177. Header as Ipv6RoutingHeader, Repr as Ipv6RoutingRepr, Type as Ipv6RoutingType,
  178. };
  179. #[cfg(feature = "proto-ipv4")]
  180. pub use self::icmpv4::{
  181. DstUnreachable as Icmpv4DstUnreachable, Message as Icmpv4Message, Packet as Icmpv4Packet,
  182. ParamProblem as Icmpv4ParamProblem, Redirect as Icmpv4Redirect, Repr as Icmpv4Repr,
  183. TimeExceeded as Icmpv4TimeExceeded,
  184. };
  185. #[cfg(feature = "proto-igmp")]
  186. pub use self::igmp::{IgmpVersion, Packet as IgmpPacket, Repr as IgmpRepr};
  187. #[cfg(feature = "proto-ipv6")]
  188. pub use self::icmpv6::{
  189. DstUnreachable as Icmpv6DstUnreachable, Message as Icmpv6Message, Packet as Icmpv6Packet,
  190. ParamProblem as Icmpv6ParamProblem, Repr as Icmpv6Repr, TimeExceeded as Icmpv6TimeExceeded,
  191. };
  192. #[cfg(any(feature = "proto-ipv4", feature = "proto-ipv6"))]
  193. pub use self::icmp::Repr as IcmpRepr;
  194. #[cfg(all(
  195. feature = "proto-ipv6",
  196. any(feature = "medium-ethernet", feature = "medium-ieee802154")
  197. ))]
  198. pub use self::ndisc::{
  199. NeighborFlags as NdiscNeighborFlags, Repr as NdiscRepr, RouterFlags as NdiscRouterFlags,
  200. };
  201. #[cfg(all(
  202. feature = "proto-ipv6",
  203. any(feature = "medium-ethernet", feature = "medium-ieee802154")
  204. ))]
  205. pub use self::ndiscoption::{
  206. NdiscOption, PrefixInfoFlags as NdiscPrefixInfoFlags,
  207. PrefixInformation as NdiscPrefixInformation, RedirectedHeader as NdiscRedirectedHeader,
  208. Repr as NdiscOptionRepr, Type as NdiscOptionType,
  209. };
  210. #[cfg(feature = "proto-ipv6")]
  211. pub use self::mld::{AddressRecord as MldAddressRecord, Repr as MldRepr};
  212. pub use self::udp::{Packet as UdpPacket, Repr as UdpRepr, HEADER_LEN as UDP_HEADER_LEN};
  213. pub use self::tcp::{
  214. Control as TcpControl, Packet as TcpPacket, Repr as TcpRepr, SeqNumber as TcpSeqNumber,
  215. TcpOption, HEADER_LEN as TCP_HEADER_LEN,
  216. };
  217. #[cfg(feature = "proto-dhcpv4")]
  218. pub use self::dhcpv4::{
  219. DhcpOption, DhcpOptionWriter, MessageType as DhcpMessageType, Packet as DhcpPacket,
  220. Repr as DhcpRepr, CLIENT_PORT as DHCP_CLIENT_PORT,
  221. MAX_DNS_SERVER_COUNT as DHCP_MAX_DNS_SERVER_COUNT, SERVER_PORT as DHCP_SERVER_PORT,
  222. };
  223. #[cfg(feature = "proto-dns")]
  224. pub use self::dns::{
  225. Flags as DnsFlags, Opcode as DnsOpcode, Packet as DnsPacket, Repr as DnsRepr,
  226. Type as DnsQueryType,
  227. };
  228. /// Parsing a packet failed.
  229. ///
  230. /// Either it is malformed, or it is not supported by smoltcp.
  231. #[derive(Debug, Clone, Copy, PartialEq, Eq)]
  232. #[cfg_attr(feature = "defmt", derive(defmt::Format))]
  233. pub struct Error;
  234. #[cfg(feature = "std")]
  235. impl std::error::Error for Error {}
  236. impl fmt::Display for Error {
  237. fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
  238. write!(f, "wire::Error")
  239. }
  240. }
  241. pub type Result<T> = core::result::Result<T, Error>;
  242. /// Representation of an hardware address, such as an Ethernet address or an IEEE802.15.4 address.
  243. #[cfg(any(
  244. feature = "medium-ip",
  245. feature = "medium-ethernet",
  246. feature = "medium-ieee802154"
  247. ))]
  248. #[derive(Debug, Clone, Copy, PartialEq, Eq)]
  249. #[cfg_attr(feature = "defmt", derive(defmt::Format))]
  250. pub enum HardwareAddress {
  251. #[cfg(feature = "medium-ip")]
  252. Ip,
  253. #[cfg(feature = "medium-ethernet")]
  254. Ethernet(EthernetAddress),
  255. #[cfg(feature = "medium-ieee802154")]
  256. Ieee802154(Ieee802154Address),
  257. }
  258. #[cfg(any(
  259. feature = "medium-ip",
  260. feature = "medium-ethernet",
  261. feature = "medium-ieee802154"
  262. ))]
  263. impl HardwareAddress {
  264. pub const fn as_bytes(&self) -> &[u8] {
  265. match self {
  266. #[cfg(feature = "medium-ip")]
  267. HardwareAddress::Ip => unreachable!(),
  268. #[cfg(feature = "medium-ethernet")]
  269. HardwareAddress::Ethernet(addr) => addr.as_bytes(),
  270. #[cfg(feature = "medium-ieee802154")]
  271. HardwareAddress::Ieee802154(addr) => addr.as_bytes(),
  272. }
  273. }
  274. /// Query wether the address is an unicast address.
  275. pub fn is_unicast(&self) -> bool {
  276. match self {
  277. #[cfg(feature = "medium-ip")]
  278. HardwareAddress::Ip => unreachable!(),
  279. #[cfg(feature = "medium-ethernet")]
  280. HardwareAddress::Ethernet(addr) => addr.is_unicast(),
  281. #[cfg(feature = "medium-ieee802154")]
  282. HardwareAddress::Ieee802154(addr) => addr.is_unicast(),
  283. }
  284. }
  285. /// Query wether the address is a broadcast address.
  286. pub fn is_broadcast(&self) -> bool {
  287. match self {
  288. #[cfg(feature = "medium-ip")]
  289. HardwareAddress::Ip => unreachable!(),
  290. #[cfg(feature = "medium-ethernet")]
  291. HardwareAddress::Ethernet(addr) => addr.is_broadcast(),
  292. #[cfg(feature = "medium-ieee802154")]
  293. HardwareAddress::Ieee802154(addr) => addr.is_broadcast(),
  294. }
  295. }
  296. #[cfg(feature = "medium-ethernet")]
  297. pub(crate) fn ethernet_or_panic(&self) -> EthernetAddress {
  298. match self {
  299. HardwareAddress::Ethernet(addr) => *addr,
  300. #[allow(unreachable_patterns)]
  301. _ => panic!("HardwareAddress is not Ethernet."),
  302. }
  303. }
  304. #[cfg(feature = "medium-ieee802154")]
  305. pub(crate) fn ieee802154_or_panic(&self) -> Ieee802154Address {
  306. match self {
  307. HardwareAddress::Ieee802154(addr) => *addr,
  308. #[allow(unreachable_patterns)]
  309. _ => panic!("HardwareAddress is not Ethernet."),
  310. }
  311. }
  312. #[inline]
  313. pub(crate) fn medium(&self) -> Medium {
  314. match self {
  315. #[cfg(feature = "medium-ip")]
  316. HardwareAddress::Ip => Medium::Ip,
  317. #[cfg(feature = "medium-ethernet")]
  318. HardwareAddress::Ethernet(_) => Medium::Ethernet,
  319. #[cfg(feature = "medium-ieee802154")]
  320. HardwareAddress::Ieee802154(_) => Medium::Ieee802154,
  321. }
  322. }
  323. }
  324. #[cfg(any(
  325. feature = "medium-ip",
  326. feature = "medium-ethernet",
  327. feature = "medium-ieee802154"
  328. ))]
  329. impl core::fmt::Display for HardwareAddress {
  330. fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
  331. match self {
  332. #[cfg(feature = "medium-ip")]
  333. HardwareAddress::Ip => write!(f, "no hardware addr"),
  334. #[cfg(feature = "medium-ethernet")]
  335. HardwareAddress::Ethernet(addr) => write!(f, "{addr}"),
  336. #[cfg(feature = "medium-ieee802154")]
  337. HardwareAddress::Ieee802154(addr) => write!(f, "{addr}"),
  338. }
  339. }
  340. }
  341. #[cfg(feature = "medium-ethernet")]
  342. impl From<EthernetAddress> for HardwareAddress {
  343. fn from(addr: EthernetAddress) -> Self {
  344. HardwareAddress::Ethernet(addr)
  345. }
  346. }
  347. #[cfg(feature = "medium-ieee802154")]
  348. impl From<Ieee802154Address> for HardwareAddress {
  349. fn from(addr: Ieee802154Address) -> Self {
  350. HardwareAddress::Ieee802154(addr)
  351. }
  352. }
  353. #[cfg(not(feature = "medium-ieee802154"))]
  354. pub const MAX_HARDWARE_ADDRESS_LEN: usize = 6;
  355. #[cfg(feature = "medium-ieee802154")]
  356. pub const MAX_HARDWARE_ADDRESS_LEN: usize = 8;
  357. /// Unparsed hardware address.
  358. ///
  359. /// Used to make NDISC parsing agnostic of the hardware medium in use.
  360. #[cfg(any(feature = "medium-ethernet", feature = "medium-ieee802154"))]
  361. #[derive(Debug, PartialEq, Eq, Clone, Copy)]
  362. #[cfg_attr(feature = "defmt", derive(defmt::Format))]
  363. pub struct RawHardwareAddress {
  364. len: u8,
  365. data: [u8; MAX_HARDWARE_ADDRESS_LEN],
  366. }
  367. #[cfg(any(feature = "medium-ethernet", feature = "medium-ieee802154"))]
  368. impl RawHardwareAddress {
  369. pub fn from_bytes(addr: &[u8]) -> Self {
  370. let mut data = [0u8; MAX_HARDWARE_ADDRESS_LEN];
  371. data[..addr.len()].copy_from_slice(addr);
  372. Self {
  373. len: addr.len() as u8,
  374. data,
  375. }
  376. }
  377. pub fn as_bytes(&self) -> &[u8] {
  378. &self.data[..self.len as usize]
  379. }
  380. pub const fn len(&self) -> usize {
  381. self.len as usize
  382. }
  383. pub const fn is_empty(&self) -> bool {
  384. self.len == 0
  385. }
  386. pub fn parse(&self, medium: Medium) -> Result<HardwareAddress> {
  387. match medium {
  388. #[cfg(feature = "medium-ethernet")]
  389. Medium::Ethernet => {
  390. if self.len() < 6 {
  391. return Err(Error);
  392. }
  393. Ok(HardwareAddress::Ethernet(EthernetAddress::from_bytes(
  394. self.as_bytes(),
  395. )))
  396. }
  397. #[cfg(feature = "medium-ieee802154")]
  398. Medium::Ieee802154 => {
  399. if self.len() < 8 {
  400. return Err(Error);
  401. }
  402. Ok(HardwareAddress::Ieee802154(Ieee802154Address::from_bytes(
  403. self.as_bytes(),
  404. )))
  405. }
  406. #[cfg(feature = "medium-ip")]
  407. Medium::Ip => unreachable!(),
  408. }
  409. }
  410. }
  411. #[cfg(any(feature = "medium-ethernet", feature = "medium-ieee802154"))]
  412. impl core::fmt::Display for RawHardwareAddress {
  413. fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
  414. for (i, &b) in self.as_bytes().iter().enumerate() {
  415. if i != 0 {
  416. write!(f, ":")?;
  417. }
  418. write!(f, "{b:02x}")?;
  419. }
  420. Ok(())
  421. }
  422. }
  423. #[cfg(feature = "medium-ethernet")]
  424. impl From<EthernetAddress> for RawHardwareAddress {
  425. fn from(addr: EthernetAddress) -> Self {
  426. Self::from_bytes(addr.as_bytes())
  427. }
  428. }
  429. #[cfg(feature = "medium-ieee802154")]
  430. impl From<Ieee802154Address> for RawHardwareAddress {
  431. fn from(addr: Ieee802154Address) -> Self {
  432. Self::from_bytes(addr.as_bytes())
  433. }
  434. }
  435. #[cfg(any(feature = "medium-ethernet", feature = "medium-ieee802154"))]
  436. impl From<HardwareAddress> for RawHardwareAddress {
  437. fn from(addr: HardwareAddress) -> Self {
  438. Self::from_bytes(addr.as_bytes())
  439. }
  440. }