hwsim_test.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. /*
  2. * hwsim_test - Data connectivity test for mac80211_hwsim
  3. * Copyright (c) 2009, Atheros Communications
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include <stdlib.h>
  9. #include <stdio.h>
  10. #include <string.h>
  11. #include <unistd.h>
  12. #include <sys/ioctl.h>
  13. #include <sys/socket.h>
  14. #include <sys/select.h>
  15. #include <netpacket/packet.h>
  16. #include <net/ethernet.h>
  17. #include <net/if.h>
  18. #include <arpa/inet.h>
  19. #include <netinet/ip.h>
  20. #define MAC2STR(a) (a)[0], (a)[1], (a)[2], (a)[3], (a)[4], (a)[5]
  21. #define MACSTR "%02x:%02x:%02x:%02x:%02x:%02x"
  22. #define HWSIM_ETHERTYPE ETHERTYPE_IP
  23. #define HWSIM_PACKETLEN 1500
  24. static unsigned char addr1[ETH_ALEN], addr2[ETH_ALEN], bcast[ETH_ALEN];
  25. static u_int16_t checksum(const void *buf, size_t len)
  26. {
  27. size_t i;
  28. u_int32_t sum = 0;
  29. const u_int16_t *pos = buf;
  30. for (i = 0; i < len / 2; i++)
  31. sum += *pos++;
  32. while (sum >> 16)
  33. sum = (sum & 0xffff) + (sum >> 16);
  34. return sum ^ 0xffff;
  35. }
  36. static void tx(int s, const char *ifname, int ifindex,
  37. const unsigned char *src, const unsigned char *dst)
  38. {
  39. char buf[HWSIM_PACKETLEN], *pos;
  40. struct ether_header *eth;
  41. struct iphdr *ip;
  42. int i;
  43. printf("TX: %s(ifindex=%d) " MACSTR " -> " MACSTR "\n",
  44. ifname, ifindex, MAC2STR(src), MAC2STR(dst));
  45. eth = (struct ether_header *) buf;
  46. memcpy(eth->ether_dhost, dst, ETH_ALEN);
  47. memcpy(eth->ether_shost, src, ETH_ALEN);
  48. eth->ether_type = htons(HWSIM_ETHERTYPE);
  49. ip = (struct iphdr *) (eth + 1);
  50. memset(ip, 0, sizeof(*ip));
  51. ip->ihl = 5;
  52. ip->version = 4;
  53. ip->ttl = 64;
  54. ip->tos = 0;
  55. ip->tot_len = htons(HWSIM_PACKETLEN - sizeof(*eth));
  56. ip->protocol = 1;
  57. ip->saddr = htonl(192 << 24 | 168 << 16 | 1 << 8 | 1);
  58. ip->daddr = htonl(192 << 24 | 168 << 16 | 1 << 8 | 2);
  59. ip->check = checksum(ip, sizeof(*ip));
  60. pos = (char *) (ip + 1);
  61. for (i = 0; i < sizeof(buf) - sizeof(*eth) - sizeof(*ip); i++)
  62. *pos++ = i;
  63. if (send(s, buf, sizeof(buf), 0) < 0)
  64. perror("send");
  65. }
  66. struct rx_result {
  67. unsigned int rx_unicast1:1;
  68. unsigned int rx_broadcast1:1;
  69. unsigned int rx_unicast2:1;
  70. unsigned int rx_broadcast2:1;
  71. };
  72. static void rx(int s, int iface, const char *ifname, int ifindex,
  73. struct rx_result *res)
  74. {
  75. char buf[HWSIM_PACKETLEN + 1], *pos;
  76. struct ether_header *eth;
  77. struct iphdr *ip;
  78. int len, i;
  79. len = recv(s, buf, sizeof(buf), 0);
  80. if (len < 0) {
  81. perror("recv");
  82. return;
  83. }
  84. eth = (struct ether_header *) buf;
  85. printf("RX: %s(ifindex=%d) " MACSTR " -> " MACSTR " (len=%d)\n",
  86. ifname, ifindex,
  87. MAC2STR(eth->ether_shost), MAC2STR(eth->ether_dhost), len);
  88. if (len != HWSIM_PACKETLEN) {
  89. printf("Ignore frame with unexpected RX length (%d)\n", len);
  90. return;
  91. }
  92. ip = (struct iphdr *) (eth + 1);
  93. pos = (char *) (ip + 1);
  94. for (i = 0; i < sizeof(buf) - 1 - sizeof(*eth) - sizeof(*ip); i++) {
  95. if ((unsigned char) *pos != (unsigned char) i) {
  96. printf("Ignore frame with unexpected contents\n");
  97. printf("i=%d received=0x%x expected=0x%x\n",
  98. i, (unsigned char) *pos, (unsigned char) i);
  99. return;
  100. }
  101. pos++;
  102. }
  103. if (iface == 1 &&
  104. memcmp(eth->ether_dhost, addr1, ETH_ALEN) == 0 &&
  105. memcmp(eth->ether_shost, addr2, ETH_ALEN) == 0)
  106. res->rx_unicast1 = 1;
  107. else if (iface == 1 &&
  108. memcmp(eth->ether_dhost, bcast, ETH_ALEN) == 0 &&
  109. memcmp(eth->ether_shost, addr2, ETH_ALEN) == 0)
  110. res->rx_broadcast1 = 1;
  111. else if (iface == 2 &&
  112. memcmp(eth->ether_dhost, addr2, ETH_ALEN) == 0 &&
  113. memcmp(eth->ether_shost, addr1, ETH_ALEN) == 0)
  114. res->rx_unicast2 = 1;
  115. else if (iface == 2 &&
  116. memcmp(eth->ether_dhost, bcast, ETH_ALEN) == 0 &&
  117. memcmp(eth->ether_shost, addr1, ETH_ALEN) == 0)
  118. res->rx_broadcast2 = 1;
  119. }
  120. int main(int argc, char *argv[])
  121. {
  122. int s1 = -1, s2 = -1, ret = -1;
  123. struct ifreq ifr;
  124. int ifindex1, ifindex2;
  125. struct sockaddr_ll ll;
  126. fd_set rfds;
  127. struct timeval tv;
  128. struct rx_result res;
  129. if (argc != 3) {
  130. fprintf(stderr, "usage: hwsim_test <ifname1> <ifname2>\n");
  131. return -1;
  132. }
  133. memset(bcast, 0xff, ETH_ALEN);
  134. s1 = socket(PF_PACKET, SOCK_RAW, htons(HWSIM_ETHERTYPE));
  135. if (s1 < 0) {
  136. perror("socket");
  137. goto fail;
  138. }
  139. s2 = socket(PF_PACKET, SOCK_RAW, htons(HWSIM_ETHERTYPE));
  140. if (s2 < 0) {
  141. perror("socket");
  142. goto fail;
  143. }
  144. memset(&ifr, 0, sizeof(ifr));
  145. strncpy(ifr.ifr_name, argv[1], sizeof(ifr.ifr_name));
  146. if (ioctl(s1, SIOCGIFINDEX, &ifr) < 0) {
  147. perror("ioctl[SIOCGIFINDEX]");
  148. goto fail;
  149. }
  150. ifindex1 = ifr.ifr_ifindex;
  151. if (ioctl(s1, SIOCGIFHWADDR, &ifr) < 0) {
  152. perror("ioctl[SIOCGIFHWADDR]");
  153. goto fail;
  154. }
  155. memcpy(addr1, ifr.ifr_hwaddr.sa_data, ETH_ALEN);
  156. memset(&ifr, 0, sizeof(ifr));
  157. strncpy(ifr.ifr_name, argv[2], sizeof(ifr.ifr_name));
  158. if (ioctl(s2, SIOCGIFINDEX, &ifr) < 0) {
  159. perror("ioctl[SIOCGIFINDEX]");
  160. goto fail;
  161. }
  162. ifindex2 = ifr.ifr_ifindex;
  163. if (ioctl(s2, SIOCGIFHWADDR, &ifr) < 0) {
  164. perror("ioctl[SIOCGIFHWADDR]");
  165. goto fail;
  166. }
  167. memcpy(addr2, ifr.ifr_hwaddr.sa_data, ETH_ALEN);
  168. memset(&ll, 0, sizeof(ll));
  169. ll.sll_family = PF_PACKET;
  170. ll.sll_ifindex = ifindex1;
  171. ll.sll_protocol = htons(HWSIM_ETHERTYPE);
  172. if (bind(s1, (struct sockaddr *) &ll, sizeof(ll)) < 0) {
  173. perror("bind");
  174. goto fail;
  175. }
  176. memset(&ll, 0, sizeof(ll));
  177. ll.sll_family = PF_PACKET;
  178. ll.sll_ifindex = ifindex2;
  179. ll.sll_protocol = htons(HWSIM_ETHERTYPE);
  180. if (bind(s2, (struct sockaddr *) &ll, sizeof(ll)) < 0) {
  181. perror("bind");
  182. goto fail;
  183. }
  184. tx(s1, argv[1], ifindex1, addr1, addr2);
  185. tx(s1, argv[1], ifindex1, addr1, bcast);
  186. tx(s2, argv[2], ifindex2, addr2, addr1);
  187. tx(s2, argv[2], ifindex2, addr2, bcast);
  188. tv.tv_sec = 1;
  189. tv.tv_usec = 0;
  190. memset(&res, 0, sizeof(res));
  191. for (;;) {
  192. int r;
  193. FD_ZERO(&rfds);
  194. FD_SET(s1, &rfds);
  195. FD_SET(s2, &rfds);
  196. r = select(s2 + 1, &rfds, NULL, NULL, &tv);
  197. if (r < 0) {
  198. perror("select");
  199. goto fail;
  200. }
  201. if (r == 0)
  202. break; /* timeout */
  203. if (FD_ISSET(s1, &rfds))
  204. rx(s1, 1, argv[1], ifindex1, &res);
  205. if (FD_ISSET(s2, &rfds))
  206. rx(s2, 2, argv[2], ifindex2, &res);
  207. if (res.rx_unicast1 && res.rx_broadcast1 &&
  208. res.rx_unicast2 && res.rx_broadcast2) {
  209. ret = 0;
  210. break;
  211. }
  212. }
  213. if (ret) {
  214. printf("Did not receive all expected frames:\n"
  215. "rx_unicast1=%u rx_broadcast1=%u "
  216. "rx_unicast2=%u rx_broadcast2=%u\n",
  217. res.rx_unicast1, res.rx_broadcast1,
  218. res.rx_unicast2, res.rx_broadcast2);
  219. } else {
  220. printf("Both unicast and broadcast working in both "
  221. "directions\n");
  222. }
  223. fail:
  224. close(s1);
  225. close(s2);
  226. return ret;
  227. }