mod.rs 5.9 KB

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