ctrl_iface.c 44 KB

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