raw.rs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697
  1. use core::cmp::min;
  2. #[cfg(feature = "async")]
  3. use core::task::Waker;
  4. use crate::iface::Context;
  5. use crate::socket::PollAt;
  6. #[cfg(feature = "async")]
  7. use crate::socket::WakerRegistration;
  8. use crate::storage::Empty;
  9. use crate::wire::{IpProtocol, IpRepr, IpVersion};
  10. #[cfg(feature = "proto-ipv4")]
  11. use crate::wire::{Ipv4Packet, Ipv4Repr};
  12. #[cfg(feature = "proto-ipv6")]
  13. use crate::wire::{Ipv6Packet, Ipv6Repr};
  14. /// Error returned by [`Socket::bind`]
  15. #[derive(Debug, PartialEq, Eq, Clone, Copy)]
  16. #[cfg_attr(feature = "defmt", derive(defmt::Format))]
  17. pub enum BindError {
  18. InvalidState,
  19. Unaddressable,
  20. }
  21. /// Error returned by [`Socket::send`]
  22. #[derive(Debug, PartialEq, Eq, Clone, Copy)]
  23. #[cfg_attr(feature = "defmt", derive(defmt::Format))]
  24. pub enum SendError {
  25. BufferFull,
  26. }
  27. /// Error returned by [`Socket::recv`]
  28. #[derive(Debug, PartialEq, Eq, Clone, Copy)]
  29. #[cfg_attr(feature = "defmt", derive(defmt::Format))]
  30. pub enum RecvError {
  31. Exhausted,
  32. }
  33. /// A UDP packet metadata.
  34. pub type PacketMetadata = crate::storage::PacketMetadata<()>;
  35. /// A UDP packet ring buffer.
  36. pub type PacketBuffer<'a> = crate::storage::PacketBuffer<'a, ()>;
  37. /// A raw IP socket.
  38. ///
  39. /// A raw socket is bound to a specific IP protocol, and owns
  40. /// transmit and receive packet buffers.
  41. #[derive(Debug)]
  42. pub struct Socket<'a> {
  43. ip_version: IpVersion,
  44. ip_protocol: IpProtocol,
  45. rx_buffer: PacketBuffer<'a>,
  46. tx_buffer: PacketBuffer<'a>,
  47. #[cfg(feature = "async")]
  48. rx_waker: WakerRegistration,
  49. #[cfg(feature = "async")]
  50. tx_waker: WakerRegistration,
  51. }
  52. impl<'a> Socket<'a> {
  53. /// Create a raw IP socket bound to the given IP version and datagram protocol,
  54. /// with the given buffers.
  55. pub fn new(
  56. ip_version: IpVersion,
  57. ip_protocol: IpProtocol,
  58. rx_buffer: PacketBuffer<'a>,
  59. tx_buffer: PacketBuffer<'a>,
  60. ) -> Socket<'a> {
  61. Socket {
  62. ip_version,
  63. ip_protocol,
  64. rx_buffer,
  65. tx_buffer,
  66. #[cfg(feature = "async")]
  67. rx_waker: WakerRegistration::new(),
  68. #[cfg(feature = "async")]
  69. tx_waker: WakerRegistration::new(),
  70. }
  71. }
  72. /// Register a waker for receive operations.
  73. ///
  74. /// The waker is woken on state changes that might affect the return value
  75. /// of `recv` method calls, such as receiving data, or the socket closing.
  76. ///
  77. /// Notes:
  78. ///
  79. /// - Only one waker can be registered at a time. If another waker was previously registered,
  80. /// it is overwritten and will no longer be woken.
  81. /// - The Waker is woken only once. Once woken, you must register it again to receive more wakes.
  82. /// - "Spurious wakes" are allowed: a wake doesn't guarantee the result of `recv` has
  83. /// necessarily changed.
  84. #[cfg(feature = "async")]
  85. pub fn register_recv_waker(&mut self, waker: &Waker) {
  86. self.rx_waker.register(waker)
  87. }
  88. /// Register a waker for send operations.
  89. ///
  90. /// The waker is woken on state changes that might affect the return value
  91. /// of `send` method calls, such as space becoming available in the transmit
  92. /// buffer, or the socket closing.
  93. ///
  94. /// Notes:
  95. ///
  96. /// - Only one waker can be registered at a time. If another waker was previously registered,
  97. /// it is overwritten and will no longer be woken.
  98. /// - The Waker is woken only once. Once woken, you must register it again to receive more wakes.
  99. /// - "Spurious wakes" are allowed: a wake doesn't guarantee the result of `send` has
  100. /// necessarily changed.
  101. #[cfg(feature = "async")]
  102. pub fn register_send_waker(&mut self, waker: &Waker) {
  103. self.tx_waker.register(waker)
  104. }
  105. /// Return the IP version the socket is bound to.
  106. #[inline]
  107. pub fn ip_version(&self) -> IpVersion {
  108. self.ip_version
  109. }
  110. /// Return the IP protocol the socket is bound to.
  111. #[inline]
  112. pub fn ip_protocol(&self) -> IpProtocol {
  113. self.ip_protocol
  114. }
  115. /// Check whether the transmit buffer is full.
  116. #[inline]
  117. pub fn can_send(&self) -> bool {
  118. !self.tx_buffer.is_full()
  119. }
  120. /// Check whether the receive buffer is not empty.
  121. #[inline]
  122. pub fn can_recv(&self) -> bool {
  123. !self.rx_buffer.is_empty()
  124. }
  125. /// Return the maximum number packets the socket can receive.
  126. #[inline]
  127. pub fn packet_recv_capacity(&self) -> usize {
  128. self.rx_buffer.packet_capacity()
  129. }
  130. /// Return the maximum number packets the socket can transmit.
  131. #[inline]
  132. pub fn packet_send_capacity(&self) -> usize {
  133. self.tx_buffer.packet_capacity()
  134. }
  135. /// Return the maximum number of bytes inside the recv buffer.
  136. #[inline]
  137. pub fn payload_recv_capacity(&self) -> usize {
  138. self.rx_buffer.payload_capacity()
  139. }
  140. /// Return the maximum number of bytes inside the transmit buffer.
  141. #[inline]
  142. pub fn payload_send_capacity(&self) -> usize {
  143. self.tx_buffer.payload_capacity()
  144. }
  145. /// Enqueue a packet to send, and return a pointer to its payload.
  146. ///
  147. /// This function returns `Err(Error::Exhausted)` if the transmit buffer is full,
  148. /// and `Err(Error::Truncated)` if there is not enough transmit buffer capacity
  149. /// to ever send this packet.
  150. ///
  151. /// If the buffer is filled in a way that does not match the socket's
  152. /// IP version or protocol, the packet will be silently dropped.
  153. ///
  154. /// **Note:** The IP header is parsed and re-serialized, and may not match
  155. /// the header actually transmitted bit for bit.
  156. pub fn send(&mut self, size: usize) -> Result<&mut [u8], SendError> {
  157. let packet_buf = self
  158. .tx_buffer
  159. .enqueue(size, ())
  160. .map_err(|_| SendError::BufferFull)?;
  161. net_trace!(
  162. "raw:{}:{}: buffer to send {} octets",
  163. self.ip_version,
  164. self.ip_protocol,
  165. packet_buf.len()
  166. );
  167. Ok(packet_buf)
  168. }
  169. /// Enqueue a packet to be send and pass the buffer to the provided closure.
  170. /// The closure then returns the size of the data written into the buffer.
  171. ///
  172. /// Also see [send](#method.send).
  173. pub fn send_with<F>(&mut self, max_size: usize, f: F) -> Result<&mut [u8], SendError>
  174. where
  175. F: FnOnce(&mut [u8]) -> usize,
  176. {
  177. let (size, packet_buf) = self
  178. .tx_buffer
  179. .enqueue_with_infallible(max_size, (), |data| {
  180. let size = f(data);
  181. (size, &mut data[..size])
  182. })
  183. .map_err(|_| SendError::BufferFull)?;
  184. net_trace!(
  185. "raw:{}:{}: buffer to send {} octets",
  186. self.ip_version,
  187. self.ip_protocol,
  188. size
  189. );
  190. Ok(packet_buf)
  191. }
  192. /// Enqueue a packet to send, and fill it from a slice.
  193. ///
  194. /// See also [send](#method.send).
  195. pub fn send_slice(&mut self, data: &[u8]) -> Result<(), SendError> {
  196. self.send(data.len())?.copy_from_slice(data);
  197. Ok(())
  198. }
  199. /// Dequeue a packet, and return a pointer to the payload.
  200. ///
  201. /// This function returns `Err(Error::Exhausted)` if the receive buffer is empty.
  202. ///
  203. /// **Note:** The IP header is parsed and re-serialized, and may not match
  204. /// the header actually received bit for bit.
  205. pub fn recv(&mut self) -> Result<&[u8], RecvError> {
  206. let ((), packet_buf) = self.rx_buffer.dequeue().map_err(|_| RecvError::Exhausted)?;
  207. net_trace!(
  208. "raw:{}:{}: receive {} buffered octets",
  209. self.ip_version,
  210. self.ip_protocol,
  211. packet_buf.len()
  212. );
  213. Ok(packet_buf)
  214. }
  215. /// Dequeue a packet, and copy the payload into the given slice.
  216. ///
  217. /// See also [recv](#method.recv).
  218. pub fn recv_slice(&mut self, data: &mut [u8]) -> Result<usize, RecvError> {
  219. let buffer = self.recv()?;
  220. let length = min(data.len(), buffer.len());
  221. data[..length].copy_from_slice(&buffer[..length]);
  222. Ok(length)
  223. }
  224. pub(crate) fn accepts(&self, ip_repr: &IpRepr) -> bool {
  225. if ip_repr.version() != self.ip_version {
  226. return false;
  227. }
  228. if ip_repr.next_header() != self.ip_protocol {
  229. return false;
  230. }
  231. true
  232. }
  233. pub(crate) fn process(&mut self, cx: &mut Context, ip_repr: &IpRepr, payload: &[u8]) {
  234. debug_assert!(self.accepts(ip_repr));
  235. let header_len = ip_repr.buffer_len();
  236. let total_len = header_len + payload.len();
  237. net_trace!(
  238. "raw:{}:{}: receiving {} octets",
  239. self.ip_version,
  240. self.ip_protocol,
  241. total_len
  242. );
  243. match self.rx_buffer.enqueue(total_len, ()) {
  244. Ok(buf) => {
  245. ip_repr.emit(&mut buf[..header_len], &cx.checksum_caps());
  246. buf[header_len..].copy_from_slice(payload);
  247. }
  248. Err(_) => net_trace!(
  249. "raw:{}:{}: buffer full, dropped incoming packet",
  250. self.ip_version,
  251. self.ip_protocol
  252. ),
  253. }
  254. #[cfg(feature = "async")]
  255. self.rx_waker.wake();
  256. }
  257. pub(crate) fn dispatch<F, E>(&mut self, cx: &mut Context, emit: F) -> Result<(), E>
  258. where
  259. F: FnOnce(&mut Context, (IpRepr, &[u8])) -> Result<(), E>,
  260. {
  261. let ip_protocol = self.ip_protocol;
  262. let ip_version = self.ip_version;
  263. let _checksum_caps = &cx.checksum_caps();
  264. let res = self.tx_buffer.dequeue_with(|&mut (), buffer| {
  265. match IpVersion::of_packet(buffer) {
  266. #[cfg(feature = "proto-ipv4")]
  267. Ok(IpVersion::Ipv4) => {
  268. let mut packet = match Ipv4Packet::new_checked(buffer) {
  269. Ok(x) => x,
  270. Err(_) => {
  271. net_trace!("raw: malformed ipv6 packet in queue, dropping.");
  272. return Ok(());
  273. }
  274. };
  275. if packet.next_header() != ip_protocol {
  276. net_trace!("raw: sent packet with wrong ip protocol, dropping.");
  277. return Ok(());
  278. }
  279. if _checksum_caps.ipv4.tx() {
  280. packet.fill_checksum();
  281. } else {
  282. // make sure we get a consistently zeroed checksum,
  283. // since implementations might rely on it
  284. packet.set_checksum(0);
  285. }
  286. let packet = Ipv4Packet::new_unchecked(&*packet.into_inner());
  287. let ipv4_repr = match Ipv4Repr::parse(&packet, _checksum_caps) {
  288. Ok(x) => x,
  289. Err(_) => {
  290. net_trace!("raw: malformed ipv4 packet in queue, dropping.");
  291. return Ok(());
  292. }
  293. };
  294. net_trace!("raw:{}:{}: sending", ip_version, ip_protocol);
  295. emit(cx, (IpRepr::Ipv4(ipv4_repr), packet.payload()))
  296. }
  297. #[cfg(feature = "proto-ipv6")]
  298. Ok(IpVersion::Ipv6) => {
  299. let packet = match Ipv6Packet::new_checked(buffer) {
  300. Ok(x) => x,
  301. Err(_) => {
  302. net_trace!("raw: malformed ipv6 packet in queue, dropping.");
  303. return Ok(());
  304. }
  305. };
  306. if packet.next_header() != ip_protocol {
  307. net_trace!("raw: sent ipv6 packet with wrong ip protocol, dropping.");
  308. return Ok(());
  309. }
  310. let packet = Ipv6Packet::new_unchecked(&*packet.into_inner());
  311. let ipv6_repr = match Ipv6Repr::parse(&packet) {
  312. Ok(x) => x,
  313. Err(_) => {
  314. net_trace!("raw: malformed ipv6 packet in queue, dropping.");
  315. return Ok(());
  316. }
  317. };
  318. net_trace!("raw:{}:{}: sending", ip_version, ip_protocol);
  319. emit(cx, (IpRepr::Ipv6(ipv6_repr), packet.payload()))
  320. }
  321. Err(_) => {
  322. net_trace!("raw: sent packet with invalid IP version, dropping.");
  323. Ok(())
  324. }
  325. }
  326. });
  327. match res {
  328. Err(Empty) => Ok(()),
  329. Ok(Err(e)) => Err(e),
  330. Ok(Ok(())) => {
  331. #[cfg(feature = "async")]
  332. self.tx_waker.wake();
  333. Ok(())
  334. }
  335. }
  336. }
  337. pub(crate) fn poll_at(&self, _cx: &mut Context) -> PollAt {
  338. if self.tx_buffer.is_empty() {
  339. PollAt::Ingress
  340. } else {
  341. PollAt::Now
  342. }
  343. }
  344. }
  345. #[cfg(test)]
  346. mod test {
  347. use super::*;
  348. use crate::wire::IpRepr;
  349. #[cfg(feature = "proto-ipv4")]
  350. use crate::wire::{Ipv4Address, Ipv4Repr};
  351. #[cfg(feature = "proto-ipv6")]
  352. use crate::wire::{Ipv6Address, Ipv6Repr};
  353. use crate::Error;
  354. fn buffer(packets: usize) -> PacketBuffer<'static> {
  355. PacketBuffer::new(vec![PacketMetadata::EMPTY; packets], vec![0; 48 * packets])
  356. }
  357. #[cfg(feature = "proto-ipv4")]
  358. mod ipv4_locals {
  359. use super::*;
  360. pub fn socket(
  361. rx_buffer: PacketBuffer<'static>,
  362. tx_buffer: PacketBuffer<'static>,
  363. ) -> Socket<'static> {
  364. Socket::new(
  365. IpVersion::Ipv4,
  366. IpProtocol::Unknown(IP_PROTO),
  367. rx_buffer,
  368. tx_buffer,
  369. )
  370. }
  371. pub const IP_PROTO: u8 = 63;
  372. pub const HEADER_REPR: IpRepr = IpRepr::Ipv4(Ipv4Repr {
  373. src_addr: Ipv4Address([10, 0, 0, 1]),
  374. dst_addr: Ipv4Address([10, 0, 0, 2]),
  375. next_header: IpProtocol::Unknown(IP_PROTO),
  376. payload_len: 4,
  377. hop_limit: 64,
  378. });
  379. pub const PACKET_BYTES: [u8; 24] = [
  380. 0x45, 0x00, 0x00, 0x18, 0x00, 0x00, 0x40, 0x00, 0x40, 0x3f, 0x00, 0x00, 0x0a, 0x00,
  381. 0x00, 0x01, 0x0a, 0x00, 0x00, 0x02, 0xaa, 0x00, 0x00, 0xff,
  382. ];
  383. pub const PACKET_PAYLOAD: [u8; 4] = [0xaa, 0x00, 0x00, 0xff];
  384. }
  385. #[cfg(feature = "proto-ipv6")]
  386. mod ipv6_locals {
  387. use super::*;
  388. pub fn socket(
  389. rx_buffer: PacketBuffer<'static>,
  390. tx_buffer: PacketBuffer<'static>,
  391. ) -> Socket<'static> {
  392. Socket::new(
  393. IpVersion::Ipv6,
  394. IpProtocol::Unknown(IP_PROTO),
  395. rx_buffer,
  396. tx_buffer,
  397. )
  398. }
  399. pub const IP_PROTO: u8 = 63;
  400. pub const HEADER_REPR: IpRepr = IpRepr::Ipv6(Ipv6Repr {
  401. src_addr: Ipv6Address([
  402. 0xfe, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  403. 0x00, 0x01,
  404. ]),
  405. dst_addr: Ipv6Address([
  406. 0xfe, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  407. 0x00, 0x02,
  408. ]),
  409. next_header: IpProtocol::Unknown(IP_PROTO),
  410. payload_len: 4,
  411. hop_limit: 64,
  412. });
  413. pub const PACKET_BYTES: [u8; 44] = [
  414. 0x60, 0x00, 0x00, 0x00, 0x00, 0x04, 0x3f, 0x40, 0xfe, 0x80, 0x00, 0x00, 0x00, 0x00,
  415. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xfe, 0x80, 0x00, 0x00,
  416. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xaa, 0x00,
  417. 0x00, 0xff,
  418. ];
  419. pub const PACKET_PAYLOAD: [u8; 4] = [0xaa, 0x00, 0x00, 0xff];
  420. }
  421. macro_rules! reusable_ip_specific_tests {
  422. ($module:ident, $socket:path, $hdr:path, $packet:path, $payload:path) => {
  423. mod $module {
  424. use super::*;
  425. #[test]
  426. fn test_send_truncated() {
  427. let mut socket = $socket(buffer(0), buffer(1));
  428. assert_eq!(socket.send_slice(&[0; 56][..]), Err(SendError::BufferFull));
  429. }
  430. #[test]
  431. fn test_send_dispatch() {
  432. let mut socket = $socket(buffer(0), buffer(1));
  433. let mut cx = Context::mock();
  434. assert!(socket.can_send());
  435. assert_eq!(
  436. socket.dispatch(&mut cx, |_, _| unreachable!()),
  437. Ok::<_, Error>(())
  438. );
  439. assert_eq!(socket.send_slice(&$packet[..]), Ok(()));
  440. assert_eq!(socket.send_slice(b""), Err(SendError::BufferFull));
  441. assert!(!socket.can_send());
  442. assert_eq!(
  443. socket.dispatch(&mut cx, |_, (ip_repr, ip_payload)| {
  444. assert_eq!(ip_repr, $hdr);
  445. assert_eq!(ip_payload, &$payload);
  446. Err(Error::Unaddressable)
  447. }),
  448. Err(Error::Unaddressable)
  449. );
  450. assert!(!socket.can_send());
  451. assert_eq!(
  452. socket.dispatch(&mut cx, |_, (ip_repr, ip_payload)| {
  453. assert_eq!(ip_repr, $hdr);
  454. assert_eq!(ip_payload, &$payload);
  455. Ok::<_, Error>(())
  456. }),
  457. Ok(())
  458. );
  459. assert!(socket.can_send());
  460. }
  461. #[test]
  462. fn test_recv_truncated_slice() {
  463. let mut socket = $socket(buffer(1), buffer(0));
  464. let mut cx = Context::mock();
  465. assert!(socket.accepts(&$hdr));
  466. socket.process(&mut cx, &$hdr, &$payload);
  467. let mut slice = [0; 4];
  468. assert_eq!(socket.recv_slice(&mut slice[..]), Ok(4));
  469. assert_eq!(&slice, &$packet[..slice.len()]);
  470. }
  471. #[test]
  472. fn test_recv_truncated_packet() {
  473. let mut socket = $socket(buffer(1), buffer(0));
  474. let mut cx = Context::mock();
  475. let mut buffer = vec![0; 128];
  476. buffer[..$packet.len()].copy_from_slice(&$packet[..]);
  477. assert!(socket.accepts(&$hdr));
  478. socket.process(&mut cx, &$hdr, &buffer);
  479. }
  480. }
  481. };
  482. }
  483. #[cfg(feature = "proto-ipv4")]
  484. reusable_ip_specific_tests!(
  485. ipv4,
  486. ipv4_locals::socket,
  487. ipv4_locals::HEADER_REPR,
  488. ipv4_locals::PACKET_BYTES,
  489. ipv4_locals::PACKET_PAYLOAD
  490. );
  491. #[cfg(feature = "proto-ipv6")]
  492. reusable_ip_specific_tests!(
  493. ipv6,
  494. ipv6_locals::socket,
  495. ipv6_locals::HEADER_REPR,
  496. ipv6_locals::PACKET_BYTES,
  497. ipv6_locals::PACKET_PAYLOAD
  498. );
  499. #[test]
  500. #[cfg(feature = "proto-ipv4")]
  501. fn test_send_illegal() {
  502. #[cfg(feature = "proto-ipv4")]
  503. {
  504. let mut socket = ipv4_locals::socket(buffer(0), buffer(2));
  505. let mut cx = Context::mock();
  506. let mut wrong_version = ipv4_locals::PACKET_BYTES;
  507. Ipv4Packet::new_unchecked(&mut wrong_version).set_version(6);
  508. assert_eq!(socket.send_slice(&wrong_version[..]), Ok(()));
  509. assert_eq!(
  510. socket.dispatch(&mut cx, |_, _| unreachable!()),
  511. Ok::<_, Error>(())
  512. );
  513. let mut wrong_protocol = ipv4_locals::PACKET_BYTES;
  514. Ipv4Packet::new_unchecked(&mut wrong_protocol).set_next_header(IpProtocol::Tcp);
  515. assert_eq!(socket.send_slice(&wrong_protocol[..]), Ok(()));
  516. assert_eq!(
  517. socket.dispatch(&mut cx, |_, _| unreachable!()),
  518. Ok::<_, Error>(())
  519. );
  520. }
  521. #[cfg(feature = "proto-ipv6")]
  522. {
  523. let mut socket = ipv6_locals::socket(buffer(0), buffer(2));
  524. let mut cx = Context::mock();
  525. let mut wrong_version = ipv6_locals::PACKET_BYTES;
  526. Ipv6Packet::new_unchecked(&mut wrong_version[..]).set_version(4);
  527. assert_eq!(socket.send_slice(&wrong_version[..]), Ok(()));
  528. assert_eq!(
  529. socket.dispatch(&mut cx, |_, _| unreachable!()),
  530. Ok::<_, Error>(())
  531. );
  532. let mut wrong_protocol = ipv6_locals::PACKET_BYTES;
  533. Ipv6Packet::new_unchecked(&mut wrong_protocol[..]).set_next_header(IpProtocol::Tcp);
  534. assert_eq!(socket.send_slice(&wrong_protocol[..]), Ok(()));
  535. assert_eq!(
  536. socket.dispatch(&mut cx, |_, _| unreachable!()),
  537. Ok::<_, Error>(())
  538. );
  539. }
  540. }
  541. #[test]
  542. fn test_recv_process() {
  543. #[cfg(feature = "proto-ipv4")]
  544. {
  545. let mut socket = ipv4_locals::socket(buffer(1), buffer(0));
  546. assert!(!socket.can_recv());
  547. let mut cx = Context::mock();
  548. let mut cksumd_packet = ipv4_locals::PACKET_BYTES;
  549. Ipv4Packet::new_unchecked(&mut cksumd_packet).fill_checksum();
  550. assert_eq!(socket.recv(), Err(RecvError::Exhausted));
  551. assert!(socket.accepts(&ipv4_locals::HEADER_REPR));
  552. socket.process(
  553. &mut cx,
  554. &ipv4_locals::HEADER_REPR,
  555. &ipv4_locals::PACKET_PAYLOAD,
  556. );
  557. assert!(socket.can_recv());
  558. assert!(socket.accepts(&ipv4_locals::HEADER_REPR));
  559. socket.process(
  560. &mut cx,
  561. &ipv4_locals::HEADER_REPR,
  562. &ipv4_locals::PACKET_PAYLOAD,
  563. );
  564. assert_eq!(socket.recv(), Ok(&cksumd_packet[..]));
  565. assert!(!socket.can_recv());
  566. }
  567. #[cfg(feature = "proto-ipv6")]
  568. {
  569. let mut socket = ipv6_locals::socket(buffer(1), buffer(0));
  570. assert!(!socket.can_recv());
  571. let mut cx = Context::mock();
  572. assert_eq!(socket.recv(), Err(RecvError::Exhausted));
  573. assert!(socket.accepts(&ipv6_locals::HEADER_REPR));
  574. socket.process(
  575. &mut cx,
  576. &ipv6_locals::HEADER_REPR,
  577. &ipv6_locals::PACKET_PAYLOAD,
  578. );
  579. assert!(socket.can_recv());
  580. assert!(socket.accepts(&ipv6_locals::HEADER_REPR));
  581. socket.process(
  582. &mut cx,
  583. &ipv6_locals::HEADER_REPR,
  584. &ipv6_locals::PACKET_PAYLOAD,
  585. );
  586. assert_eq!(socket.recv(), Ok(&ipv6_locals::PACKET_BYTES[..]));
  587. assert!(!socket.can_recv());
  588. }
  589. }
  590. #[test]
  591. fn test_doesnt_accept_wrong_proto() {
  592. #[cfg(feature = "proto-ipv4")]
  593. {
  594. let socket = Socket::new(
  595. IpVersion::Ipv4,
  596. IpProtocol::Unknown(ipv4_locals::IP_PROTO + 1),
  597. buffer(1),
  598. buffer(1),
  599. );
  600. assert!(!socket.accepts(&ipv4_locals::HEADER_REPR));
  601. #[cfg(feature = "proto-ipv6")]
  602. assert!(!socket.accepts(&ipv6_locals::HEADER_REPR));
  603. }
  604. #[cfg(feature = "proto-ipv6")]
  605. {
  606. let socket = Socket::new(
  607. IpVersion::Ipv6,
  608. IpProtocol::Unknown(ipv6_locals::IP_PROTO + 1),
  609. buffer(1),
  610. buffer(1),
  611. );
  612. assert!(!socket.accepts(&ipv6_locals::HEADER_REPR));
  613. #[cfg(feature = "proto-ipv4")]
  614. assert!(!socket.accepts(&ipv4_locals::HEADER_REPR));
  615. }
  616. }
  617. }