mod.rs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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. mod udp;
  86. mod tcp;
  87. pub use self::pretty_print::PrettyPrinter;
  88. pub use self::ethernet::{EtherType as EthernetProtocol,
  89. Address as EthernetAddress,
  90. Frame as EthernetFrame};
  91. #[cfg(feature = "proto-ipv4")]
  92. pub use self::arp::{Hardware as ArpHardware,
  93. Operation as ArpOperation,
  94. Packet as ArpPacket,
  95. Repr as ArpRepr};
  96. pub use self::ip::{Version as IpVersion,
  97. Protocol as IpProtocol,
  98. Address as IpAddress,
  99. Endpoint as IpEndpoint,
  100. Repr as IpRepr,
  101. Cidr as IpCidr};
  102. #[cfg(feature = "proto-ipv4")]
  103. pub use self::ipv4::{Address as Ipv4Address,
  104. Packet as Ipv4Packet,
  105. Repr as Ipv4Repr,
  106. Cidr as Ipv4Cidr,
  107. MIN_MTU as IPV4_MIN_MTU};
  108. #[cfg(feature = "proto-ipv6")]
  109. pub use self::ipv6::{Address as Ipv6Address,
  110. Packet as Ipv6Packet,
  111. Repr as Ipv6Repr,
  112. Cidr as Ipv6Cidr,
  113. MIN_MTU as IPV6_MIN_MTU};
  114. #[cfg(feature = "proto-ipv6")]
  115. pub use self::ipv6option::{Ipv6Option,
  116. Repr as Ipv6OptionRepr,
  117. Type as Ipv6OptionType};
  118. #[cfg(feature = "proto-ipv6")]
  119. pub use self::ipv6hopbyhop::{Header as Ipv6HopByHopHeader,
  120. Repr as Ipv6HopByHopRepr};
  121. #[cfg(feature = "proto-ipv6")]
  122. pub use self::ipv6fragment::{Header as Ipv6FragmentHeader,
  123. Repr as Ipv6FragmentRepr};
  124. #[cfg(feature = "proto-ipv4")]
  125. pub use self::icmpv4::{Message as Icmpv4Message,
  126. DstUnreachable as Icmpv4DstUnreachable,
  127. Redirect as Icmpv4Redirect,
  128. TimeExceeded as Icmpv4TimeExceeded,
  129. ParamProblem as Icmpv4ParamProblem,
  130. Packet as Icmpv4Packet,
  131. Repr as Icmpv4Repr};
  132. #[cfg(feature = "proto-ipv6")]
  133. pub use self::icmpv6::{Message as Icmpv6Message,
  134. DstUnreachable as Icmpv6DstUnreachable,
  135. TimeExceeded as Icmpv6TimeExceeded,
  136. ParamProblem as Icmpv6ParamProblem,
  137. Packet as Icmpv6Packet,
  138. Repr as Icmpv6Repr};
  139. pub use self::udp::{Packet as UdpPacket,
  140. Repr as UdpRepr};
  141. pub use self::tcp::{SeqNumber as TcpSeqNumber,
  142. Packet as TcpPacket,
  143. TcpOption,
  144. Repr as TcpRepr,
  145. Control as TcpControl};