mod.rs 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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` and
  21. `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. protocol: 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(&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. mod ethernet;
  68. #[cfg(feature = "proto-ipv4")]
  69. mod arp;
  70. pub(crate) mod ip;
  71. #[cfg(feature = "proto-ipv4")]
  72. mod ipv4;
  73. #[cfg(feature = "proto-ipv6")]
  74. mod ipv6;
  75. #[cfg(feature = "proto-ipv6")]
  76. mod ipv6option;
  77. #[cfg(feature = "proto-ipv6")]
  78. mod ipv6hopbyhop;
  79. #[cfg(feature = "proto-ipv6")]
  80. mod ipv6fragment;
  81. #[cfg(feature = "proto-ipv4")]
  82. mod icmpv4;
  83. #[cfg(feature = "proto-ipv6")]
  84. mod icmpv6;
  85. #[cfg(feature = "proto-ipv4")]
  86. mod igmp;
  87. #[cfg(feature = "proto-ipv6")]
  88. mod ndisc;
  89. #[cfg(feature = "proto-ipv6")]
  90. mod ndiscoption;
  91. mod udp;
  92. mod tcp;
  93. #[cfg(feature = "proto-ipv4")]
  94. mod dhcpv4;
  95. pub use self::pretty_print::PrettyPrinter;
  96. pub use self::ethernet::{EtherType as EthernetProtocol,
  97. Address as EthernetAddress,
  98. Frame as EthernetFrame,
  99. Repr as EthernetRepr};
  100. #[cfg(feature = "proto-ipv4")]
  101. pub use self::arp::{Hardware as ArpHardware,
  102. Operation as ArpOperation,
  103. Packet as ArpPacket,
  104. Repr as ArpRepr};
  105. pub use self::ip::{Version as IpVersion,
  106. Protocol as IpProtocol,
  107. Address as IpAddress,
  108. Endpoint as IpEndpoint,
  109. Repr as IpRepr,
  110. Cidr as IpCidr};
  111. #[cfg(feature = "proto-ipv4")]
  112. pub use self::ipv4::{Address as Ipv4Address,
  113. Packet as Ipv4Packet,
  114. Repr as Ipv4Repr,
  115. Cidr as Ipv4Cidr,
  116. MIN_MTU as IPV4_MIN_MTU};
  117. #[cfg(feature = "proto-ipv6")]
  118. pub use self::ipv6::{Address as Ipv6Address,
  119. Packet as Ipv6Packet,
  120. Repr as Ipv6Repr,
  121. Cidr as Ipv6Cidr,
  122. MIN_MTU as IPV6_MIN_MTU};
  123. #[cfg(feature = "proto-ipv6")]
  124. pub use self::ipv6option::{Ipv6Option,
  125. Repr as Ipv6OptionRepr,
  126. Type as Ipv6OptionType};
  127. #[cfg(feature = "proto-ipv6")]
  128. pub use self::ipv6hopbyhop::{Header as Ipv6HopByHopHeader,
  129. Repr as Ipv6HopByHopRepr};
  130. #[cfg(feature = "proto-ipv6")]
  131. pub use self::ipv6fragment::{Header as Ipv6FragmentHeader,
  132. Repr as Ipv6FragmentRepr};
  133. #[cfg(feature = "proto-ipv4")]
  134. pub use self::icmpv4::{Message as Icmpv4Message,
  135. DstUnreachable as Icmpv4DstUnreachable,
  136. Redirect as Icmpv4Redirect,
  137. TimeExceeded as Icmpv4TimeExceeded,
  138. ParamProblem as Icmpv4ParamProblem,
  139. Packet as Icmpv4Packet,
  140. Repr as Icmpv4Repr};
  141. #[cfg(feature = "proto-ipv4")]
  142. pub use self::igmp::{Packet as IgmpPacket,
  143. Repr as IgmpRepr,
  144. IgmpVersion};
  145. #[cfg(feature = "proto-ipv6")]
  146. pub use self::icmpv6::{Message as Icmpv6Message,
  147. DstUnreachable as Icmpv6DstUnreachable,
  148. TimeExceeded as Icmpv6TimeExceeded,
  149. ParamProblem as Icmpv6ParamProblem,
  150. Packet as Icmpv6Packet,
  151. Repr as Icmpv6Repr};
  152. #[cfg(feature = "proto-ipv6")]
  153. pub use self::icmpv6::{RouterFlags as NdiscRouterFlags,
  154. NeighborFlags as NdiscNeighborFlags};
  155. #[cfg(feature = "proto-ipv6")]
  156. pub use self::ndisc::Repr as NdiscRepr;
  157. #[cfg(feature = "proto-ipv6")]
  158. pub use self::ndiscoption::{NdiscOption,
  159. Repr as NdiscOptionRepr,
  160. Type as NdiscOptionType,
  161. PrefixInformation as NdiscPrefixInformation,
  162. RedirectedHeader as NdiscRedirectedHeader,
  163. PrefixInfoFlags as NdiscPrefixInfoFlags};
  164. pub use self::udp::{Packet as UdpPacket,
  165. Repr as UdpRepr};
  166. pub use self::tcp::{SeqNumber as TcpSeqNumber,
  167. Packet as TcpPacket,
  168. TcpOption,
  169. Repr as TcpRepr,
  170. Control as TcpControl};
  171. #[cfg(feature = "proto-ipv4")]
  172. pub use self::dhcpv4::{Packet as DhcpPacket,
  173. Repr as DhcpRepr};