lib.rs 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. #![cfg_attr(feature = "alloc", feature(alloc))]
  2. #![no_std]
  3. #![deny(unsafe_code)]
  4. // TODO: Change this to enable deny(unused) if IPv6 or IPv4 are enabled
  5. #![cfg_attr(feature = "proto-ipv4", deny(unused))]
  6. //! The _smoltcp_ library is built in a layered structure, with the layers corresponding
  7. //! to the levels of API abstraction. Only the highest layers would be used by a typical
  8. //! application; however, the goal of _smoltcp_ is not just to provide a simple interface
  9. //! for writing applications but also to be a toolbox of networking primitives, so
  10. //! every layer is fully exposed and documented.
  11. //!
  12. //! When discussing networking stacks and layering, often the [OSI model][osi] is invoked.
  13. //! _smoltcp_ makes no effort to conform to the OSI model as it is not applicable to TCP/IP.
  14. //!
  15. //! # The socket layer
  16. //! The socket layer APIs are provided in the module [socket](socket/index.html); currently,
  17. //! raw, ICMP, TCP, and UDP sockets are provided. The socket API provides the usual primitives,
  18. //! but necessarily differs in many from the [Berkeley socket API][berk], as the latter was
  19. //! not designed to be used without heap allocation.
  20. //!
  21. //! The socket layer provides the buffering, packet construction and validation, and (for
  22. //! stateful sockets) the state machines, but it is interface-agnostic. An application must
  23. //! use sockets together with a network interface.
  24. //!
  25. //! # The interface layer
  26. //! The interface layer APIs are provided in the module [iface](iface/index.html); currently,
  27. //! Ethernet interface is provided.
  28. //!
  29. //! The interface layer handles the control messages, physical addressing and neighbor discovery.
  30. //! It routes packets to and from sockets.
  31. //!
  32. //! # The physical layer
  33. //! The physical layer APIs are provided in the module [phy](phy/index.html); currently,
  34. //! raw socket and TAP interface are provided. In addition, two _middleware_ interfaces
  35. //! are provided: the _tracer device_, which prints a human-readable representation of packets,
  36. //! and the _fault injector device_, which randomly introduces errors into the transmitted
  37. //! and received packet sequences.
  38. //!
  39. //! The physical layer handles interaction with a platform-specific network device.
  40. //!
  41. //! # The wire layers
  42. //! Unlike the higher layers, the wire layer APIs will not be used by a typical application.
  43. //! They however are the bedrock of _smoltcp_, and everything else is built on top of them.
  44. //!
  45. //! The wire layer APIs are designed by the principle "make illegal states irrepresentable".
  46. //! If a wire layer object can be constructed, then it can also be parsed from or emitted to
  47. //! a lower level.
  48. //!
  49. //! The wire layer APIs also provide _tcpdump_-like pretty printing.
  50. //!
  51. //! ## The representation layer
  52. //! The representation layer APIs are provided in the module [wire](wire/index.html); currently,
  53. //! Ethernet, ARP, generic IP, IPv4, ICMPv4, TCP and UDP packet representations are provided.
  54. //!
  55. //! The representation layer exists to reduce the state space of raw packets. Raw packets
  56. //! may be nonsensical in a multitude of ways: invalid checksums, impossible combinations of flags,
  57. //! pointers to fields out of bounds, meaningless options... Representations shed all that,
  58. //! as well as any features not supported by _smoltcp_.
  59. //!
  60. //! ## The packet layer
  61. //! The packet layer APIs are also provided in the module [wire](wire/index.html); currently,
  62. //! Ethernet, ARP, IPv4, ICMPv4, TCP and UDP packet representations are provided.
  63. //!
  64. //! The packet layer exists to provide a more structured way to work with packets than
  65. //! treating them as sequences of octets. It makes no judgement as to content of the packets,
  66. //! except where necessary to provide safe access to fields, and strives to implement every
  67. //! feature ever defined, to ensure that, when the representation layer is unable to make sense
  68. //! of a packet, it is still logged correctly and in full.
  69. //!
  70. //! [osi]: https://en.wikipedia.org/wiki/OSI_model
  71. //! [berk]: https://en.wikipedia.org/wiki/Berkeley_sockets
  72. /* XXX compiler bug
  73. #![cfg(not(any(feature = "socket-raw",
  74. feature = "socket-udp",
  75. feature = "socket-tcp")))]
  76. compile_error!("at least one socket needs to be enabled"); */
  77. extern crate byteorder;
  78. extern crate managed;
  79. #[cfg(any(test, feature = "std"))]
  80. #[macro_use]
  81. extern crate std;
  82. #[cfg(any(feature = "phy-raw_socket", feature = "phy-tap_interface"))]
  83. extern crate libc;
  84. #[cfg(feature = "alloc")]
  85. extern crate alloc;
  86. #[cfg(feature = "log")]
  87. #[macro_use(log, trace, debug)]
  88. extern crate log;
  89. use core::fmt;
  90. #[macro_use]
  91. mod macros;
  92. mod parsers;
  93. pub mod storage;
  94. pub mod phy;
  95. pub mod wire;
  96. pub mod iface;
  97. pub mod socket;
  98. pub mod time;
  99. /// The error type for the networking stack.
  100. #[derive(Debug, Clone, Copy, PartialEq, Eq)]
  101. pub enum Error {
  102. /// An operation cannot proceed because a buffer is empty or full.
  103. Exhausted,
  104. /// An operation is not permitted in the current state.
  105. Illegal,
  106. /// An endpoint or address of a remote host could not be translated to a lower level address.
  107. /// E.g. there was no an Ethernet address corresponding to an IPv4 address in the ARP cache,
  108. /// or a TCP connection attempt was made to an unspecified endpoint.
  109. Unaddressable,
  110. /// An incoming packet could not be parsed because some of its fields were out of bounds
  111. /// of the received data.
  112. Truncated,
  113. /// An incoming packet had an incorrect checksum and was dropped.
  114. Checksum,
  115. /// An incoming packet could not be recognized and was dropped.
  116. /// E.g. an Ethernet packet with an unknown EtherType.
  117. Unrecognized,
  118. /// An incoming IP packet has been split into several IP fragments and was dropped,
  119. /// since IP reassembly is not supported.
  120. Fragmented,
  121. /// An incoming packet was recognized but was self-contradictory.
  122. /// E.g. a TCP packet with both SYN and FIN flags set.
  123. Malformed,
  124. /// An incoming packet was recognized but contradicted internal state.
  125. /// E.g. a TCP packet addressed to a socket that doesn't exist.
  126. Dropped,
  127. #[doc(hidden)]
  128. __Nonexhaustive
  129. }
  130. /// The result type for the networking stack.
  131. pub type Result<T> = core::result::Result<T, Error>;
  132. impl fmt::Display for Error {
  133. fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
  134. match self {
  135. &Error::Exhausted => write!(f, "buffer space exhausted"),
  136. &Error::Illegal => write!(f, "illegal operation"),
  137. &Error::Unaddressable => write!(f, "unaddressable destination"),
  138. &Error::Truncated => write!(f, "truncated packet"),
  139. &Error::Checksum => write!(f, "checksum error"),
  140. &Error::Unrecognized => write!(f, "unrecognized packet"),
  141. &Error::Fragmented => write!(f, "fragmented packet"),
  142. &Error::Malformed => write!(f, "malformed packet"),
  143. &Error::Dropped => write!(f, "dropped by socket"),
  144. &Error::__Nonexhaustive => unreachable!()
  145. }
  146. }
  147. }