sixlowpan_benchmark.rs 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. //! 6lowpan benchmark exmaple
  2. //!
  3. //! This example runs a simple TCP throughput benchmark using the 6lowpan implementation in smoltcp
  4. //! It is designed to run using the Linux ieee802154/6lowpan support,
  5. //! using mac802154_hwsim.
  6. //!
  7. //! mac802154_hwsim allows you to create multiple "virtual" radios and specify
  8. //! which is in range with which. This is very useful for testing without
  9. //! needing real hardware. By default it creates two interfaces `wpan0` and
  10. //! `wpan1` that are in range with each other. You can customize this with
  11. //! the `wpan-hwsim` tool.
  12. //!
  13. //! We'll configure Linux to speak 6lowpan on `wpan0`, and leave `wpan1`
  14. //! unconfigured so smoltcp can use it with a raw socket.
  15. //!
  16. //!
  17. //!
  18. //!
  19. //!
  20. //! # Setup
  21. //!
  22. //! modprobe mac802154_hwsim
  23. //!
  24. //! ip link set wpan0 down
  25. //! ip link set wpan1 down
  26. //! iwpan dev wpan0 set pan_id 0xbeef
  27. //! iwpan dev wpan1 set pan_id 0xbeef
  28. //! ip link add link wpan0 name lowpan0 type lowpan
  29. //! ip link set wpan0 up
  30. //! ip link set wpan1 up
  31. //! ip link set lowpan0 up
  32. //!
  33. //!
  34. //! # Running
  35. //!
  36. //! Compile with `cargo build --release --example sixlowpan_benchmark`
  37. //! Run it with `sudo ./target/release/examples/sixlowpan_benchmark [reader|writer]`.
  38. //!
  39. //! # Teardown
  40. //!
  41. //! rmmod mac802154_hwsim
  42. //!
  43. mod utils;
  44. use log::debug;
  45. use std::os::unix::io::AsRawFd;
  46. use std::str;
  47. use smoltcp::iface::{InterfaceBuilder, NeighborCache, SocketSet};
  48. use smoltcp::phy::{wait as phy_wait, Medium, RawSocket};
  49. use smoltcp::socket::tcp;
  50. use smoltcp::wire::{Ieee802154Pan, IpAddress, IpCidr};
  51. //For benchmark
  52. use smoltcp::time::{Duration, Instant};
  53. use std::cmp;
  54. use std::io::{Read, Write};
  55. use std::net::SocketAddrV6;
  56. use std::net::TcpStream;
  57. use std::sync::atomic::{AtomicBool, Ordering};
  58. use std::thread;
  59. use std::fs;
  60. fn if_nametoindex(ifname: &str) -> u32 {
  61. let contents = fs::read_to_string(format!("/sys/devices/virtual/net/{ifname}/ifindex"))
  62. .expect("couldn't read interface from \"/sys/devices/virtual/net\"")
  63. .replace('\n', "");
  64. contents.parse::<u32>().unwrap()
  65. }
  66. const AMOUNT: usize = 100_000_000;
  67. enum Client {
  68. Reader,
  69. Writer,
  70. }
  71. fn client(kind: Client) {
  72. let port: u16 = match kind {
  73. Client::Reader => 1234,
  74. Client::Writer => 1235,
  75. };
  76. let scope_id = if_nametoindex("lowpan0");
  77. let socket_addr = SocketAddrV6::new(
  78. "fe80:0:0:0:180b:4242:4242:4242".parse().unwrap(),
  79. port,
  80. 0,
  81. scope_id,
  82. );
  83. let mut stream = TcpStream::connect(socket_addr).expect("failed to connect TLKAGMKA");
  84. let mut buffer = vec![0; 1_000_000];
  85. let start = Instant::now();
  86. let mut processed = 0;
  87. while processed < AMOUNT {
  88. let length = cmp::min(buffer.len(), AMOUNT - processed);
  89. let result = match kind {
  90. Client::Reader => stream.read(&mut buffer[..length]),
  91. Client::Writer => stream.write(&buffer[..length]),
  92. };
  93. match result {
  94. Ok(0) => break,
  95. Ok(result) => {
  96. // print!("(P:{})", result);
  97. processed += result
  98. }
  99. Err(err) => panic!("cannot process: {err}"),
  100. }
  101. }
  102. let end = Instant::now();
  103. let elapsed = (end - start).total_millis() as f64 / 1000.0;
  104. println!("throughput: {:.3} Gbps", AMOUNT as f64 / elapsed / 0.125e9);
  105. CLIENT_DONE.store(true, Ordering::SeqCst);
  106. }
  107. static CLIENT_DONE: AtomicBool = AtomicBool::new(false);
  108. fn main() {
  109. #[cfg(feature = "log")]
  110. utils::setup_logging("info");
  111. let (mut opts, mut free) = utils::create_options();
  112. utils::add_middleware_options(&mut opts, &mut free);
  113. free.push("MODE");
  114. let mut matches = utils::parse_options(&opts, free);
  115. let device = RawSocket::new("wpan1", Medium::Ieee802154).unwrap();
  116. let fd = device.as_raw_fd();
  117. let mut device =
  118. utils::parse_middleware_options(&mut matches, device, /*loopback=*/ false);
  119. let mode = match matches.free[0].as_ref() {
  120. "reader" => Client::Reader,
  121. "writer" => Client::Writer,
  122. _ => panic!("invalid mode"),
  123. };
  124. let neighbor_cache = NeighborCache::new();
  125. let tcp1_rx_buffer = tcp::SocketBuffer::new(vec![0; 4096]);
  126. let tcp1_tx_buffer = tcp::SocketBuffer::new(vec![0; 4096]);
  127. let tcp1_socket = tcp::Socket::new(tcp1_rx_buffer, tcp1_tx_buffer);
  128. let tcp2_rx_buffer = tcp::SocketBuffer::new(vec![0; 4096]);
  129. let tcp2_tx_buffer = tcp::SocketBuffer::new(vec![0; 4096]);
  130. let tcp2_socket = tcp::Socket::new(tcp2_rx_buffer, tcp2_tx_buffer);
  131. let ieee802154_addr = smoltcp::wire::Ieee802154Address::Extended([
  132. 0x1a, 0x0b, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42,
  133. ]);
  134. let mut ip_addrs = heapless::Vec::<IpCidr, 5>::new();
  135. ip_addrs
  136. .push(IpCidr::new(
  137. IpAddress::v6(0xfe80, 0, 0, 0, 0x180b, 0x4242, 0x4242, 0x4242),
  138. 64,
  139. ))
  140. .unwrap();
  141. let mut builder = InterfaceBuilder::new()
  142. .ip_addrs(ip_addrs)
  143. .pan_id(Ieee802154Pan(0xbeef));
  144. builder = builder
  145. .hardware_addr(ieee802154_addr.into())
  146. .neighbor_cache(neighbor_cache)
  147. .sixlowpan_fragmentation_buffer(vec![]);
  148. let mut iface = builder.finalize(&mut device);
  149. let mut sockets = SocketSet::new(vec![]);
  150. let tcp1_handle = sockets.add(tcp1_socket);
  151. let tcp2_handle = sockets.add(tcp2_socket);
  152. let default_timeout = Some(Duration::from_millis(1000));
  153. thread::spawn(move || client(mode));
  154. let mut processed = 0;
  155. while !CLIENT_DONE.load(Ordering::SeqCst) {
  156. let timestamp = Instant::now();
  157. match iface.poll(timestamp, &mut device, &mut sockets) {
  158. Ok(_) => {}
  159. Err(e) => {
  160. debug!("poll error: {}", e);
  161. }
  162. }
  163. // tcp:1234: emit data
  164. let socket = sockets.get_mut::<tcp::Socket>(tcp1_handle);
  165. if !socket.is_open() {
  166. socket.listen(1234).unwrap();
  167. }
  168. if socket.can_send() && processed < AMOUNT {
  169. let length = socket
  170. .send(|buffer| {
  171. let length = cmp::min(buffer.len(), AMOUNT - processed);
  172. (length, length)
  173. })
  174. .unwrap();
  175. processed += length;
  176. }
  177. // tcp:1235: sink data
  178. let socket = sockets.get_mut::<tcp::Socket>(tcp2_handle);
  179. if !socket.is_open() {
  180. socket.listen(1235).unwrap();
  181. }
  182. if socket.can_recv() && processed < AMOUNT {
  183. let length = socket
  184. .recv(|buffer| {
  185. let length = cmp::min(buffer.len(), AMOUNT - processed);
  186. (length, length)
  187. })
  188. .unwrap();
  189. processed += length;
  190. }
  191. match iface.poll_at(timestamp, &sockets) {
  192. Some(poll_at) if timestamp < poll_at => {
  193. phy_wait(fd, Some(poll_at - timestamp)).expect("wait error");
  194. }
  195. Some(_) => (),
  196. None => {
  197. phy_wait(fd, default_timeout).expect("wait error");
  198. }
  199. }
  200. }
  201. }