ctrl_iface.c 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878
  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. ret = hostapd_set_iface(hapd->iconf, hapd->conf, cmd, value);
  813. }
  814. return ret;
  815. }
  816. static int hostapd_ctrl_iface_get(struct hostapd_data *hapd, char *cmd,
  817. char *buf, size_t buflen)
  818. {
  819. int res;
  820. wpa_printf(MSG_DEBUG, "CTRL_IFACE GET '%s'", cmd);
  821. if (os_strcmp(cmd, "version") == 0) {
  822. res = os_snprintf(buf, buflen, "%s", VERSION_STR);
  823. if (res < 0 || (unsigned int) res >= buflen)
  824. return -1;
  825. return res;
  826. }
  827. return -1;
  828. }
  829. static int hostapd_ctrl_iface_enable(struct hostapd_iface *iface)
  830. {
  831. if (hostapd_enable_iface(iface) < 0) {
  832. wpa_printf(MSG_ERROR, "Enabling of interface failed");
  833. return -1;
  834. }
  835. return 0;
  836. }
  837. static int hostapd_ctrl_iface_reload(struct hostapd_iface *iface)
  838. {
  839. if (hostapd_reload_iface(iface) < 0) {
  840. wpa_printf(MSG_ERROR, "Reloading of interface failed");
  841. return -1;
  842. }
  843. return 0;
  844. }
  845. static int hostapd_ctrl_iface_disable(struct hostapd_iface *iface)
  846. {
  847. if (hostapd_disable_iface(iface) < 0) {
  848. wpa_printf(MSG_ERROR, "Disabling of interface failed");
  849. return -1;
  850. }
  851. return 0;
  852. }
  853. #ifdef CONFIG_TESTING_OPTIONS
  854. static int hostapd_ctrl_iface_radar(struct hostapd_data *hapd, char *cmd)
  855. {
  856. union wpa_event_data data;
  857. char *pos, *param;
  858. enum wpa_event_type event;
  859. wpa_printf(MSG_DEBUG, "RADAR TEST: %s", cmd);
  860. os_memset(&data, 0, sizeof(data));
  861. param = os_strchr(cmd, ' ');
  862. if (param == NULL)
  863. return -1;
  864. *param++ = '\0';
  865. if (os_strcmp(cmd, "DETECTED") == 0)
  866. event = EVENT_DFS_RADAR_DETECTED;
  867. else if (os_strcmp(cmd, "CAC-FINISHED") == 0)
  868. event = EVENT_DFS_CAC_FINISHED;
  869. else if (os_strcmp(cmd, "CAC-ABORTED") == 0)
  870. event = EVENT_DFS_CAC_ABORTED;
  871. else if (os_strcmp(cmd, "NOP-FINISHED") == 0)
  872. event = EVENT_DFS_NOP_FINISHED;
  873. else {
  874. wpa_printf(MSG_DEBUG, "Unsupported RADAR test command: %s",
  875. cmd);
  876. return -1;
  877. }
  878. pos = os_strstr(param, "freq=");
  879. if (pos)
  880. data.dfs_event.freq = atoi(pos + 5);
  881. pos = os_strstr(param, "ht_enabled=1");
  882. if (pos)
  883. data.dfs_event.ht_enabled = 1;
  884. pos = os_strstr(param, "chan_offset=");
  885. if (pos)
  886. data.dfs_event.chan_offset = atoi(pos + 12);
  887. pos = os_strstr(param, "chan_width=");
  888. if (pos)
  889. data.dfs_event.chan_width = atoi(pos + 11);
  890. pos = os_strstr(param, "cf1=");
  891. if (pos)
  892. data.dfs_event.cf1 = atoi(pos + 4);
  893. pos = os_strstr(param, "cf2=");
  894. if (pos)
  895. data.dfs_event.cf2 = atoi(pos + 4);
  896. wpa_supplicant_event(hapd, event, &data);
  897. return 0;
  898. }
  899. static int hostapd_ctrl_iface_mgmt_tx(struct hostapd_data *hapd, char *cmd)
  900. {
  901. size_t len;
  902. u8 *buf;
  903. int res;
  904. wpa_printf(MSG_DEBUG, "External MGMT TX: %s", cmd);
  905. len = os_strlen(cmd);
  906. if (len & 1)
  907. return -1;
  908. len /= 2;
  909. buf = os_malloc(len);
  910. if (buf == NULL)
  911. return -1;
  912. if (hexstr2bin(cmd, buf, len) < 0) {
  913. os_free(buf);
  914. return -1;
  915. }
  916. res = hostapd_drv_send_mlme(hapd, buf, len, 0);
  917. os_free(buf);
  918. return res;
  919. }
  920. #endif /* CONFIG_TESTING_OPTIONS */
  921. static int hostapd_ctrl_iface_chan_switch(struct hostapd_data *hapd, char *pos)
  922. {
  923. #ifdef NEED_AP_MLME
  924. struct csa_settings settings;
  925. int ret = hostapd_parse_csa_settings(pos, &settings);
  926. if (ret)
  927. return ret;
  928. return hostapd_switch_channel(hapd, &settings);
  929. #else /* NEED_AP_MLME */
  930. return -1;
  931. #endif /* NEED_AP_MLME */
  932. }
  933. static int hostapd_ctrl_iface_mib(struct hostapd_data *hapd, char *reply,
  934. int reply_size, const char *param)
  935. {
  936. #ifdef RADIUS_SERVER
  937. if (os_strcmp(param, "radius_server") == 0) {
  938. return radius_server_get_mib(hapd->radius_srv, reply,
  939. reply_size);
  940. }
  941. #endif /* RADIUS_SERVER */
  942. return -1;
  943. }
  944. static void hostapd_ctrl_iface_receive(int sock, void *eloop_ctx,
  945. void *sock_ctx)
  946. {
  947. struct hostapd_data *hapd = eloop_ctx;
  948. char buf[4096];
  949. int res;
  950. struct sockaddr_un from;
  951. socklen_t fromlen = sizeof(from);
  952. char *reply;
  953. const int reply_size = 4096;
  954. int reply_len;
  955. int level = MSG_DEBUG;
  956. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  957. (struct sockaddr *) &from, &fromlen);
  958. if (res < 0) {
  959. perror("recvfrom(ctrl_iface)");
  960. return;
  961. }
  962. buf[res] = '\0';
  963. if (os_strcmp(buf, "PING") == 0)
  964. level = MSG_EXCESSIVE;
  965. wpa_hexdump_ascii(level, "RX ctrl_iface", (u8 *) buf, res);
  966. reply = os_malloc(reply_size);
  967. if (reply == NULL) {
  968. sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
  969. fromlen);
  970. return;
  971. }
  972. os_memcpy(reply, "OK\n", 3);
  973. reply_len = 3;
  974. if (os_strcmp(buf, "PING") == 0) {
  975. os_memcpy(reply, "PONG\n", 5);
  976. reply_len = 5;
  977. } else if (os_strncmp(buf, "RELOG", 5) == 0) {
  978. if (wpa_debug_reopen_file() < 0)
  979. reply_len = -1;
  980. } else if (os_strcmp(buf, "STATUS") == 0) {
  981. reply_len = hostapd_ctrl_iface_status(hapd, reply,
  982. reply_size);
  983. } else if (os_strcmp(buf, "STATUS-DRIVER") == 0) {
  984. reply_len = hostapd_drv_status(hapd, reply, reply_size);
  985. } else if (os_strcmp(buf, "MIB") == 0) {
  986. reply_len = ieee802_11_get_mib(hapd, reply, reply_size);
  987. if (reply_len >= 0) {
  988. res = wpa_get_mib(hapd->wpa_auth, reply + reply_len,
  989. reply_size - reply_len);
  990. if (res < 0)
  991. reply_len = -1;
  992. else
  993. reply_len += res;
  994. }
  995. if (reply_len >= 0) {
  996. res = ieee802_1x_get_mib(hapd, reply + reply_len,
  997. reply_size - reply_len);
  998. if (res < 0)
  999. reply_len = -1;
  1000. else
  1001. reply_len += res;
  1002. }
  1003. #ifndef CONFIG_NO_RADIUS
  1004. if (reply_len >= 0) {
  1005. res = radius_client_get_mib(hapd->radius,
  1006. reply + reply_len,
  1007. reply_size - reply_len);
  1008. if (res < 0)
  1009. reply_len = -1;
  1010. else
  1011. reply_len += res;
  1012. }
  1013. #endif /* CONFIG_NO_RADIUS */
  1014. } else if (os_strncmp(buf, "MIB ", 4) == 0) {
  1015. reply_len = hostapd_ctrl_iface_mib(hapd, reply, reply_size,
  1016. buf + 4);
  1017. } else if (os_strcmp(buf, "STA-FIRST") == 0) {
  1018. reply_len = hostapd_ctrl_iface_sta_first(hapd, reply,
  1019. reply_size);
  1020. } else if (os_strncmp(buf, "STA ", 4) == 0) {
  1021. reply_len = hostapd_ctrl_iface_sta(hapd, buf + 4, reply,
  1022. reply_size);
  1023. } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
  1024. reply_len = hostapd_ctrl_iface_sta_next(hapd, buf + 9, reply,
  1025. reply_size);
  1026. } else if (os_strcmp(buf, "ATTACH") == 0) {
  1027. if (hostapd_ctrl_iface_attach(hapd, &from, fromlen))
  1028. reply_len = -1;
  1029. } else if (os_strcmp(buf, "DETACH") == 0) {
  1030. if (hostapd_ctrl_iface_detach(hapd, &from, fromlen))
  1031. reply_len = -1;
  1032. } else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
  1033. if (hostapd_ctrl_iface_level(hapd, &from, fromlen,
  1034. buf + 6))
  1035. reply_len = -1;
  1036. } else if (os_strncmp(buf, "NEW_STA ", 8) == 0) {
  1037. if (hostapd_ctrl_iface_new_sta(hapd, buf + 8))
  1038. reply_len = -1;
  1039. } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
  1040. if (hostapd_ctrl_iface_deauthenticate(hapd, buf + 15))
  1041. reply_len = -1;
  1042. } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
  1043. if (hostapd_ctrl_iface_disassociate(hapd, buf + 13))
  1044. reply_len = -1;
  1045. #ifdef CONFIG_IEEE80211W
  1046. #ifdef NEED_AP_MLME
  1047. } else if (os_strncmp(buf, "SA_QUERY ", 9) == 0) {
  1048. if (hostapd_ctrl_iface_sa_query(hapd, buf + 9))
  1049. reply_len = -1;
  1050. #endif /* NEED_AP_MLME */
  1051. #endif /* CONFIG_IEEE80211W */
  1052. #ifdef CONFIG_WPS
  1053. } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
  1054. if (hostapd_ctrl_iface_wps_pin(hapd, buf + 8))
  1055. reply_len = -1;
  1056. } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
  1057. reply_len = hostapd_ctrl_iface_wps_check_pin(
  1058. hapd, buf + 14, reply, reply_size);
  1059. } else if (os_strcmp(buf, "WPS_PBC") == 0) {
  1060. if (hostapd_wps_button_pushed(hapd, NULL))
  1061. reply_len = -1;
  1062. } else if (os_strcmp(buf, "WPS_CANCEL") == 0) {
  1063. if (hostapd_wps_cancel(hapd))
  1064. reply_len = -1;
  1065. } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
  1066. reply_len = hostapd_ctrl_iface_wps_ap_pin(hapd, buf + 11,
  1067. reply, reply_size);
  1068. } else if (os_strncmp(buf, "WPS_CONFIG ", 11) == 0) {
  1069. if (hostapd_ctrl_iface_wps_config(hapd, buf + 11) < 0)
  1070. reply_len = -1;
  1071. } else if (os_strncmp(buf, "WPS_GET_STATUS", 13) == 0) {
  1072. reply_len = hostapd_ctrl_iface_wps_get_status(hapd, reply,
  1073. reply_size);
  1074. #ifdef CONFIG_WPS_NFC
  1075. } else if (os_strncmp(buf, "WPS_NFC_TAG_READ ", 17) == 0) {
  1076. if (hostapd_ctrl_iface_wps_nfc_tag_read(hapd, buf + 17))
  1077. reply_len = -1;
  1078. } else if (os_strncmp(buf, "WPS_NFC_CONFIG_TOKEN ", 21) == 0) {
  1079. reply_len = hostapd_ctrl_iface_wps_nfc_config_token(
  1080. hapd, buf + 21, reply, reply_size);
  1081. } else if (os_strncmp(buf, "WPS_NFC_TOKEN ", 14) == 0) {
  1082. reply_len = hostapd_ctrl_iface_wps_nfc_token(
  1083. hapd, buf + 14, reply, reply_size);
  1084. } else if (os_strncmp(buf, "NFC_GET_HANDOVER_SEL ", 21) == 0) {
  1085. reply_len = hostapd_ctrl_iface_nfc_get_handover_sel(
  1086. hapd, buf + 21, reply, reply_size);
  1087. } else if (os_strncmp(buf, "NFC_REPORT_HANDOVER ", 20) == 0) {
  1088. if (hostapd_ctrl_iface_nfc_report_handover(hapd, buf + 20))
  1089. reply_len = -1;
  1090. #endif /* CONFIG_WPS_NFC */
  1091. #endif /* CONFIG_WPS */
  1092. #ifdef CONFIG_INTERWORKING
  1093. } else if (os_strncmp(buf, "SET_QOS_MAP_SET ", 16) == 0) {
  1094. if (hostapd_ctrl_iface_set_qos_map_set(hapd, buf + 16))
  1095. reply_len = -1;
  1096. } else if (os_strncmp(buf, "SEND_QOS_MAP_CONF ", 18) == 0) {
  1097. if (hostapd_ctrl_iface_send_qos_map_conf(hapd, buf + 18))
  1098. reply_len = -1;
  1099. #endif /* CONFIG_INTERWORKING */
  1100. #ifdef CONFIG_WNM
  1101. } else if (os_strncmp(buf, "DISASSOC_IMMINENT ", 18) == 0) {
  1102. if (hostapd_ctrl_iface_disassoc_imminent(hapd, buf + 18))
  1103. reply_len = -1;
  1104. } else if (os_strncmp(buf, "ESS_DISASSOC ", 13) == 0) {
  1105. if (hostapd_ctrl_iface_ess_disassoc(hapd, buf + 13))
  1106. reply_len = -1;
  1107. #endif /* CONFIG_WNM */
  1108. } else if (os_strcmp(buf, "GET_CONFIG") == 0) {
  1109. reply_len = hostapd_ctrl_iface_get_config(hapd, reply,
  1110. reply_size);
  1111. } else if (os_strncmp(buf, "SET ", 4) == 0) {
  1112. if (hostapd_ctrl_iface_set(hapd, buf + 4))
  1113. reply_len = -1;
  1114. } else if (os_strncmp(buf, "GET ", 4) == 0) {
  1115. reply_len = hostapd_ctrl_iface_get(hapd, buf + 4, reply,
  1116. reply_size);
  1117. } else if (os_strncmp(buf, "ENABLE", 6) == 0) {
  1118. if (hostapd_ctrl_iface_enable(hapd->iface))
  1119. reply_len = -1;
  1120. } else if (os_strncmp(buf, "RELOAD", 6) == 0) {
  1121. if (hostapd_ctrl_iface_reload(hapd->iface))
  1122. reply_len = -1;
  1123. } else if (os_strncmp(buf, "DISABLE", 7) == 0) {
  1124. if (hostapd_ctrl_iface_disable(hapd->iface))
  1125. reply_len = -1;
  1126. #ifdef CONFIG_TESTING_OPTIONS
  1127. } else if (os_strncmp(buf, "RADAR ", 6) == 0) {
  1128. if (hostapd_ctrl_iface_radar(hapd, buf + 6))
  1129. reply_len = -1;
  1130. } else if (os_strncmp(buf, "MGMT_TX ", 8) == 0) {
  1131. if (hostapd_ctrl_iface_mgmt_tx(hapd, buf + 8))
  1132. reply_len = -1;
  1133. #endif /* CONFIG_TESTING_OPTIONS */
  1134. } else if (os_strncmp(buf, "CHAN_SWITCH ", 12) == 0) {
  1135. if (hostapd_ctrl_iface_chan_switch(hapd, buf + 12))
  1136. reply_len = -1;
  1137. } else {
  1138. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  1139. reply_len = 16;
  1140. }
  1141. if (reply_len < 0) {
  1142. os_memcpy(reply, "FAIL\n", 5);
  1143. reply_len = 5;
  1144. }
  1145. sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from, fromlen);
  1146. os_free(reply);
  1147. }
  1148. static char * hostapd_ctrl_iface_path(struct hostapd_data *hapd)
  1149. {
  1150. char *buf;
  1151. size_t len;
  1152. if (hapd->conf->ctrl_interface == NULL)
  1153. return NULL;
  1154. len = os_strlen(hapd->conf->ctrl_interface) +
  1155. os_strlen(hapd->conf->iface) + 2;
  1156. buf = os_malloc(len);
  1157. if (buf == NULL)
  1158. return NULL;
  1159. os_snprintf(buf, len, "%s/%s",
  1160. hapd->conf->ctrl_interface, hapd->conf->iface);
  1161. buf[len - 1] = '\0';
  1162. return buf;
  1163. }
  1164. static void hostapd_ctrl_iface_msg_cb(void *ctx, int level, int global,
  1165. const char *txt, size_t len)
  1166. {
  1167. struct hostapd_data *hapd = ctx;
  1168. if (hapd == NULL)
  1169. return;
  1170. hostapd_ctrl_iface_send(hapd, level, txt, len);
  1171. }
  1172. int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
  1173. {
  1174. struct sockaddr_un addr;
  1175. int s = -1;
  1176. char *fname = NULL;
  1177. if (hapd->ctrl_sock > -1) {
  1178. wpa_printf(MSG_DEBUG, "ctrl_iface already exists!");
  1179. return 0;
  1180. }
  1181. if (hapd->conf->ctrl_interface == NULL)
  1182. return 0;
  1183. if (mkdir(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
  1184. if (errno == EEXIST) {
  1185. wpa_printf(MSG_DEBUG, "Using existing control "
  1186. "interface directory.");
  1187. } else {
  1188. perror("mkdir[ctrl_interface]");
  1189. goto fail;
  1190. }
  1191. }
  1192. if (hapd->conf->ctrl_interface_gid_set &&
  1193. chown(hapd->conf->ctrl_interface, -1,
  1194. hapd->conf->ctrl_interface_gid) < 0) {
  1195. perror("chown[ctrl_interface]");
  1196. return -1;
  1197. }
  1198. if (!hapd->conf->ctrl_interface_gid_set &&
  1199. hapd->iface->interfaces->ctrl_iface_group &&
  1200. chown(hapd->conf->ctrl_interface, -1,
  1201. hapd->iface->interfaces->ctrl_iface_group) < 0) {
  1202. perror("chown[ctrl_interface]");
  1203. return -1;
  1204. }
  1205. #ifdef ANDROID
  1206. /*
  1207. * Android is using umask 0077 which would leave the control interface
  1208. * directory without group access. This breaks things since Wi-Fi
  1209. * framework assumes that this directory can be accessed by other
  1210. * applications in the wifi group. Fix this by adding group access even
  1211. * if umask value would prevent this.
  1212. */
  1213. if (chmod(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
  1214. wpa_printf(MSG_ERROR, "CTRL: Could not chmod directory: %s",
  1215. strerror(errno));
  1216. /* Try to continue anyway */
  1217. }
  1218. #endif /* ANDROID */
  1219. if (os_strlen(hapd->conf->ctrl_interface) + 1 +
  1220. os_strlen(hapd->conf->iface) >= sizeof(addr.sun_path))
  1221. goto fail;
  1222. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  1223. if (s < 0) {
  1224. perror("socket(PF_UNIX)");
  1225. goto fail;
  1226. }
  1227. os_memset(&addr, 0, sizeof(addr));
  1228. #ifdef __FreeBSD__
  1229. addr.sun_len = sizeof(addr);
  1230. #endif /* __FreeBSD__ */
  1231. addr.sun_family = AF_UNIX;
  1232. fname = hostapd_ctrl_iface_path(hapd);
  1233. if (fname == NULL)
  1234. goto fail;
  1235. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  1236. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  1237. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  1238. strerror(errno));
  1239. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  1240. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  1241. " allow connections - assuming it was left"
  1242. "over from forced program termination");
  1243. if (unlink(fname) < 0) {
  1244. perror("unlink[ctrl_iface]");
  1245. wpa_printf(MSG_ERROR, "Could not unlink "
  1246. "existing ctrl_iface socket '%s'",
  1247. fname);
  1248. goto fail;
  1249. }
  1250. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
  1251. 0) {
  1252. perror("hostapd-ctrl-iface: bind(PF_UNIX)");
  1253. goto fail;
  1254. }
  1255. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  1256. "ctrl_iface socket '%s'", fname);
  1257. } else {
  1258. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  1259. "be in use - cannot override it");
  1260. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  1261. "not used anymore", fname);
  1262. os_free(fname);
  1263. fname = NULL;
  1264. goto fail;
  1265. }
  1266. }
  1267. if (hapd->conf->ctrl_interface_gid_set &&
  1268. chown(fname, -1, hapd->conf->ctrl_interface_gid) < 0) {
  1269. perror("chown[ctrl_interface/ifname]");
  1270. goto fail;
  1271. }
  1272. if (!hapd->conf->ctrl_interface_gid_set &&
  1273. hapd->iface->interfaces->ctrl_iface_group &&
  1274. chown(fname, -1, hapd->iface->interfaces->ctrl_iface_group) < 0) {
  1275. perror("chown[ctrl_interface/ifname]");
  1276. goto fail;
  1277. }
  1278. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  1279. perror("chmod[ctrl_interface/ifname]");
  1280. goto fail;
  1281. }
  1282. os_free(fname);
  1283. hapd->ctrl_sock = s;
  1284. eloop_register_read_sock(s, hostapd_ctrl_iface_receive, hapd,
  1285. NULL);
  1286. hapd->msg_ctx = hapd;
  1287. wpa_msg_register_cb(hostapd_ctrl_iface_msg_cb);
  1288. return 0;
  1289. fail:
  1290. if (s >= 0)
  1291. close(s);
  1292. if (fname) {
  1293. unlink(fname);
  1294. os_free(fname);
  1295. }
  1296. return -1;
  1297. }
  1298. void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd)
  1299. {
  1300. struct wpa_ctrl_dst *dst, *prev;
  1301. if (hapd->ctrl_sock > -1) {
  1302. char *fname;
  1303. eloop_unregister_read_sock(hapd->ctrl_sock);
  1304. close(hapd->ctrl_sock);
  1305. hapd->ctrl_sock = -1;
  1306. fname = hostapd_ctrl_iface_path(hapd);
  1307. if (fname)
  1308. unlink(fname);
  1309. os_free(fname);
  1310. if (hapd->conf->ctrl_interface &&
  1311. rmdir(hapd->conf->ctrl_interface) < 0) {
  1312. if (errno == ENOTEMPTY) {
  1313. wpa_printf(MSG_DEBUG, "Control interface "
  1314. "directory not empty - leaving it "
  1315. "behind");
  1316. } else {
  1317. wpa_printf(MSG_ERROR,
  1318. "rmdir[ctrl_interface=%s]: %s",
  1319. hapd->conf->ctrl_interface,
  1320. strerror(errno));
  1321. }
  1322. }
  1323. }
  1324. dst = hapd->ctrl_dst;
  1325. while (dst) {
  1326. prev = dst;
  1327. dst = dst->next;
  1328. os_free(prev);
  1329. }
  1330. }
  1331. static int hostapd_ctrl_iface_add(struct hapd_interfaces *interfaces,
  1332. char *buf)
  1333. {
  1334. if (hostapd_add_iface(interfaces, buf) < 0) {
  1335. wpa_printf(MSG_ERROR, "Adding interface %s failed", buf);
  1336. return -1;
  1337. }
  1338. return 0;
  1339. }
  1340. static int hostapd_ctrl_iface_remove(struct hapd_interfaces *interfaces,
  1341. char *buf)
  1342. {
  1343. if (hostapd_remove_iface(interfaces, buf) < 0) {
  1344. wpa_printf(MSG_ERROR, "Removing interface %s failed", buf);
  1345. return -1;
  1346. }
  1347. return 0;
  1348. }
  1349. static void hostapd_ctrl_iface_flush(struct hapd_interfaces *interfaces)
  1350. {
  1351. #ifdef CONFIG_WPS_TESTING
  1352. wps_version_number = 0x20;
  1353. wps_testing_dummy_cred = 0;
  1354. wps_corrupt_pkhash = 0;
  1355. #endif /* CONFIG_WPS_TESTING */
  1356. }
  1357. static void hostapd_global_ctrl_iface_receive(int sock, void *eloop_ctx,
  1358. void *sock_ctx)
  1359. {
  1360. void *interfaces = eloop_ctx;
  1361. char buf[256];
  1362. int res;
  1363. struct sockaddr_un from;
  1364. socklen_t fromlen = sizeof(from);
  1365. char reply[24];
  1366. int reply_len;
  1367. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  1368. (struct sockaddr *) &from, &fromlen);
  1369. if (res < 0) {
  1370. perror("recvfrom(ctrl_iface)");
  1371. return;
  1372. }
  1373. buf[res] = '\0';
  1374. wpa_printf(MSG_DEBUG, "Global ctrl_iface command: %s", buf);
  1375. os_memcpy(reply, "OK\n", 3);
  1376. reply_len = 3;
  1377. if (os_strcmp(buf, "PING") == 0) {
  1378. os_memcpy(reply, "PONG\n", 5);
  1379. reply_len = 5;
  1380. } else if (os_strncmp(buf, "RELOG", 5) == 0) {
  1381. if (wpa_debug_reopen_file() < 0)
  1382. reply_len = -1;
  1383. } else if (os_strcmp(buf, "FLUSH") == 0) {
  1384. hostapd_ctrl_iface_flush(interfaces);
  1385. } else if (os_strncmp(buf, "ADD ", 4) == 0) {
  1386. if (hostapd_ctrl_iface_add(interfaces, buf + 4) < 0)
  1387. reply_len = -1;
  1388. } else if (os_strncmp(buf, "REMOVE ", 7) == 0) {
  1389. if (hostapd_ctrl_iface_remove(interfaces, buf + 7) < 0)
  1390. reply_len = -1;
  1391. } else {
  1392. wpa_printf(MSG_DEBUG, "Unrecognized global ctrl_iface command "
  1393. "ignored");
  1394. reply_len = -1;
  1395. }
  1396. if (reply_len < 0) {
  1397. os_memcpy(reply, "FAIL\n", 5);
  1398. reply_len = 5;
  1399. }
  1400. sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from, fromlen);
  1401. }
  1402. static char * hostapd_global_ctrl_iface_path(struct hapd_interfaces *interface)
  1403. {
  1404. char *buf;
  1405. size_t len;
  1406. if (interface->global_iface_path == NULL)
  1407. return NULL;
  1408. len = os_strlen(interface->global_iface_path) +
  1409. os_strlen(interface->global_iface_name) + 2;
  1410. buf = os_malloc(len);
  1411. if (buf == NULL)
  1412. return NULL;
  1413. os_snprintf(buf, len, "%s/%s", interface->global_iface_path,
  1414. interface->global_iface_name);
  1415. buf[len - 1] = '\0';
  1416. return buf;
  1417. }
  1418. int hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface)
  1419. {
  1420. struct sockaddr_un addr;
  1421. int s = -1;
  1422. char *fname = NULL;
  1423. if (interface->global_iface_path == NULL) {
  1424. wpa_printf(MSG_DEBUG, "ctrl_iface not configured!");
  1425. return 0;
  1426. }
  1427. if (mkdir(interface->global_iface_path, S_IRWXU | S_IRWXG) < 0) {
  1428. if (errno == EEXIST) {
  1429. wpa_printf(MSG_DEBUG, "Using existing control "
  1430. "interface directory.");
  1431. } else {
  1432. perror("mkdir[ctrl_interface]");
  1433. goto fail;
  1434. }
  1435. } else if (interface->ctrl_iface_group &&
  1436. chown(interface->global_iface_path, -1,
  1437. interface->ctrl_iface_group) < 0) {
  1438. perror("chown[ctrl_interface]");
  1439. goto fail;
  1440. }
  1441. if (os_strlen(interface->global_iface_path) + 1 +
  1442. os_strlen(interface->global_iface_name) >= sizeof(addr.sun_path))
  1443. goto fail;
  1444. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  1445. if (s < 0) {
  1446. perror("socket(PF_UNIX)");
  1447. goto fail;
  1448. }
  1449. os_memset(&addr, 0, sizeof(addr));
  1450. #ifdef __FreeBSD__
  1451. addr.sun_len = sizeof(addr);
  1452. #endif /* __FreeBSD__ */
  1453. addr.sun_family = AF_UNIX;
  1454. fname = hostapd_global_ctrl_iface_path(interface);
  1455. if (fname == NULL)
  1456. goto fail;
  1457. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  1458. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  1459. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  1460. strerror(errno));
  1461. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  1462. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  1463. " allow connections - assuming it was left"
  1464. "over from forced program termination");
  1465. if (unlink(fname) < 0) {
  1466. perror("unlink[ctrl_iface]");
  1467. wpa_printf(MSG_ERROR, "Could not unlink "
  1468. "existing ctrl_iface socket '%s'",
  1469. fname);
  1470. goto fail;
  1471. }
  1472. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
  1473. 0) {
  1474. perror("bind(PF_UNIX)");
  1475. goto fail;
  1476. }
  1477. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  1478. "ctrl_iface socket '%s'", fname);
  1479. } else {
  1480. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  1481. "be in use - cannot override it");
  1482. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  1483. "not used anymore", fname);
  1484. os_free(fname);
  1485. fname = NULL;
  1486. goto fail;
  1487. }
  1488. }
  1489. if (interface->ctrl_iface_group &&
  1490. chown(fname, -1, interface->ctrl_iface_group) < 0) {
  1491. perror("chown[ctrl_interface]");
  1492. goto fail;
  1493. }
  1494. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  1495. perror("chmod[ctrl_interface/ifname]");
  1496. goto fail;
  1497. }
  1498. os_free(fname);
  1499. interface->global_ctrl_sock = s;
  1500. eloop_register_read_sock(s, hostapd_global_ctrl_iface_receive,
  1501. interface, NULL);
  1502. return 0;
  1503. fail:
  1504. if (s >= 0)
  1505. close(s);
  1506. if (fname) {
  1507. unlink(fname);
  1508. os_free(fname);
  1509. }
  1510. return -1;
  1511. }
  1512. void hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interfaces)
  1513. {
  1514. char *fname = NULL;
  1515. if (interfaces->global_ctrl_sock > -1) {
  1516. eloop_unregister_read_sock(interfaces->global_ctrl_sock);
  1517. close(interfaces->global_ctrl_sock);
  1518. interfaces->global_ctrl_sock = -1;
  1519. fname = hostapd_global_ctrl_iface_path(interfaces);
  1520. if (fname) {
  1521. unlink(fname);
  1522. os_free(fname);
  1523. }
  1524. if (interfaces->global_iface_path &&
  1525. rmdir(interfaces->global_iface_path) < 0) {
  1526. if (errno == ENOTEMPTY) {
  1527. wpa_printf(MSG_DEBUG, "Control interface "
  1528. "directory not empty - leaving it "
  1529. "behind");
  1530. } else {
  1531. wpa_printf(MSG_ERROR,
  1532. "rmdir[ctrl_interface=%s]: %s",
  1533. interfaces->global_iface_path,
  1534. strerror(errno));
  1535. }
  1536. }
  1537. os_free(interfaces->global_iface_path);
  1538. interfaces->global_iface_path = NULL;
  1539. }
  1540. }
  1541. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  1542. const char *buf, size_t len)
  1543. {
  1544. struct wpa_ctrl_dst *dst, *next;
  1545. struct msghdr msg;
  1546. int idx;
  1547. struct iovec io[2];
  1548. char levelstr[10];
  1549. dst = hapd->ctrl_dst;
  1550. if (hapd->ctrl_sock < 0 || dst == NULL)
  1551. return;
  1552. os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
  1553. io[0].iov_base = levelstr;
  1554. io[0].iov_len = os_strlen(levelstr);
  1555. io[1].iov_base = (char *) buf;
  1556. io[1].iov_len = len;
  1557. os_memset(&msg, 0, sizeof(msg));
  1558. msg.msg_iov = io;
  1559. msg.msg_iovlen = 2;
  1560. idx = 0;
  1561. while (dst) {
  1562. next = dst->next;
  1563. if (level >= dst->debug_level) {
  1564. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor send",
  1565. (u8 *) dst->addr.sun_path, dst->addrlen -
  1566. offsetof(struct sockaddr_un, sun_path));
  1567. msg.msg_name = &dst->addr;
  1568. msg.msg_namelen = dst->addrlen;
  1569. if (sendmsg(hapd->ctrl_sock, &msg, 0) < 0) {
  1570. int _errno = errno;
  1571. wpa_printf(MSG_INFO, "CTRL_IFACE monitor[%d]: "
  1572. "%d - %s",
  1573. idx, errno, strerror(errno));
  1574. dst->errors++;
  1575. if (dst->errors > 10 || _errno == ENOENT) {
  1576. hostapd_ctrl_iface_detach(
  1577. hapd, &dst->addr,
  1578. dst->addrlen);
  1579. }
  1580. } else
  1581. dst->errors = 0;
  1582. }
  1583. idx++;
  1584. dst = next;
  1585. }
  1586. }
  1587. #endif /* CONFIG_NATIVE_WINDOWS */