mod.rs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. //! Low-level packet access and construction.
  2. //!
  3. //! The `wire` module deals with the packet *representation*. It provides two levels
  4. //! of functionality.
  5. //!
  6. //! * First, it provides functions to extract fields from sequences of octets,
  7. //! and to insert fields into sequences of octets. This happens `Packet` family of
  8. //! structures, e.g. [EthernetFrame] or [Ipv4Packet].
  9. //! * Second, in cases where the space of valid field values is much smaller than the space
  10. //! of possible field values, it provides a compact, high-level representation
  11. //! of packet data that can be parsed from and emitted into a sequence of octets.
  12. //! This happens through the `Repr` family of structs and enums, e.g. [ArpRepr] or [Ipv4Repr].
  13. // https://github.com/rust-lang/rust/issues/38739
  14. //! </ul>
  15. //!
  16. //! [EthernetFrame]: struct.EthernetFrame.html
  17. //! [Ipv4Packet]: struct.Ipv4Packet.html
  18. //! [ArpRepr]: enum.ArpRepr.html
  19. //! [Ipv4Repr]: struct.Ipv4Repr.html
  20. //!
  21. //! The functions in the `wire` module are designed for use together with `-Cpanic=abort`.
  22. //!
  23. //! The `Packet` family of data structures guarantees that, if the `Packet::check_len()` method
  24. //! returned `Ok(())`, then no accessor or setter method will panic; however, the guarantee
  25. //! provided by `Packet::check_len()` may no longer hold after changing certain fields,
  26. //! which are listed in the documentation for the specific packet.
  27. //!
  28. //! The `Packet::new_checked` method is a shorthand for a combination of `Packet::new` and
  29. //! `Packet::check_len`.
  30. //! When parsing untrusted input, it is *necessary* to use `Packet::new_checked()`;
  31. //! so long as the buffer is not modified, no accessor will fail.
  32. //! When emitting output, though, it is *incorrect* to use `Packet::new_checked()`;
  33. //! the length check is likely to succeed on a zeroed buffer, but fail on a buffer
  34. //! filled with data from a previous packet, such as when reusing buffers, resulting
  35. //! in nondeterministic panics with some network devices but not others.
  36. //! The buffer length for emission is not calculated by the `Packet` layer.
  37. //!
  38. //! In the `Repr` family of data structures, the `Repr::parse()` method never panics
  39. //! as long as `Packet::new_checked()` (or `Packet::check_len()`) has succeeded, and
  40. //! the `Repr::emit()` method never panics as long as the underlying buffer is exactly
  41. //! `Repr::buffer_len()` octets long.
  42. //!
  43. //! # Examples
  44. //!
  45. //! To emit an IP packet header into an octet buffer, and then parse it back:
  46. //!
  47. /*!
  48. ```rust
  49. use smoltcp::phy::ChecksumCapabilities;
  50. use smoltcp::wire::*;
  51. let repr = Ipv4Repr {
  52. src_addr: Ipv4Address::new(10, 0, 0, 1),
  53. dst_addr: Ipv4Address::new(10, 0, 0, 2),
  54. protocol: IpProtocol::Tcp,
  55. payload_len: 10
  56. };
  57. let mut buffer = vec![0; repr.buffer_len() + repr.payload_len];
  58. { // emission
  59. let mut packet = Ipv4Packet::new(&mut buffer);
  60. repr.emit(&mut packet, &ChecksumCapabilities::default());
  61. }
  62. { // parsing
  63. let packet = Ipv4Packet::new_checked(&buffer)
  64. .expect("truncated packet");
  65. let parsed = Ipv4Repr::parse(&packet, &ChecksumCapabilities::default())
  66. .expect("malformed packet");
  67. assert_eq!(repr, parsed);
  68. }
  69. ```
  70. */
  71. mod field {
  72. pub type Field = ::core::ops::Range<usize>;
  73. pub type Rest = ::core::ops::RangeFrom<usize>;
  74. }
  75. pub mod pretty_print;
  76. mod ethernet;
  77. mod arp;
  78. mod ip;
  79. mod ipv4;
  80. mod icmpv4;
  81. mod udp;
  82. mod tcp;
  83. pub use self::pretty_print::PrettyPrinter;
  84. pub use self::ethernet::EtherType as EthernetProtocol;
  85. pub use self::ethernet::Address as EthernetAddress;
  86. pub use self::ethernet::Frame as EthernetFrame;
  87. pub use self::arp::Hardware as ArpHardware;
  88. pub use self::arp::Operation as ArpOperation;
  89. pub use self::arp::Packet as ArpPacket;
  90. pub use self::arp::Repr as ArpRepr;
  91. pub use self::ip::Version as IpVersion;
  92. pub use self::ip::Protocol as IpProtocol;
  93. pub use self::ip::Address as IpAddress;
  94. pub use self::ip::Endpoint as IpEndpoint;
  95. pub use self::ip::IpRepr as IpRepr;
  96. pub use self::ipv4::Address as Ipv4Address;
  97. pub use self::ipv4::Packet as Ipv4Packet;
  98. pub use self::ipv4::Repr as Ipv4Repr;
  99. pub use self::icmpv4::Message as Icmpv4Message;
  100. pub use self::icmpv4::DstUnreachable as Icmpv4DstUnreachable;
  101. pub use self::icmpv4::Redirect as Icmpv4Redirect;
  102. pub use self::icmpv4::TimeExceeded as Icmpv4TimeExceeded;
  103. pub use self::icmpv4::ParamProblem as Icmpv4ParamProblem;
  104. pub use self::icmpv4::Packet as Icmpv4Packet;
  105. pub use self::icmpv4::Repr as Icmpv4Repr;
  106. pub use self::udp::Packet as UdpPacket;
  107. pub use self::udp::Repr as UdpRepr;
  108. pub use self::tcp::SeqNumber as TcpSeqNumber;
  109. pub use self::tcp::Packet as TcpPacket;
  110. pub use self::tcp::TcpOption;
  111. pub use self::tcp::Repr as TcpRepr;
  112. pub use self::tcp::Control as TcpControl;