lib.rs 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. #![cfg_attr(not(any(test, feature = "std")), no_std)]
  2. #![deny(unsafe_code)]
  3. //! The _smoltcp_ library is built in a layered structure, with the layers corresponding
  4. //! to the levels of API abstraction. Only the highest layers would be used by a typical
  5. //! application; however, the goal of _smoltcp_ is not just to provide a simple interface
  6. //! for writing applications but also to be a toolbox of networking primitives, so
  7. //! every layer is fully exposed and documented.
  8. //!
  9. //! When discussing networking stacks and layering, often the [OSI model][osi] is invoked.
  10. //! _smoltcp_ makes no effort to conform to the OSI model as it is not applicable to TCP/IP.
  11. //!
  12. //! # The socket layer
  13. //! The socket layer APIs are provided in the module [socket](socket/index.html); currently,
  14. //! raw, ICMP, TCP, and UDP sockets are provided. The socket API provides the usual primitives,
  15. //! but necessarily differs in many from the [Berkeley socket API][berk], as the latter was
  16. //! not designed to be used without heap allocation.
  17. //!
  18. //! The socket layer provides the buffering, packet construction and validation, and (for
  19. //! stateful sockets) the state machines, but it is interface-agnostic. An application must
  20. //! use sockets together with a network interface.
  21. //!
  22. //! # The interface layer
  23. //! The interface layer APIs are provided in the module [iface](iface/index.html); currently,
  24. //! Ethernet interface is provided.
  25. //!
  26. //! The interface layer handles the control messages, physical addressing and neighbor discovery.
  27. //! It routes packets to and from sockets.
  28. //!
  29. //! # The physical layer
  30. //! The physical layer APIs are provided in the module [phy](phy/index.html); currently,
  31. //! raw socket and TAP interface are provided. In addition, two _middleware_ interfaces
  32. //! are provided: the _tracer device_, which prints a human-readable representation of packets,
  33. //! and the _fault injector device_, which randomly introduces errors into the transmitted
  34. //! and received packet sequences.
  35. //!
  36. //! The physical layer handles interaction with a platform-specific network device.
  37. //!
  38. //! # The wire layers
  39. //! Unlike the higher layers, the wire layer APIs will not be used by a typical application.
  40. //! They however are the bedrock of _smoltcp_, and everything else is built on top of them.
  41. //!
  42. //! The wire layer APIs are designed by the principle "make illegal states ir-representable".
  43. //! If a wire layer object can be constructed, then it can also be parsed from or emitted to
  44. //! a lower level.
  45. //!
  46. //! The wire layer APIs also provide _tcpdump_-like pretty printing.
  47. //!
  48. //! ## The representation layer
  49. //! The representation layer APIs are provided in the module [wire].
  50. //!
  51. //! The representation layer exists to reduce the state space of raw packets. Raw packets
  52. //! may be nonsensical in a multitude of ways: invalid checksums, impossible combinations of flags,
  53. //! pointers to fields out of bounds, meaningless options... Representations shed all that,
  54. //! as well as any features not supported by _smoltcp_.
  55. //!
  56. //! ## The packet layer
  57. //! The packet layer APIs are also provided in the module [wire].
  58. //!
  59. //! The packet layer exists to provide a more structured way to work with packets than
  60. //! treating them as sequences of octets. It makes no judgement as to content of the packets,
  61. //! except where necessary to provide safe access to fields, and strives to implement every
  62. //! feature ever defined, to ensure that, when the representation layer is unable to make sense
  63. //! of a packet, it is still logged correctly and in full.
  64. //!
  65. //! # Minimum Supported Rust Version (MSRV)
  66. //!
  67. //! This crate is guaranteed to compile on stable Rust 1.65 and up with any valid set of features.
  68. //! It *might* compile on older versions but that may change in any new patch release.
  69. //!
  70. //! The exception is when using the `defmt` feature, in which case `defmt`'s MSRV applies, which
  71. //! is higher.
  72. //!
  73. //! [wire]: wire/index.html
  74. //! [osi]: https://en.wikipedia.org/wiki/OSI_model
  75. //! [berk]: https://en.wikipedia.org/wiki/Berkeley_sockets
  76. /* XXX compiler bug
  77. #![cfg(not(any(feature = "socket-raw",
  78. feature = "socket-udp",
  79. feature = "socket-tcp")))]
  80. compile_error!("at least one socket needs to be enabled"); */
  81. #![allow(clippy::match_like_matches_macro)]
  82. #![allow(clippy::redundant_field_names)]
  83. #![allow(clippy::identity_op)]
  84. #![allow(clippy::option_map_unit_fn)]
  85. #![allow(clippy::unit_arg)]
  86. #![allow(clippy::new_without_default)]
  87. #[cfg(feature = "alloc")]
  88. extern crate alloc;
  89. #[cfg(not(any(
  90. feature = "proto-ipv4",
  91. feature = "proto-ipv6",
  92. feature = "proto-sixlowpan"
  93. )))]
  94. compile_error!("You must enable at least one of the following features: proto-ipv4, proto-ipv6, proto-sixlowpan");
  95. #[cfg(all(
  96. feature = "socket",
  97. not(any(
  98. feature = "socket-raw",
  99. feature = "socket-udp",
  100. feature = "socket-tcp",
  101. feature = "socket-icmp",
  102. feature = "socket-dhcpv4",
  103. feature = "socket-dns",
  104. ))
  105. ))]
  106. compile_error!("If you enable the socket feature, you must enable at least one of the following features: socket-raw, socket-udp, socket-tcp, socket-icmp, socket-dhcpv4, socket-dns");
  107. #[cfg(all(
  108. feature = "socket",
  109. not(any(
  110. feature = "medium-ethernet",
  111. feature = "medium-ip",
  112. feature = "medium-ieee802154",
  113. ))
  114. ))]
  115. compile_error!("If you enable the socket feature, you must enable at least one of the following features: medium-ip, medium-ethernet, medium-ieee802154");
  116. #[cfg(all(feature = "defmt", feature = "log"))]
  117. compile_error!("You must enable at most one of the following features: defmt, log");
  118. #[macro_use]
  119. mod macros;
  120. mod parsers;
  121. mod rand;
  122. #[cfg(test)]
  123. mod config {
  124. #![allow(unused)]
  125. pub const ASSEMBLER_MAX_SEGMENT_COUNT: usize = 4;
  126. pub const DNS_MAX_NAME_SIZE: usize = 255;
  127. pub const DNS_MAX_RESULT_COUNT: usize = 1;
  128. pub const DNS_MAX_SERVER_COUNT: usize = 1;
  129. pub const FRAGMENTATION_BUFFER_SIZE: usize = 1500;
  130. pub const IFACE_MAX_ADDR_COUNT: usize = 8;
  131. pub const IFACE_MAX_MULTICAST_GROUP_COUNT: usize = 4;
  132. pub const IFACE_MAX_ROUTE_COUNT: usize = 4;
  133. pub const IFACE_MAX_SIXLOWPAN_ADDRESS_CONTEXT_COUNT: usize = 4;
  134. pub const IFACE_NEIGHBOR_CACHE_COUNT: usize = 3;
  135. pub const REASSEMBLY_BUFFER_COUNT: usize = 4;
  136. pub const REASSEMBLY_BUFFER_SIZE: usize = 1500;
  137. pub const RPL_RELATIONS_BUFFER_COUNT: usize = 16;
  138. pub const RPL_PARENTS_BUFFER_COUNT: usize = 8;
  139. pub const IPV6_HBH_MAX_OPTIONS: usize = 2;
  140. }
  141. #[cfg(not(test))]
  142. mod config {
  143. #![allow(unused)]
  144. include!(concat!(env!("OUT_DIR"), "/config.rs"));
  145. }
  146. #[cfg(any(
  147. feature = "medium-ethernet",
  148. feature = "medium-ip",
  149. feature = "medium-ieee802154"
  150. ))]
  151. pub mod iface;
  152. pub mod phy;
  153. #[cfg(feature = "socket")]
  154. pub mod socket;
  155. pub mod storage;
  156. pub mod time;
  157. pub mod wire;
  158. #[cfg(all(
  159. test,
  160. any(
  161. feature = "medium-ethernet",
  162. feature = "medium-ip",
  163. feature = "medium-ieee802154"
  164. )
  165. ))]
  166. mod tests;