hostapd_cli.c 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824
  1. /*
  2. * hostapd - command line interface for hostapd daemon
  3. * Copyright (c) 2004-2016, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include <dirent.h>
  10. #include "common/wpa_ctrl.h"
  11. #include "common/ieee802_11_defs.h"
  12. #include "utils/common.h"
  13. #include "utils/eloop.h"
  14. #include "utils/edit.h"
  15. #include "common/version.h"
  16. #include "common/cli.h"
  17. #ifndef CONFIG_NO_CTRL_IFACE
  18. static const char *const hostapd_cli_version =
  19. "hostapd_cli v" VERSION_STR "\n"
  20. "Copyright (c) 2004-2016, Jouni Malinen <j@w1.fi> and contributors";
  21. static struct wpa_ctrl *ctrl_conn;
  22. static int hostapd_cli_quit = 0;
  23. static int hostapd_cli_attached = 0;
  24. #ifndef CONFIG_CTRL_IFACE_DIR
  25. #define CONFIG_CTRL_IFACE_DIR "/var/run/hostapd"
  26. #endif /* CONFIG_CTRL_IFACE_DIR */
  27. static const char *ctrl_iface_dir = CONFIG_CTRL_IFACE_DIR;
  28. static const char *client_socket_dir = NULL;
  29. static char *ctrl_ifname = NULL;
  30. static const char *pid_file = NULL;
  31. static const char *action_file = NULL;
  32. static int ping_interval = 5;
  33. static int interactive = 0;
  34. static int event_handler_registered = 0;
  35. static DEFINE_DL_LIST(stations); /* struct cli_txt_entry */
  36. static void print_help(FILE *stream, const char *cmd);
  37. static char ** list_cmd_list(void);
  38. static void hostapd_cli_receive(int sock, void *eloop_ctx, void *sock_ctx);
  39. static void usage(void)
  40. {
  41. fprintf(stderr, "%s\n", hostapd_cli_version);
  42. fprintf(stderr,
  43. "\n"
  44. "usage: hostapd_cli [-p<path>] [-i<ifname>] [-hvB] "
  45. "[-a<path>] \\\n"
  46. " [-P<pid file>] [-G<ping interval>] [command..]\n"
  47. "\n"
  48. "Options:\n"
  49. " -h help (show this usage text)\n"
  50. " -v shown version information\n"
  51. " -p<path> path to find control sockets (default: "
  52. "/var/run/hostapd)\n"
  53. " -s<dir_path> dir path to open client sockets (default: "
  54. CONFIG_CTRL_IFACE_DIR ")\n"
  55. " -a<file> run in daemon mode executing the action file "
  56. "based on events\n"
  57. " from hostapd\n"
  58. " -B run a daemon in the background\n"
  59. " -i<ifname> Interface to listen on (default: first "
  60. "interface found in the\n"
  61. " socket path)\n\n");
  62. print_help(stderr, NULL);
  63. }
  64. static void register_event_handler(struct wpa_ctrl *ctrl)
  65. {
  66. if (!ctrl_conn)
  67. return;
  68. if (interactive) {
  69. event_handler_registered =
  70. !eloop_register_read_sock(wpa_ctrl_get_fd(ctrl),
  71. hostapd_cli_receive,
  72. NULL, NULL);
  73. }
  74. }
  75. static void unregister_event_handler(struct wpa_ctrl *ctrl)
  76. {
  77. if (!ctrl_conn)
  78. return;
  79. if (interactive && event_handler_registered) {
  80. eloop_unregister_read_sock(wpa_ctrl_get_fd(ctrl));
  81. event_handler_registered = 0;
  82. }
  83. }
  84. static struct wpa_ctrl * hostapd_cli_open_connection(const char *ifname)
  85. {
  86. #ifndef CONFIG_CTRL_IFACE_UDP
  87. char *cfile;
  88. int flen;
  89. #endif /* !CONFIG_CTRL_IFACE_UDP */
  90. if (ifname == NULL)
  91. return NULL;
  92. #ifdef CONFIG_CTRL_IFACE_UDP
  93. ctrl_conn = wpa_ctrl_open(ifname);
  94. return ctrl_conn;
  95. #else /* CONFIG_CTRL_IFACE_UDP */
  96. flen = strlen(ctrl_iface_dir) + strlen(ifname) + 2;
  97. cfile = malloc(flen);
  98. if (cfile == NULL)
  99. return NULL;
  100. snprintf(cfile, flen, "%s/%s", ctrl_iface_dir, ifname);
  101. if (client_socket_dir && client_socket_dir[0] &&
  102. access(client_socket_dir, F_OK) < 0) {
  103. perror(client_socket_dir);
  104. free(cfile);
  105. return NULL;
  106. }
  107. ctrl_conn = wpa_ctrl_open2(cfile, client_socket_dir);
  108. free(cfile);
  109. return ctrl_conn;
  110. #endif /* CONFIG_CTRL_IFACE_UDP */
  111. }
  112. static void hostapd_cli_close_connection(void)
  113. {
  114. if (ctrl_conn == NULL)
  115. return;
  116. unregister_event_handler(ctrl_conn);
  117. if (hostapd_cli_attached) {
  118. wpa_ctrl_detach(ctrl_conn);
  119. hostapd_cli_attached = 0;
  120. }
  121. wpa_ctrl_close(ctrl_conn);
  122. ctrl_conn = NULL;
  123. }
  124. static void hostapd_cli_msg_cb(char *msg, size_t len)
  125. {
  126. printf("%s\n", msg);
  127. }
  128. static int _wpa_ctrl_command(struct wpa_ctrl *ctrl, char *cmd, int print)
  129. {
  130. char buf[4096];
  131. size_t len;
  132. int ret;
  133. if (ctrl_conn == NULL) {
  134. printf("Not connected to hostapd - command dropped.\n");
  135. return -1;
  136. }
  137. len = sizeof(buf) - 1;
  138. ret = wpa_ctrl_request(ctrl, cmd, strlen(cmd), buf, &len,
  139. hostapd_cli_msg_cb);
  140. if (ret == -2) {
  141. printf("'%s' command timed out.\n", cmd);
  142. return -2;
  143. } else if (ret < 0) {
  144. printf("'%s' command failed.\n", cmd);
  145. return -1;
  146. }
  147. if (print) {
  148. buf[len] = '\0';
  149. printf("%s", buf);
  150. }
  151. return 0;
  152. }
  153. static inline int wpa_ctrl_command(struct wpa_ctrl *ctrl, char *cmd)
  154. {
  155. return _wpa_ctrl_command(ctrl, cmd, 1);
  156. }
  157. static int hostapd_cli_cmd(struct wpa_ctrl *ctrl, const char *cmd,
  158. int min_args, int argc, char *argv[])
  159. {
  160. char buf[4096];
  161. if (argc < min_args) {
  162. printf("Invalid %s command - at least %d argument%s required.\n",
  163. cmd, min_args, min_args > 1 ? "s are" : " is");
  164. return -1;
  165. }
  166. if (write_cmd(buf, sizeof(buf), cmd, argc, argv) < 0)
  167. return -1;
  168. return wpa_ctrl_command(ctrl, buf);
  169. }
  170. static int hostapd_cli_cmd_ping(struct wpa_ctrl *ctrl, int argc, char *argv[])
  171. {
  172. return wpa_ctrl_command(ctrl, "PING");
  173. }
  174. static int hostapd_cli_cmd_relog(struct wpa_ctrl *ctrl, int argc, char *argv[])
  175. {
  176. return wpa_ctrl_command(ctrl, "RELOG");
  177. }
  178. static int hostapd_cli_cmd_status(struct wpa_ctrl *ctrl, int argc, char *argv[])
  179. {
  180. if (argc > 0 && os_strcmp(argv[0], "driver") == 0)
  181. return wpa_ctrl_command(ctrl, "STATUS-DRIVER");
  182. return wpa_ctrl_command(ctrl, "STATUS");
  183. }
  184. static int hostapd_cli_cmd_mib(struct wpa_ctrl *ctrl, int argc, char *argv[])
  185. {
  186. if (argc > 0) {
  187. char buf[100];
  188. os_snprintf(buf, sizeof(buf), "MIB %s", argv[0]);
  189. return wpa_ctrl_command(ctrl, buf);
  190. }
  191. return wpa_ctrl_command(ctrl, "MIB");
  192. }
  193. static int hostapd_cli_exec(const char *program, const char *arg1,
  194. const char *arg2)
  195. {
  196. char *arg;
  197. size_t len;
  198. int res;
  199. len = os_strlen(arg1) + os_strlen(arg2) + 2;
  200. arg = os_malloc(len);
  201. if (arg == NULL)
  202. return -1;
  203. os_snprintf(arg, len, "%s %s", arg1, arg2);
  204. res = os_exec(program, arg, 1);
  205. os_free(arg);
  206. return res;
  207. }
  208. static void hostapd_cli_action_process(char *msg, size_t len)
  209. {
  210. const char *pos;
  211. pos = msg;
  212. if (*pos == '<') {
  213. pos = os_strchr(pos, '>');
  214. if (pos)
  215. pos++;
  216. else
  217. pos = msg;
  218. }
  219. hostapd_cli_exec(action_file, ctrl_ifname, pos);
  220. }
  221. static int hostapd_cli_cmd_sta(struct wpa_ctrl *ctrl, int argc, char *argv[])
  222. {
  223. char buf[64];
  224. if (argc < 1) {
  225. printf("Invalid 'sta' command - at least one argument, STA "
  226. "address, is required.\n");
  227. return -1;
  228. }
  229. if (argc > 1)
  230. snprintf(buf, sizeof(buf), "STA %s %s", argv[0], argv[1]);
  231. else
  232. snprintf(buf, sizeof(buf), "STA %s", argv[0]);
  233. return wpa_ctrl_command(ctrl, buf);
  234. }
  235. static int hostapd_cli_cmd_new_sta(struct wpa_ctrl *ctrl, int argc,
  236. char *argv[])
  237. {
  238. char buf[64];
  239. if (argc != 1) {
  240. printf("Invalid 'new_sta' command - exactly one argument, STA "
  241. "address, is required.\n");
  242. return -1;
  243. }
  244. snprintf(buf, sizeof(buf), "NEW_STA %s", argv[0]);
  245. return wpa_ctrl_command(ctrl, buf);
  246. }
  247. static int hostapd_cli_cmd_deauthenticate(struct wpa_ctrl *ctrl, int argc,
  248. char *argv[])
  249. {
  250. char buf[64];
  251. if (argc < 1) {
  252. printf("Invalid 'deauthenticate' command - exactly one "
  253. "argument, STA address, is required.\n");
  254. return -1;
  255. }
  256. if (argc > 1)
  257. os_snprintf(buf, sizeof(buf), "DEAUTHENTICATE %s %s",
  258. argv[0], argv[1]);
  259. else
  260. os_snprintf(buf, sizeof(buf), "DEAUTHENTICATE %s", argv[0]);
  261. return wpa_ctrl_command(ctrl, buf);
  262. }
  263. static char ** hostapd_complete_deauthenticate(const char *str, int pos)
  264. {
  265. int arg = get_cmd_arg_num(str, pos);
  266. char **res = NULL;
  267. switch (arg) {
  268. case 1:
  269. res = cli_txt_list_array(&stations);
  270. break;
  271. }
  272. return res;
  273. }
  274. static int hostapd_cli_cmd_disassociate(struct wpa_ctrl *ctrl, int argc,
  275. char *argv[])
  276. {
  277. char buf[64];
  278. if (argc < 1) {
  279. printf("Invalid 'disassociate' command - exactly one "
  280. "argument, STA address, is required.\n");
  281. return -1;
  282. }
  283. if (argc > 1)
  284. os_snprintf(buf, sizeof(buf), "DISASSOCIATE %s %s",
  285. argv[0], argv[1]);
  286. else
  287. os_snprintf(buf, sizeof(buf), "DISASSOCIATE %s", argv[0]);
  288. return wpa_ctrl_command(ctrl, buf);
  289. }
  290. static char ** hostapd_complete_disassociate(const char *str, int pos)
  291. {
  292. int arg = get_cmd_arg_num(str, pos);
  293. char **res = NULL;
  294. switch (arg) {
  295. case 1:
  296. res = cli_txt_list_array(&stations);
  297. break;
  298. }
  299. return res;
  300. }
  301. #ifdef CONFIG_TAXONOMY
  302. static int hostapd_cli_cmd_signature(struct wpa_ctrl *ctrl, int argc,
  303. char *argv[])
  304. {
  305. char buf[64];
  306. if (argc != 1) {
  307. printf("Invalid 'signature' command - exactly one argument, STA address, is required.\n");
  308. return -1;
  309. }
  310. os_snprintf(buf, sizeof(buf), "SIGNATURE %s", argv[0]);
  311. return wpa_ctrl_command(ctrl, buf);
  312. }
  313. #endif /* CONFIG_TAXONOMY */
  314. #ifdef CONFIG_IEEE80211W
  315. static int hostapd_cli_cmd_sa_query(struct wpa_ctrl *ctrl, int argc,
  316. char *argv[])
  317. {
  318. char buf[64];
  319. if (argc != 1) {
  320. printf("Invalid 'sa_query' command - exactly one argument, "
  321. "STA address, is required.\n");
  322. return -1;
  323. }
  324. snprintf(buf, sizeof(buf), "SA_QUERY %s", argv[0]);
  325. return wpa_ctrl_command(ctrl, buf);
  326. }
  327. #endif /* CONFIG_IEEE80211W */
  328. #ifdef CONFIG_WPS
  329. static int hostapd_cli_cmd_wps_pin(struct wpa_ctrl *ctrl, int argc,
  330. char *argv[])
  331. {
  332. char buf[256];
  333. if (argc < 2) {
  334. printf("Invalid 'wps_pin' command - at least two arguments, "
  335. "UUID and PIN, are required.\n");
  336. return -1;
  337. }
  338. if (argc > 3)
  339. snprintf(buf, sizeof(buf), "WPS_PIN %s %s %s %s",
  340. argv[0], argv[1], argv[2], argv[3]);
  341. else if (argc > 2)
  342. snprintf(buf, sizeof(buf), "WPS_PIN %s %s %s",
  343. argv[0], argv[1], argv[2]);
  344. else
  345. snprintf(buf, sizeof(buf), "WPS_PIN %s %s", argv[0], argv[1]);
  346. return wpa_ctrl_command(ctrl, buf);
  347. }
  348. static int hostapd_cli_cmd_wps_check_pin(struct wpa_ctrl *ctrl, int argc,
  349. char *argv[])
  350. {
  351. char cmd[256];
  352. int res;
  353. if (argc != 1 && argc != 2) {
  354. printf("Invalid WPS_CHECK_PIN command: needs one argument:\n"
  355. "- PIN to be verified\n");
  356. return -1;
  357. }
  358. if (argc == 2)
  359. res = os_snprintf(cmd, sizeof(cmd), "WPS_CHECK_PIN %s %s",
  360. argv[0], argv[1]);
  361. else
  362. res = os_snprintf(cmd, sizeof(cmd), "WPS_CHECK_PIN %s",
  363. argv[0]);
  364. if (os_snprintf_error(sizeof(cmd), res)) {
  365. printf("Too long WPS_CHECK_PIN command.\n");
  366. return -1;
  367. }
  368. return wpa_ctrl_command(ctrl, cmd);
  369. }
  370. static int hostapd_cli_cmd_wps_pbc(struct wpa_ctrl *ctrl, int argc,
  371. char *argv[])
  372. {
  373. return wpa_ctrl_command(ctrl, "WPS_PBC");
  374. }
  375. static int hostapd_cli_cmd_wps_cancel(struct wpa_ctrl *ctrl, int argc,
  376. char *argv[])
  377. {
  378. return wpa_ctrl_command(ctrl, "WPS_CANCEL");
  379. }
  380. #ifdef CONFIG_WPS_NFC
  381. static int hostapd_cli_cmd_wps_nfc_tag_read(struct wpa_ctrl *ctrl, int argc,
  382. char *argv[])
  383. {
  384. int ret;
  385. char *buf;
  386. size_t buflen;
  387. if (argc != 1) {
  388. printf("Invalid 'wps_nfc_tag_read' command - one argument "
  389. "is required.\n");
  390. return -1;
  391. }
  392. buflen = 18 + os_strlen(argv[0]);
  393. buf = os_malloc(buflen);
  394. if (buf == NULL)
  395. return -1;
  396. os_snprintf(buf, buflen, "WPS_NFC_TAG_READ %s", argv[0]);
  397. ret = wpa_ctrl_command(ctrl, buf);
  398. os_free(buf);
  399. return ret;
  400. }
  401. static int hostapd_cli_cmd_wps_nfc_config_token(struct wpa_ctrl *ctrl,
  402. int argc, char *argv[])
  403. {
  404. char cmd[64];
  405. int res;
  406. if (argc != 1) {
  407. printf("Invalid 'wps_nfc_config_token' command - one argument "
  408. "is required.\n");
  409. return -1;
  410. }
  411. res = os_snprintf(cmd, sizeof(cmd), "WPS_NFC_CONFIG_TOKEN %s",
  412. argv[0]);
  413. if (os_snprintf_error(sizeof(cmd), res)) {
  414. printf("Too long WPS_NFC_CONFIG_TOKEN command.\n");
  415. return -1;
  416. }
  417. return wpa_ctrl_command(ctrl, cmd);
  418. }
  419. static int hostapd_cli_cmd_wps_nfc_token(struct wpa_ctrl *ctrl,
  420. int argc, char *argv[])
  421. {
  422. char cmd[64];
  423. int res;
  424. if (argc != 1) {
  425. printf("Invalid 'wps_nfc_token' command - one argument is "
  426. "required.\n");
  427. return -1;
  428. }
  429. res = os_snprintf(cmd, sizeof(cmd), "WPS_NFC_TOKEN %s", argv[0]);
  430. if (os_snprintf_error(sizeof(cmd), res)) {
  431. printf("Too long WPS_NFC_TOKEN command.\n");
  432. return -1;
  433. }
  434. return wpa_ctrl_command(ctrl, cmd);
  435. }
  436. static int hostapd_cli_cmd_nfc_get_handover_sel(struct wpa_ctrl *ctrl,
  437. int argc, char *argv[])
  438. {
  439. char cmd[64];
  440. int res;
  441. if (argc != 2) {
  442. printf("Invalid 'nfc_get_handover_sel' command - two arguments "
  443. "are required.\n");
  444. return -1;
  445. }
  446. res = os_snprintf(cmd, sizeof(cmd), "NFC_GET_HANDOVER_SEL %s %s",
  447. argv[0], argv[1]);
  448. if (os_snprintf_error(sizeof(cmd), res)) {
  449. printf("Too long NFC_GET_HANDOVER_SEL command.\n");
  450. return -1;
  451. }
  452. return wpa_ctrl_command(ctrl, cmd);
  453. }
  454. #endif /* CONFIG_WPS_NFC */
  455. static int hostapd_cli_cmd_wps_ap_pin(struct wpa_ctrl *ctrl, int argc,
  456. char *argv[])
  457. {
  458. char buf[64];
  459. if (argc < 1) {
  460. printf("Invalid 'wps_ap_pin' command - at least one argument "
  461. "is required.\n");
  462. return -1;
  463. }
  464. if (argc > 2)
  465. snprintf(buf, sizeof(buf), "WPS_AP_PIN %s %s %s",
  466. argv[0], argv[1], argv[2]);
  467. else if (argc > 1)
  468. snprintf(buf, sizeof(buf), "WPS_AP_PIN %s %s",
  469. argv[0], argv[1]);
  470. else
  471. snprintf(buf, sizeof(buf), "WPS_AP_PIN %s", argv[0]);
  472. return wpa_ctrl_command(ctrl, buf);
  473. }
  474. static int hostapd_cli_cmd_wps_get_status(struct wpa_ctrl *ctrl, int argc,
  475. char *argv[])
  476. {
  477. return wpa_ctrl_command(ctrl, "WPS_GET_STATUS");
  478. }
  479. static int hostapd_cli_cmd_wps_config(struct wpa_ctrl *ctrl, int argc,
  480. char *argv[])
  481. {
  482. char buf[256];
  483. char ssid_hex[2 * SSID_MAX_LEN + 1];
  484. char key_hex[2 * 64 + 1];
  485. int i;
  486. if (argc < 1) {
  487. printf("Invalid 'wps_config' command - at least two arguments "
  488. "are required.\n");
  489. return -1;
  490. }
  491. ssid_hex[0] = '\0';
  492. for (i = 0; i < SSID_MAX_LEN; i++) {
  493. if (argv[0][i] == '\0')
  494. break;
  495. os_snprintf(&ssid_hex[i * 2], 3, "%02x", argv[0][i]);
  496. }
  497. key_hex[0] = '\0';
  498. if (argc > 3) {
  499. for (i = 0; i < 64; i++) {
  500. if (argv[3][i] == '\0')
  501. break;
  502. os_snprintf(&key_hex[i * 2], 3, "%02x",
  503. argv[3][i]);
  504. }
  505. }
  506. if (argc > 3)
  507. snprintf(buf, sizeof(buf), "WPS_CONFIG %s %s %s %s",
  508. ssid_hex, argv[1], argv[2], key_hex);
  509. else if (argc > 2)
  510. snprintf(buf, sizeof(buf), "WPS_CONFIG %s %s %s",
  511. ssid_hex, argv[1], argv[2]);
  512. else
  513. snprintf(buf, sizeof(buf), "WPS_CONFIG %s %s",
  514. ssid_hex, argv[1]);
  515. return wpa_ctrl_command(ctrl, buf);
  516. }
  517. #endif /* CONFIG_WPS */
  518. static int hostapd_cli_cmd_disassoc_imminent(struct wpa_ctrl *ctrl, int argc,
  519. char *argv[])
  520. {
  521. char buf[300];
  522. int res;
  523. if (argc < 2) {
  524. printf("Invalid 'disassoc_imminent' command - two arguments "
  525. "(STA addr and Disassociation Timer) are needed\n");
  526. return -1;
  527. }
  528. res = os_snprintf(buf, sizeof(buf), "DISASSOC_IMMINENT %s %s",
  529. argv[0], argv[1]);
  530. if (os_snprintf_error(sizeof(buf), res))
  531. return -1;
  532. return wpa_ctrl_command(ctrl, buf);
  533. }
  534. static int hostapd_cli_cmd_ess_disassoc(struct wpa_ctrl *ctrl, int argc,
  535. char *argv[])
  536. {
  537. char buf[300];
  538. int res;
  539. if (argc < 3) {
  540. printf("Invalid 'ess_disassoc' command - three arguments (STA "
  541. "addr, disassoc timer, and URL) are needed\n");
  542. return -1;
  543. }
  544. res = os_snprintf(buf, sizeof(buf), "ESS_DISASSOC %s %s %s",
  545. argv[0], argv[1], argv[2]);
  546. if (os_snprintf_error(sizeof(buf), res))
  547. return -1;
  548. return wpa_ctrl_command(ctrl, buf);
  549. }
  550. static int hostapd_cli_cmd_bss_tm_req(struct wpa_ctrl *ctrl, int argc,
  551. char *argv[])
  552. {
  553. char buf[2000], *tmp;
  554. int res, i, total;
  555. if (argc < 1) {
  556. printf("Invalid 'bss_tm_req' command - at least one argument (STA addr) is needed\n");
  557. return -1;
  558. }
  559. res = os_snprintf(buf, sizeof(buf), "BSS_TM_REQ %s", argv[0]);
  560. if (os_snprintf_error(sizeof(buf), res))
  561. return -1;
  562. total = res;
  563. for (i = 1; i < argc; i++) {
  564. tmp = &buf[total];
  565. res = os_snprintf(tmp, sizeof(buf) - total, " %s", argv[i]);
  566. if (os_snprintf_error(sizeof(buf) - total, res))
  567. return -1;
  568. total += res;
  569. }
  570. return wpa_ctrl_command(ctrl, buf);
  571. }
  572. static int hostapd_cli_cmd_get_config(struct wpa_ctrl *ctrl, int argc,
  573. char *argv[])
  574. {
  575. return wpa_ctrl_command(ctrl, "GET_CONFIG");
  576. }
  577. static int wpa_ctrl_command_sta(struct wpa_ctrl *ctrl, char *cmd,
  578. char *addr, size_t addr_len)
  579. {
  580. char buf[4096], *pos;
  581. size_t len;
  582. int ret;
  583. if (ctrl_conn == NULL) {
  584. printf("Not connected to hostapd - command dropped.\n");
  585. return -1;
  586. }
  587. len = sizeof(buf) - 1;
  588. ret = wpa_ctrl_request(ctrl, cmd, strlen(cmd), buf, &len,
  589. hostapd_cli_msg_cb);
  590. if (ret == -2) {
  591. printf("'%s' command timed out.\n", cmd);
  592. return -2;
  593. } else if (ret < 0) {
  594. printf("'%s' command failed.\n", cmd);
  595. return -1;
  596. }
  597. buf[len] = '\0';
  598. if (memcmp(buf, "FAIL", 4) == 0)
  599. return -1;
  600. printf("%s", buf);
  601. pos = buf;
  602. while (*pos != '\0' && *pos != '\n')
  603. pos++;
  604. *pos = '\0';
  605. os_strlcpy(addr, buf, addr_len);
  606. return 0;
  607. }
  608. static int hostapd_cli_cmd_all_sta(struct wpa_ctrl *ctrl, int argc,
  609. char *argv[])
  610. {
  611. char addr[32], cmd[64];
  612. if (wpa_ctrl_command_sta(ctrl, "STA-FIRST", addr, sizeof(addr)))
  613. return 0;
  614. do {
  615. snprintf(cmd, sizeof(cmd), "STA-NEXT %s", addr);
  616. } while (wpa_ctrl_command_sta(ctrl, cmd, addr, sizeof(addr)) == 0);
  617. return -1;
  618. }
  619. static int hostapd_cli_cmd_help(struct wpa_ctrl *ctrl, int argc, char *argv[])
  620. {
  621. print_help(stdout, argc > 0 ? argv[0] : NULL);
  622. return 0;
  623. }
  624. static char ** hostapd_cli_complete_help(const char *str, int pos)
  625. {
  626. int arg = get_cmd_arg_num(str, pos);
  627. char **res = NULL;
  628. switch (arg) {
  629. case 1:
  630. res = list_cmd_list();
  631. break;
  632. }
  633. return res;
  634. }
  635. static int hostapd_cli_cmd_license(struct wpa_ctrl *ctrl, int argc,
  636. char *argv[])
  637. {
  638. printf("%s\n\n%s\n", hostapd_cli_version, cli_full_license);
  639. return 0;
  640. }
  641. static int hostapd_cli_cmd_set_qos_map_set(struct wpa_ctrl *ctrl,
  642. int argc, char *argv[])
  643. {
  644. char buf[200];
  645. int res;
  646. if (argc != 1) {
  647. printf("Invalid 'set_qos_map_set' command - "
  648. "one argument (comma delimited QoS map set) "
  649. "is needed\n");
  650. return -1;
  651. }
  652. res = os_snprintf(buf, sizeof(buf), "SET_QOS_MAP_SET %s", argv[0]);
  653. if (os_snprintf_error(sizeof(buf), res))
  654. return -1;
  655. return wpa_ctrl_command(ctrl, buf);
  656. }
  657. static int hostapd_cli_cmd_send_qos_map_conf(struct wpa_ctrl *ctrl,
  658. int argc, char *argv[])
  659. {
  660. char buf[50];
  661. int res;
  662. if (argc != 1) {
  663. printf("Invalid 'send_qos_map_conf' command - "
  664. "one argument (STA addr) is needed\n");
  665. return -1;
  666. }
  667. res = os_snprintf(buf, sizeof(buf), "SEND_QOS_MAP_CONF %s", argv[0]);
  668. if (os_snprintf_error(sizeof(buf), res))
  669. return -1;
  670. return wpa_ctrl_command(ctrl, buf);
  671. }
  672. static int hostapd_cli_cmd_hs20_wnm_notif(struct wpa_ctrl *ctrl, int argc,
  673. char *argv[])
  674. {
  675. char buf[300];
  676. int res;
  677. if (argc < 2) {
  678. printf("Invalid 'hs20_wnm_notif' command - two arguments (STA "
  679. "addr and URL) are needed\n");
  680. return -1;
  681. }
  682. res = os_snprintf(buf, sizeof(buf), "HS20_WNM_NOTIF %s %s",
  683. argv[0], argv[1]);
  684. if (os_snprintf_error(sizeof(buf), res))
  685. return -1;
  686. return wpa_ctrl_command(ctrl, buf);
  687. }
  688. static int hostapd_cli_cmd_hs20_deauth_req(struct wpa_ctrl *ctrl, int argc,
  689. char *argv[])
  690. {
  691. char buf[300];
  692. int res;
  693. if (argc < 3) {
  694. printf("Invalid 'hs20_deauth_req' command - at least three arguments (STA addr, Code, Re-auth Delay) are needed\n");
  695. return -1;
  696. }
  697. if (argc > 3)
  698. res = os_snprintf(buf, sizeof(buf),
  699. "HS20_DEAUTH_REQ %s %s %s %s",
  700. argv[0], argv[1], argv[2], argv[3]);
  701. else
  702. res = os_snprintf(buf, sizeof(buf),
  703. "HS20_DEAUTH_REQ %s %s %s",
  704. argv[0], argv[1], argv[2]);
  705. if (os_snprintf_error(sizeof(buf), res))
  706. return -1;
  707. return wpa_ctrl_command(ctrl, buf);
  708. }
  709. static int hostapd_cli_cmd_quit(struct wpa_ctrl *ctrl, int argc, char *argv[])
  710. {
  711. hostapd_cli_quit = 1;
  712. if (interactive)
  713. eloop_terminate();
  714. return 0;
  715. }
  716. static int hostapd_cli_cmd_level(struct wpa_ctrl *ctrl, int argc, char *argv[])
  717. {
  718. char cmd[256];
  719. if (argc != 1) {
  720. printf("Invalid LEVEL command: needs one argument (debug "
  721. "level)\n");
  722. return 0;
  723. }
  724. snprintf(cmd, sizeof(cmd), "LEVEL %s", argv[0]);
  725. return wpa_ctrl_command(ctrl, cmd);
  726. }
  727. static void hostapd_cli_get_interfaces(struct wpa_ctrl *ctrl,
  728. struct dl_list *interfaces)
  729. {
  730. struct dirent *dent;
  731. DIR *dir;
  732. if (!ctrl || !interfaces)
  733. return;
  734. dir = opendir(ctrl_iface_dir);
  735. if (dir == NULL)
  736. return;
  737. while ((dent = readdir(dir))) {
  738. if (strcmp(dent->d_name, ".") == 0 ||
  739. strcmp(dent->d_name, "..") == 0)
  740. continue;
  741. cli_txt_list_add(interfaces, dent->d_name);
  742. }
  743. closedir(dir);
  744. }
  745. static void hostapd_cli_list_interfaces(struct wpa_ctrl *ctrl)
  746. {
  747. struct dirent *dent;
  748. DIR *dir;
  749. dir = opendir(ctrl_iface_dir);
  750. if (dir == NULL) {
  751. printf("Control interface directory '%s' could not be "
  752. "openned.\n", ctrl_iface_dir);
  753. return;
  754. }
  755. printf("Available interfaces:\n");
  756. while ((dent = readdir(dir))) {
  757. if (strcmp(dent->d_name, ".") == 0 ||
  758. strcmp(dent->d_name, "..") == 0)
  759. continue;
  760. printf("%s\n", dent->d_name);
  761. }
  762. closedir(dir);
  763. }
  764. static int hostapd_cli_cmd_interface(struct wpa_ctrl *ctrl, int argc,
  765. char *argv[])
  766. {
  767. if (argc < 1) {
  768. hostapd_cli_list_interfaces(ctrl);
  769. return 0;
  770. }
  771. hostapd_cli_close_connection();
  772. os_free(ctrl_ifname);
  773. ctrl_ifname = os_strdup(argv[0]);
  774. if (ctrl_ifname == NULL)
  775. return -1;
  776. if (hostapd_cli_open_connection(ctrl_ifname)) {
  777. printf("Connected to interface '%s.\n", ctrl_ifname);
  778. if (wpa_ctrl_attach(ctrl_conn) == 0) {
  779. hostapd_cli_attached = 1;
  780. register_event_handler(ctrl_conn);
  781. } else {
  782. printf("Warning: Failed to attach to "
  783. "hostapd.\n");
  784. }
  785. } else {
  786. printf("Could not connect to interface '%s' - re-trying\n",
  787. ctrl_ifname);
  788. }
  789. return 0;
  790. }
  791. static char ** hostapd_complete_interface(const char *str, int pos)
  792. {
  793. int arg = get_cmd_arg_num(str, pos);
  794. char **res = NULL;
  795. DEFINE_DL_LIST(interfaces);
  796. switch (arg) {
  797. case 1:
  798. hostapd_cli_get_interfaces(ctrl_conn, &interfaces);
  799. res = cli_txt_list_array(&interfaces);
  800. cli_txt_list_flush(&interfaces);
  801. break;
  802. }
  803. return res;
  804. }
  805. static int hostapd_cli_cmd_set(struct wpa_ctrl *ctrl, int argc, char *argv[])
  806. {
  807. char cmd[256];
  808. int res;
  809. if (argc != 2) {
  810. printf("Invalid SET command: needs two arguments (variable "
  811. "name and value)\n");
  812. return -1;
  813. }
  814. res = os_snprintf(cmd, sizeof(cmd), "SET %s %s", argv[0], argv[1]);
  815. if (os_snprintf_error(sizeof(cmd), res)) {
  816. printf("Too long SET command.\n");
  817. return -1;
  818. }
  819. return wpa_ctrl_command(ctrl, cmd);
  820. }
  821. static int hostapd_cli_cmd_get(struct wpa_ctrl *ctrl, int argc, char *argv[])
  822. {
  823. char cmd[256];
  824. int res;
  825. if (argc != 1) {
  826. printf("Invalid GET command: needs one argument (variable "
  827. "name)\n");
  828. return -1;
  829. }
  830. res = os_snprintf(cmd, sizeof(cmd), "GET %s", argv[0]);
  831. if (os_snprintf_error(sizeof(cmd), res)) {
  832. printf("Too long GET command.\n");
  833. return -1;
  834. }
  835. return wpa_ctrl_command(ctrl, cmd);
  836. }
  837. #ifdef CONFIG_FST
  838. static int hostapd_cli_cmd_fst(struct wpa_ctrl *ctrl, int argc, char *argv[])
  839. {
  840. char cmd[256];
  841. int res;
  842. int i;
  843. int total;
  844. if (argc <= 0) {
  845. printf("FST command: parameters are required.\n");
  846. return -1;
  847. }
  848. total = os_snprintf(cmd, sizeof(cmd), "FST-MANAGER");
  849. for (i = 0; i < argc; i++) {
  850. res = os_snprintf(cmd + total, sizeof(cmd) - total, " %s",
  851. argv[i]);
  852. if (os_snprintf_error(sizeof(cmd) - total, res)) {
  853. printf("Too long fst command.\n");
  854. return -1;
  855. }
  856. total += res;
  857. }
  858. return wpa_ctrl_command(ctrl, cmd);
  859. }
  860. #endif /* CONFIG_FST */
  861. static int hostapd_cli_cmd_chan_switch(struct wpa_ctrl *ctrl,
  862. int argc, char *argv[])
  863. {
  864. char cmd[256];
  865. int res;
  866. int i;
  867. char *tmp;
  868. int total;
  869. if (argc < 2) {
  870. printf("Invalid chan_switch command: needs at least two "
  871. "arguments (count and freq)\n"
  872. "usage: <cs_count> <freq> [sec_channel_offset=] "
  873. "[center_freq1=] [center_freq2=] [bandwidth=] "
  874. "[blocktx] [ht|vht]\n");
  875. return -1;
  876. }
  877. res = os_snprintf(cmd, sizeof(cmd), "CHAN_SWITCH %s %s",
  878. argv[0], argv[1]);
  879. if (os_snprintf_error(sizeof(cmd), res)) {
  880. printf("Too long CHAN_SWITCH command.\n");
  881. return -1;
  882. }
  883. total = res;
  884. for (i = 2; i < argc; i++) {
  885. tmp = cmd + total;
  886. res = os_snprintf(tmp, sizeof(cmd) - total, " %s", argv[i]);
  887. if (os_snprintf_error(sizeof(cmd) - total, res)) {
  888. printf("Too long CHAN_SWITCH command.\n");
  889. return -1;
  890. }
  891. total += res;
  892. }
  893. return wpa_ctrl_command(ctrl, cmd);
  894. }
  895. static int hostapd_cli_cmd_enable(struct wpa_ctrl *ctrl, int argc,
  896. char *argv[])
  897. {
  898. return wpa_ctrl_command(ctrl, "ENABLE");
  899. }
  900. static int hostapd_cli_cmd_reload(struct wpa_ctrl *ctrl, int argc,
  901. char *argv[])
  902. {
  903. return wpa_ctrl_command(ctrl, "RELOAD");
  904. }
  905. static int hostapd_cli_cmd_disable(struct wpa_ctrl *ctrl, int argc,
  906. char *argv[])
  907. {
  908. return wpa_ctrl_command(ctrl, "DISABLE");
  909. }
  910. static int hostapd_cli_cmd_vendor(struct wpa_ctrl *ctrl, int argc, char *argv[])
  911. {
  912. char cmd[256];
  913. int res;
  914. if (argc < 2 || argc > 3) {
  915. printf("Invalid vendor command\n"
  916. "usage: <vendor id> <command id> [<hex formatted command argument>]\n");
  917. return -1;
  918. }
  919. res = os_snprintf(cmd, sizeof(cmd), "VENDOR %s %s %s", argv[0], argv[1],
  920. argc == 3 ? argv[2] : "");
  921. if (os_snprintf_error(sizeof(cmd), res)) {
  922. printf("Too long VENDOR command.\n");
  923. return -1;
  924. }
  925. return wpa_ctrl_command(ctrl, cmd);
  926. }
  927. static int hostapd_cli_cmd_erp_flush(struct wpa_ctrl *ctrl, int argc,
  928. char *argv[])
  929. {
  930. return wpa_ctrl_command(ctrl, "ERP_FLUSH");
  931. }
  932. static int hostapd_cli_cmd_log_level(struct wpa_ctrl *ctrl, int argc,
  933. char *argv[])
  934. {
  935. char cmd[256];
  936. int res;
  937. res = os_snprintf(cmd, sizeof(cmd), "LOG_LEVEL%s%s%s%s",
  938. argc >= 1 ? " " : "",
  939. argc >= 1 ? argv[0] : "",
  940. argc == 2 ? " " : "",
  941. argc == 2 ? argv[1] : "");
  942. if (os_snprintf_error(sizeof(cmd), res)) {
  943. printf("Too long option\n");
  944. return -1;
  945. }
  946. return wpa_ctrl_command(ctrl, cmd);
  947. }
  948. static int hostapd_cli_cmd_raw(struct wpa_ctrl *ctrl, int argc, char *argv[])
  949. {
  950. if (argc == 0)
  951. return -1;
  952. return hostapd_cli_cmd(ctrl, argv[0], 0, argc - 1, &argv[1]);
  953. }
  954. static int hostapd_cli_cmd_pmksa(struct wpa_ctrl *ctrl, int argc, char *argv[])
  955. {
  956. return wpa_ctrl_command(ctrl, "PMKSA");
  957. }
  958. static int hostapd_cli_cmd_pmksa_flush(struct wpa_ctrl *ctrl, int argc,
  959. char *argv[])
  960. {
  961. return wpa_ctrl_command(ctrl, "PMKSA_FLUSH");
  962. }
  963. static int hostapd_cli_cmd_set_neighbor(struct wpa_ctrl *ctrl, int argc,
  964. char *argv[])
  965. {
  966. char cmd[2048];
  967. int res;
  968. if (argc < 3 || argc > 5) {
  969. printf("Invalid set_neighbor command: needs 3-5 arguments\n");
  970. return -1;
  971. }
  972. res = os_snprintf(cmd, sizeof(cmd), "SET_NEIGHBOR %s %s %s %s %s",
  973. argv[0], argv[1], argv[2], argc >= 4 ? argv[3] : "",
  974. argc == 5 ? argv[4] : "");
  975. if (os_snprintf_error(sizeof(cmd), res)) {
  976. printf("Too long SET_NEIGHBOR command.\n");
  977. return -1;
  978. }
  979. return wpa_ctrl_command(ctrl, cmd);
  980. }
  981. static int hostapd_cli_cmd_remove_neighbor(struct wpa_ctrl *ctrl, int argc,
  982. char *argv[])
  983. {
  984. char cmd[400];
  985. int res;
  986. if (argc != 2) {
  987. printf("Invalid remove_neighbor command: needs 2 arguments\n");
  988. return -1;
  989. }
  990. res = os_snprintf(cmd, sizeof(cmd), "REMOVE_NEIGHBOR %s %s",
  991. argv[0], argv[1]);
  992. if (os_snprintf_error(sizeof(cmd), res)) {
  993. printf("Too long REMOVE_NEIGHBOR command.\n");
  994. return -1;
  995. }
  996. return wpa_ctrl_command(ctrl, cmd);
  997. }
  998. static int hostapd_cli_cmd_req_lci(struct wpa_ctrl *ctrl, int argc,
  999. char *argv[])
  1000. {
  1001. char cmd[256];
  1002. int res;
  1003. if (argc != 1) {
  1004. printf("Invalid req_lci command - requires destination address\n");
  1005. return -1;
  1006. }
  1007. res = os_snprintf(cmd, sizeof(cmd), "REQ_LCI %s", argv[0]);
  1008. if (os_snprintf_error(sizeof(cmd), res)) {
  1009. printf("Too long REQ_LCI command.\n");
  1010. return -1;
  1011. }
  1012. return wpa_ctrl_command(ctrl, cmd);
  1013. }
  1014. static int hostapd_cli_cmd_req_range(struct wpa_ctrl *ctrl, int argc,
  1015. char *argv[])
  1016. {
  1017. if (argc < 4) {
  1018. printf("Invalid req_range command: needs at least 4 arguments - dest address, randomization interval, min AP count, and 1 to 16 AP addresses\n");
  1019. return -1;
  1020. }
  1021. return hostapd_cli_cmd(ctrl, "REQ_RANGE", 4, argc, argv);
  1022. }
  1023. static int hostapd_cli_cmd_driver_flags(struct wpa_ctrl *ctrl, int argc,
  1024. char *argv[])
  1025. {
  1026. return wpa_ctrl_command(ctrl, "DRIVER_FLAGS");
  1027. }
  1028. struct hostapd_cli_cmd {
  1029. const char *cmd;
  1030. int (*handler)(struct wpa_ctrl *ctrl, int argc, char *argv[]);
  1031. char ** (*completion)(const char *str, int pos);
  1032. const char *usage;
  1033. };
  1034. static const struct hostapd_cli_cmd hostapd_cli_commands[] = {
  1035. { "ping", hostapd_cli_cmd_ping, NULL,
  1036. "= pings hostapd" },
  1037. { "mib", hostapd_cli_cmd_mib, NULL,
  1038. "= get MIB variables (dot1x, dot11, radius)" },
  1039. { "relog", hostapd_cli_cmd_relog, NULL, NULL },
  1040. { "status", hostapd_cli_cmd_status, NULL, NULL },
  1041. { "sta", hostapd_cli_cmd_sta, NULL,
  1042. "<addr> = get MIB variables for one station" },
  1043. { "all_sta", hostapd_cli_cmd_all_sta, NULL,
  1044. "= get MIB variables for all stations" },
  1045. { "new_sta", hostapd_cli_cmd_new_sta, NULL,
  1046. "<addr> = add a new station" },
  1047. { "deauthenticate", hostapd_cli_cmd_deauthenticate,
  1048. hostapd_complete_deauthenticate,
  1049. "<addr> = deauthenticate a station" },
  1050. { "disassociate", hostapd_cli_cmd_disassociate,
  1051. hostapd_complete_disassociate,
  1052. "<addr> = disassociate a station" },
  1053. #ifdef CONFIG_TAXONOMY
  1054. { "signature", hostapd_cli_cmd_signature, NULL,
  1055. "<addr> = get taxonomy signature for a station" },
  1056. #endif /* CONFIG_TAXONOMY */
  1057. #ifdef CONFIG_IEEE80211W
  1058. { "sa_query", hostapd_cli_cmd_sa_query, NULL,
  1059. "<addr> = send SA Query to a station" },
  1060. #endif /* CONFIG_IEEE80211W */
  1061. #ifdef CONFIG_WPS
  1062. { "wps_pin", hostapd_cli_cmd_wps_pin, NULL,
  1063. "<uuid> <pin> [timeout] [addr] = add WPS Enrollee PIN" },
  1064. { "wps_check_pin", hostapd_cli_cmd_wps_check_pin, NULL,
  1065. "<PIN> = verify PIN checksum" },
  1066. { "wps_pbc", hostapd_cli_cmd_wps_pbc, NULL,
  1067. "= indicate button pushed to initiate PBC" },
  1068. { "wps_cancel", hostapd_cli_cmd_wps_cancel, NULL,
  1069. "= cancel the pending WPS operation" },
  1070. #ifdef CONFIG_WPS_NFC
  1071. { "wps_nfc_tag_read", hostapd_cli_cmd_wps_nfc_tag_read, NULL,
  1072. "<hexdump> = report read NFC tag with WPS data" },
  1073. { "wps_nfc_config_token", hostapd_cli_cmd_wps_nfc_config_token, NULL,
  1074. "<WPS/NDEF> = build NFC configuration token" },
  1075. { "wps_nfc_token", hostapd_cli_cmd_wps_nfc_token, NULL,
  1076. "<WPS/NDEF/enable/disable> = manager NFC password token" },
  1077. { "nfc_get_handover_sel", hostapd_cli_cmd_nfc_get_handover_sel, NULL,
  1078. NULL },
  1079. #endif /* CONFIG_WPS_NFC */
  1080. { "wps_ap_pin", hostapd_cli_cmd_wps_ap_pin, NULL,
  1081. "<cmd> [params..] = enable/disable AP PIN" },
  1082. { "wps_config", hostapd_cli_cmd_wps_config, NULL,
  1083. "<SSID> <auth> <encr> <key> = configure AP" },
  1084. { "wps_get_status", hostapd_cli_cmd_wps_get_status, NULL,
  1085. "= show current WPS status" },
  1086. #endif /* CONFIG_WPS */
  1087. { "disassoc_imminent", hostapd_cli_cmd_disassoc_imminent, NULL, NULL },
  1088. { "ess_disassoc", hostapd_cli_cmd_ess_disassoc, NULL, NULL },
  1089. { "bss_tm_req", hostapd_cli_cmd_bss_tm_req, NULL, NULL },
  1090. { "get_config", hostapd_cli_cmd_get_config, NULL,
  1091. "= show current configuration" },
  1092. { "help", hostapd_cli_cmd_help, hostapd_cli_complete_help,
  1093. "= show this usage help" },
  1094. { "interface", hostapd_cli_cmd_interface, hostapd_complete_interface,
  1095. "[ifname] = show interfaces/select interface" },
  1096. #ifdef CONFIG_FST
  1097. { "fst", hostapd_cli_cmd_fst, NULL, NULL },
  1098. #endif /* CONFIG_FST */
  1099. { "raw", hostapd_cli_cmd_raw, NULL, NULL },
  1100. { "level", hostapd_cli_cmd_level, NULL,
  1101. "<debug level> = change debug level" },
  1102. { "license", hostapd_cli_cmd_license, NULL,
  1103. "= show full hostapd_cli license" },
  1104. { "quit", hostapd_cli_cmd_quit, NULL,
  1105. "= exit hostapd_cli" },
  1106. { "set", hostapd_cli_cmd_set, NULL, NULL },
  1107. { "get", hostapd_cli_cmd_get, NULL, NULL },
  1108. { "set_qos_map_set", hostapd_cli_cmd_set_qos_map_set, NULL, NULL },
  1109. { "send_qos_map_conf", hostapd_cli_cmd_send_qos_map_conf, NULL, NULL },
  1110. { "chan_switch", hostapd_cli_cmd_chan_switch, NULL, NULL },
  1111. { "hs20_wnm_notif", hostapd_cli_cmd_hs20_wnm_notif, NULL, NULL },
  1112. { "hs20_deauth_req", hostapd_cli_cmd_hs20_deauth_req, NULL, NULL },
  1113. { "vendor", hostapd_cli_cmd_vendor, NULL, NULL },
  1114. { "enable", hostapd_cli_cmd_enable, NULL, NULL },
  1115. { "reload", hostapd_cli_cmd_reload, NULL, NULL },
  1116. { "disable", hostapd_cli_cmd_disable, NULL, NULL },
  1117. { "erp_flush", hostapd_cli_cmd_erp_flush, NULL, NULL },
  1118. { "log_level", hostapd_cli_cmd_log_level, NULL, NULL },
  1119. { "pmksa", hostapd_cli_cmd_pmksa, NULL, NULL },
  1120. { "pmksa_flush", hostapd_cli_cmd_pmksa_flush, NULL, NULL },
  1121. { "set_neighbor", hostapd_cli_cmd_set_neighbor, NULL, NULL },
  1122. { "remove_neighbor", hostapd_cli_cmd_remove_neighbor, NULL, NULL },
  1123. { "req_lci", hostapd_cli_cmd_req_lci, NULL, NULL },
  1124. { "req_range", hostapd_cli_cmd_req_range, NULL, NULL },
  1125. { "driver_flags", hostapd_cli_cmd_driver_flags, NULL, NULL },
  1126. { NULL, NULL, NULL, NULL }
  1127. };
  1128. /*
  1129. * Prints command usage, lines are padded with the specified string.
  1130. */
  1131. static void print_cmd_help(FILE *stream, const struct hostapd_cli_cmd *cmd,
  1132. const char *pad)
  1133. {
  1134. char c;
  1135. size_t n;
  1136. if (cmd->usage == NULL)
  1137. return;
  1138. fprintf(stream, "%s%s ", pad, cmd->cmd);
  1139. for (n = 0; (c = cmd->usage[n]); n++) {
  1140. fprintf(stream, "%c", c);
  1141. if (c == '\n')
  1142. fprintf(stream, "%s", pad);
  1143. }
  1144. fprintf(stream, "\n");
  1145. }
  1146. static void print_help(FILE *stream, const char *cmd)
  1147. {
  1148. int n;
  1149. fprintf(stream, "commands:\n");
  1150. for (n = 0; hostapd_cli_commands[n].cmd; n++) {
  1151. if (cmd == NULL || str_starts(hostapd_cli_commands[n].cmd, cmd))
  1152. print_cmd_help(stream, &hostapd_cli_commands[n], " ");
  1153. }
  1154. }
  1155. static void wpa_request(struct wpa_ctrl *ctrl, int argc, char *argv[])
  1156. {
  1157. const struct hostapd_cli_cmd *cmd, *match = NULL;
  1158. int count;
  1159. count = 0;
  1160. cmd = hostapd_cli_commands;
  1161. while (cmd->cmd) {
  1162. if (strncasecmp(cmd->cmd, argv[0], strlen(argv[0])) == 0) {
  1163. match = cmd;
  1164. if (os_strcasecmp(cmd->cmd, argv[0]) == 0) {
  1165. /* we have an exact match */
  1166. count = 1;
  1167. break;
  1168. }
  1169. count++;
  1170. }
  1171. cmd++;
  1172. }
  1173. if (count > 1) {
  1174. printf("Ambiguous command '%s'; possible commands:", argv[0]);
  1175. cmd = hostapd_cli_commands;
  1176. while (cmd->cmd) {
  1177. if (strncasecmp(cmd->cmd, argv[0], strlen(argv[0])) ==
  1178. 0) {
  1179. printf(" %s", cmd->cmd);
  1180. }
  1181. cmd++;
  1182. }
  1183. printf("\n");
  1184. } else if (count == 0) {
  1185. printf("Unknown command '%s'\n", argv[0]);
  1186. } else {
  1187. match->handler(ctrl, argc - 1, &argv[1]);
  1188. }
  1189. }
  1190. static void cli_event(const char *str)
  1191. {
  1192. const char *start, *s;
  1193. start = os_strchr(str, '>');
  1194. if (start == NULL)
  1195. return;
  1196. start++;
  1197. if (str_starts(start, AP_STA_CONNECTED)) {
  1198. s = os_strchr(start, ' ');
  1199. if (s == NULL)
  1200. return;
  1201. cli_txt_list_add(&stations, s + 1);
  1202. return;
  1203. }
  1204. if (str_starts(start, AP_STA_DISCONNECTED)) {
  1205. s = os_strchr(start, ' ');
  1206. if (s == NULL)
  1207. return;
  1208. cli_txt_list_del_addr(&stations, s + 1);
  1209. return;
  1210. }
  1211. }
  1212. static void hostapd_cli_recv_pending(struct wpa_ctrl *ctrl, int in_read,
  1213. int action_monitor)
  1214. {
  1215. int first = 1;
  1216. if (ctrl_conn == NULL)
  1217. return;
  1218. while (wpa_ctrl_pending(ctrl)) {
  1219. char buf[256];
  1220. size_t len = sizeof(buf) - 1;
  1221. if (wpa_ctrl_recv(ctrl, buf, &len) == 0) {
  1222. buf[len] = '\0';
  1223. if (action_monitor)
  1224. hostapd_cli_action_process(buf, len);
  1225. else {
  1226. cli_event(buf);
  1227. if (in_read && first)
  1228. printf("\n");
  1229. first = 0;
  1230. printf("%s\n", buf);
  1231. }
  1232. } else {
  1233. printf("Could not read pending message.\n");
  1234. break;
  1235. }
  1236. }
  1237. }
  1238. static void hostapd_cli_receive(int sock, void *eloop_ctx, void *sock_ctx)
  1239. {
  1240. hostapd_cli_recv_pending(ctrl_conn, 0, 0);
  1241. }
  1242. static void hostapd_cli_ping(void *eloop_ctx, void *timeout_ctx)
  1243. {
  1244. if (ctrl_conn && _wpa_ctrl_command(ctrl_conn, "PING", 0)) {
  1245. printf("Connection to hostapd lost - trying to reconnect\n");
  1246. hostapd_cli_close_connection();
  1247. }
  1248. if (!ctrl_conn) {
  1249. ctrl_conn = hostapd_cli_open_connection(ctrl_ifname);
  1250. if (ctrl_conn) {
  1251. printf("Connection to hostapd re-established\n");
  1252. if (wpa_ctrl_attach(ctrl_conn) == 0) {
  1253. hostapd_cli_attached = 1;
  1254. register_event_handler(ctrl_conn);
  1255. } else {
  1256. printf("Warning: Failed to attach to "
  1257. "hostapd.\n");
  1258. }
  1259. }
  1260. }
  1261. if (ctrl_conn)
  1262. hostapd_cli_recv_pending(ctrl_conn, 1, 0);
  1263. eloop_register_timeout(ping_interval, 0, hostapd_cli_ping, NULL, NULL);
  1264. }
  1265. static void hostapd_cli_eloop_terminate(int sig, void *signal_ctx)
  1266. {
  1267. eloop_terminate();
  1268. }
  1269. static void hostapd_cli_edit_cmd_cb(void *ctx, char *cmd)
  1270. {
  1271. char *argv[max_args];
  1272. int argc;
  1273. argc = tokenize_cmd(cmd, argv);
  1274. if (argc)
  1275. wpa_request(ctrl_conn, argc, argv);
  1276. }
  1277. static void hostapd_cli_edit_eof_cb(void *ctx)
  1278. {
  1279. eloop_terminate();
  1280. }
  1281. static char ** list_cmd_list(void)
  1282. {
  1283. char **res;
  1284. int i, count;
  1285. count = ARRAY_SIZE(hostapd_cli_commands);
  1286. res = os_calloc(count + 1, sizeof(char *));
  1287. if (res == NULL)
  1288. return NULL;
  1289. for (i = 0; hostapd_cli_commands[i].cmd; i++) {
  1290. res[i] = os_strdup(hostapd_cli_commands[i].cmd);
  1291. if (res[i] == NULL)
  1292. break;
  1293. }
  1294. return res;
  1295. }
  1296. static char ** hostapd_cli_cmd_completion(const char *cmd, const char *str,
  1297. int pos)
  1298. {
  1299. int i;
  1300. for (i = 0; hostapd_cli_commands[i].cmd; i++) {
  1301. if (os_strcasecmp(hostapd_cli_commands[i].cmd, cmd) != 0)
  1302. continue;
  1303. if (hostapd_cli_commands[i].completion)
  1304. return hostapd_cli_commands[i].completion(str, pos);
  1305. if (!hostapd_cli_commands[i].usage)
  1306. return NULL;
  1307. edit_clear_line();
  1308. printf("\r%s\n", hostapd_cli_commands[i].usage);
  1309. edit_redraw();
  1310. break;
  1311. }
  1312. return NULL;
  1313. }
  1314. static char ** hostapd_cli_edit_completion_cb(void *ctx, const char *str,
  1315. int pos)
  1316. {
  1317. char **res;
  1318. const char *end;
  1319. char *cmd;
  1320. end = os_strchr(str, ' ');
  1321. if (end == NULL || str + pos < end)
  1322. return list_cmd_list();
  1323. cmd = os_malloc(pos + 1);
  1324. if (cmd == NULL)
  1325. return NULL;
  1326. os_memcpy(cmd, str, pos);
  1327. cmd[end - str] = '\0';
  1328. res = hostapd_cli_cmd_completion(cmd, str, pos);
  1329. os_free(cmd);
  1330. return res;
  1331. }
  1332. static void hostapd_cli_interactive(void)
  1333. {
  1334. char *hfile = NULL;
  1335. char *home;
  1336. printf("\nInteractive mode\n\n");
  1337. #ifdef CONFIG_HOSTAPD_CLI_HISTORY_DIR
  1338. home = CONFIG_HOSTAPD_CLI_HISTORY_DIR;
  1339. #else /* CONFIG_HOSTAPD_CLI_HISTORY_DIR */
  1340. home = getenv("HOME");
  1341. #endif /* CONFIG_HOSTAPD_CLI_HISTORY_DIR */
  1342. if (home) {
  1343. const char *fname = ".hostapd_cli_history";
  1344. int hfile_len = os_strlen(home) + 1 + os_strlen(fname) + 1;
  1345. hfile = os_malloc(hfile_len);
  1346. if (hfile)
  1347. os_snprintf(hfile, hfile_len, "%s/%s", home, fname);
  1348. }
  1349. eloop_register_signal_terminate(hostapd_cli_eloop_terminate, NULL);
  1350. edit_init(hostapd_cli_edit_cmd_cb, hostapd_cli_edit_eof_cb,
  1351. hostapd_cli_edit_completion_cb, NULL, hfile, NULL);
  1352. eloop_register_timeout(ping_interval, 0, hostapd_cli_ping, NULL, NULL);
  1353. eloop_run();
  1354. cli_txt_list_flush(&stations);
  1355. edit_deinit(hfile, NULL);
  1356. os_free(hfile);
  1357. eloop_cancel_timeout(hostapd_cli_ping, NULL, NULL);
  1358. }
  1359. static void hostapd_cli_cleanup(void)
  1360. {
  1361. hostapd_cli_close_connection();
  1362. if (pid_file)
  1363. os_daemonize_terminate(pid_file);
  1364. os_program_deinit();
  1365. }
  1366. static void hostapd_cli_action(struct wpa_ctrl *ctrl)
  1367. {
  1368. fd_set rfds;
  1369. int fd, res;
  1370. struct timeval tv;
  1371. char buf[256];
  1372. size_t len;
  1373. fd = wpa_ctrl_get_fd(ctrl);
  1374. while (!hostapd_cli_quit) {
  1375. FD_ZERO(&rfds);
  1376. FD_SET(fd, &rfds);
  1377. tv.tv_sec = ping_interval;
  1378. tv.tv_usec = 0;
  1379. res = select(fd + 1, &rfds, NULL, NULL, &tv);
  1380. if (res < 0 && errno != EINTR) {
  1381. perror("select");
  1382. break;
  1383. }
  1384. if (FD_ISSET(fd, &rfds))
  1385. hostapd_cli_recv_pending(ctrl, 0, 1);
  1386. else {
  1387. len = sizeof(buf) - 1;
  1388. if (wpa_ctrl_request(ctrl, "PING", 4, buf, &len,
  1389. hostapd_cli_action_process) < 0 ||
  1390. len < 4 || os_memcmp(buf, "PONG", 4) != 0) {
  1391. printf("hostapd did not reply to PING "
  1392. "command - exiting\n");
  1393. break;
  1394. }
  1395. }
  1396. }
  1397. }
  1398. int main(int argc, char *argv[])
  1399. {
  1400. int warning_displayed = 0;
  1401. int c;
  1402. int daemonize = 0;
  1403. if (os_program_init())
  1404. return -1;
  1405. for (;;) {
  1406. c = getopt(argc, argv, "a:BhG:i:p:P:s:v");
  1407. if (c < 0)
  1408. break;
  1409. switch (c) {
  1410. case 'a':
  1411. action_file = optarg;
  1412. break;
  1413. case 'B':
  1414. daemonize = 1;
  1415. break;
  1416. case 'G':
  1417. ping_interval = atoi(optarg);
  1418. break;
  1419. case 'h':
  1420. usage();
  1421. return 0;
  1422. case 'v':
  1423. printf("%s\n", hostapd_cli_version);
  1424. return 0;
  1425. case 'i':
  1426. os_free(ctrl_ifname);
  1427. ctrl_ifname = os_strdup(optarg);
  1428. break;
  1429. case 'p':
  1430. ctrl_iface_dir = optarg;
  1431. break;
  1432. case 'P':
  1433. pid_file = optarg;
  1434. break;
  1435. case 's':
  1436. client_socket_dir = optarg;
  1437. break;
  1438. default:
  1439. usage();
  1440. return -1;
  1441. }
  1442. }
  1443. interactive = (argc == optind) && (action_file == NULL);
  1444. if (interactive) {
  1445. printf("%s\n\n%s\n\n", hostapd_cli_version, cli_license);
  1446. }
  1447. if (eloop_init())
  1448. return -1;
  1449. for (;;) {
  1450. if (ctrl_ifname == NULL) {
  1451. struct dirent *dent;
  1452. DIR *dir = opendir(ctrl_iface_dir);
  1453. if (dir) {
  1454. while ((dent = readdir(dir))) {
  1455. if (os_strcmp(dent->d_name, ".") == 0
  1456. ||
  1457. os_strcmp(dent->d_name, "..") == 0)
  1458. continue;
  1459. printf("Selected interface '%s'\n",
  1460. dent->d_name);
  1461. ctrl_ifname = os_strdup(dent->d_name);
  1462. break;
  1463. }
  1464. closedir(dir);
  1465. }
  1466. }
  1467. ctrl_conn = hostapd_cli_open_connection(ctrl_ifname);
  1468. if (ctrl_conn) {
  1469. if (warning_displayed)
  1470. printf("Connection established.\n");
  1471. break;
  1472. }
  1473. if (!interactive) {
  1474. perror("Failed to connect to hostapd - "
  1475. "wpa_ctrl_open");
  1476. return -1;
  1477. }
  1478. if (!warning_displayed) {
  1479. printf("Could not connect to hostapd - re-trying\n");
  1480. warning_displayed = 1;
  1481. }
  1482. os_sleep(1, 0);
  1483. continue;
  1484. }
  1485. if (interactive || action_file) {
  1486. if (wpa_ctrl_attach(ctrl_conn) == 0) {
  1487. hostapd_cli_attached = 1;
  1488. register_event_handler(ctrl_conn);
  1489. } else {
  1490. printf("Warning: Failed to attach to hostapd.\n");
  1491. if (action_file)
  1492. return -1;
  1493. }
  1494. }
  1495. if (daemonize && os_daemonize(pid_file) && eloop_sock_requeue())
  1496. return -1;
  1497. if (interactive)
  1498. hostapd_cli_interactive();
  1499. else if (action_file)
  1500. hostapd_cli_action(ctrl_conn);
  1501. else
  1502. wpa_request(ctrl_conn, argc - optind, &argv[optind]);
  1503. unregister_event_handler(ctrl_conn);
  1504. os_free(ctrl_ifname);
  1505. eloop_destroy();
  1506. hostapd_cli_cleanup();
  1507. return 0;
  1508. }
  1509. #else /* CONFIG_NO_CTRL_IFACE */
  1510. int main(int argc, char *argv[])
  1511. {
  1512. return -1;
  1513. }
  1514. #endif /* CONFIG_NO_CTRL_IFACE */