ctrl_iface.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734
  1. /*
  2. * hostapd / UNIX domain socket -based control interface
  3. * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "utils/includes.h"
  15. #ifndef CONFIG_NATIVE_WINDOWS
  16. #include <sys/un.h>
  17. #include <sys/stat.h>
  18. #include <stddef.h>
  19. #include "utils/common.h"
  20. #include "utils/eloop.h"
  21. #include "common/ieee802_11_defs.h"
  22. #include "drivers/driver.h"
  23. #include "radius/radius_client.h"
  24. #include "ap/hostapd.h"
  25. #include "ap/ap_config.h"
  26. #include "ap/ieee802_1x.h"
  27. #include "ap/wpa_auth.h"
  28. #include "ap/ieee802_11.h"
  29. #include "ap/sta_info.h"
  30. #include "ap/accounting.h"
  31. #include "ap/wps_hostapd.h"
  32. #include "ap/ctrl_iface_ap.h"
  33. #include "ctrl_iface.h"
  34. struct wpa_ctrl_dst {
  35. struct wpa_ctrl_dst *next;
  36. struct sockaddr_un addr;
  37. socklen_t addrlen;
  38. int debug_level;
  39. int errors;
  40. };
  41. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  42. const char *buf, size_t len);
  43. static int hostapd_ctrl_iface_attach(struct hostapd_data *hapd,
  44. struct sockaddr_un *from,
  45. socklen_t fromlen)
  46. {
  47. struct wpa_ctrl_dst *dst;
  48. dst = os_zalloc(sizeof(*dst));
  49. if (dst == NULL)
  50. return -1;
  51. os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un));
  52. dst->addrlen = fromlen;
  53. dst->debug_level = MSG_INFO;
  54. dst->next = hapd->ctrl_dst;
  55. hapd->ctrl_dst = dst;
  56. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor attached",
  57. (u8 *) from->sun_path,
  58. fromlen - offsetof(struct sockaddr_un, sun_path));
  59. return 0;
  60. }
  61. static int hostapd_ctrl_iface_detach(struct hostapd_data *hapd,
  62. struct sockaddr_un *from,
  63. socklen_t fromlen)
  64. {
  65. struct wpa_ctrl_dst *dst, *prev = NULL;
  66. dst = hapd->ctrl_dst;
  67. while (dst) {
  68. if (fromlen == dst->addrlen &&
  69. os_memcmp(from->sun_path, dst->addr.sun_path,
  70. fromlen - offsetof(struct sockaddr_un, sun_path))
  71. == 0) {
  72. if (prev == NULL)
  73. hapd->ctrl_dst = dst->next;
  74. else
  75. prev->next = dst->next;
  76. os_free(dst);
  77. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor detached",
  78. (u8 *) from->sun_path,
  79. fromlen -
  80. offsetof(struct sockaddr_un, sun_path));
  81. return 0;
  82. }
  83. prev = dst;
  84. dst = dst->next;
  85. }
  86. return -1;
  87. }
  88. static int hostapd_ctrl_iface_level(struct hostapd_data *hapd,
  89. struct sockaddr_un *from,
  90. socklen_t fromlen,
  91. char *level)
  92. {
  93. struct wpa_ctrl_dst *dst;
  94. wpa_printf(MSG_DEBUG, "CTRL_IFACE LEVEL %s", level);
  95. dst = hapd->ctrl_dst;
  96. while (dst) {
  97. if (fromlen == dst->addrlen &&
  98. os_memcmp(from->sun_path, dst->addr.sun_path,
  99. fromlen - offsetof(struct sockaddr_un, sun_path))
  100. == 0) {
  101. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE changed monitor "
  102. "level", (u8 *) from->sun_path, fromlen -
  103. offsetof(struct sockaddr_un, sun_path));
  104. dst->debug_level = atoi(level);
  105. return 0;
  106. }
  107. dst = dst->next;
  108. }
  109. return -1;
  110. }
  111. static int hostapd_ctrl_iface_new_sta(struct hostapd_data *hapd,
  112. const char *txtaddr)
  113. {
  114. u8 addr[ETH_ALEN];
  115. struct sta_info *sta;
  116. wpa_printf(MSG_DEBUG, "CTRL_IFACE NEW_STA %s", txtaddr);
  117. if (hwaddr_aton(txtaddr, addr))
  118. return -1;
  119. sta = ap_get_sta(hapd, addr);
  120. if (sta)
  121. return 0;
  122. wpa_printf(MSG_DEBUG, "Add new STA " MACSTR " based on ctrl_iface "
  123. "notification", MAC2STR(addr));
  124. sta = ap_sta_add(hapd, addr);
  125. if (sta == NULL)
  126. return -1;
  127. hostapd_new_assoc_sta(hapd, sta, 0);
  128. return 0;
  129. }
  130. static int hostapd_ctrl_iface_deauthenticate(struct hostapd_data *hapd,
  131. const char *txtaddr)
  132. {
  133. u8 addr[ETH_ALEN];
  134. struct sta_info *sta;
  135. const char *pos;
  136. wpa_printf(MSG_DEBUG, "CTRL_IFACE DEAUTHENTICATE %s", txtaddr);
  137. if (hwaddr_aton(txtaddr, addr))
  138. return -1;
  139. pos = os_strstr(txtaddr, " test=");
  140. if (pos) {
  141. struct ieee80211_mgmt mgmt;
  142. int encrypt;
  143. if (hapd->driver->send_frame == NULL)
  144. return -1;
  145. pos += 6;
  146. encrypt = atoi(pos);
  147. os_memset(&mgmt, 0, sizeof(mgmt));
  148. mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  149. WLAN_FC_STYPE_DEAUTH);
  150. os_memcpy(mgmt.da, addr, ETH_ALEN);
  151. os_memcpy(mgmt.sa, hapd->own_addr, ETH_ALEN);
  152. os_memcpy(mgmt.bssid, hapd->own_addr, ETH_ALEN);
  153. mgmt.u.deauth.reason_code =
  154. host_to_le16(WLAN_REASON_PREV_AUTH_NOT_VALID);
  155. if (hapd->driver->send_frame(hapd->drv_priv, (u8 *) &mgmt,
  156. IEEE80211_HDRLEN +
  157. sizeof(mgmt.u.deauth),
  158. encrypt) < 0)
  159. return -1;
  160. return 0;
  161. }
  162. hapd->drv.sta_deauth(hapd, addr, WLAN_REASON_PREV_AUTH_NOT_VALID);
  163. sta = ap_get_sta(hapd, addr);
  164. if (sta)
  165. ap_sta_deauthenticate(hapd, sta,
  166. WLAN_REASON_PREV_AUTH_NOT_VALID);
  167. return 0;
  168. }
  169. static int hostapd_ctrl_iface_disassociate(struct hostapd_data *hapd,
  170. const char *txtaddr)
  171. {
  172. u8 addr[ETH_ALEN];
  173. struct sta_info *sta;
  174. const char *pos;
  175. wpa_printf(MSG_DEBUG, "CTRL_IFACE DISASSOCIATE %s", txtaddr);
  176. if (hwaddr_aton(txtaddr, addr))
  177. return -1;
  178. pos = os_strstr(txtaddr, " test=");
  179. if (pos) {
  180. struct ieee80211_mgmt mgmt;
  181. int encrypt;
  182. if (hapd->driver->send_frame == NULL)
  183. return -1;
  184. pos += 6;
  185. encrypt = atoi(pos);
  186. os_memset(&mgmt, 0, sizeof(mgmt));
  187. mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  188. WLAN_FC_STYPE_DISASSOC);
  189. os_memcpy(mgmt.da, addr, ETH_ALEN);
  190. os_memcpy(mgmt.sa, hapd->own_addr, ETH_ALEN);
  191. os_memcpy(mgmt.bssid, hapd->own_addr, ETH_ALEN);
  192. mgmt.u.disassoc.reason_code =
  193. host_to_le16(WLAN_REASON_PREV_AUTH_NOT_VALID);
  194. if (hapd->driver->send_frame(hapd->drv_priv, (u8 *) &mgmt,
  195. IEEE80211_HDRLEN +
  196. sizeof(mgmt.u.deauth),
  197. encrypt) < 0)
  198. return -1;
  199. return 0;
  200. }
  201. hapd->drv.sta_disassoc(hapd, addr, WLAN_REASON_PREV_AUTH_NOT_VALID);
  202. sta = ap_get_sta(hapd, addr);
  203. if (sta)
  204. ap_sta_disassociate(hapd, sta,
  205. WLAN_REASON_PREV_AUTH_NOT_VALID);
  206. return 0;
  207. }
  208. #ifdef CONFIG_IEEE80211W
  209. #ifdef NEED_AP_MLME
  210. static int hostapd_ctrl_iface_sa_query(struct hostapd_data *hapd,
  211. const char *txtaddr)
  212. {
  213. u8 addr[ETH_ALEN];
  214. u8 trans_id[WLAN_SA_QUERY_TR_ID_LEN];
  215. wpa_printf(MSG_DEBUG, "CTRL_IFACE SA_QUERY %s", txtaddr);
  216. if (hwaddr_aton(txtaddr, addr) ||
  217. os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN) < 0)
  218. return -1;
  219. ieee802_11_send_sa_query_req(hapd, addr, trans_id);
  220. return 0;
  221. }
  222. #endif /* NEED_AP_MLME */
  223. #endif /* CONFIG_IEEE80211W */
  224. #ifdef CONFIG_WPS
  225. static int hostapd_ctrl_iface_wps_pin(struct hostapd_data *hapd, char *txt)
  226. {
  227. char *pin = os_strchr(txt, ' ');
  228. char *timeout_txt;
  229. int timeout;
  230. u8 addr_buf[ETH_ALEN], *addr = NULL;
  231. char *pos;
  232. if (pin == NULL)
  233. return -1;
  234. *pin++ = '\0';
  235. timeout_txt = os_strchr(pin, ' ');
  236. if (timeout_txt) {
  237. *timeout_txt++ = '\0';
  238. timeout = atoi(timeout_txt);
  239. pos = os_strchr(timeout_txt, ' ');
  240. if (pos) {
  241. *pos++ = '\0';
  242. if (hwaddr_aton(pos, addr_buf) == 0)
  243. addr = addr_buf;
  244. }
  245. } else
  246. timeout = 0;
  247. return hostapd_wps_add_pin(hapd, addr, txt, pin, timeout);
  248. }
  249. #ifdef CONFIG_WPS_OOB
  250. static int hostapd_ctrl_iface_wps_oob(struct hostapd_data *hapd, char *txt)
  251. {
  252. char *path, *method, *name;
  253. path = os_strchr(txt, ' ');
  254. if (path == NULL)
  255. return -1;
  256. *path++ = '\0';
  257. method = os_strchr(path, ' ');
  258. if (method == NULL)
  259. return -1;
  260. *method++ = '\0';
  261. name = os_strchr(method, ' ');
  262. if (name != NULL)
  263. *name++ = '\0';
  264. return hostapd_wps_start_oob(hapd, txt, path, method, name);
  265. }
  266. #endif /* CONFIG_WPS_OOB */
  267. static int hostapd_ctrl_iface_wps_ap_pin(struct hostapd_data *hapd, char *txt,
  268. char *buf, size_t buflen)
  269. {
  270. int timeout = 300;
  271. char *pos;
  272. const char *pin_txt;
  273. pos = os_strchr(txt, ' ');
  274. if (pos)
  275. *pos++ = '\0';
  276. if (os_strcmp(txt, "disable") == 0) {
  277. hostapd_wps_ap_pin_disable(hapd);
  278. return os_snprintf(buf, buflen, "OK\n");
  279. }
  280. if (os_strcmp(txt, "random") == 0) {
  281. if (pos)
  282. timeout = atoi(pos);
  283. pin_txt = hostapd_wps_ap_pin_random(hapd, timeout);
  284. if (pin_txt == NULL)
  285. return -1;
  286. return os_snprintf(buf, buflen, "%s", pin_txt);
  287. }
  288. if (os_strcmp(txt, "get") == 0) {
  289. pin_txt = hostapd_wps_ap_pin_get(hapd);
  290. if (pin_txt == NULL)
  291. return -1;
  292. return os_snprintf(buf, buflen, "%s", pin_txt);
  293. }
  294. if (os_strcmp(txt, "set") == 0) {
  295. char *pin;
  296. if (pos == NULL)
  297. return -1;
  298. pin = pos;
  299. pos = os_strchr(pos, ' ');
  300. if (pos) {
  301. *pos++ = '\0';
  302. timeout = atoi(pos);
  303. }
  304. if (os_strlen(pin) > buflen)
  305. return -1;
  306. if (hostapd_wps_ap_pin_set(hapd, pin, timeout) < 0)
  307. return -1;
  308. return os_snprintf(buf, buflen, "%s", pin);
  309. }
  310. return -1;
  311. }
  312. #endif /* CONFIG_WPS */
  313. static void hostapd_ctrl_iface_receive(int sock, void *eloop_ctx,
  314. void *sock_ctx)
  315. {
  316. struct hostapd_data *hapd = eloop_ctx;
  317. char buf[256];
  318. int res;
  319. struct sockaddr_un from;
  320. socklen_t fromlen = sizeof(from);
  321. char *reply;
  322. const int reply_size = 4096;
  323. int reply_len;
  324. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  325. (struct sockaddr *) &from, &fromlen);
  326. if (res < 0) {
  327. perror("recvfrom(ctrl_iface)");
  328. return;
  329. }
  330. buf[res] = '\0';
  331. wpa_hexdump_ascii(MSG_DEBUG, "RX ctrl_iface", (u8 *) buf, res);
  332. reply = os_malloc(reply_size);
  333. if (reply == NULL) {
  334. sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
  335. fromlen);
  336. return;
  337. }
  338. os_memcpy(reply, "OK\n", 3);
  339. reply_len = 3;
  340. if (os_strcmp(buf, "PING") == 0) {
  341. os_memcpy(reply, "PONG\n", 5);
  342. reply_len = 5;
  343. } else if (os_strcmp(buf, "MIB") == 0) {
  344. reply_len = ieee802_11_get_mib(hapd, reply, reply_size);
  345. if (reply_len >= 0) {
  346. res = wpa_get_mib(hapd->wpa_auth, reply + reply_len,
  347. reply_size - reply_len);
  348. if (res < 0)
  349. reply_len = -1;
  350. else
  351. reply_len += res;
  352. }
  353. if (reply_len >= 0) {
  354. res = ieee802_1x_get_mib(hapd, reply + reply_len,
  355. reply_size - reply_len);
  356. if (res < 0)
  357. reply_len = -1;
  358. else
  359. reply_len += res;
  360. }
  361. #ifndef CONFIG_NO_RADIUS
  362. if (reply_len >= 0) {
  363. res = radius_client_get_mib(hapd->radius,
  364. reply + reply_len,
  365. reply_size - reply_len);
  366. if (res < 0)
  367. reply_len = -1;
  368. else
  369. reply_len += res;
  370. }
  371. #endif /* CONFIG_NO_RADIUS */
  372. } else if (os_strcmp(buf, "STA-FIRST") == 0) {
  373. reply_len = hostapd_ctrl_iface_sta_first(hapd, reply,
  374. reply_size);
  375. } else if (os_strncmp(buf, "STA ", 4) == 0) {
  376. reply_len = hostapd_ctrl_iface_sta(hapd, buf + 4, reply,
  377. reply_size);
  378. } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
  379. reply_len = hostapd_ctrl_iface_sta_next(hapd, buf + 9, reply,
  380. reply_size);
  381. } else if (os_strcmp(buf, "ATTACH") == 0) {
  382. if (hostapd_ctrl_iface_attach(hapd, &from, fromlen))
  383. reply_len = -1;
  384. } else if (os_strcmp(buf, "DETACH") == 0) {
  385. if (hostapd_ctrl_iface_detach(hapd, &from, fromlen))
  386. reply_len = -1;
  387. } else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
  388. if (hostapd_ctrl_iface_level(hapd, &from, fromlen,
  389. buf + 6))
  390. reply_len = -1;
  391. } else if (os_strncmp(buf, "NEW_STA ", 8) == 0) {
  392. if (hostapd_ctrl_iface_new_sta(hapd, buf + 8))
  393. reply_len = -1;
  394. } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
  395. if (hostapd_ctrl_iface_deauthenticate(hapd, buf + 15))
  396. reply_len = -1;
  397. } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
  398. if (hostapd_ctrl_iface_disassociate(hapd, buf + 13))
  399. reply_len = -1;
  400. #ifdef CONFIG_IEEE80211W
  401. #ifdef NEED_AP_MLME
  402. } else if (os_strncmp(buf, "SA_QUERY ", 9) == 0) {
  403. if (hostapd_ctrl_iface_sa_query(hapd, buf + 9))
  404. reply_len = -1;
  405. #endif /* NEED_AP_MLME */
  406. #endif /* CONFIG_IEEE80211W */
  407. #ifdef CONFIG_WPS
  408. } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
  409. if (hostapd_ctrl_iface_wps_pin(hapd, buf + 8))
  410. reply_len = -1;
  411. } else if (os_strcmp(buf, "WPS_PBC") == 0) {
  412. if (hostapd_wps_button_pushed(hapd))
  413. reply_len = -1;
  414. #ifdef CONFIG_WPS_OOB
  415. } else if (os_strncmp(buf, "WPS_OOB ", 8) == 0) {
  416. if (hostapd_ctrl_iface_wps_oob(hapd, buf + 8))
  417. reply_len = -1;
  418. #endif /* CONFIG_WPS_OOB */
  419. } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
  420. reply_len = hostapd_ctrl_iface_wps_ap_pin(hapd, buf + 11,
  421. reply, reply_size);
  422. #endif /* CONFIG_WPS */
  423. } else {
  424. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  425. reply_len = 16;
  426. }
  427. if (reply_len < 0) {
  428. os_memcpy(reply, "FAIL\n", 5);
  429. reply_len = 5;
  430. }
  431. sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from, fromlen);
  432. os_free(reply);
  433. }
  434. static char * hostapd_ctrl_iface_path(struct hostapd_data *hapd)
  435. {
  436. char *buf;
  437. size_t len;
  438. if (hapd->conf->ctrl_interface == NULL)
  439. return NULL;
  440. len = os_strlen(hapd->conf->ctrl_interface) +
  441. os_strlen(hapd->conf->iface) + 2;
  442. buf = os_malloc(len);
  443. if (buf == NULL)
  444. return NULL;
  445. os_snprintf(buf, len, "%s/%s",
  446. hapd->conf->ctrl_interface, hapd->conf->iface);
  447. buf[len - 1] = '\0';
  448. return buf;
  449. }
  450. static void hostapd_ctrl_iface_msg_cb(void *ctx, int level,
  451. const char *txt, size_t len)
  452. {
  453. struct hostapd_data *hapd = ctx;
  454. if (hapd == NULL)
  455. return;
  456. hostapd_ctrl_iface_send(hapd, level, txt, len);
  457. }
  458. int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
  459. {
  460. struct sockaddr_un addr;
  461. int s = -1;
  462. char *fname = NULL;
  463. hapd->ctrl_sock = -1;
  464. if (hapd->conf->ctrl_interface == NULL)
  465. return 0;
  466. if (mkdir(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
  467. if (errno == EEXIST) {
  468. wpa_printf(MSG_DEBUG, "Using existing control "
  469. "interface directory.");
  470. } else {
  471. perror("mkdir[ctrl_interface]");
  472. goto fail;
  473. }
  474. }
  475. if (hapd->conf->ctrl_interface_gid_set &&
  476. chown(hapd->conf->ctrl_interface, 0,
  477. hapd->conf->ctrl_interface_gid) < 0) {
  478. perror("chown[ctrl_interface]");
  479. return -1;
  480. }
  481. if (os_strlen(hapd->conf->ctrl_interface) + 1 +
  482. os_strlen(hapd->conf->iface) >= sizeof(addr.sun_path))
  483. goto fail;
  484. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  485. if (s < 0) {
  486. perror("socket(PF_UNIX)");
  487. goto fail;
  488. }
  489. os_memset(&addr, 0, sizeof(addr));
  490. #ifdef __FreeBSD__
  491. addr.sun_len = sizeof(addr);
  492. #endif /* __FreeBSD__ */
  493. addr.sun_family = AF_UNIX;
  494. fname = hostapd_ctrl_iface_path(hapd);
  495. if (fname == NULL)
  496. goto fail;
  497. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  498. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  499. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  500. strerror(errno));
  501. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  502. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  503. " allow connections - assuming it was left"
  504. "over from forced program termination");
  505. if (unlink(fname) < 0) {
  506. perror("unlink[ctrl_iface]");
  507. wpa_printf(MSG_ERROR, "Could not unlink "
  508. "existing ctrl_iface socket '%s'",
  509. fname);
  510. goto fail;
  511. }
  512. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
  513. 0) {
  514. perror("bind(PF_UNIX)");
  515. goto fail;
  516. }
  517. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  518. "ctrl_iface socket '%s'", fname);
  519. } else {
  520. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  521. "be in use - cannot override it");
  522. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  523. "not used anymore", fname);
  524. os_free(fname);
  525. fname = NULL;
  526. goto fail;
  527. }
  528. }
  529. if (hapd->conf->ctrl_interface_gid_set &&
  530. chown(fname, 0, hapd->conf->ctrl_interface_gid) < 0) {
  531. perror("chown[ctrl_interface/ifname]");
  532. goto fail;
  533. }
  534. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  535. perror("chmod[ctrl_interface/ifname]");
  536. goto fail;
  537. }
  538. os_free(fname);
  539. hapd->ctrl_sock = s;
  540. eloop_register_read_sock(s, hostapd_ctrl_iface_receive, hapd,
  541. NULL);
  542. hapd->msg_ctx = hapd;
  543. wpa_msg_register_cb(hostapd_ctrl_iface_msg_cb);
  544. return 0;
  545. fail:
  546. if (s >= 0)
  547. close(s);
  548. if (fname) {
  549. unlink(fname);
  550. os_free(fname);
  551. }
  552. return -1;
  553. }
  554. void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd)
  555. {
  556. struct wpa_ctrl_dst *dst, *prev;
  557. if (hapd->ctrl_sock > -1) {
  558. char *fname;
  559. eloop_unregister_read_sock(hapd->ctrl_sock);
  560. close(hapd->ctrl_sock);
  561. hapd->ctrl_sock = -1;
  562. fname = hostapd_ctrl_iface_path(hapd);
  563. if (fname)
  564. unlink(fname);
  565. os_free(fname);
  566. if (hapd->conf->ctrl_interface &&
  567. rmdir(hapd->conf->ctrl_interface) < 0) {
  568. if (errno == ENOTEMPTY) {
  569. wpa_printf(MSG_DEBUG, "Control interface "
  570. "directory not empty - leaving it "
  571. "behind");
  572. } else {
  573. perror("rmdir[ctrl_interface]");
  574. }
  575. }
  576. }
  577. dst = hapd->ctrl_dst;
  578. while (dst) {
  579. prev = dst;
  580. dst = dst->next;
  581. os_free(prev);
  582. }
  583. }
  584. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  585. const char *buf, size_t len)
  586. {
  587. struct wpa_ctrl_dst *dst, *next;
  588. struct msghdr msg;
  589. int idx;
  590. struct iovec io[2];
  591. char levelstr[10];
  592. dst = hapd->ctrl_dst;
  593. if (hapd->ctrl_sock < 0 || dst == NULL)
  594. return;
  595. os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
  596. io[0].iov_base = levelstr;
  597. io[0].iov_len = os_strlen(levelstr);
  598. io[1].iov_base = (char *) buf;
  599. io[1].iov_len = len;
  600. os_memset(&msg, 0, sizeof(msg));
  601. msg.msg_iov = io;
  602. msg.msg_iovlen = 2;
  603. idx = 0;
  604. while (dst) {
  605. next = dst->next;
  606. if (level >= dst->debug_level) {
  607. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor send",
  608. (u8 *) dst->addr.sun_path, dst->addrlen -
  609. offsetof(struct sockaddr_un, sun_path));
  610. msg.msg_name = &dst->addr;
  611. msg.msg_namelen = dst->addrlen;
  612. if (sendmsg(hapd->ctrl_sock, &msg, 0) < 0) {
  613. int _errno = errno;
  614. wpa_printf(MSG_INFO, "CTRL_IFACE monitor[%d]: "
  615. "%d - %s",
  616. idx, errno, strerror(errno));
  617. dst->errors++;
  618. if (dst->errors > 10 || _errno == ENOENT) {
  619. hostapd_ctrl_iface_detach(
  620. hapd, &dst->addr,
  621. dst->addrlen);
  622. }
  623. } else
  624. dst->errors = 0;
  625. }
  626. idx++;
  627. dst = next;
  628. }
  629. }
  630. #endif /* CONFIG_NATIVE_WINDOWS */