wlantest_cli.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. /*
  2. * wlantest controller
  3. * Copyright (c) 2010, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "utils/includes.h"
  15. #include <sys/un.h>
  16. #include "utils/common.h"
  17. #include "wlantest_ctrl.h"
  18. static u8 * attr_get(u8 *buf, size_t buflen, enum wlantest_ctrl_attr attr,
  19. size_t *len)
  20. {
  21. u8 *pos = buf;
  22. while (pos + 8 <= buf + buflen) {
  23. enum wlantest_ctrl_attr a;
  24. size_t alen;
  25. a = WPA_GET_BE32(pos);
  26. pos += 4;
  27. alen = WPA_GET_BE32(pos);
  28. pos += 4;
  29. if (pos + alen > buf + buflen) {
  30. printf("Invalid control message attribute\n");
  31. return NULL;
  32. }
  33. if (a == attr) {
  34. *len = alen;
  35. return pos;
  36. }
  37. pos += alen;
  38. }
  39. return NULL;
  40. }
  41. static int cmd_send_and_recv(int s, const u8 *cmd, size_t cmd_len,
  42. u8 *resp, size_t max_resp_len)
  43. {
  44. int res;
  45. enum wlantest_ctrl_cmd cmd_resp;
  46. if (send(s, cmd, cmd_len, 0) < 0)
  47. return -1;
  48. res = recv(s, resp, max_resp_len, 0);
  49. if (res < 4)
  50. return -1;
  51. cmd_resp = WPA_GET_BE32(resp);
  52. if (cmd_resp == WLANTEST_CTRL_SUCCESS)
  53. return res;
  54. if (cmd_resp == WLANTEST_CTRL_UNKNOWN_CMD)
  55. printf("Unknown command\n");
  56. else if (cmd_resp == WLANTEST_CTRL_INVALID_CMD)
  57. printf("Invalid command\n");
  58. return -1;
  59. }
  60. static int cmd_simple(int s, enum wlantest_ctrl_cmd cmd)
  61. {
  62. u8 buf[4];
  63. int res;
  64. WPA_PUT_BE32(buf, cmd);
  65. res = cmd_send_and_recv(s, buf, sizeof(buf), buf, sizeof(buf));
  66. return res < 0 ? -1 : 0;
  67. }
  68. static int cmd_ping(int s, int argc, char *argv[])
  69. {
  70. int res = cmd_simple(s, WLANTEST_CTRL_PING);
  71. if (res == 0)
  72. printf("PONG\n");
  73. return res == 0;
  74. }
  75. static int cmd_terminate(int s, int argc, char *argv[])
  76. {
  77. return cmd_simple(s, WLANTEST_CTRL_TERMINATE);
  78. }
  79. static int cmd_list_bss(int s, int argc, char *argv[])
  80. {
  81. u8 resp[WLANTEST_CTRL_MAX_RESP_LEN];
  82. u8 buf[4];
  83. u8 *bssid;
  84. size_t len;
  85. int rlen, i;
  86. WPA_PUT_BE32(buf, WLANTEST_CTRL_LIST_BSS);
  87. rlen = cmd_send_and_recv(s, buf, sizeof(buf), resp, sizeof(resp));
  88. if (rlen < 0)
  89. return -1;
  90. bssid = attr_get(resp + 4, rlen - 4, WLANTEST_ATTR_BSSID, &len);
  91. if (bssid == NULL)
  92. return -1;
  93. for (i = 0; i < len / ETH_ALEN; i++)
  94. printf(MACSTR " ", MAC2STR(bssid + ETH_ALEN * i));
  95. printf("\n");
  96. return 0;
  97. }
  98. static int cmd_list_sta(int s, int argc, char *argv[])
  99. {
  100. u8 resp[WLANTEST_CTRL_MAX_RESP_LEN];
  101. u8 buf[100], *pos;
  102. u8 *addr;
  103. size_t len;
  104. int rlen, i;
  105. if (argc < 1) {
  106. printf("list_sta needs one argument: BSSID\n");
  107. return -1;
  108. }
  109. pos = buf;
  110. WPA_PUT_BE32(pos, WLANTEST_CTRL_LIST_STA);
  111. pos += 4;
  112. WPA_PUT_BE32(pos, WLANTEST_ATTR_BSSID);
  113. pos += 4;
  114. WPA_PUT_BE32(pos, ETH_ALEN);
  115. pos += 4;
  116. if (hwaddr_aton(argv[0], pos) < 0) {
  117. printf("Invalid BSSID '%s'\n", argv[0]);
  118. return -1;
  119. }
  120. pos += ETH_ALEN;
  121. rlen = cmd_send_and_recv(s, buf, pos - buf, resp, sizeof(resp));
  122. if (rlen < 0)
  123. return -1;
  124. addr = attr_get(resp + 4, rlen - 4, WLANTEST_ATTR_STA_ADDR, &len);
  125. if (addr == NULL)
  126. return -1;
  127. for (i = 0; i < len / ETH_ALEN; i++)
  128. printf(MACSTR " ", MAC2STR(addr + ETH_ALEN * i));
  129. printf("\n");
  130. return 0;
  131. }
  132. static int cmd_flush(int s, int argc, char *argv[])
  133. {
  134. return cmd_simple(s, WLANTEST_CTRL_FLUSH);
  135. }
  136. struct wlantest_cli_cmd {
  137. const char *cmd;
  138. int (*handler)(int s, int argc, char *argv[]);
  139. const char *usage;
  140. };
  141. static const struct wlantest_cli_cmd wlantest_cli_commands[] = {
  142. { "ping", cmd_ping, "= test connection to wlantest" },
  143. { "terminate", cmd_terminate, "= terminate wlantest" },
  144. { "list_bss", cmd_list_bss, "= get BSS list" },
  145. { "list_sta", cmd_list_sta, "<BSSID> = get STA list" },
  146. { "flush", cmd_flush, "= drop all collected BSS data" },
  147. { NULL, NULL, NULL }
  148. };
  149. static int ctrl_command(int s, int argc, char *argv[])
  150. {
  151. const struct wlantest_cli_cmd *cmd, *match = NULL;
  152. int count = 0;
  153. int ret = 0;
  154. for (cmd = wlantest_cli_commands; cmd->cmd; cmd++) {
  155. if (os_strncasecmp(cmd->cmd, argv[0], os_strlen(argv[0])) == 0)
  156. {
  157. match = cmd;
  158. if (os_strcasecmp(cmd->cmd, argv[0]) == 0) {
  159. /* exact match */
  160. count = 1;
  161. break;
  162. }
  163. count++;
  164. }
  165. }
  166. if (count > 1) {
  167. printf("Ambiguous command '%s'; possible commands:", argv[0]);
  168. for (cmd = wlantest_cli_commands; cmd->cmd; cmd++) {
  169. if (os_strncasecmp(cmd->cmd, argv[0],
  170. os_strlen(argv[0])) == 0) {
  171. printf(" %s", cmd->cmd);
  172. }
  173. }
  174. printf("\n");
  175. ret = 1;
  176. } else if (count == 0) {
  177. printf("Unknown command '%s'\n", argv[0]);
  178. ret = 1;
  179. } else {
  180. ret = match->handler(s, argc - 1, &argv[1]);
  181. }
  182. return ret;
  183. }
  184. int main(int argc, char *argv[])
  185. {
  186. int s;
  187. struct sockaddr_un addr;
  188. int ret = 0;
  189. s = socket(AF_UNIX, SOCK_SEQPACKET, 0);
  190. if (s < 0) {
  191. perror("socket");
  192. return -1;
  193. }
  194. os_memset(&addr, 0, sizeof(addr));
  195. addr.sun_family = AF_UNIX;
  196. os_strlcpy(addr.sun_path + 1, WLANTEST_SOCK_NAME,
  197. sizeof(addr.sun_path) - 1);
  198. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  199. perror("connect");
  200. close(s);
  201. return -1;
  202. }
  203. if (argc > 1) {
  204. ret = ctrl_command(s, argc - 1, &argv[1]);
  205. if (ret < 0)
  206. printf("FAIL\n");
  207. } else {
  208. /* TODO: interactive */
  209. }
  210. close(s);
  211. return ret;
  212. }