sixlowpan.rs 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. //! 6lowpan exmaple
  2. //!
  3. //! This example is designed to run using the Linux ieee802154/6lowpan support,
  4. //! using mac802154_hwsim.
  5. //!
  6. //! mac802154_hwsim allows you to create multiple "virtual" radios and specify
  7. //! which is in range with which. This is very useful for testing without
  8. //! needing real hardware. By default it creates two interfaces `wpan0` and
  9. //! `wpan1` that are in range with each other. You can customize this with
  10. //! the `wpan-hwsim` tool.
  11. //!
  12. //! We'll configure Linux to speak 6lowpan on `wpan0`, and leave `wpan1`
  13. //! unconfigured so smoltcp can use it with a raw socket.
  14. //!
  15. //! # Setup
  16. //!
  17. //! modprobe mac802154_hwsim
  18. //!
  19. //! ip link set wpan0 down
  20. //! ip link set wpan1 down
  21. //! iwpan dev wpan0 set pan_id 0xbeef
  22. //! iwpan dev wpan1 set pan_id 0xbeef
  23. //! ip link add link wpan0 name lowpan0 type lowpan
  24. //! ip link set wpan0 up
  25. //! ip link set wpan1 up
  26. //! ip link set lowpan0 up
  27. //!
  28. //! # Running
  29. //!
  30. //! Run it with `sudo ./target/debug/examples/sixlowpan`.
  31. //!
  32. //! You can set wireshark to sniff on interface `wpan0` to see the packets.
  33. //!
  34. //! Ping it with `ping fe80::180b:4242:4242:4242%lowpan0`.
  35. //!
  36. //! Speak UDP with `nc -uv fe80::180b:4242:4242:4242%lowpan0 6969`.
  37. //!
  38. //! # Teardown
  39. //!
  40. //! rmmod mac802154_hwsim
  41. //!
  42. mod utils;
  43. use log::debug;
  44. use std::collections::BTreeMap;
  45. use std::os::unix::io::AsRawFd;
  46. use std::str;
  47. use smoltcp::iface::{InterfaceBuilder, NeighborCache, ReassemblyBuffer, SocketSet};
  48. use smoltcp::phy::{wait as phy_wait, Medium, RawSocket};
  49. use smoltcp::socket::tcp;
  50. use smoltcp::socket::udp;
  51. use smoltcp::time::Instant;
  52. use smoltcp::wire::{Ieee802154Pan, IpAddress, IpCidr};
  53. fn main() {
  54. utils::setup_logging("");
  55. let (mut opts, mut free) = utils::create_options();
  56. utils::add_middleware_options(&mut opts, &mut free);
  57. let mut matches = utils::parse_options(&opts, free);
  58. let device = RawSocket::new("wpan1", Medium::Ieee802154).unwrap();
  59. let fd = device.as_raw_fd();
  60. let mut device =
  61. utils::parse_middleware_options(&mut matches, device, /*loopback=*/ false);
  62. let neighbor_cache = NeighborCache::new(BTreeMap::new());
  63. let udp_rx_buffer = udp::PacketBuffer::new(vec![udp::PacketMetadata::EMPTY], vec![0; 1280]);
  64. let udp_tx_buffer = udp::PacketBuffer::new(vec![udp::PacketMetadata::EMPTY], vec![0; 1280]);
  65. let udp_socket = udp::Socket::new(udp_rx_buffer, udp_tx_buffer);
  66. let tcp_rx_buffer = tcp::SocketBuffer::new(vec![0; 4096]);
  67. let tcp_tx_buffer = tcp::SocketBuffer::new(vec![0; 4096]);
  68. let tcp_socket = tcp::Socket::new(tcp_rx_buffer, tcp_tx_buffer);
  69. let ieee802154_addr = smoltcp::wire::Ieee802154Address::Extended([
  70. 0x1a, 0x0b, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42,
  71. ]);
  72. let ip_addrs = [IpCidr::new(
  73. IpAddress::v6(0xfe80, 0, 0, 0, 0x180b, 0x4242, 0x4242, 0x4242),
  74. 64,
  75. )];
  76. let mut builder = InterfaceBuilder::new()
  77. .ip_addrs(ip_addrs)
  78. .pan_id(Ieee802154Pan(0xbeef));
  79. builder = builder
  80. .hardware_addr(ieee802154_addr.into())
  81. .neighbor_cache(neighbor_cache);
  82. #[cfg(feature = "proto-ipv4-fragmentation")]
  83. {
  84. let ipv4_frag_cache = ReassemblyBuffer::new(vec![], BTreeMap::new());
  85. builder = builder.ipv4_reassembly_buffer(ipv4_frag_cache);
  86. }
  87. #[cfg(feature = "proto-sixlowpan-fragmentation")]
  88. let mut out_packet_buffer = [0u8; 1280];
  89. #[cfg(feature = "proto-sixlowpan-fragmentation")]
  90. {
  91. let sixlowpan_frag_cache = ReassemblyBuffer::new(vec![], BTreeMap::new());
  92. builder = builder
  93. .sixlowpan_reassembly_buffer(sixlowpan_frag_cache)
  94. .sixlowpan_fragmentation_buffer(&mut out_packet_buffer[..]);
  95. }
  96. let mut iface = builder.finalize(&mut device);
  97. let mut sockets = SocketSet::new(vec![]);
  98. let udp_handle = sockets.add(udp_socket);
  99. let tcp_handle = sockets.add(tcp_socket);
  100. let socket = sockets.get_mut::<tcp::Socket>(tcp_handle);
  101. socket.listen(50000).unwrap();
  102. let mut tcp_active = false;
  103. loop {
  104. let timestamp = Instant::now();
  105. let mut poll = true;
  106. while poll {
  107. match iface.poll(timestamp, &mut device, &mut sockets) {
  108. Ok(r) => poll = r,
  109. Err(e) => {
  110. debug!("poll error: {}", e);
  111. break;
  112. }
  113. }
  114. }
  115. // udp:6969: respond "hello"
  116. let socket = sockets.get_mut::<udp::Socket>(udp_handle);
  117. if !socket.is_open() {
  118. socket.bind(6969).unwrap()
  119. }
  120. let mut buffer = vec![0; 1500];
  121. let client = match socket.recv() {
  122. Ok((data, endpoint)) => {
  123. debug!(
  124. "udp:6969 recv data: {:?} from {}",
  125. str::from_utf8(data).unwrap(),
  126. endpoint
  127. );
  128. buffer[..data.len()].copy_from_slice(data);
  129. Some((data.len(), endpoint))
  130. }
  131. Err(_) => None,
  132. };
  133. if let Some((len, endpoint)) = client {
  134. debug!(
  135. "udp:6969 send data: {:?}",
  136. str::from_utf8(&buffer[..len]).unwrap()
  137. );
  138. socket.send_slice(&buffer[..len], endpoint).unwrap();
  139. }
  140. let socket = sockets.get_mut::<tcp::Socket>(tcp_handle);
  141. if socket.is_active() && !tcp_active {
  142. debug!("connected");
  143. } else if !socket.is_active() && tcp_active {
  144. debug!("disconnected");
  145. }
  146. tcp_active = socket.is_active();
  147. if socket.may_recv() {
  148. let data = socket
  149. .recv(|data| {
  150. let data = data.to_owned();
  151. if !data.is_empty() {
  152. debug!(
  153. "recv data: {:?}",
  154. str::from_utf8(data.as_ref()).unwrap_or("(invalid utf8)")
  155. );
  156. }
  157. (data.len(), data)
  158. })
  159. .unwrap();
  160. if socket.can_send() && !data.is_empty() {
  161. debug!(
  162. "send data: {:?}",
  163. str::from_utf8(data.as_ref()).unwrap_or("(invalid utf8)")
  164. );
  165. socket.send_slice(&data[..]).unwrap();
  166. }
  167. } else if socket.may_send() {
  168. debug!("close");
  169. socket.close();
  170. }
  171. phy_wait(fd, iface.poll_delay(timestamp, &sockets)).expect("wait error");
  172. }
  173. }