wlantest_cli.c 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140
  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 "utils/eloop.h"
  18. #include "utils/edit.h"
  19. #include "wlantest_ctrl.h"
  20. static int get_cmd_arg_num(const char *str, int pos)
  21. {
  22. int arg = 0, i;
  23. for (i = 0; i <= pos; i++) {
  24. if (str[i] != ' ') {
  25. arg++;
  26. while (i <= pos && str[i] != ' ')
  27. i++;
  28. }
  29. }
  30. if (arg > 0)
  31. arg--;
  32. return arg;
  33. }
  34. static int get_prev_arg_pos(const char *str, int pos)
  35. {
  36. while (pos > 0 && str[pos - 1] != ' ')
  37. pos--;
  38. while (pos > 0 && str[pos - 1] == ' ')
  39. pos--;
  40. while (pos > 0 && str[pos - 1] != ' ')
  41. pos--;
  42. return pos;
  43. }
  44. static u8 * attr_get(u8 *buf, size_t buflen, enum wlantest_ctrl_attr attr,
  45. size_t *len)
  46. {
  47. u8 *pos = buf;
  48. while (pos + 8 <= buf + buflen) {
  49. enum wlantest_ctrl_attr a;
  50. size_t alen;
  51. a = WPA_GET_BE32(pos);
  52. pos += 4;
  53. alen = WPA_GET_BE32(pos);
  54. pos += 4;
  55. if (pos + alen > buf + buflen) {
  56. printf("Invalid control message attribute\n");
  57. return NULL;
  58. }
  59. if (a == attr) {
  60. *len = alen;
  61. return pos;
  62. }
  63. pos += alen;
  64. }
  65. return NULL;
  66. }
  67. static u8 * attr_hdr_add(u8 *pos, u8 *end, enum wlantest_ctrl_attr attr,
  68. size_t len)
  69. {
  70. if (pos == NULL || end - pos < 8 + len)
  71. return NULL;
  72. WPA_PUT_BE32(pos, attr);
  73. pos += 4;
  74. WPA_PUT_BE32(pos, len);
  75. pos += 4;
  76. return pos;
  77. }
  78. static u8 * attr_add_str(u8 *pos, u8 *end, enum wlantest_ctrl_attr attr,
  79. const char *str)
  80. {
  81. size_t len = os_strlen(str);
  82. if (pos == NULL || end - pos < 8 + len)
  83. return NULL;
  84. WPA_PUT_BE32(pos, attr);
  85. pos += 4;
  86. WPA_PUT_BE32(pos, len);
  87. pos += 4;
  88. os_memcpy(pos, str, len);
  89. pos += len;
  90. return pos;
  91. }
  92. static u8 * attr_add_be32(u8 *pos, u8 *end, enum wlantest_ctrl_attr attr,
  93. u32 val)
  94. {
  95. if (pos == NULL || end - pos < 12)
  96. return NULL;
  97. WPA_PUT_BE32(pos, attr);
  98. pos += 4;
  99. WPA_PUT_BE32(pos, 4);
  100. pos += 4;
  101. WPA_PUT_BE32(pos, val);
  102. pos += 4;
  103. return pos;
  104. }
  105. static int cmd_send_and_recv(int s, const u8 *cmd, size_t cmd_len,
  106. u8 *resp, size_t max_resp_len)
  107. {
  108. int res;
  109. enum wlantest_ctrl_cmd cmd_resp;
  110. if (send(s, cmd, cmd_len, 0) < 0)
  111. return -1;
  112. res = recv(s, resp, max_resp_len, 0);
  113. if (res < 4)
  114. return -1;
  115. cmd_resp = WPA_GET_BE32(resp);
  116. if (cmd_resp == WLANTEST_CTRL_SUCCESS)
  117. return res;
  118. if (cmd_resp == WLANTEST_CTRL_UNKNOWN_CMD)
  119. printf("Unknown command\n");
  120. else if (cmd_resp == WLANTEST_CTRL_INVALID_CMD)
  121. printf("Invalid command\n");
  122. return -1;
  123. }
  124. static int cmd_simple(int s, enum wlantest_ctrl_cmd cmd)
  125. {
  126. u8 buf[4];
  127. int res;
  128. WPA_PUT_BE32(buf, cmd);
  129. res = cmd_send_and_recv(s, buf, sizeof(buf), buf, sizeof(buf));
  130. return res < 0 ? -1 : 0;
  131. }
  132. static char ** get_bssid_list(int s)
  133. {
  134. u8 resp[WLANTEST_CTRL_MAX_RESP_LEN];
  135. u8 buf[4];
  136. u8 *bssid;
  137. size_t len;
  138. int rlen, i;
  139. char **res;
  140. WPA_PUT_BE32(buf, WLANTEST_CTRL_LIST_BSS);
  141. rlen = cmd_send_and_recv(s, buf, sizeof(buf), resp, sizeof(resp));
  142. if (rlen < 0)
  143. return NULL;
  144. bssid = attr_get(resp + 4, rlen - 4, WLANTEST_ATTR_BSSID, &len);
  145. if (bssid == NULL)
  146. return NULL;
  147. res = os_zalloc((len / ETH_ALEN + 1) * sizeof(char *));
  148. if (res == NULL)
  149. return NULL;
  150. for (i = 0; i < len / ETH_ALEN; i++) {
  151. res[i] = os_zalloc(18);
  152. if (res[i] == NULL)
  153. break;
  154. os_snprintf(res[i], 18, MACSTR, MAC2STR(bssid + ETH_ALEN * i));
  155. }
  156. return res;
  157. }
  158. static char ** get_sta_list(int s, const u8 *bssid, int add_bcast)
  159. {
  160. u8 resp[WLANTEST_CTRL_MAX_RESP_LEN];
  161. u8 buf[100], *pos, *end;
  162. u8 *addr;
  163. size_t len;
  164. int rlen, i;
  165. char **res;
  166. pos = buf;
  167. end = buf + sizeof(buf);
  168. WPA_PUT_BE32(pos, WLANTEST_CTRL_LIST_STA);
  169. pos += 4;
  170. pos = attr_hdr_add(pos, end, WLANTEST_ATTR_BSSID, ETH_ALEN);
  171. os_memcpy(pos, bssid, ETH_ALEN);
  172. pos += ETH_ALEN;
  173. rlen = cmd_send_and_recv(s, buf, pos - buf, resp, sizeof(resp));
  174. if (rlen < 0)
  175. return NULL;
  176. addr = attr_get(resp + 4, rlen - 4, WLANTEST_ATTR_STA_ADDR, &len);
  177. if (addr == NULL)
  178. return NULL;
  179. res = os_zalloc((len / ETH_ALEN + 1 + add_bcast) * sizeof(char *));
  180. if (res == NULL)
  181. return NULL;
  182. for (i = 0; i < len / ETH_ALEN; i++) {
  183. res[i] = os_zalloc(18);
  184. if (res[i] == NULL)
  185. break;
  186. os_snprintf(res[i], 18, MACSTR, MAC2STR(addr + ETH_ALEN * i));
  187. }
  188. if (add_bcast)
  189. res[i] = os_strdup("ff:ff:ff:ff:ff:ff");
  190. return res;
  191. }
  192. static int cmd_ping(int s, int argc, char *argv[])
  193. {
  194. int res = cmd_simple(s, WLANTEST_CTRL_PING);
  195. if (res == 0)
  196. printf("PONG\n");
  197. return res == 0;
  198. }
  199. static int cmd_terminate(int s, int argc, char *argv[])
  200. {
  201. return cmd_simple(s, WLANTEST_CTRL_TERMINATE);
  202. }
  203. static int cmd_list_bss(int s, int argc, char *argv[])
  204. {
  205. u8 resp[WLANTEST_CTRL_MAX_RESP_LEN];
  206. u8 buf[4];
  207. u8 *bssid;
  208. size_t len;
  209. int rlen, i;
  210. WPA_PUT_BE32(buf, WLANTEST_CTRL_LIST_BSS);
  211. rlen = cmd_send_and_recv(s, buf, sizeof(buf), resp, sizeof(resp));
  212. if (rlen < 0)
  213. return -1;
  214. bssid = attr_get(resp + 4, rlen - 4, WLANTEST_ATTR_BSSID, &len);
  215. if (bssid == NULL)
  216. return -1;
  217. for (i = 0; i < len / ETH_ALEN; i++)
  218. printf(MACSTR " ", MAC2STR(bssid + ETH_ALEN * i));
  219. printf("\n");
  220. return 0;
  221. }
  222. static int cmd_list_sta(int s, int argc, char *argv[])
  223. {
  224. u8 resp[WLANTEST_CTRL_MAX_RESP_LEN];
  225. u8 buf[100], *pos;
  226. u8 *addr;
  227. size_t len;
  228. int rlen, i;
  229. if (argc < 1) {
  230. printf("list_sta needs one argument: BSSID\n");
  231. return -1;
  232. }
  233. pos = buf;
  234. WPA_PUT_BE32(pos, WLANTEST_CTRL_LIST_STA);
  235. pos += 4;
  236. WPA_PUT_BE32(pos, WLANTEST_ATTR_BSSID);
  237. pos += 4;
  238. WPA_PUT_BE32(pos, ETH_ALEN);
  239. pos += 4;
  240. if (hwaddr_aton(argv[0], pos) < 0) {
  241. printf("Invalid BSSID '%s'\n", argv[0]);
  242. return -1;
  243. }
  244. pos += ETH_ALEN;
  245. rlen = cmd_send_and_recv(s, buf, pos - buf, resp, sizeof(resp));
  246. if (rlen < 0)
  247. return -1;
  248. addr = attr_get(resp + 4, rlen - 4, WLANTEST_ATTR_STA_ADDR, &len);
  249. if (addr == NULL)
  250. return -1;
  251. for (i = 0; i < len / ETH_ALEN; i++)
  252. printf(MACSTR " ", MAC2STR(addr + ETH_ALEN * i));
  253. printf("\n");
  254. return 0;
  255. }
  256. static char ** complete_list_sta(int s, const char *str, int pos)
  257. {
  258. if (get_cmd_arg_num(str, pos) == 1)
  259. return get_bssid_list(s);
  260. return NULL;
  261. }
  262. static int cmd_flush(int s, int argc, char *argv[])
  263. {
  264. return cmd_simple(s, WLANTEST_CTRL_FLUSH);
  265. }
  266. static int cmd_clear_sta_counters(int s, int argc, char *argv[])
  267. {
  268. u8 resp[WLANTEST_CTRL_MAX_RESP_LEN];
  269. u8 buf[100], *pos;
  270. int rlen;
  271. if (argc < 2) {
  272. printf("clear_sta_counters needs two arguments: BSSID and "
  273. "STA address\n");
  274. return -1;
  275. }
  276. pos = buf;
  277. WPA_PUT_BE32(pos, WLANTEST_CTRL_CLEAR_STA_COUNTERS);
  278. pos += 4;
  279. WPA_PUT_BE32(pos, WLANTEST_ATTR_BSSID);
  280. pos += 4;
  281. WPA_PUT_BE32(pos, ETH_ALEN);
  282. pos += 4;
  283. if (hwaddr_aton(argv[0], pos) < 0) {
  284. printf("Invalid BSSID '%s'\n", argv[0]);
  285. return -1;
  286. }
  287. pos += ETH_ALEN;
  288. WPA_PUT_BE32(pos, WLANTEST_ATTR_STA_ADDR);
  289. pos += 4;
  290. WPA_PUT_BE32(pos, ETH_ALEN);
  291. pos += 4;
  292. if (hwaddr_aton(argv[1], pos) < 0) {
  293. printf("Invalid STA address '%s'\n", argv[1]);
  294. return -1;
  295. }
  296. pos += ETH_ALEN;
  297. rlen = cmd_send_and_recv(s, buf, pos - buf, resp, sizeof(resp));
  298. if (rlen < 0)
  299. return -1;
  300. printf("OK\n");
  301. return 0;
  302. }
  303. static char ** complete_clear_sta_counters(int s, const char *str, int pos)
  304. {
  305. int arg = get_cmd_arg_num(str, pos);
  306. char **res = NULL;
  307. u8 addr[ETH_ALEN];
  308. switch (arg) {
  309. case 1:
  310. res = get_bssid_list(s);
  311. break;
  312. case 2:
  313. if (hwaddr_aton(&str[get_prev_arg_pos(str, pos)], addr) < 0)
  314. break;
  315. res = get_sta_list(s, addr, 0);
  316. break;
  317. }
  318. return res;
  319. }
  320. static int cmd_clear_bss_counters(int s, int argc, char *argv[])
  321. {
  322. u8 resp[WLANTEST_CTRL_MAX_RESP_LEN];
  323. u8 buf[100], *pos;
  324. int rlen;
  325. if (argc < 1) {
  326. printf("clear_bss_counters needs one argument: BSSID\n");
  327. return -1;
  328. }
  329. pos = buf;
  330. WPA_PUT_BE32(pos, WLANTEST_CTRL_CLEAR_BSS_COUNTERS);
  331. pos += 4;
  332. WPA_PUT_BE32(pos, WLANTEST_ATTR_BSSID);
  333. pos += 4;
  334. WPA_PUT_BE32(pos, ETH_ALEN);
  335. pos += 4;
  336. if (hwaddr_aton(argv[0], pos) < 0) {
  337. printf("Invalid BSSID '%s'\n", argv[0]);
  338. return -1;
  339. }
  340. pos += ETH_ALEN;
  341. rlen = cmd_send_and_recv(s, buf, pos - buf, resp, sizeof(resp));
  342. if (rlen < 0)
  343. return -1;
  344. printf("OK\n");
  345. return 0;
  346. }
  347. static char ** complete_clear_bss_counters(int s, const char *str, int pos)
  348. {
  349. if (get_cmd_arg_num(str, pos) == 1)
  350. return get_bssid_list(s);
  351. return NULL;
  352. }
  353. struct sta_counters {
  354. const char *name;
  355. enum wlantest_sta_counter num;
  356. };
  357. static const struct sta_counters sta_counters[] = {
  358. { "auth_tx", WLANTEST_STA_COUNTER_AUTH_TX },
  359. { "auth_rx", WLANTEST_STA_COUNTER_AUTH_RX },
  360. { "assocreq_tx", WLANTEST_STA_COUNTER_ASSOCREQ_TX },
  361. { "reassocreq_tx", WLANTEST_STA_COUNTER_REASSOCREQ_TX },
  362. { "ptk_learned", WLANTEST_STA_COUNTER_PTK_LEARNED },
  363. { "valid_deauth_tx", WLANTEST_STA_COUNTER_VALID_DEAUTH_TX },
  364. { "valid_deauth_rx", WLANTEST_STA_COUNTER_VALID_DEAUTH_RX },
  365. { "invalid_deauth_tx", WLANTEST_STA_COUNTER_INVALID_DEAUTH_TX },
  366. { "invalid_deauth_rx", WLANTEST_STA_COUNTER_INVALID_DEAUTH_RX },
  367. { "valid_disassoc_tx", WLANTEST_STA_COUNTER_VALID_DISASSOC_TX },
  368. { "valid_disassoc_rx", WLANTEST_STA_COUNTER_VALID_DISASSOC_RX },
  369. { "invalid_disassoc_tx", WLANTEST_STA_COUNTER_INVALID_DISASSOC_TX },
  370. { "invalid_disassoc_rx", WLANTEST_STA_COUNTER_INVALID_DISASSOC_RX },
  371. { "valid_saqueryreq_tx", WLANTEST_STA_COUNTER_VALID_SAQUERYREQ_TX },
  372. { "valid_saqueryreq_rx", WLANTEST_STA_COUNTER_VALID_SAQUERYREQ_RX },
  373. { "invalid_saqueryreq_tx",
  374. WLANTEST_STA_COUNTER_INVALID_SAQUERYREQ_TX },
  375. { "invalid_saqueryreq_rx",
  376. WLANTEST_STA_COUNTER_INVALID_SAQUERYREQ_RX },
  377. { "valid_saqueryresp_tx", WLANTEST_STA_COUNTER_VALID_SAQUERYRESP_TX },
  378. { "valid_saqueryresp_rx", WLANTEST_STA_COUNTER_VALID_SAQUERYRESP_RX },
  379. { "invalid_saqueryresp_tx",
  380. WLANTEST_STA_COUNTER_INVALID_SAQUERYRESP_TX },
  381. { "invalid_saqueryresp_rx",
  382. WLANTEST_STA_COUNTER_INVALID_SAQUERYRESP_RX },
  383. { NULL, 0 }
  384. };
  385. static int cmd_get_sta_counter(int s, int argc, char *argv[])
  386. {
  387. u8 resp[WLANTEST_CTRL_MAX_RESP_LEN];
  388. u8 buf[100], *end, *pos;
  389. int rlen, i;
  390. size_t len;
  391. if (argc != 3) {
  392. printf("get_sta_counter needs at three arguments: "
  393. "counter name, BSSID, and STA address\n");
  394. return -1;
  395. }
  396. pos = buf;
  397. end = buf + sizeof(buf);
  398. WPA_PUT_BE32(pos, WLANTEST_CTRL_GET_STA_COUNTER);
  399. pos += 4;
  400. for (i = 0; sta_counters[i].name; i++) {
  401. if (os_strcasecmp(sta_counters[i].name, argv[0]) == 0)
  402. break;
  403. }
  404. if (sta_counters[i].name == NULL) {
  405. printf("Unknown STA counter '%s'\n", argv[0]);
  406. printf("Counters:");
  407. for (i = 0; sta_counters[i].name; i++)
  408. printf(" %s", sta_counters[i].name);
  409. printf("\n");
  410. return -1;
  411. }
  412. pos = attr_add_be32(pos, end, WLANTEST_ATTR_STA_COUNTER,
  413. sta_counters[i].num);
  414. pos = attr_hdr_add(pos, end, WLANTEST_ATTR_BSSID, ETH_ALEN);
  415. if (hwaddr_aton(argv[1], pos) < 0) {
  416. printf("Invalid BSSID '%s'\n", argv[1]);
  417. return -1;
  418. }
  419. pos += ETH_ALEN;
  420. pos = attr_hdr_add(pos, end, WLANTEST_ATTR_STA_ADDR, ETH_ALEN);
  421. if (hwaddr_aton(argv[2], pos) < 0) {
  422. printf("Invalid STA address '%s'\n", argv[2]);
  423. return -1;
  424. }
  425. pos += ETH_ALEN;
  426. rlen = cmd_send_and_recv(s, buf, pos - buf, resp, sizeof(resp));
  427. if (rlen < 0)
  428. return -1;
  429. pos = attr_get(resp + 4, rlen - 4, WLANTEST_ATTR_COUNTER, &len);
  430. if (pos == NULL || len != 4)
  431. return -1;
  432. printf("%u\n", WPA_GET_BE32(pos));
  433. return 0;
  434. }
  435. static char ** complete_get_sta_counter(int s, const char *str, int pos)
  436. {
  437. int arg = get_cmd_arg_num(str, pos);
  438. char **res = NULL;
  439. int i, count;
  440. u8 addr[ETH_ALEN];
  441. switch (arg) {
  442. case 1:
  443. /* counter list */
  444. count = sizeof(sta_counters) / sizeof(sta_counters[0]);
  445. res = os_zalloc(count * sizeof(char *));
  446. if (res == NULL)
  447. return NULL;
  448. for (i = 0; sta_counters[i].name; i++) {
  449. res[i] = os_strdup(sta_counters[i].name);
  450. if (res[i] == NULL)
  451. break;
  452. }
  453. break;
  454. case 2:
  455. res = get_bssid_list(s);
  456. break;
  457. case 3:
  458. if (hwaddr_aton(&str[get_prev_arg_pos(str, pos)], addr) < 0)
  459. break;
  460. res = get_sta_list(s, addr, 0);
  461. break;
  462. }
  463. return res;
  464. }
  465. struct bss_counters {
  466. const char *name;
  467. enum wlantest_bss_counter num;
  468. };
  469. static const struct bss_counters bss_counters[] = {
  470. { "valid_bip_mmie", WLANTEST_BSS_COUNTER_VALID_BIP_MMIE },
  471. { "invalid_bip_mmie", WLANTEST_BSS_COUNTER_INVALID_BIP_MMIE },
  472. { "missing_bip_mmie", WLANTEST_BSS_COUNTER_MISSING_BIP_MMIE },
  473. { NULL, 0 }
  474. };
  475. static int cmd_get_bss_counter(int s, int argc, char *argv[])
  476. {
  477. u8 resp[WLANTEST_CTRL_MAX_RESP_LEN];
  478. u8 buf[100], *end, *pos;
  479. int rlen, i;
  480. size_t len;
  481. if (argc != 2) {
  482. printf("get_bss_counter needs at three arguments: "
  483. "counter name and BSSID\n");
  484. return -1;
  485. }
  486. pos = buf;
  487. end = buf + sizeof(buf);
  488. WPA_PUT_BE32(pos, WLANTEST_CTRL_GET_BSS_COUNTER);
  489. pos += 4;
  490. for (i = 0; bss_counters[i].name; i++) {
  491. if (os_strcasecmp(bss_counters[i].name, argv[0]) == 0)
  492. break;
  493. }
  494. if (bss_counters[i].name == NULL) {
  495. printf("Unknown BSS counter '%s'\n", argv[0]);
  496. printf("Counters:");
  497. for (i = 0; bss_counters[i].name; i++)
  498. printf(" %s", bss_counters[i].name);
  499. printf("\n");
  500. return -1;
  501. }
  502. pos = attr_add_be32(pos, end, WLANTEST_ATTR_BSS_COUNTER,
  503. bss_counters[i].num);
  504. pos = attr_hdr_add(pos, end, WLANTEST_ATTR_BSSID, ETH_ALEN);
  505. if (hwaddr_aton(argv[1], pos) < 0) {
  506. printf("Invalid BSSID '%s'\n", argv[1]);
  507. return -1;
  508. }
  509. pos += ETH_ALEN;
  510. rlen = cmd_send_and_recv(s, buf, pos - buf, resp, sizeof(resp));
  511. if (rlen < 0)
  512. return -1;
  513. pos = attr_get(resp + 4, rlen - 4, WLANTEST_ATTR_COUNTER, &len);
  514. if (pos == NULL || len != 4)
  515. return -1;
  516. printf("%u\n", WPA_GET_BE32(pos));
  517. return 0;
  518. }
  519. static char ** complete_get_bss_counter(int s, const char *str, int pos)
  520. {
  521. int arg = get_cmd_arg_num(str, pos);
  522. char **res = NULL;
  523. int i, count;
  524. switch (arg) {
  525. case 1:
  526. /* counter list */
  527. count = sizeof(bss_counters) / sizeof(bss_counters[0]);
  528. res = os_zalloc(count * sizeof(char *));
  529. if (res == NULL)
  530. return NULL;
  531. for (i = 0; bss_counters[i].name; i++) {
  532. res[i] = os_strdup(bss_counters[i].name);
  533. if (res[i] == NULL)
  534. break;
  535. }
  536. break;
  537. case 2:
  538. res = get_bssid_list(s);
  539. break;
  540. }
  541. return res;
  542. }
  543. struct inject_frames {
  544. const char *name;
  545. enum wlantest_inject_frame frame;
  546. };
  547. static const struct inject_frames inject_frames[] = {
  548. { "auth", WLANTEST_FRAME_AUTH },
  549. { "assocreq", WLANTEST_FRAME_ASSOCREQ },
  550. { "reassocreq", WLANTEST_FRAME_REASSOCREQ },
  551. { "deauth", WLANTEST_FRAME_DEAUTH },
  552. { "disassoc", WLANTEST_FRAME_DISASSOC },
  553. { "saqueryreq", WLANTEST_FRAME_SAQUERYREQ },
  554. { NULL, 0 }
  555. };
  556. static int cmd_inject(int s, int argc, char *argv[])
  557. {
  558. u8 resp[WLANTEST_CTRL_MAX_RESP_LEN];
  559. u8 buf[100], *end, *pos;
  560. int rlen, i;
  561. enum wlantest_inject_protection prot;
  562. /* <frame> <prot> <sender> <BSSID> <STA/ff:ff:ff:ff:ff:ff> */
  563. if (argc < 5) {
  564. printf("inject needs five arguments: frame, protection, "
  565. "sender, BSSID, STA/ff:ff:ff:ff:ff:ff\n");
  566. return -1;
  567. }
  568. pos = buf;
  569. end = buf + sizeof(buf);
  570. WPA_PUT_BE32(pos, WLANTEST_CTRL_INJECT);
  571. pos += 4;
  572. for (i = 0; inject_frames[i].name; i++) {
  573. if (os_strcasecmp(inject_frames[i].name, argv[0]) == 0)
  574. break;
  575. }
  576. if (inject_frames[i].name == NULL) {
  577. printf("Unknown inject frame '%s'\n", argv[0]);
  578. printf("Frames:");
  579. for (i = 0; inject_frames[i].name; i++)
  580. printf(" %s", inject_frames[i].name);
  581. printf("\n");
  582. return -1;
  583. }
  584. pos = attr_add_be32(pos, end, WLANTEST_ATTR_INJECT_FRAME,
  585. inject_frames[i].frame);
  586. if (os_strcasecmp(argv[1], "normal") == 0)
  587. prot = WLANTEST_INJECT_NORMAL;
  588. else if (os_strcasecmp(argv[1], "protected") == 0)
  589. prot = WLANTEST_INJECT_PROTECTED;
  590. else if (os_strcasecmp(argv[1], "unprotected") == 0)
  591. prot = WLANTEST_INJECT_UNPROTECTED;
  592. else if (os_strcasecmp(argv[1], "incorrect") == 0)
  593. prot = WLANTEST_INJECT_INCORRECT_KEY;
  594. else {
  595. printf("Unknown protection type '%s'\n", argv[1]);
  596. printf("Protection types: normal protected unprotected "
  597. "incorrect\n");
  598. return -1;
  599. }
  600. pos = attr_add_be32(pos, end, WLANTEST_ATTR_INJECT_PROTECTION, prot);
  601. if (os_strcasecmp(argv[2], "ap") == 0) {
  602. pos = attr_add_be32(pos, end, WLANTEST_ATTR_INJECT_SENDER_AP,
  603. 1);
  604. } else if (os_strcasecmp(argv[2], "sta") == 0) {
  605. pos = attr_add_be32(pos, end, WLANTEST_ATTR_INJECT_SENDER_AP,
  606. 0);
  607. } else {
  608. printf("Unknown sender '%s'\n", argv[2]);
  609. printf("Sender types: ap sta\n");
  610. return -1;
  611. }
  612. pos = attr_hdr_add(pos, end, WLANTEST_ATTR_BSSID, ETH_ALEN);
  613. if (hwaddr_aton(argv[3], pos) < 0) {
  614. printf("Invalid BSSID '%s'\n", argv[3]);
  615. return -1;
  616. }
  617. pos += ETH_ALEN;
  618. pos = attr_hdr_add(pos, end, WLANTEST_ATTR_STA_ADDR, ETH_ALEN);
  619. if (hwaddr_aton(argv[4], pos) < 0) {
  620. printf("Invalid STA '%s'\n", argv[4]);
  621. return -1;
  622. }
  623. pos += ETH_ALEN;
  624. rlen = cmd_send_and_recv(s, buf, pos - buf, resp, sizeof(resp));
  625. if (rlen < 0)
  626. return -1;
  627. printf("OK\n");
  628. return 0;
  629. }
  630. static char ** complete_inject(int s, const char *str, int pos)
  631. {
  632. int arg = get_cmd_arg_num(str, pos);
  633. char **res = NULL;
  634. int i, count;
  635. u8 addr[ETH_ALEN];
  636. switch (arg) {
  637. case 1:
  638. /* frame list */
  639. count = sizeof(inject_frames) / sizeof(inject_frames[0]);
  640. res = os_zalloc(count * sizeof(char *));
  641. if (res == NULL)
  642. break;
  643. for (i = 0; inject_frames[i].name; i++) {
  644. res[i] = os_strdup(inject_frames[i].name);
  645. if (res[i] == NULL)
  646. break;
  647. }
  648. break;
  649. case 2:
  650. res = os_zalloc(5 * sizeof(char *));
  651. if (res == NULL)
  652. break;
  653. res[0] = os_strdup("normal");
  654. if (res[0] == NULL)
  655. break;
  656. res[1] = os_strdup("protected");
  657. if (res[1] == NULL)
  658. break;
  659. res[2] = os_strdup("unprotected");
  660. if (res[2] == NULL)
  661. break;
  662. res[3] = os_strdup("incorrect");
  663. if (res[3] == NULL)
  664. break;
  665. break;
  666. case 3:
  667. res = os_zalloc(3 * sizeof(char *));
  668. if (res == NULL)
  669. break;
  670. res[0] = os_strdup("ap");
  671. if (res[0] == NULL)
  672. break;
  673. res[1] = os_strdup("sta");
  674. if (res[1] == NULL)
  675. break;
  676. break;
  677. case 4:
  678. res = get_bssid_list(s);
  679. break;
  680. case 5:
  681. if (hwaddr_aton(&str[get_prev_arg_pos(str, pos)], addr) < 0)
  682. break;
  683. res = get_sta_list(s, addr, 1);
  684. break;
  685. }
  686. return res;
  687. }
  688. static int cmd_version(int s, int argc, char *argv[])
  689. {
  690. u8 resp[WLANTEST_CTRL_MAX_RESP_LEN];
  691. u8 buf[4];
  692. char *version;
  693. size_t len;
  694. int rlen, i;
  695. WPA_PUT_BE32(buf, WLANTEST_CTRL_VERSION);
  696. rlen = cmd_send_and_recv(s, buf, sizeof(buf), resp, sizeof(resp));
  697. if (rlen < 0)
  698. return -1;
  699. version = (char *) attr_get(resp + 4, rlen - 4, WLANTEST_ATTR_VERSION,
  700. &len);
  701. if (version == NULL)
  702. return -1;
  703. for (i = 0; i < len; i++)
  704. putchar(version[i]);
  705. printf("\n");
  706. return 0;
  707. }
  708. static int cmd_add_passphrase(int s, int argc, char *argv[])
  709. {
  710. u8 resp[WLANTEST_CTRL_MAX_RESP_LEN];
  711. u8 buf[100], *pos, *end;
  712. size_t len;
  713. int rlen;
  714. if (argc < 1) {
  715. printf("add_passphrase needs one argument: passphrase\n");
  716. return -1;
  717. }
  718. len = os_strlen(argv[0]);
  719. if (len < 8 || len > 63) {
  720. printf("Invalid passphrase '%s'\n", argv[0]);
  721. return -1;
  722. }
  723. pos = buf;
  724. end = buf + sizeof(buf);
  725. WPA_PUT_BE32(pos, WLANTEST_CTRL_ADD_PASSPHRASE);
  726. pos += 4;
  727. pos = attr_add_str(pos, end, WLANTEST_ATTR_PASSPHRASE,
  728. argv[0]);
  729. if (argc > 1) {
  730. pos = attr_hdr_add(pos, end, WLANTEST_ATTR_BSSID, ETH_ALEN);
  731. if (hwaddr_aton(argv[1], pos) < 0) {
  732. printf("Invalid BSSID '%s'\n", argv[3]);
  733. return -1;
  734. }
  735. pos += ETH_ALEN;
  736. }
  737. rlen = cmd_send_and_recv(s, buf, pos - buf, resp, sizeof(resp));
  738. if (rlen < 0)
  739. return -1;
  740. return 0;
  741. }
  742. struct wlantest_cli_cmd {
  743. const char *cmd;
  744. int (*handler)(int s, int argc, char *argv[]);
  745. const char *usage;
  746. char ** (*complete)(int s, const char *str, int pos);
  747. };
  748. static const struct wlantest_cli_cmd wlantest_cli_commands[] = {
  749. { "ping", cmd_ping, "= test connection to wlantest", NULL },
  750. { "terminate", cmd_terminate, "= terminate wlantest", NULL },
  751. { "list_bss", cmd_list_bss, "= get BSS list", NULL },
  752. { "list_sta", cmd_list_sta, "<BSSID> = get STA list",
  753. complete_list_sta },
  754. { "flush", cmd_flush, "= drop all collected BSS data", NULL },
  755. { "clear_sta_counters", cmd_clear_sta_counters,
  756. "<BSSID> <STA> = clear STA counters", complete_clear_sta_counters },
  757. { "clear_bss_counters", cmd_clear_bss_counters,
  758. "<BSSID> = clear BSS counters", complete_clear_bss_counters },
  759. { "get_sta_counter", cmd_get_sta_counter,
  760. "<counter> <BSSID> <STA> = get STA counter value",
  761. complete_get_sta_counter},
  762. { "get_bss_counter", cmd_get_bss_counter,
  763. "<counter> <BSSID> = get BSS counter value",
  764. complete_get_bss_counter },
  765. { "inject", cmd_inject,
  766. "<frame> <prot> <sender> <BSSID> <STA/ff:ff:ff:ff:ff:ff>",
  767. complete_inject },
  768. { "version", cmd_version, "= get wlantest version", NULL },
  769. { "add_passphrase", cmd_add_passphrase,
  770. "<passphrase> = add a known passphrase", NULL },
  771. { NULL, NULL, NULL, NULL }
  772. };
  773. static int ctrl_command(int s, int argc, char *argv[])
  774. {
  775. const struct wlantest_cli_cmd *cmd, *match = NULL;
  776. int count = 0;
  777. int ret = 0;
  778. for (cmd = wlantest_cli_commands; cmd->cmd; cmd++) {
  779. if (os_strncasecmp(cmd->cmd, argv[0], os_strlen(argv[0])) == 0)
  780. {
  781. match = cmd;
  782. if (os_strcasecmp(cmd->cmd, argv[0]) == 0) {
  783. /* exact match */
  784. count = 1;
  785. break;
  786. }
  787. count++;
  788. }
  789. }
  790. if (count > 1) {
  791. printf("Ambiguous command '%s'; possible commands:", argv[0]);
  792. for (cmd = wlantest_cli_commands; cmd->cmd; cmd++) {
  793. if (os_strncasecmp(cmd->cmd, argv[0],
  794. os_strlen(argv[0])) == 0) {
  795. printf(" %s", cmd->cmd);
  796. }
  797. }
  798. printf("\n");
  799. ret = 1;
  800. } else if (count == 0) {
  801. printf("Unknown command '%s'\n", argv[0]);
  802. ret = 1;
  803. } else {
  804. ret = match->handler(s, argc - 1, &argv[1]);
  805. }
  806. return ret;
  807. }
  808. struct wlantest_cli {
  809. int s;
  810. };
  811. #define max_args 10
  812. static int tokenize_cmd(char *cmd, char *argv[])
  813. {
  814. char *pos;
  815. int argc = 0;
  816. pos = cmd;
  817. for (;;) {
  818. while (*pos == ' ')
  819. pos++;
  820. if (*pos == '\0')
  821. break;
  822. argv[argc] = pos;
  823. argc++;
  824. if (argc == max_args)
  825. break;
  826. if (*pos == '"') {
  827. char *pos2 = os_strrchr(pos, '"');
  828. if (pos2)
  829. pos = pos2 + 1;
  830. }
  831. while (*pos != '\0' && *pos != ' ')
  832. pos++;
  833. if (*pos == ' ')
  834. *pos++ = '\0';
  835. }
  836. return argc;
  837. }
  838. static void wlantest_cli_edit_cmd_cb(void *ctx, char *cmd)
  839. {
  840. struct wlantest_cli *cli = ctx;
  841. char *argv[max_args];
  842. int argc;
  843. argc = tokenize_cmd(cmd, argv);
  844. if (argc) {
  845. int ret = ctrl_command(cli->s, argc, argv);
  846. if (ret < 0)
  847. printf("FAIL\n");
  848. }
  849. }
  850. static void wlantest_cli_eloop_terminate(int sig, void *signal_ctx)
  851. {
  852. eloop_terminate();
  853. }
  854. static void wlantest_cli_edit_eof_cb(void *ctx)
  855. {
  856. eloop_terminate();
  857. }
  858. static char ** wlantest_cli_cmd_list(void)
  859. {
  860. char **res;
  861. int i, count;
  862. count = sizeof(wlantest_cli_commands) /
  863. sizeof(wlantest_cli_commands[0]);
  864. res = os_zalloc(count * sizeof(char *));
  865. if (res == NULL)
  866. return NULL;
  867. for (i = 0; wlantest_cli_commands[i].cmd; i++) {
  868. res[i] = os_strdup(wlantest_cli_commands[i].cmd);
  869. if (res[i] == NULL)
  870. break;
  871. }
  872. return res;
  873. }
  874. static char ** wlantest_cli_cmd_completion(struct wlantest_cli *cli,
  875. const char *cmd, const char *str,
  876. int pos)
  877. {
  878. int i;
  879. for (i = 0; wlantest_cli_commands[i].cmd; i++) {
  880. const struct wlantest_cli_cmd *c = &wlantest_cli_commands[i];
  881. if (os_strcasecmp(c->cmd, cmd) == 0) {
  882. edit_clear_line();
  883. printf("\r%s\n", c->usage);
  884. edit_redraw();
  885. if (c->complete)
  886. return c->complete(cli->s, str, pos);
  887. break;
  888. }
  889. }
  890. return NULL;
  891. }
  892. static char ** wlantest_cli_edit_completion_cb(void *ctx, const char *str,
  893. int pos)
  894. {
  895. struct wlantest_cli *cli = ctx;
  896. char **res;
  897. const char *end;
  898. char *cmd;
  899. end = os_strchr(str, ' ');
  900. if (end == NULL || str + pos < end)
  901. return wlantest_cli_cmd_list();
  902. cmd = os_malloc(pos + 1);
  903. if (cmd == NULL)
  904. return NULL;
  905. os_memcpy(cmd, str, pos);
  906. cmd[end - str] = '\0';
  907. res = wlantest_cli_cmd_completion(cli, cmd, str, pos);
  908. os_free(cmd);
  909. return res;
  910. }
  911. static void wlantest_cli_interactive(int s)
  912. {
  913. struct wlantest_cli cli;
  914. if (eloop_init())
  915. return;
  916. cli.s = s;
  917. eloop_register_signal_terminate(wlantest_cli_eloop_terminate, &cli);
  918. edit_init(wlantest_cli_edit_cmd_cb, wlantest_cli_edit_eof_cb, &cli);
  919. edit_set_completion_cb(wlantest_cli_edit_completion_cb);
  920. eloop_run();
  921. edit_deinit();
  922. eloop_destroy();
  923. }
  924. int main(int argc, char *argv[])
  925. {
  926. int s;
  927. struct sockaddr_un addr;
  928. int ret = 0;
  929. if (os_program_init())
  930. return -1;
  931. s = socket(AF_UNIX, SOCK_SEQPACKET, 0);
  932. if (s < 0) {
  933. perror("socket");
  934. return -1;
  935. }
  936. os_memset(&addr, 0, sizeof(addr));
  937. addr.sun_family = AF_UNIX;
  938. os_strlcpy(addr.sun_path + 1, WLANTEST_SOCK_NAME,
  939. sizeof(addr.sun_path) - 1);
  940. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  941. perror("connect");
  942. close(s);
  943. return -1;
  944. }
  945. if (argc > 1) {
  946. ret = ctrl_command(s, argc - 1, &argv[1]);
  947. if (ret < 0)
  948. printf("FAIL\n");
  949. } else {
  950. wlantest_cli_interactive(s);
  951. }
  952. close(s);
  953. os_program_deinit();
  954. return ret;
  955. }