ctrl_iface.c 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914
  1. /*
  2. * hostapd / UNIX domain socket -based control interface
  3. * Copyright (c) 2004-2014, 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 "utils/includes.h"
  9. #ifndef CONFIG_NATIVE_WINDOWS
  10. #include <sys/un.h>
  11. #include <sys/stat.h>
  12. #include <stddef.h>
  13. #include "utils/common.h"
  14. #include "utils/eloop.h"
  15. #include "common/version.h"
  16. #include "common/ieee802_11_defs.h"
  17. #include "drivers/driver.h"
  18. #include "radius/radius_client.h"
  19. #include "radius/radius_server.h"
  20. #include "ap/hostapd.h"
  21. #include "ap/ap_config.h"
  22. #include "ap/ieee802_1x.h"
  23. #include "ap/wpa_auth.h"
  24. #include "ap/ieee802_11.h"
  25. #include "ap/sta_info.h"
  26. #include "ap/wps_hostapd.h"
  27. #include "ap/ctrl_iface_ap.h"
  28. #include "ap/ap_drv_ops.h"
  29. #include "ap/wnm_ap.h"
  30. #include "ap/wpa_auth.h"
  31. #include "wps/wps_defs.h"
  32. #include "wps/wps.h"
  33. #include "config_file.h"
  34. #include "ctrl_iface.h"
  35. struct wpa_ctrl_dst {
  36. struct wpa_ctrl_dst *next;
  37. struct sockaddr_un addr;
  38. socklen_t addrlen;
  39. int debug_level;
  40. int errors;
  41. };
  42. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  43. const char *buf, size_t len);
  44. static int hostapd_ctrl_iface_attach(struct hostapd_data *hapd,
  45. struct sockaddr_un *from,
  46. socklen_t fromlen)
  47. {
  48. struct wpa_ctrl_dst *dst;
  49. dst = os_zalloc(sizeof(*dst));
  50. if (dst == NULL)
  51. return -1;
  52. os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un));
  53. dst->addrlen = fromlen;
  54. dst->debug_level = MSG_INFO;
  55. dst->next = hapd->ctrl_dst;
  56. hapd->ctrl_dst = dst;
  57. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor attached",
  58. (u8 *) from->sun_path,
  59. fromlen - offsetof(struct sockaddr_un, sun_path));
  60. return 0;
  61. }
  62. static int hostapd_ctrl_iface_detach(struct hostapd_data *hapd,
  63. struct sockaddr_un *from,
  64. socklen_t fromlen)
  65. {
  66. struct wpa_ctrl_dst *dst, *prev = NULL;
  67. dst = hapd->ctrl_dst;
  68. while (dst) {
  69. if (fromlen == dst->addrlen &&
  70. os_memcmp(from->sun_path, dst->addr.sun_path,
  71. fromlen - offsetof(struct sockaddr_un, sun_path))
  72. == 0) {
  73. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor detached",
  74. (u8 *) from->sun_path,
  75. fromlen -
  76. offsetof(struct sockaddr_un, sun_path));
  77. if (prev == NULL)
  78. hapd->ctrl_dst = dst->next;
  79. else
  80. prev->next = dst->next;
  81. os_free(dst);
  82. return 0;
  83. }
  84. prev = dst;
  85. dst = dst->next;
  86. }
  87. return -1;
  88. }
  89. static int hostapd_ctrl_iface_level(struct hostapd_data *hapd,
  90. struct sockaddr_un *from,
  91. socklen_t fromlen,
  92. char *level)
  93. {
  94. struct wpa_ctrl_dst *dst;
  95. wpa_printf(MSG_DEBUG, "CTRL_IFACE LEVEL %s", level);
  96. dst = hapd->ctrl_dst;
  97. while (dst) {
  98. if (fromlen == dst->addrlen &&
  99. os_memcmp(from->sun_path, dst->addr.sun_path,
  100. fromlen - offsetof(struct sockaddr_un, sun_path))
  101. == 0) {
  102. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE changed monitor "
  103. "level", (u8 *) from->sun_path, fromlen -
  104. offsetof(struct sockaddr_un, sun_path));
  105. dst->debug_level = atoi(level);
  106. return 0;
  107. }
  108. dst = dst->next;
  109. }
  110. return -1;
  111. }
  112. static int hostapd_ctrl_iface_new_sta(struct hostapd_data *hapd,
  113. const char *txtaddr)
  114. {
  115. u8 addr[ETH_ALEN];
  116. struct sta_info *sta;
  117. wpa_printf(MSG_DEBUG, "CTRL_IFACE NEW_STA %s", txtaddr);
  118. if (hwaddr_aton(txtaddr, addr))
  119. return -1;
  120. sta = ap_get_sta(hapd, addr);
  121. if (sta)
  122. return 0;
  123. wpa_printf(MSG_DEBUG, "Add new STA " MACSTR " based on ctrl_iface "
  124. "notification", MAC2STR(addr));
  125. sta = ap_sta_add(hapd, addr);
  126. if (sta == NULL)
  127. return -1;
  128. hostapd_new_assoc_sta(hapd, sta, 0);
  129. return 0;
  130. }
  131. #ifdef CONFIG_IEEE80211W
  132. #ifdef NEED_AP_MLME
  133. static int hostapd_ctrl_iface_sa_query(struct hostapd_data *hapd,
  134. const char *txtaddr)
  135. {
  136. u8 addr[ETH_ALEN];
  137. u8 trans_id[WLAN_SA_QUERY_TR_ID_LEN];
  138. wpa_printf(MSG_DEBUG, "CTRL_IFACE SA_QUERY %s", txtaddr);
  139. if (hwaddr_aton(txtaddr, addr) ||
  140. os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN) < 0)
  141. return -1;
  142. ieee802_11_send_sa_query_req(hapd, addr, trans_id);
  143. return 0;
  144. }
  145. #endif /* NEED_AP_MLME */
  146. #endif /* CONFIG_IEEE80211W */
  147. #ifdef CONFIG_WPS
  148. static int hostapd_ctrl_iface_wps_pin(struct hostapd_data *hapd, char *txt)
  149. {
  150. char *pin = os_strchr(txt, ' ');
  151. char *timeout_txt;
  152. int timeout;
  153. u8 addr_buf[ETH_ALEN], *addr = NULL;
  154. char *pos;
  155. if (pin == NULL)
  156. return -1;
  157. *pin++ = '\0';
  158. timeout_txt = os_strchr(pin, ' ');
  159. if (timeout_txt) {
  160. *timeout_txt++ = '\0';
  161. timeout = atoi(timeout_txt);
  162. pos = os_strchr(timeout_txt, ' ');
  163. if (pos) {
  164. *pos++ = '\0';
  165. if (hwaddr_aton(pos, addr_buf) == 0)
  166. addr = addr_buf;
  167. }
  168. } else
  169. timeout = 0;
  170. return hostapd_wps_add_pin(hapd, addr, txt, pin, timeout);
  171. }
  172. static int hostapd_ctrl_iface_wps_check_pin(
  173. struct hostapd_data *hapd, char *cmd, char *buf, size_t buflen)
  174. {
  175. char pin[9];
  176. size_t len;
  177. char *pos;
  178. int ret;
  179. wpa_hexdump_ascii_key(MSG_DEBUG, "WPS_CHECK_PIN",
  180. (u8 *) cmd, os_strlen(cmd));
  181. for (pos = cmd, len = 0; *pos != '\0'; pos++) {
  182. if (*pos < '0' || *pos > '9')
  183. continue;
  184. pin[len++] = *pos;
  185. if (len == 9) {
  186. wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
  187. return -1;
  188. }
  189. }
  190. if (len != 4 && len != 8) {
  191. wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
  192. return -1;
  193. }
  194. pin[len] = '\0';
  195. if (len == 8) {
  196. unsigned int pin_val;
  197. pin_val = atoi(pin);
  198. if (!wps_pin_valid(pin_val)) {
  199. wpa_printf(MSG_DEBUG, "WPS: Invalid checksum digit");
  200. ret = os_snprintf(buf, buflen, "FAIL-CHECKSUM\n");
  201. if (ret < 0 || (size_t) ret >= buflen)
  202. return -1;
  203. return ret;
  204. }
  205. }
  206. ret = os_snprintf(buf, buflen, "%s", pin);
  207. if (ret < 0 || (size_t) ret >= buflen)
  208. return -1;
  209. return ret;
  210. }
  211. #ifdef CONFIG_WPS_NFC
  212. static int hostapd_ctrl_iface_wps_nfc_tag_read(struct hostapd_data *hapd,
  213. char *pos)
  214. {
  215. size_t len;
  216. struct wpabuf *buf;
  217. int ret;
  218. len = os_strlen(pos);
  219. if (len & 0x01)
  220. return -1;
  221. len /= 2;
  222. buf = wpabuf_alloc(len);
  223. if (buf == NULL)
  224. return -1;
  225. if (hexstr2bin(pos, wpabuf_put(buf, len), len) < 0) {
  226. wpabuf_free(buf);
  227. return -1;
  228. }
  229. ret = hostapd_wps_nfc_tag_read(hapd, buf);
  230. wpabuf_free(buf);
  231. return ret;
  232. }
  233. static int hostapd_ctrl_iface_wps_nfc_config_token(struct hostapd_data *hapd,
  234. char *cmd, char *reply,
  235. size_t max_len)
  236. {
  237. int ndef;
  238. struct wpabuf *buf;
  239. int res;
  240. if (os_strcmp(cmd, "WPS") == 0)
  241. ndef = 0;
  242. else if (os_strcmp(cmd, "NDEF") == 0)
  243. ndef = 1;
  244. else
  245. return -1;
  246. buf = hostapd_wps_nfc_config_token(hapd, ndef);
  247. if (buf == NULL)
  248. return -1;
  249. res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
  250. wpabuf_len(buf));
  251. reply[res++] = '\n';
  252. reply[res] = '\0';
  253. wpabuf_free(buf);
  254. return res;
  255. }
  256. static int hostapd_ctrl_iface_wps_nfc_token_gen(struct hostapd_data *hapd,
  257. char *reply, size_t max_len,
  258. int ndef)
  259. {
  260. struct wpabuf *buf;
  261. int res;
  262. buf = hostapd_wps_nfc_token_gen(hapd, ndef);
  263. if (buf == NULL)
  264. return -1;
  265. res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
  266. wpabuf_len(buf));
  267. reply[res++] = '\n';
  268. reply[res] = '\0';
  269. wpabuf_free(buf);
  270. return res;
  271. }
  272. static int hostapd_ctrl_iface_wps_nfc_token(struct hostapd_data *hapd,
  273. char *cmd, char *reply,
  274. size_t max_len)
  275. {
  276. if (os_strcmp(cmd, "WPS") == 0)
  277. return hostapd_ctrl_iface_wps_nfc_token_gen(hapd, reply,
  278. max_len, 0);
  279. if (os_strcmp(cmd, "NDEF") == 0)
  280. return hostapd_ctrl_iface_wps_nfc_token_gen(hapd, reply,
  281. max_len, 1);
  282. if (os_strcmp(cmd, "enable") == 0)
  283. return hostapd_wps_nfc_token_enable(hapd);
  284. if (os_strcmp(cmd, "disable") == 0) {
  285. hostapd_wps_nfc_token_disable(hapd);
  286. return 0;
  287. }
  288. return -1;
  289. }
  290. static int hostapd_ctrl_iface_nfc_get_handover_sel(struct hostapd_data *hapd,
  291. char *cmd, char *reply,
  292. size_t max_len)
  293. {
  294. struct wpabuf *buf;
  295. int res;
  296. char *pos;
  297. int ndef;
  298. pos = os_strchr(cmd, ' ');
  299. if (pos == NULL)
  300. return -1;
  301. *pos++ = '\0';
  302. if (os_strcmp(cmd, "WPS") == 0)
  303. ndef = 0;
  304. else if (os_strcmp(cmd, "NDEF") == 0)
  305. ndef = 1;
  306. else
  307. return -1;
  308. if (os_strcmp(pos, "WPS-CR") == 0)
  309. buf = hostapd_wps_nfc_hs_cr(hapd, ndef);
  310. else
  311. buf = NULL;
  312. if (buf == NULL)
  313. return -1;
  314. res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
  315. wpabuf_len(buf));
  316. reply[res++] = '\n';
  317. reply[res] = '\0';
  318. wpabuf_free(buf);
  319. return res;
  320. }
  321. static int hostapd_ctrl_iface_nfc_report_handover(struct hostapd_data *hapd,
  322. char *cmd)
  323. {
  324. size_t len;
  325. struct wpabuf *req, *sel;
  326. int ret;
  327. char *pos, *role, *type, *pos2;
  328. role = cmd;
  329. pos = os_strchr(role, ' ');
  330. if (pos == NULL)
  331. return -1;
  332. *pos++ = '\0';
  333. type = pos;
  334. pos = os_strchr(type, ' ');
  335. if (pos == NULL)
  336. return -1;
  337. *pos++ = '\0';
  338. pos2 = os_strchr(pos, ' ');
  339. if (pos2 == NULL)
  340. return -1;
  341. *pos2++ = '\0';
  342. len = os_strlen(pos);
  343. if (len & 0x01)
  344. return -1;
  345. len /= 2;
  346. req = wpabuf_alloc(len);
  347. if (req == NULL)
  348. return -1;
  349. if (hexstr2bin(pos, wpabuf_put(req, len), len) < 0) {
  350. wpabuf_free(req);
  351. return -1;
  352. }
  353. len = os_strlen(pos2);
  354. if (len & 0x01) {
  355. wpabuf_free(req);
  356. return -1;
  357. }
  358. len /= 2;
  359. sel = wpabuf_alloc(len);
  360. if (sel == NULL) {
  361. wpabuf_free(req);
  362. return -1;
  363. }
  364. if (hexstr2bin(pos2, wpabuf_put(sel, len), len) < 0) {
  365. wpabuf_free(req);
  366. wpabuf_free(sel);
  367. return -1;
  368. }
  369. if (os_strcmp(role, "RESP") == 0 && os_strcmp(type, "WPS") == 0) {
  370. ret = hostapd_wps_nfc_report_handover(hapd, req, sel);
  371. } else {
  372. wpa_printf(MSG_DEBUG, "NFC: Unsupported connection handover "
  373. "reported: role=%s type=%s", role, type);
  374. ret = -1;
  375. }
  376. wpabuf_free(req);
  377. wpabuf_free(sel);
  378. return ret;
  379. }
  380. #endif /* CONFIG_WPS_NFC */
  381. static int hostapd_ctrl_iface_wps_ap_pin(struct hostapd_data *hapd, char *txt,
  382. char *buf, size_t buflen)
  383. {
  384. int timeout = 300;
  385. char *pos;
  386. const char *pin_txt;
  387. pos = os_strchr(txt, ' ');
  388. if (pos)
  389. *pos++ = '\0';
  390. if (os_strcmp(txt, "disable") == 0) {
  391. hostapd_wps_ap_pin_disable(hapd);
  392. return os_snprintf(buf, buflen, "OK\n");
  393. }
  394. if (os_strcmp(txt, "random") == 0) {
  395. if (pos)
  396. timeout = atoi(pos);
  397. pin_txt = hostapd_wps_ap_pin_random(hapd, timeout);
  398. if (pin_txt == NULL)
  399. return -1;
  400. return os_snprintf(buf, buflen, "%s", pin_txt);
  401. }
  402. if (os_strcmp(txt, "get") == 0) {
  403. pin_txt = hostapd_wps_ap_pin_get(hapd);
  404. if (pin_txt == NULL)
  405. return -1;
  406. return os_snprintf(buf, buflen, "%s", pin_txt);
  407. }
  408. if (os_strcmp(txt, "set") == 0) {
  409. char *pin;
  410. if (pos == NULL)
  411. return -1;
  412. pin = pos;
  413. pos = os_strchr(pos, ' ');
  414. if (pos) {
  415. *pos++ = '\0';
  416. timeout = atoi(pos);
  417. }
  418. if (os_strlen(pin) > buflen)
  419. return -1;
  420. if (hostapd_wps_ap_pin_set(hapd, pin, timeout) < 0)
  421. return -1;
  422. return os_snprintf(buf, buflen, "%s", pin);
  423. }
  424. return -1;
  425. }
  426. static int hostapd_ctrl_iface_wps_config(struct hostapd_data *hapd, char *txt)
  427. {
  428. char *pos;
  429. char *ssid, *auth, *encr = NULL, *key = NULL;
  430. ssid = txt;
  431. pos = os_strchr(txt, ' ');
  432. if (!pos)
  433. return -1;
  434. *pos++ = '\0';
  435. auth = pos;
  436. pos = os_strchr(pos, ' ');
  437. if (pos) {
  438. *pos++ = '\0';
  439. encr = pos;
  440. pos = os_strchr(pos, ' ');
  441. if (pos) {
  442. *pos++ = '\0';
  443. key = pos;
  444. }
  445. }
  446. return hostapd_wps_config_ap(hapd, ssid, auth, encr, key);
  447. }
  448. static const char * pbc_status_str(enum pbc_status status)
  449. {
  450. switch (status) {
  451. case WPS_PBC_STATUS_DISABLE:
  452. return "Disabled";
  453. case WPS_PBC_STATUS_ACTIVE:
  454. return "Active";
  455. case WPS_PBC_STATUS_TIMEOUT:
  456. return "Timed-out";
  457. case WPS_PBC_STATUS_OVERLAP:
  458. return "Overlap";
  459. default:
  460. return "Unknown";
  461. }
  462. }
  463. static int hostapd_ctrl_iface_wps_get_status(struct hostapd_data *hapd,
  464. char *buf, size_t buflen)
  465. {
  466. int ret;
  467. char *pos, *end;
  468. pos = buf;
  469. end = buf + buflen;
  470. ret = os_snprintf(pos, end - pos, "PBC Status: %s\n",
  471. pbc_status_str(hapd->wps_stats.pbc_status));
  472. if (ret < 0 || ret >= end - pos)
  473. return pos - buf;
  474. pos += ret;
  475. ret = os_snprintf(pos, end - pos, "Last WPS result: %s\n",
  476. (hapd->wps_stats.status == WPS_STATUS_SUCCESS ?
  477. "Success":
  478. (hapd->wps_stats.status == WPS_STATUS_FAILURE ?
  479. "Failed" : "None")));
  480. if (ret < 0 || ret >= end - pos)
  481. return pos - buf;
  482. pos += ret;
  483. /* If status == Failure - Add possible Reasons */
  484. if(hapd->wps_stats.status == WPS_STATUS_FAILURE &&
  485. hapd->wps_stats.failure_reason > 0) {
  486. ret = os_snprintf(pos, end - pos,
  487. "Failure Reason: %s\n",
  488. wps_ei_str(hapd->wps_stats.failure_reason));
  489. if (ret < 0 || ret >= end - pos)
  490. return pos - buf;
  491. pos += ret;
  492. }
  493. if (hapd->wps_stats.status) {
  494. ret = os_snprintf(pos, end - pos, "Peer Address: " MACSTR "\n",
  495. MAC2STR(hapd->wps_stats.peer_addr));
  496. if (ret < 0 || ret >= end - pos)
  497. return pos - buf;
  498. pos += ret;
  499. }
  500. return pos - buf;
  501. }
  502. #endif /* CONFIG_WPS */
  503. #ifdef CONFIG_INTERWORKING
  504. static int hostapd_ctrl_iface_set_qos_map_set(struct hostapd_data *hapd,
  505. const char *cmd)
  506. {
  507. u8 qos_map_set[16 + 2 * 21], count = 0;
  508. const char *pos = cmd;
  509. int val, ret;
  510. for (;;) {
  511. if (count == sizeof(qos_map_set)) {
  512. wpa_printf(MSG_ERROR, "Too many qos_map_set parameters");
  513. return -1;
  514. }
  515. val = atoi(pos);
  516. if (val < 0 || val > 255) {
  517. wpa_printf(MSG_INFO, "Invalid QoS Map Set");
  518. return -1;
  519. }
  520. qos_map_set[count++] = val;
  521. pos = os_strchr(pos, ',');
  522. if (!pos)
  523. break;
  524. pos++;
  525. }
  526. if (count < 16 || count & 1) {
  527. wpa_printf(MSG_INFO, "Invalid QoS Map Set");
  528. return -1;
  529. }
  530. ret = hostapd_drv_set_qos_map(hapd, qos_map_set, count);
  531. if (ret) {
  532. wpa_printf(MSG_INFO, "Failed to set QoS Map Set");
  533. return -1;
  534. }
  535. os_memcpy(hapd->conf->qos_map_set, qos_map_set, count);
  536. hapd->conf->qos_map_set_len = count;
  537. return 0;
  538. }
  539. static int hostapd_ctrl_iface_send_qos_map_conf(struct hostapd_data *hapd,
  540. const char *cmd)
  541. {
  542. u8 addr[ETH_ALEN];
  543. struct sta_info *sta;
  544. struct wpabuf *buf;
  545. u8 *qos_map_set = hapd->conf->qos_map_set;
  546. u8 qos_map_set_len = hapd->conf->qos_map_set_len;
  547. int ret;
  548. if (!qos_map_set_len) {
  549. wpa_printf(MSG_INFO, "QoS Map Set is not set");
  550. return -1;
  551. }
  552. if (hwaddr_aton(cmd, addr))
  553. return -1;
  554. sta = ap_get_sta(hapd, addr);
  555. if (sta == NULL) {
  556. wpa_printf(MSG_DEBUG, "Station " MACSTR " not found "
  557. "for QoS Map Configuration message",
  558. MAC2STR(addr));
  559. return -1;
  560. }
  561. if (!sta->qos_map_enabled) {
  562. wpa_printf(MSG_DEBUG, "Station " MACSTR " did not indicate "
  563. "support for QoS Map", MAC2STR(addr));
  564. return -1;
  565. }
  566. buf = wpabuf_alloc(2 + 2 + qos_map_set_len);
  567. if (buf == NULL)
  568. return -1;
  569. wpabuf_put_u8(buf, WLAN_ACTION_QOS);
  570. wpabuf_put_u8(buf, QOS_QOS_MAP_CONFIG);
  571. /* QoS Map Set Element */
  572. wpabuf_put_u8(buf, WLAN_EID_QOS_MAP_SET);
  573. wpabuf_put_u8(buf, qos_map_set_len);
  574. wpabuf_put_data(buf, qos_map_set, qos_map_set_len);
  575. ret = hostapd_drv_send_action(hapd, hapd->iface->freq, 0, addr,
  576. wpabuf_head(buf), wpabuf_len(buf));
  577. wpabuf_free(buf);
  578. return ret;
  579. }
  580. #endif /* CONFIG_INTERWORKING */
  581. #ifdef CONFIG_WNM
  582. static int hostapd_ctrl_iface_disassoc_imminent(struct hostapd_data *hapd,
  583. const char *cmd)
  584. {
  585. u8 addr[ETH_ALEN];
  586. int disassoc_timer;
  587. struct sta_info *sta;
  588. if (hwaddr_aton(cmd, addr))
  589. return -1;
  590. if (cmd[17] != ' ')
  591. return -1;
  592. disassoc_timer = atoi(cmd + 17);
  593. sta = ap_get_sta(hapd, addr);
  594. if (sta == NULL) {
  595. wpa_printf(MSG_DEBUG, "Station " MACSTR
  596. " not found for disassociation imminent message",
  597. MAC2STR(addr));
  598. return -1;
  599. }
  600. return wnm_send_disassoc_imminent(hapd, sta, disassoc_timer);
  601. }
  602. static int hostapd_ctrl_iface_ess_disassoc(struct hostapd_data *hapd,
  603. const char *cmd)
  604. {
  605. u8 addr[ETH_ALEN];
  606. const char *url, *timerstr;
  607. int disassoc_timer;
  608. struct sta_info *sta;
  609. if (hwaddr_aton(cmd, addr))
  610. return -1;
  611. sta = ap_get_sta(hapd, addr);
  612. if (sta == NULL) {
  613. wpa_printf(MSG_DEBUG, "Station " MACSTR
  614. " not found for ESS disassociation imminent message",
  615. MAC2STR(addr));
  616. return -1;
  617. }
  618. timerstr = cmd + 17;
  619. if (*timerstr != ' ')
  620. return -1;
  621. timerstr++;
  622. disassoc_timer = atoi(timerstr);
  623. if (disassoc_timer < 0 || disassoc_timer > 65535)
  624. return -1;
  625. url = os_strchr(timerstr, ' ');
  626. if (url == NULL)
  627. return -1;
  628. url++;
  629. return wnm_send_ess_disassoc_imminent(hapd, sta, url, disassoc_timer);
  630. }
  631. #endif /* CONFIG_WNM */
  632. static int hostapd_ctrl_iface_get_config(struct hostapd_data *hapd,
  633. char *buf, size_t buflen)
  634. {
  635. int ret;
  636. char *pos, *end;
  637. pos = buf;
  638. end = buf + buflen;
  639. ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n"
  640. "ssid=%s\n",
  641. MAC2STR(hapd->own_addr),
  642. wpa_ssid_txt(hapd->conf->ssid.ssid,
  643. hapd->conf->ssid.ssid_len));
  644. if (ret < 0 || ret >= end - pos)
  645. return pos - buf;
  646. pos += ret;
  647. #ifdef CONFIG_WPS
  648. ret = os_snprintf(pos, end - pos, "wps_state=%s\n",
  649. hapd->conf->wps_state == 0 ? "disabled" :
  650. (hapd->conf->wps_state == 1 ? "not configured" :
  651. "configured"));
  652. if (ret < 0 || ret >= end - pos)
  653. return pos - buf;
  654. pos += ret;
  655. if (hapd->conf->wps_state && hapd->conf->wpa &&
  656. hapd->conf->ssid.wpa_passphrase) {
  657. ret = os_snprintf(pos, end - pos, "passphrase=%s\n",
  658. hapd->conf->ssid.wpa_passphrase);
  659. if (ret < 0 || ret >= end - pos)
  660. return pos - buf;
  661. pos += ret;
  662. }
  663. if (hapd->conf->wps_state && hapd->conf->wpa &&
  664. hapd->conf->ssid.wpa_psk &&
  665. hapd->conf->ssid.wpa_psk->group) {
  666. char hex[PMK_LEN * 2 + 1];
  667. wpa_snprintf_hex(hex, sizeof(hex),
  668. hapd->conf->ssid.wpa_psk->psk, PMK_LEN);
  669. ret = os_snprintf(pos, end - pos, "psk=%s\n", hex);
  670. if (ret < 0 || ret >= end - pos)
  671. return pos - buf;
  672. pos += ret;
  673. }
  674. #endif /* CONFIG_WPS */
  675. if (hapd->conf->wpa && hapd->conf->wpa_key_mgmt) {
  676. ret = os_snprintf(pos, end - pos, "key_mgmt=");
  677. if (ret < 0 || ret >= end - pos)
  678. return pos - buf;
  679. pos += ret;
  680. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK) {
  681. ret = os_snprintf(pos, end - pos, "WPA-PSK ");
  682. if (ret < 0 || ret >= end - pos)
  683. return pos - buf;
  684. pos += ret;
  685. }
  686. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
  687. ret = os_snprintf(pos, end - pos, "WPA-EAP ");
  688. if (ret < 0 || ret >= end - pos)
  689. return pos - buf;
  690. pos += ret;
  691. }
  692. #ifdef CONFIG_IEEE80211R
  693. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_PSK) {
  694. ret = os_snprintf(pos, end - pos, "FT-PSK ");
  695. if (ret < 0 || ret >= end - pos)
  696. return pos - buf;
  697. pos += ret;
  698. }
  699. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
  700. ret = os_snprintf(pos, end - pos, "FT-EAP ");
  701. if (ret < 0 || ret >= end - pos)
  702. return pos - buf;
  703. pos += ret;
  704. }
  705. #endif /* CONFIG_IEEE80211R */
  706. #ifdef CONFIG_IEEE80211W
  707. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
  708. ret = os_snprintf(pos, end - pos, "WPA-PSK-SHA256 ");
  709. if (ret < 0 || ret >= end - pos)
  710. return pos - buf;
  711. pos += ret;
  712. }
  713. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
  714. ret = os_snprintf(pos, end - pos, "WPA-EAP-SHA256 ");
  715. if (ret < 0 || ret >= end - pos)
  716. return pos - buf;
  717. pos += ret;
  718. }
  719. #endif /* CONFIG_IEEE80211W */
  720. ret = os_snprintf(pos, end - pos, "\n");
  721. if (ret < 0 || ret >= end - pos)
  722. return pos - buf;
  723. pos += ret;
  724. }
  725. if (hapd->conf->wpa) {
  726. ret = os_snprintf(pos, end - pos, "group_cipher=%s\n",
  727. wpa_cipher_txt(hapd->conf->wpa_group));
  728. if (ret < 0 || ret >= end - pos)
  729. return pos - buf;
  730. pos += ret;
  731. }
  732. if ((hapd->conf->wpa & WPA_PROTO_RSN) && hapd->conf->rsn_pairwise) {
  733. ret = os_snprintf(pos, end - pos, "rsn_pairwise_cipher=");
  734. if (ret < 0 || ret >= end - pos)
  735. return pos - buf;
  736. pos += ret;
  737. ret = wpa_write_ciphers(pos, end, hapd->conf->rsn_pairwise,
  738. " ");
  739. if (ret < 0)
  740. return pos - buf;
  741. pos += ret;
  742. ret = os_snprintf(pos, end - pos, "\n");
  743. if (ret < 0 || ret >= end - pos)
  744. return pos - buf;
  745. pos += ret;
  746. }
  747. if ((hapd->conf->wpa & WPA_PROTO_WPA) && hapd->conf->wpa_pairwise) {
  748. ret = os_snprintf(pos, end - pos, "wpa_pairwise_cipher=");
  749. if (ret < 0 || ret >= end - pos)
  750. return pos - buf;
  751. pos += ret;
  752. ret = wpa_write_ciphers(pos, end, hapd->conf->rsn_pairwise,
  753. " ");
  754. if (ret < 0)
  755. return pos - buf;
  756. pos += ret;
  757. ret = os_snprintf(pos, end - pos, "\n");
  758. if (ret < 0 || ret >= end - pos)
  759. return pos - buf;
  760. pos += ret;
  761. }
  762. return pos - buf;
  763. }
  764. static int hostapd_ctrl_iface_set(struct hostapd_data *hapd, char *cmd)
  765. {
  766. char *value;
  767. int ret = 0;
  768. value = os_strchr(cmd, ' ');
  769. if (value == NULL)
  770. return -1;
  771. *value++ = '\0';
  772. wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
  773. if (0) {
  774. #ifdef CONFIG_WPS_TESTING
  775. } else if (os_strcasecmp(cmd, "wps_version_number") == 0) {
  776. long int val;
  777. val = strtol(value, NULL, 0);
  778. if (val < 0 || val > 0xff) {
  779. ret = -1;
  780. wpa_printf(MSG_DEBUG, "WPS: Invalid "
  781. "wps_version_number %ld", val);
  782. } else {
  783. wps_version_number = val;
  784. wpa_printf(MSG_DEBUG, "WPS: Testing - force WPS "
  785. "version %u.%u",
  786. (wps_version_number & 0xf0) >> 4,
  787. wps_version_number & 0x0f);
  788. hostapd_wps_update_ie(hapd);
  789. }
  790. } else if (os_strcasecmp(cmd, "wps_testing_dummy_cred") == 0) {
  791. wps_testing_dummy_cred = atoi(value);
  792. wpa_printf(MSG_DEBUG, "WPS: Testing - dummy_cred=%d",
  793. wps_testing_dummy_cred);
  794. } else if (os_strcasecmp(cmd, "wps_corrupt_pkhash") == 0) {
  795. wps_corrupt_pkhash = atoi(value);
  796. wpa_printf(MSG_DEBUG, "WPS: Testing - wps_corrupt_pkhash=%d",
  797. wps_corrupt_pkhash);
  798. #endif /* CONFIG_WPS_TESTING */
  799. #ifdef CONFIG_INTERWORKING
  800. } else if (os_strcasecmp(cmd, "gas_frag_limit") == 0) {
  801. int val = atoi(value);
  802. if (val <= 0)
  803. ret = -1;
  804. else
  805. hapd->gas_frag_limit = val;
  806. #endif /* CONFIG_INTERWORKING */
  807. #ifdef CONFIG_TESTING_OPTIONS
  808. } else if (os_strcasecmp(cmd, "ext_mgmt_frame_handling") == 0) {
  809. hapd->ext_mgmt_frame_handling = atoi(value);
  810. #endif /* CONFIG_TESTING_OPTIONS */
  811. } else {
  812. struct sta_info *sta;
  813. int vlan_id;
  814. ret = hostapd_set_iface(hapd->iconf, hapd->conf, cmd, value);
  815. if (ret)
  816. return ret;
  817. if (os_strcasecmp(cmd, "deny_mac_file") == 0) {
  818. for (sta = hapd->sta_list; sta; sta = sta->next) {
  819. if (hostapd_maclist_found(
  820. hapd->conf->deny_mac,
  821. hapd->conf->num_deny_mac, sta->addr,
  822. &vlan_id) &&
  823. (!vlan_id || vlan_id == sta->vlan_id))
  824. ap_sta_deauthenticate(
  825. hapd, sta,
  826. WLAN_REASON_UNSPECIFIED);
  827. }
  828. } else if (hapd->conf->macaddr_acl == DENY_UNLESS_ACCEPTED &&
  829. os_strcasecmp(cmd, "accept_mac_file") == 0) {
  830. for (sta = hapd->sta_list; sta; sta = sta->next) {
  831. if (!hostapd_maclist_found(
  832. hapd->conf->accept_mac,
  833. hapd->conf->num_accept_mac,
  834. sta->addr, &vlan_id) ||
  835. (vlan_id && vlan_id != sta->vlan_id))
  836. ap_sta_deauthenticate(
  837. hapd, sta,
  838. WLAN_REASON_UNSPECIFIED);
  839. }
  840. }
  841. }
  842. return ret;
  843. }
  844. static int hostapd_ctrl_iface_get(struct hostapd_data *hapd, char *cmd,
  845. char *buf, size_t buflen)
  846. {
  847. int res;
  848. wpa_printf(MSG_DEBUG, "CTRL_IFACE GET '%s'", cmd);
  849. if (os_strcmp(cmd, "version") == 0) {
  850. res = os_snprintf(buf, buflen, "%s", VERSION_STR);
  851. if (res < 0 || (unsigned int) res >= buflen)
  852. return -1;
  853. return res;
  854. }
  855. return -1;
  856. }
  857. static int hostapd_ctrl_iface_enable(struct hostapd_iface *iface)
  858. {
  859. if (hostapd_enable_iface(iface) < 0) {
  860. wpa_printf(MSG_ERROR, "Enabling of interface failed");
  861. return -1;
  862. }
  863. return 0;
  864. }
  865. static int hostapd_ctrl_iface_reload(struct hostapd_iface *iface)
  866. {
  867. if (hostapd_reload_iface(iface) < 0) {
  868. wpa_printf(MSG_ERROR, "Reloading of interface failed");
  869. return -1;
  870. }
  871. return 0;
  872. }
  873. static int hostapd_ctrl_iface_disable(struct hostapd_iface *iface)
  874. {
  875. if (hostapd_disable_iface(iface) < 0) {
  876. wpa_printf(MSG_ERROR, "Disabling of interface failed");
  877. return -1;
  878. }
  879. return 0;
  880. }
  881. #ifdef CONFIG_TESTING_OPTIONS
  882. static int hostapd_ctrl_iface_radar(struct hostapd_data *hapd, char *cmd)
  883. {
  884. union wpa_event_data data;
  885. char *pos, *param;
  886. enum wpa_event_type event;
  887. wpa_printf(MSG_DEBUG, "RADAR TEST: %s", cmd);
  888. os_memset(&data, 0, sizeof(data));
  889. param = os_strchr(cmd, ' ');
  890. if (param == NULL)
  891. return -1;
  892. *param++ = '\0';
  893. if (os_strcmp(cmd, "DETECTED") == 0)
  894. event = EVENT_DFS_RADAR_DETECTED;
  895. else if (os_strcmp(cmd, "CAC-FINISHED") == 0)
  896. event = EVENT_DFS_CAC_FINISHED;
  897. else if (os_strcmp(cmd, "CAC-ABORTED") == 0)
  898. event = EVENT_DFS_CAC_ABORTED;
  899. else if (os_strcmp(cmd, "NOP-FINISHED") == 0)
  900. event = EVENT_DFS_NOP_FINISHED;
  901. else {
  902. wpa_printf(MSG_DEBUG, "Unsupported RADAR test command: %s",
  903. cmd);
  904. return -1;
  905. }
  906. pos = os_strstr(param, "freq=");
  907. if (pos)
  908. data.dfs_event.freq = atoi(pos + 5);
  909. pos = os_strstr(param, "ht_enabled=1");
  910. if (pos)
  911. data.dfs_event.ht_enabled = 1;
  912. pos = os_strstr(param, "chan_offset=");
  913. if (pos)
  914. data.dfs_event.chan_offset = atoi(pos + 12);
  915. pos = os_strstr(param, "chan_width=");
  916. if (pos)
  917. data.dfs_event.chan_width = atoi(pos + 11);
  918. pos = os_strstr(param, "cf1=");
  919. if (pos)
  920. data.dfs_event.cf1 = atoi(pos + 4);
  921. pos = os_strstr(param, "cf2=");
  922. if (pos)
  923. data.dfs_event.cf2 = atoi(pos + 4);
  924. wpa_supplicant_event(hapd, event, &data);
  925. return 0;
  926. }
  927. static int hostapd_ctrl_iface_mgmt_tx(struct hostapd_data *hapd, char *cmd)
  928. {
  929. size_t len;
  930. u8 *buf;
  931. int res;
  932. wpa_printf(MSG_DEBUG, "External MGMT TX: %s", cmd);
  933. len = os_strlen(cmd);
  934. if (len & 1)
  935. return -1;
  936. len /= 2;
  937. buf = os_malloc(len);
  938. if (buf == NULL)
  939. return -1;
  940. if (hexstr2bin(cmd, buf, len) < 0) {
  941. os_free(buf);
  942. return -1;
  943. }
  944. res = hostapd_drv_send_mlme(hapd, buf, len, 0);
  945. os_free(buf);
  946. return res;
  947. }
  948. #endif /* CONFIG_TESTING_OPTIONS */
  949. static int hostapd_ctrl_iface_chan_switch(struct hostapd_data *hapd, char *pos)
  950. {
  951. #ifdef NEED_AP_MLME
  952. struct csa_settings settings;
  953. int ret = hostapd_parse_csa_settings(pos, &settings);
  954. if (ret)
  955. return ret;
  956. return hostapd_switch_channel(hapd, &settings);
  957. #else /* NEED_AP_MLME */
  958. return -1;
  959. #endif /* NEED_AP_MLME */
  960. }
  961. static int hostapd_ctrl_iface_mib(struct hostapd_data *hapd, char *reply,
  962. int reply_size, const char *param)
  963. {
  964. #ifdef RADIUS_SERVER
  965. if (os_strcmp(param, "radius_server") == 0) {
  966. return radius_server_get_mib(hapd->radius_srv, reply,
  967. reply_size);
  968. }
  969. #endif /* RADIUS_SERVER */
  970. return -1;
  971. }
  972. static void hostapd_ctrl_iface_receive(int sock, void *eloop_ctx,
  973. void *sock_ctx)
  974. {
  975. struct hostapd_data *hapd = eloop_ctx;
  976. char buf[4096];
  977. int res;
  978. struct sockaddr_un from;
  979. socklen_t fromlen = sizeof(from);
  980. char *reply;
  981. const int reply_size = 4096;
  982. int reply_len;
  983. int level = MSG_DEBUG;
  984. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  985. (struct sockaddr *) &from, &fromlen);
  986. if (res < 0) {
  987. perror("recvfrom(ctrl_iface)");
  988. return;
  989. }
  990. buf[res] = '\0';
  991. if (os_strcmp(buf, "PING") == 0)
  992. level = MSG_EXCESSIVE;
  993. wpa_hexdump_ascii(level, "RX ctrl_iface", (u8 *) buf, res);
  994. reply = os_malloc(reply_size);
  995. if (reply == NULL) {
  996. sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
  997. fromlen);
  998. return;
  999. }
  1000. os_memcpy(reply, "OK\n", 3);
  1001. reply_len = 3;
  1002. if (os_strcmp(buf, "PING") == 0) {
  1003. os_memcpy(reply, "PONG\n", 5);
  1004. reply_len = 5;
  1005. } else if (os_strncmp(buf, "RELOG", 5) == 0) {
  1006. if (wpa_debug_reopen_file() < 0)
  1007. reply_len = -1;
  1008. } else if (os_strcmp(buf, "STATUS") == 0) {
  1009. reply_len = hostapd_ctrl_iface_status(hapd, reply,
  1010. reply_size);
  1011. } else if (os_strcmp(buf, "STATUS-DRIVER") == 0) {
  1012. reply_len = hostapd_drv_status(hapd, reply, reply_size);
  1013. } else if (os_strcmp(buf, "MIB") == 0) {
  1014. reply_len = ieee802_11_get_mib(hapd, reply, reply_size);
  1015. if (reply_len >= 0) {
  1016. res = wpa_get_mib(hapd->wpa_auth, reply + reply_len,
  1017. reply_size - reply_len);
  1018. if (res < 0)
  1019. reply_len = -1;
  1020. else
  1021. reply_len += res;
  1022. }
  1023. if (reply_len >= 0) {
  1024. res = ieee802_1x_get_mib(hapd, reply + reply_len,
  1025. reply_size - reply_len);
  1026. if (res < 0)
  1027. reply_len = -1;
  1028. else
  1029. reply_len += res;
  1030. }
  1031. #ifndef CONFIG_NO_RADIUS
  1032. if (reply_len >= 0) {
  1033. res = radius_client_get_mib(hapd->radius,
  1034. reply + reply_len,
  1035. reply_size - reply_len);
  1036. if (res < 0)
  1037. reply_len = -1;
  1038. else
  1039. reply_len += res;
  1040. }
  1041. #endif /* CONFIG_NO_RADIUS */
  1042. } else if (os_strncmp(buf, "MIB ", 4) == 0) {
  1043. reply_len = hostapd_ctrl_iface_mib(hapd, reply, reply_size,
  1044. buf + 4);
  1045. } else if (os_strcmp(buf, "STA-FIRST") == 0) {
  1046. reply_len = hostapd_ctrl_iface_sta_first(hapd, reply,
  1047. reply_size);
  1048. } else if (os_strncmp(buf, "STA ", 4) == 0) {
  1049. reply_len = hostapd_ctrl_iface_sta(hapd, buf + 4, reply,
  1050. reply_size);
  1051. } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
  1052. reply_len = hostapd_ctrl_iface_sta_next(hapd, buf + 9, reply,
  1053. reply_size);
  1054. } else if (os_strcmp(buf, "ATTACH") == 0) {
  1055. if (hostapd_ctrl_iface_attach(hapd, &from, fromlen))
  1056. reply_len = -1;
  1057. } else if (os_strcmp(buf, "DETACH") == 0) {
  1058. if (hostapd_ctrl_iface_detach(hapd, &from, fromlen))
  1059. reply_len = -1;
  1060. } else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
  1061. if (hostapd_ctrl_iface_level(hapd, &from, fromlen,
  1062. buf + 6))
  1063. reply_len = -1;
  1064. } else if (os_strncmp(buf, "NEW_STA ", 8) == 0) {
  1065. if (hostapd_ctrl_iface_new_sta(hapd, buf + 8))
  1066. reply_len = -1;
  1067. } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
  1068. if (hostapd_ctrl_iface_deauthenticate(hapd, buf + 15))
  1069. reply_len = -1;
  1070. } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
  1071. if (hostapd_ctrl_iface_disassociate(hapd, buf + 13))
  1072. reply_len = -1;
  1073. #ifdef CONFIG_IEEE80211W
  1074. #ifdef NEED_AP_MLME
  1075. } else if (os_strncmp(buf, "SA_QUERY ", 9) == 0) {
  1076. if (hostapd_ctrl_iface_sa_query(hapd, buf + 9))
  1077. reply_len = -1;
  1078. #endif /* NEED_AP_MLME */
  1079. #endif /* CONFIG_IEEE80211W */
  1080. #ifdef CONFIG_WPS
  1081. } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
  1082. if (hostapd_ctrl_iface_wps_pin(hapd, buf + 8))
  1083. reply_len = -1;
  1084. } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
  1085. reply_len = hostapd_ctrl_iface_wps_check_pin(
  1086. hapd, buf + 14, reply, reply_size);
  1087. } else if (os_strcmp(buf, "WPS_PBC") == 0) {
  1088. if (hostapd_wps_button_pushed(hapd, NULL))
  1089. reply_len = -1;
  1090. } else if (os_strcmp(buf, "WPS_CANCEL") == 0) {
  1091. if (hostapd_wps_cancel(hapd))
  1092. reply_len = -1;
  1093. } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
  1094. reply_len = hostapd_ctrl_iface_wps_ap_pin(hapd, buf + 11,
  1095. reply, reply_size);
  1096. } else if (os_strncmp(buf, "WPS_CONFIG ", 11) == 0) {
  1097. if (hostapd_ctrl_iface_wps_config(hapd, buf + 11) < 0)
  1098. reply_len = -1;
  1099. } else if (os_strncmp(buf, "WPS_GET_STATUS", 13) == 0) {
  1100. reply_len = hostapd_ctrl_iface_wps_get_status(hapd, reply,
  1101. reply_size);
  1102. #ifdef CONFIG_WPS_NFC
  1103. } else if (os_strncmp(buf, "WPS_NFC_TAG_READ ", 17) == 0) {
  1104. if (hostapd_ctrl_iface_wps_nfc_tag_read(hapd, buf + 17))
  1105. reply_len = -1;
  1106. } else if (os_strncmp(buf, "WPS_NFC_CONFIG_TOKEN ", 21) == 0) {
  1107. reply_len = hostapd_ctrl_iface_wps_nfc_config_token(
  1108. hapd, buf + 21, reply, reply_size);
  1109. } else if (os_strncmp(buf, "WPS_NFC_TOKEN ", 14) == 0) {
  1110. reply_len = hostapd_ctrl_iface_wps_nfc_token(
  1111. hapd, buf + 14, reply, reply_size);
  1112. } else if (os_strncmp(buf, "NFC_GET_HANDOVER_SEL ", 21) == 0) {
  1113. reply_len = hostapd_ctrl_iface_nfc_get_handover_sel(
  1114. hapd, buf + 21, reply, reply_size);
  1115. } else if (os_strncmp(buf, "NFC_REPORT_HANDOVER ", 20) == 0) {
  1116. if (hostapd_ctrl_iface_nfc_report_handover(hapd, buf + 20))
  1117. reply_len = -1;
  1118. #endif /* CONFIG_WPS_NFC */
  1119. #endif /* CONFIG_WPS */
  1120. #ifdef CONFIG_INTERWORKING
  1121. } else if (os_strncmp(buf, "SET_QOS_MAP_SET ", 16) == 0) {
  1122. if (hostapd_ctrl_iface_set_qos_map_set(hapd, buf + 16))
  1123. reply_len = -1;
  1124. } else if (os_strncmp(buf, "SEND_QOS_MAP_CONF ", 18) == 0) {
  1125. if (hostapd_ctrl_iface_send_qos_map_conf(hapd, buf + 18))
  1126. reply_len = -1;
  1127. #endif /* CONFIG_INTERWORKING */
  1128. #ifdef CONFIG_WNM
  1129. } else if (os_strncmp(buf, "DISASSOC_IMMINENT ", 18) == 0) {
  1130. if (hostapd_ctrl_iface_disassoc_imminent(hapd, buf + 18))
  1131. reply_len = -1;
  1132. } else if (os_strncmp(buf, "ESS_DISASSOC ", 13) == 0) {
  1133. if (hostapd_ctrl_iface_ess_disassoc(hapd, buf + 13))
  1134. reply_len = -1;
  1135. #endif /* CONFIG_WNM */
  1136. } else if (os_strcmp(buf, "GET_CONFIG") == 0) {
  1137. reply_len = hostapd_ctrl_iface_get_config(hapd, reply,
  1138. reply_size);
  1139. } else if (os_strncmp(buf, "SET ", 4) == 0) {
  1140. if (hostapd_ctrl_iface_set(hapd, buf + 4))
  1141. reply_len = -1;
  1142. } else if (os_strncmp(buf, "GET ", 4) == 0) {
  1143. reply_len = hostapd_ctrl_iface_get(hapd, buf + 4, reply,
  1144. reply_size);
  1145. } else if (os_strncmp(buf, "ENABLE", 6) == 0) {
  1146. if (hostapd_ctrl_iface_enable(hapd->iface))
  1147. reply_len = -1;
  1148. } else if (os_strncmp(buf, "RELOAD", 6) == 0) {
  1149. if (hostapd_ctrl_iface_reload(hapd->iface))
  1150. reply_len = -1;
  1151. } else if (os_strncmp(buf, "DISABLE", 7) == 0) {
  1152. if (hostapd_ctrl_iface_disable(hapd->iface))
  1153. reply_len = -1;
  1154. #ifdef CONFIG_TESTING_OPTIONS
  1155. } else if (os_strncmp(buf, "RADAR ", 6) == 0) {
  1156. if (hostapd_ctrl_iface_radar(hapd, buf + 6))
  1157. reply_len = -1;
  1158. } else if (os_strncmp(buf, "MGMT_TX ", 8) == 0) {
  1159. if (hostapd_ctrl_iface_mgmt_tx(hapd, buf + 8))
  1160. reply_len = -1;
  1161. #endif /* CONFIG_TESTING_OPTIONS */
  1162. } else if (os_strncmp(buf, "CHAN_SWITCH ", 12) == 0) {
  1163. if (hostapd_ctrl_iface_chan_switch(hapd, buf + 12))
  1164. reply_len = -1;
  1165. } else {
  1166. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  1167. reply_len = 16;
  1168. }
  1169. if (reply_len < 0) {
  1170. os_memcpy(reply, "FAIL\n", 5);
  1171. reply_len = 5;
  1172. }
  1173. sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from, fromlen);
  1174. os_free(reply);
  1175. }
  1176. static char * hostapd_ctrl_iface_path(struct hostapd_data *hapd)
  1177. {
  1178. char *buf;
  1179. size_t len;
  1180. if (hapd->conf->ctrl_interface == NULL)
  1181. return NULL;
  1182. len = os_strlen(hapd->conf->ctrl_interface) +
  1183. os_strlen(hapd->conf->iface) + 2;
  1184. buf = os_malloc(len);
  1185. if (buf == NULL)
  1186. return NULL;
  1187. os_snprintf(buf, len, "%s/%s",
  1188. hapd->conf->ctrl_interface, hapd->conf->iface);
  1189. buf[len - 1] = '\0';
  1190. return buf;
  1191. }
  1192. static void hostapd_ctrl_iface_msg_cb(void *ctx, int level, int global,
  1193. const char *txt, size_t len)
  1194. {
  1195. struct hostapd_data *hapd = ctx;
  1196. if (hapd == NULL)
  1197. return;
  1198. hostapd_ctrl_iface_send(hapd, level, txt, len);
  1199. }
  1200. int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
  1201. {
  1202. struct sockaddr_un addr;
  1203. int s = -1;
  1204. char *fname = NULL;
  1205. if (hapd->ctrl_sock > -1) {
  1206. wpa_printf(MSG_DEBUG, "ctrl_iface already exists!");
  1207. return 0;
  1208. }
  1209. if (hapd->conf->ctrl_interface == NULL)
  1210. return 0;
  1211. if (mkdir(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
  1212. if (errno == EEXIST) {
  1213. wpa_printf(MSG_DEBUG, "Using existing control "
  1214. "interface directory.");
  1215. } else {
  1216. perror("mkdir[ctrl_interface]");
  1217. goto fail;
  1218. }
  1219. }
  1220. if (hapd->conf->ctrl_interface_gid_set &&
  1221. chown(hapd->conf->ctrl_interface, -1,
  1222. hapd->conf->ctrl_interface_gid) < 0) {
  1223. perror("chown[ctrl_interface]");
  1224. return -1;
  1225. }
  1226. if (!hapd->conf->ctrl_interface_gid_set &&
  1227. hapd->iface->interfaces->ctrl_iface_group &&
  1228. chown(hapd->conf->ctrl_interface, -1,
  1229. hapd->iface->interfaces->ctrl_iface_group) < 0) {
  1230. perror("chown[ctrl_interface]");
  1231. return -1;
  1232. }
  1233. #ifdef ANDROID
  1234. /*
  1235. * Android is using umask 0077 which would leave the control interface
  1236. * directory without group access. This breaks things since Wi-Fi
  1237. * framework assumes that this directory can be accessed by other
  1238. * applications in the wifi group. Fix this by adding group access even
  1239. * if umask value would prevent this.
  1240. */
  1241. if (chmod(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
  1242. wpa_printf(MSG_ERROR, "CTRL: Could not chmod directory: %s",
  1243. strerror(errno));
  1244. /* Try to continue anyway */
  1245. }
  1246. #endif /* ANDROID */
  1247. if (os_strlen(hapd->conf->ctrl_interface) + 1 +
  1248. os_strlen(hapd->conf->iface) >= sizeof(addr.sun_path))
  1249. goto fail;
  1250. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  1251. if (s < 0) {
  1252. perror("socket(PF_UNIX)");
  1253. goto fail;
  1254. }
  1255. os_memset(&addr, 0, sizeof(addr));
  1256. #ifdef __FreeBSD__
  1257. addr.sun_len = sizeof(addr);
  1258. #endif /* __FreeBSD__ */
  1259. addr.sun_family = AF_UNIX;
  1260. fname = hostapd_ctrl_iface_path(hapd);
  1261. if (fname == NULL)
  1262. goto fail;
  1263. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  1264. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  1265. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  1266. strerror(errno));
  1267. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  1268. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  1269. " allow connections - assuming it was left"
  1270. "over from forced program termination");
  1271. if (unlink(fname) < 0) {
  1272. perror("unlink[ctrl_iface]");
  1273. wpa_printf(MSG_ERROR, "Could not unlink "
  1274. "existing ctrl_iface socket '%s'",
  1275. fname);
  1276. goto fail;
  1277. }
  1278. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
  1279. 0) {
  1280. perror("hostapd-ctrl-iface: bind(PF_UNIX)");
  1281. goto fail;
  1282. }
  1283. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  1284. "ctrl_iface socket '%s'", fname);
  1285. } else {
  1286. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  1287. "be in use - cannot override it");
  1288. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  1289. "not used anymore", fname);
  1290. os_free(fname);
  1291. fname = NULL;
  1292. goto fail;
  1293. }
  1294. }
  1295. if (hapd->conf->ctrl_interface_gid_set &&
  1296. chown(fname, -1, hapd->conf->ctrl_interface_gid) < 0) {
  1297. perror("chown[ctrl_interface/ifname]");
  1298. goto fail;
  1299. }
  1300. if (!hapd->conf->ctrl_interface_gid_set &&
  1301. hapd->iface->interfaces->ctrl_iface_group &&
  1302. chown(fname, -1, hapd->iface->interfaces->ctrl_iface_group) < 0) {
  1303. perror("chown[ctrl_interface/ifname]");
  1304. goto fail;
  1305. }
  1306. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  1307. perror("chmod[ctrl_interface/ifname]");
  1308. goto fail;
  1309. }
  1310. os_free(fname);
  1311. hapd->ctrl_sock = s;
  1312. eloop_register_read_sock(s, hostapd_ctrl_iface_receive, hapd,
  1313. NULL);
  1314. hapd->msg_ctx = hapd;
  1315. wpa_msg_register_cb(hostapd_ctrl_iface_msg_cb);
  1316. return 0;
  1317. fail:
  1318. if (s >= 0)
  1319. close(s);
  1320. if (fname) {
  1321. unlink(fname);
  1322. os_free(fname);
  1323. }
  1324. return -1;
  1325. }
  1326. void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd)
  1327. {
  1328. struct wpa_ctrl_dst *dst, *prev;
  1329. if (hapd->ctrl_sock > -1) {
  1330. char *fname;
  1331. eloop_unregister_read_sock(hapd->ctrl_sock);
  1332. close(hapd->ctrl_sock);
  1333. hapd->ctrl_sock = -1;
  1334. fname = hostapd_ctrl_iface_path(hapd);
  1335. if (fname)
  1336. unlink(fname);
  1337. os_free(fname);
  1338. if (hapd->conf->ctrl_interface &&
  1339. rmdir(hapd->conf->ctrl_interface) < 0) {
  1340. if (errno == ENOTEMPTY) {
  1341. wpa_printf(MSG_DEBUG, "Control interface "
  1342. "directory not empty - leaving it "
  1343. "behind");
  1344. } else {
  1345. wpa_printf(MSG_ERROR,
  1346. "rmdir[ctrl_interface=%s]: %s",
  1347. hapd->conf->ctrl_interface,
  1348. strerror(errno));
  1349. }
  1350. }
  1351. }
  1352. dst = hapd->ctrl_dst;
  1353. while (dst) {
  1354. prev = dst;
  1355. dst = dst->next;
  1356. os_free(prev);
  1357. }
  1358. }
  1359. static int hostapd_ctrl_iface_add(struct hapd_interfaces *interfaces,
  1360. char *buf)
  1361. {
  1362. if (hostapd_add_iface(interfaces, buf) < 0) {
  1363. wpa_printf(MSG_ERROR, "Adding interface %s failed", buf);
  1364. return -1;
  1365. }
  1366. return 0;
  1367. }
  1368. static int hostapd_ctrl_iface_remove(struct hapd_interfaces *interfaces,
  1369. char *buf)
  1370. {
  1371. if (hostapd_remove_iface(interfaces, buf) < 0) {
  1372. wpa_printf(MSG_ERROR, "Removing interface %s failed", buf);
  1373. return -1;
  1374. }
  1375. return 0;
  1376. }
  1377. static void hostapd_ctrl_iface_flush(struct hapd_interfaces *interfaces)
  1378. {
  1379. #ifdef CONFIG_WPS_TESTING
  1380. wps_version_number = 0x20;
  1381. wps_testing_dummy_cred = 0;
  1382. wps_corrupt_pkhash = 0;
  1383. #endif /* CONFIG_WPS_TESTING */
  1384. }
  1385. static void hostapd_global_ctrl_iface_receive(int sock, void *eloop_ctx,
  1386. void *sock_ctx)
  1387. {
  1388. void *interfaces = eloop_ctx;
  1389. char buf[256];
  1390. int res;
  1391. struct sockaddr_un from;
  1392. socklen_t fromlen = sizeof(from);
  1393. char reply[24];
  1394. int reply_len;
  1395. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  1396. (struct sockaddr *) &from, &fromlen);
  1397. if (res < 0) {
  1398. perror("recvfrom(ctrl_iface)");
  1399. return;
  1400. }
  1401. buf[res] = '\0';
  1402. wpa_printf(MSG_DEBUG, "Global ctrl_iface command: %s", buf);
  1403. os_memcpy(reply, "OK\n", 3);
  1404. reply_len = 3;
  1405. if (os_strcmp(buf, "PING") == 0) {
  1406. os_memcpy(reply, "PONG\n", 5);
  1407. reply_len = 5;
  1408. } else if (os_strncmp(buf, "RELOG", 5) == 0) {
  1409. if (wpa_debug_reopen_file() < 0)
  1410. reply_len = -1;
  1411. } else if (os_strcmp(buf, "FLUSH") == 0) {
  1412. hostapd_ctrl_iface_flush(interfaces);
  1413. } else if (os_strncmp(buf, "ADD ", 4) == 0) {
  1414. if (hostapd_ctrl_iface_add(interfaces, buf + 4) < 0)
  1415. reply_len = -1;
  1416. } else if (os_strncmp(buf, "REMOVE ", 7) == 0) {
  1417. if (hostapd_ctrl_iface_remove(interfaces, buf + 7) < 0)
  1418. reply_len = -1;
  1419. #ifdef CONFIG_MODULE_TESTS
  1420. } else if (os_strcmp(buf, "MODULE_TESTS") == 0) {
  1421. int hapd_module_tests(void);
  1422. if (hapd_module_tests() < 0)
  1423. reply_len = -1;
  1424. #endif /* CONFIG_MODULE_TESTS */
  1425. } else {
  1426. wpa_printf(MSG_DEBUG, "Unrecognized global ctrl_iface command "
  1427. "ignored");
  1428. reply_len = -1;
  1429. }
  1430. if (reply_len < 0) {
  1431. os_memcpy(reply, "FAIL\n", 5);
  1432. reply_len = 5;
  1433. }
  1434. sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from, fromlen);
  1435. }
  1436. static char * hostapd_global_ctrl_iface_path(struct hapd_interfaces *interface)
  1437. {
  1438. char *buf;
  1439. size_t len;
  1440. if (interface->global_iface_path == NULL)
  1441. return NULL;
  1442. len = os_strlen(interface->global_iface_path) +
  1443. os_strlen(interface->global_iface_name) + 2;
  1444. buf = os_malloc(len);
  1445. if (buf == NULL)
  1446. return NULL;
  1447. os_snprintf(buf, len, "%s/%s", interface->global_iface_path,
  1448. interface->global_iface_name);
  1449. buf[len - 1] = '\0';
  1450. return buf;
  1451. }
  1452. int hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface)
  1453. {
  1454. struct sockaddr_un addr;
  1455. int s = -1;
  1456. char *fname = NULL;
  1457. if (interface->global_iface_path == NULL) {
  1458. wpa_printf(MSG_DEBUG, "ctrl_iface not configured!");
  1459. return 0;
  1460. }
  1461. if (mkdir(interface->global_iface_path, S_IRWXU | S_IRWXG) < 0) {
  1462. if (errno == EEXIST) {
  1463. wpa_printf(MSG_DEBUG, "Using existing control "
  1464. "interface directory.");
  1465. } else {
  1466. perror("mkdir[ctrl_interface]");
  1467. goto fail;
  1468. }
  1469. } else if (interface->ctrl_iface_group &&
  1470. chown(interface->global_iface_path, -1,
  1471. interface->ctrl_iface_group) < 0) {
  1472. perror("chown[ctrl_interface]");
  1473. goto fail;
  1474. }
  1475. if (os_strlen(interface->global_iface_path) + 1 +
  1476. os_strlen(interface->global_iface_name) >= sizeof(addr.sun_path))
  1477. goto fail;
  1478. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  1479. if (s < 0) {
  1480. perror("socket(PF_UNIX)");
  1481. goto fail;
  1482. }
  1483. os_memset(&addr, 0, sizeof(addr));
  1484. #ifdef __FreeBSD__
  1485. addr.sun_len = sizeof(addr);
  1486. #endif /* __FreeBSD__ */
  1487. addr.sun_family = AF_UNIX;
  1488. fname = hostapd_global_ctrl_iface_path(interface);
  1489. if (fname == NULL)
  1490. goto fail;
  1491. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  1492. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  1493. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  1494. strerror(errno));
  1495. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  1496. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  1497. " allow connections - assuming it was left"
  1498. "over from forced program termination");
  1499. if (unlink(fname) < 0) {
  1500. perror("unlink[ctrl_iface]");
  1501. wpa_printf(MSG_ERROR, "Could not unlink "
  1502. "existing ctrl_iface socket '%s'",
  1503. fname);
  1504. goto fail;
  1505. }
  1506. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
  1507. 0) {
  1508. perror("bind(PF_UNIX)");
  1509. goto fail;
  1510. }
  1511. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  1512. "ctrl_iface socket '%s'", fname);
  1513. } else {
  1514. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  1515. "be in use - cannot override it");
  1516. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  1517. "not used anymore", fname);
  1518. os_free(fname);
  1519. fname = NULL;
  1520. goto fail;
  1521. }
  1522. }
  1523. if (interface->ctrl_iface_group &&
  1524. chown(fname, -1, interface->ctrl_iface_group) < 0) {
  1525. perror("chown[ctrl_interface]");
  1526. goto fail;
  1527. }
  1528. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  1529. perror("chmod[ctrl_interface/ifname]");
  1530. goto fail;
  1531. }
  1532. os_free(fname);
  1533. interface->global_ctrl_sock = s;
  1534. eloop_register_read_sock(s, hostapd_global_ctrl_iface_receive,
  1535. interface, NULL);
  1536. return 0;
  1537. fail:
  1538. if (s >= 0)
  1539. close(s);
  1540. if (fname) {
  1541. unlink(fname);
  1542. os_free(fname);
  1543. }
  1544. return -1;
  1545. }
  1546. void hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interfaces)
  1547. {
  1548. char *fname = NULL;
  1549. if (interfaces->global_ctrl_sock > -1) {
  1550. eloop_unregister_read_sock(interfaces->global_ctrl_sock);
  1551. close(interfaces->global_ctrl_sock);
  1552. interfaces->global_ctrl_sock = -1;
  1553. fname = hostapd_global_ctrl_iface_path(interfaces);
  1554. if (fname) {
  1555. unlink(fname);
  1556. os_free(fname);
  1557. }
  1558. if (interfaces->global_iface_path &&
  1559. rmdir(interfaces->global_iface_path) < 0) {
  1560. if (errno == ENOTEMPTY) {
  1561. wpa_printf(MSG_DEBUG, "Control interface "
  1562. "directory not empty - leaving it "
  1563. "behind");
  1564. } else {
  1565. wpa_printf(MSG_ERROR,
  1566. "rmdir[ctrl_interface=%s]: %s",
  1567. interfaces->global_iface_path,
  1568. strerror(errno));
  1569. }
  1570. }
  1571. os_free(interfaces->global_iface_path);
  1572. interfaces->global_iface_path = NULL;
  1573. }
  1574. }
  1575. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  1576. const char *buf, size_t len)
  1577. {
  1578. struct wpa_ctrl_dst *dst, *next;
  1579. struct msghdr msg;
  1580. int idx;
  1581. struct iovec io[2];
  1582. char levelstr[10];
  1583. dst = hapd->ctrl_dst;
  1584. if (hapd->ctrl_sock < 0 || dst == NULL)
  1585. return;
  1586. os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
  1587. io[0].iov_base = levelstr;
  1588. io[0].iov_len = os_strlen(levelstr);
  1589. io[1].iov_base = (char *) buf;
  1590. io[1].iov_len = len;
  1591. os_memset(&msg, 0, sizeof(msg));
  1592. msg.msg_iov = io;
  1593. msg.msg_iovlen = 2;
  1594. idx = 0;
  1595. while (dst) {
  1596. next = dst->next;
  1597. if (level >= dst->debug_level) {
  1598. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor send",
  1599. (u8 *) dst->addr.sun_path, dst->addrlen -
  1600. offsetof(struct sockaddr_un, sun_path));
  1601. msg.msg_name = &dst->addr;
  1602. msg.msg_namelen = dst->addrlen;
  1603. if (sendmsg(hapd->ctrl_sock, &msg, 0) < 0) {
  1604. int _errno = errno;
  1605. wpa_printf(MSG_INFO, "CTRL_IFACE monitor[%d]: "
  1606. "%d - %s",
  1607. idx, errno, strerror(errno));
  1608. dst->errors++;
  1609. if (dst->errors > 10 || _errno == ENOENT) {
  1610. hostapd_ctrl_iface_detach(
  1611. hapd, &dst->addr,
  1612. dst->addrlen);
  1613. }
  1614. } else
  1615. dst->errors = 0;
  1616. }
  1617. idx++;
  1618. dst = next;
  1619. }
  1620. }
  1621. #endif /* CONFIG_NATIVE_WINDOWS */