ctrl_iface.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803
  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. #ifdef CONFIG_P2P_MANAGER
  131. static int p2p_manager_disconnect(struct hostapd_data *hapd, u16 stype,
  132. u8 minor_reason_code, const u8 *addr)
  133. {
  134. struct ieee80211_mgmt *mgmt;
  135. int ret;
  136. u8 *pos;
  137. if (hapd->driver->send_frame == NULL)
  138. return -1;
  139. mgmt = os_zalloc(sizeof(*mgmt) + 100);
  140. if (mgmt == NULL)
  141. return -1;
  142. wpa_printf(MSG_DEBUG, "P2P: Disconnect STA " MACSTR " with minor "
  143. "reason code %u (stype=%u)",
  144. MAC2STR(addr), minor_reason_code, stype);
  145. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT, stype);
  146. os_memcpy(mgmt->da, addr, ETH_ALEN);
  147. os_memcpy(mgmt->sa, hapd->own_addr, ETH_ALEN);
  148. os_memcpy(mgmt->bssid, hapd->own_addr, ETH_ALEN);
  149. if (stype == WLAN_FC_STYPE_DEAUTH) {
  150. mgmt->u.deauth.reason_code =
  151. host_to_le16(WLAN_REASON_PREV_AUTH_NOT_VALID);
  152. pos = (u8 *) (&mgmt->u.deauth.reason_code + 1);
  153. } else {
  154. mgmt->u.disassoc.reason_code =
  155. host_to_le16(WLAN_REASON_PREV_AUTH_NOT_VALID);
  156. pos = (u8 *) (&mgmt->u.disassoc.reason_code + 1);
  157. }
  158. *pos++ = WLAN_EID_VENDOR_SPECIFIC;
  159. *pos++ = 4 + 3 + 1;
  160. WPA_PUT_BE24(pos, OUI_WFA);
  161. pos += 3;
  162. *pos++ = P2P_OUI_TYPE;
  163. *pos++ = P2P_ATTR_MINOR_REASON_CODE;
  164. WPA_PUT_LE16(pos, 1);
  165. pos += 2;
  166. *pos++ = minor_reason_code;
  167. ret = hapd->driver->send_frame(hapd->drv_priv, (u8 *) mgmt,
  168. pos - (u8 *) mgmt, 1);
  169. os_free(mgmt);
  170. return ret < 0 ? -1 : 0;
  171. }
  172. #endif /* CONFIG_P2P_MANAGER */
  173. static int hostapd_ctrl_iface_deauthenticate(struct hostapd_data *hapd,
  174. const char *txtaddr)
  175. {
  176. u8 addr[ETH_ALEN];
  177. struct sta_info *sta;
  178. const char *pos;
  179. wpa_printf(MSG_DEBUG, "CTRL_IFACE DEAUTHENTICATE %s", txtaddr);
  180. if (hwaddr_aton(txtaddr, addr))
  181. return -1;
  182. pos = os_strstr(txtaddr, " test=");
  183. if (pos) {
  184. struct ieee80211_mgmt mgmt;
  185. int encrypt;
  186. if (hapd->driver->send_frame == NULL)
  187. return -1;
  188. pos += 6;
  189. encrypt = atoi(pos);
  190. os_memset(&mgmt, 0, sizeof(mgmt));
  191. mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  192. WLAN_FC_STYPE_DEAUTH);
  193. os_memcpy(mgmt.da, addr, ETH_ALEN);
  194. os_memcpy(mgmt.sa, hapd->own_addr, ETH_ALEN);
  195. os_memcpy(mgmt.bssid, hapd->own_addr, ETH_ALEN);
  196. mgmt.u.deauth.reason_code =
  197. host_to_le16(WLAN_REASON_PREV_AUTH_NOT_VALID);
  198. if (hapd->driver->send_frame(hapd->drv_priv, (u8 *) &mgmt,
  199. IEEE80211_HDRLEN +
  200. sizeof(mgmt.u.deauth),
  201. encrypt) < 0)
  202. return -1;
  203. return 0;
  204. }
  205. #ifdef CONFIG_P2P_MANAGER
  206. pos = os_strstr(txtaddr, " p2p=");
  207. if (pos) {
  208. return p2p_manager_disconnect(hapd, WLAN_FC_STYPE_DEAUTH,
  209. atoi(pos + 5), addr);
  210. }
  211. #endif /* CONFIG_P2P_MANAGER */
  212. hapd->drv.sta_deauth(hapd, addr, WLAN_REASON_PREV_AUTH_NOT_VALID);
  213. sta = ap_get_sta(hapd, addr);
  214. if (sta)
  215. ap_sta_deauthenticate(hapd, sta,
  216. WLAN_REASON_PREV_AUTH_NOT_VALID);
  217. return 0;
  218. }
  219. static int hostapd_ctrl_iface_disassociate(struct hostapd_data *hapd,
  220. const char *txtaddr)
  221. {
  222. u8 addr[ETH_ALEN];
  223. struct sta_info *sta;
  224. const char *pos;
  225. wpa_printf(MSG_DEBUG, "CTRL_IFACE DISASSOCIATE %s", txtaddr);
  226. if (hwaddr_aton(txtaddr, addr))
  227. return -1;
  228. pos = os_strstr(txtaddr, " test=");
  229. if (pos) {
  230. struct ieee80211_mgmt mgmt;
  231. int encrypt;
  232. if (hapd->driver->send_frame == NULL)
  233. return -1;
  234. pos += 6;
  235. encrypt = atoi(pos);
  236. os_memset(&mgmt, 0, sizeof(mgmt));
  237. mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  238. WLAN_FC_STYPE_DISASSOC);
  239. os_memcpy(mgmt.da, addr, ETH_ALEN);
  240. os_memcpy(mgmt.sa, hapd->own_addr, ETH_ALEN);
  241. os_memcpy(mgmt.bssid, hapd->own_addr, ETH_ALEN);
  242. mgmt.u.disassoc.reason_code =
  243. host_to_le16(WLAN_REASON_PREV_AUTH_NOT_VALID);
  244. if (hapd->driver->send_frame(hapd->drv_priv, (u8 *) &mgmt,
  245. IEEE80211_HDRLEN +
  246. sizeof(mgmt.u.deauth),
  247. encrypt) < 0)
  248. return -1;
  249. return 0;
  250. }
  251. #ifdef CONFIG_P2P_MANAGER
  252. pos = os_strstr(txtaddr, " p2p=");
  253. if (pos) {
  254. return p2p_manager_disconnect(hapd, WLAN_FC_STYPE_DISASSOC,
  255. atoi(pos + 5), addr);
  256. }
  257. #endif /* CONFIG_P2P_MANAGER */
  258. hapd->drv.sta_disassoc(hapd, addr, WLAN_REASON_PREV_AUTH_NOT_VALID);
  259. sta = ap_get_sta(hapd, addr);
  260. if (sta)
  261. ap_sta_disassociate(hapd, sta,
  262. WLAN_REASON_PREV_AUTH_NOT_VALID);
  263. return 0;
  264. }
  265. #ifdef CONFIG_IEEE80211W
  266. #ifdef NEED_AP_MLME
  267. static int hostapd_ctrl_iface_sa_query(struct hostapd_data *hapd,
  268. const char *txtaddr)
  269. {
  270. u8 addr[ETH_ALEN];
  271. u8 trans_id[WLAN_SA_QUERY_TR_ID_LEN];
  272. wpa_printf(MSG_DEBUG, "CTRL_IFACE SA_QUERY %s", txtaddr);
  273. if (hwaddr_aton(txtaddr, addr) ||
  274. os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN) < 0)
  275. return -1;
  276. ieee802_11_send_sa_query_req(hapd, addr, trans_id);
  277. return 0;
  278. }
  279. #endif /* NEED_AP_MLME */
  280. #endif /* CONFIG_IEEE80211W */
  281. #ifdef CONFIG_WPS
  282. static int hostapd_ctrl_iface_wps_pin(struct hostapd_data *hapd, char *txt)
  283. {
  284. char *pin = os_strchr(txt, ' ');
  285. char *timeout_txt;
  286. int timeout;
  287. u8 addr_buf[ETH_ALEN], *addr = NULL;
  288. char *pos;
  289. if (pin == NULL)
  290. return -1;
  291. *pin++ = '\0';
  292. timeout_txt = os_strchr(pin, ' ');
  293. if (timeout_txt) {
  294. *timeout_txt++ = '\0';
  295. timeout = atoi(timeout_txt);
  296. pos = os_strchr(timeout_txt, ' ');
  297. if (pos) {
  298. *pos++ = '\0';
  299. if (hwaddr_aton(pos, addr_buf) == 0)
  300. addr = addr_buf;
  301. }
  302. } else
  303. timeout = 0;
  304. return hostapd_wps_add_pin(hapd, addr, txt, pin, timeout);
  305. }
  306. #ifdef CONFIG_WPS_OOB
  307. static int hostapd_ctrl_iface_wps_oob(struct hostapd_data *hapd, char *txt)
  308. {
  309. char *path, *method, *name;
  310. path = os_strchr(txt, ' ');
  311. if (path == NULL)
  312. return -1;
  313. *path++ = '\0';
  314. method = os_strchr(path, ' ');
  315. if (method == NULL)
  316. return -1;
  317. *method++ = '\0';
  318. name = os_strchr(method, ' ');
  319. if (name != NULL)
  320. *name++ = '\0';
  321. return hostapd_wps_start_oob(hapd, txt, path, method, name);
  322. }
  323. #endif /* CONFIG_WPS_OOB */
  324. static int hostapd_ctrl_iface_wps_ap_pin(struct hostapd_data *hapd, char *txt,
  325. char *buf, size_t buflen)
  326. {
  327. int timeout = 300;
  328. char *pos;
  329. const char *pin_txt;
  330. pos = os_strchr(txt, ' ');
  331. if (pos)
  332. *pos++ = '\0';
  333. if (os_strcmp(txt, "disable") == 0) {
  334. hostapd_wps_ap_pin_disable(hapd);
  335. return os_snprintf(buf, buflen, "OK\n");
  336. }
  337. if (os_strcmp(txt, "random") == 0) {
  338. if (pos)
  339. timeout = atoi(pos);
  340. pin_txt = hostapd_wps_ap_pin_random(hapd, timeout);
  341. if (pin_txt == NULL)
  342. return -1;
  343. return os_snprintf(buf, buflen, "%s", pin_txt);
  344. }
  345. if (os_strcmp(txt, "get") == 0) {
  346. pin_txt = hostapd_wps_ap_pin_get(hapd);
  347. if (pin_txt == NULL)
  348. return -1;
  349. return os_snprintf(buf, buflen, "%s", pin_txt);
  350. }
  351. if (os_strcmp(txt, "set") == 0) {
  352. char *pin;
  353. if (pos == NULL)
  354. return -1;
  355. pin = pos;
  356. pos = os_strchr(pos, ' ');
  357. if (pos) {
  358. *pos++ = '\0';
  359. timeout = atoi(pos);
  360. }
  361. if (os_strlen(pin) > buflen)
  362. return -1;
  363. if (hostapd_wps_ap_pin_set(hapd, pin, timeout) < 0)
  364. return -1;
  365. return os_snprintf(buf, buflen, "%s", pin);
  366. }
  367. return -1;
  368. }
  369. #endif /* CONFIG_WPS */
  370. static void hostapd_ctrl_iface_receive(int sock, void *eloop_ctx,
  371. void *sock_ctx)
  372. {
  373. struct hostapd_data *hapd = eloop_ctx;
  374. char buf[256];
  375. int res;
  376. struct sockaddr_un from;
  377. socklen_t fromlen = sizeof(from);
  378. char *reply;
  379. const int reply_size = 4096;
  380. int reply_len;
  381. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  382. (struct sockaddr *) &from, &fromlen);
  383. if (res < 0) {
  384. perror("recvfrom(ctrl_iface)");
  385. return;
  386. }
  387. buf[res] = '\0';
  388. wpa_hexdump_ascii(MSG_DEBUG, "RX ctrl_iface", (u8 *) buf, res);
  389. reply = os_malloc(reply_size);
  390. if (reply == NULL) {
  391. sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
  392. fromlen);
  393. return;
  394. }
  395. os_memcpy(reply, "OK\n", 3);
  396. reply_len = 3;
  397. if (os_strcmp(buf, "PING") == 0) {
  398. os_memcpy(reply, "PONG\n", 5);
  399. reply_len = 5;
  400. } else if (os_strcmp(buf, "MIB") == 0) {
  401. reply_len = ieee802_11_get_mib(hapd, reply, reply_size);
  402. if (reply_len >= 0) {
  403. res = wpa_get_mib(hapd->wpa_auth, reply + reply_len,
  404. reply_size - reply_len);
  405. if (res < 0)
  406. reply_len = -1;
  407. else
  408. reply_len += res;
  409. }
  410. if (reply_len >= 0) {
  411. res = ieee802_1x_get_mib(hapd, reply + reply_len,
  412. reply_size - reply_len);
  413. if (res < 0)
  414. reply_len = -1;
  415. else
  416. reply_len += res;
  417. }
  418. #ifndef CONFIG_NO_RADIUS
  419. if (reply_len >= 0) {
  420. res = radius_client_get_mib(hapd->radius,
  421. reply + reply_len,
  422. reply_size - reply_len);
  423. if (res < 0)
  424. reply_len = -1;
  425. else
  426. reply_len += res;
  427. }
  428. #endif /* CONFIG_NO_RADIUS */
  429. } else if (os_strcmp(buf, "STA-FIRST") == 0) {
  430. reply_len = hostapd_ctrl_iface_sta_first(hapd, reply,
  431. reply_size);
  432. } else if (os_strncmp(buf, "STA ", 4) == 0) {
  433. reply_len = hostapd_ctrl_iface_sta(hapd, buf + 4, reply,
  434. reply_size);
  435. } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
  436. reply_len = hostapd_ctrl_iface_sta_next(hapd, buf + 9, reply,
  437. reply_size);
  438. } else if (os_strcmp(buf, "ATTACH") == 0) {
  439. if (hostapd_ctrl_iface_attach(hapd, &from, fromlen))
  440. reply_len = -1;
  441. } else if (os_strcmp(buf, "DETACH") == 0) {
  442. if (hostapd_ctrl_iface_detach(hapd, &from, fromlen))
  443. reply_len = -1;
  444. } else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
  445. if (hostapd_ctrl_iface_level(hapd, &from, fromlen,
  446. buf + 6))
  447. reply_len = -1;
  448. } else if (os_strncmp(buf, "NEW_STA ", 8) == 0) {
  449. if (hostapd_ctrl_iface_new_sta(hapd, buf + 8))
  450. reply_len = -1;
  451. } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
  452. if (hostapd_ctrl_iface_deauthenticate(hapd, buf + 15))
  453. reply_len = -1;
  454. } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
  455. if (hostapd_ctrl_iface_disassociate(hapd, buf + 13))
  456. reply_len = -1;
  457. #ifdef CONFIG_IEEE80211W
  458. #ifdef NEED_AP_MLME
  459. } else if (os_strncmp(buf, "SA_QUERY ", 9) == 0) {
  460. if (hostapd_ctrl_iface_sa_query(hapd, buf + 9))
  461. reply_len = -1;
  462. #endif /* NEED_AP_MLME */
  463. #endif /* CONFIG_IEEE80211W */
  464. #ifdef CONFIG_WPS
  465. } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
  466. if (hostapd_ctrl_iface_wps_pin(hapd, buf + 8))
  467. reply_len = -1;
  468. } else if (os_strcmp(buf, "WPS_PBC") == 0) {
  469. if (hostapd_wps_button_pushed(hapd))
  470. reply_len = -1;
  471. #ifdef CONFIG_WPS_OOB
  472. } else if (os_strncmp(buf, "WPS_OOB ", 8) == 0) {
  473. if (hostapd_ctrl_iface_wps_oob(hapd, buf + 8))
  474. reply_len = -1;
  475. #endif /* CONFIG_WPS_OOB */
  476. } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
  477. reply_len = hostapd_ctrl_iface_wps_ap_pin(hapd, buf + 11,
  478. reply, reply_size);
  479. #endif /* CONFIG_WPS */
  480. } else {
  481. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  482. reply_len = 16;
  483. }
  484. if (reply_len < 0) {
  485. os_memcpy(reply, "FAIL\n", 5);
  486. reply_len = 5;
  487. }
  488. sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from, fromlen);
  489. os_free(reply);
  490. }
  491. static char * hostapd_ctrl_iface_path(struct hostapd_data *hapd)
  492. {
  493. char *buf;
  494. size_t len;
  495. if (hapd->conf->ctrl_interface == NULL)
  496. return NULL;
  497. len = os_strlen(hapd->conf->ctrl_interface) +
  498. os_strlen(hapd->conf->iface) + 2;
  499. buf = os_malloc(len);
  500. if (buf == NULL)
  501. return NULL;
  502. os_snprintf(buf, len, "%s/%s",
  503. hapd->conf->ctrl_interface, hapd->conf->iface);
  504. buf[len - 1] = '\0';
  505. return buf;
  506. }
  507. static void hostapd_ctrl_iface_msg_cb(void *ctx, int level,
  508. const char *txt, size_t len)
  509. {
  510. struct hostapd_data *hapd = ctx;
  511. if (hapd == NULL)
  512. return;
  513. hostapd_ctrl_iface_send(hapd, level, txt, len);
  514. }
  515. int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
  516. {
  517. struct sockaddr_un addr;
  518. int s = -1;
  519. char *fname = NULL;
  520. hapd->ctrl_sock = -1;
  521. if (hapd->conf->ctrl_interface == NULL)
  522. return 0;
  523. if (mkdir(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
  524. if (errno == EEXIST) {
  525. wpa_printf(MSG_DEBUG, "Using existing control "
  526. "interface directory.");
  527. } else {
  528. perror("mkdir[ctrl_interface]");
  529. goto fail;
  530. }
  531. }
  532. if (hapd->conf->ctrl_interface_gid_set &&
  533. chown(hapd->conf->ctrl_interface, 0,
  534. hapd->conf->ctrl_interface_gid) < 0) {
  535. perror("chown[ctrl_interface]");
  536. return -1;
  537. }
  538. if (os_strlen(hapd->conf->ctrl_interface) + 1 +
  539. os_strlen(hapd->conf->iface) >= sizeof(addr.sun_path))
  540. goto fail;
  541. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  542. if (s < 0) {
  543. perror("socket(PF_UNIX)");
  544. goto fail;
  545. }
  546. os_memset(&addr, 0, sizeof(addr));
  547. #ifdef __FreeBSD__
  548. addr.sun_len = sizeof(addr);
  549. #endif /* __FreeBSD__ */
  550. addr.sun_family = AF_UNIX;
  551. fname = hostapd_ctrl_iface_path(hapd);
  552. if (fname == NULL)
  553. goto fail;
  554. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  555. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  556. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  557. strerror(errno));
  558. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  559. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  560. " allow connections - assuming it was left"
  561. "over from forced program termination");
  562. if (unlink(fname) < 0) {
  563. perror("unlink[ctrl_iface]");
  564. wpa_printf(MSG_ERROR, "Could not unlink "
  565. "existing ctrl_iface socket '%s'",
  566. fname);
  567. goto fail;
  568. }
  569. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
  570. 0) {
  571. perror("bind(PF_UNIX)");
  572. goto fail;
  573. }
  574. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  575. "ctrl_iface socket '%s'", fname);
  576. } else {
  577. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  578. "be in use - cannot override it");
  579. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  580. "not used anymore", fname);
  581. os_free(fname);
  582. fname = NULL;
  583. goto fail;
  584. }
  585. }
  586. if (hapd->conf->ctrl_interface_gid_set &&
  587. chown(fname, 0, hapd->conf->ctrl_interface_gid) < 0) {
  588. perror("chown[ctrl_interface/ifname]");
  589. goto fail;
  590. }
  591. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  592. perror("chmod[ctrl_interface/ifname]");
  593. goto fail;
  594. }
  595. os_free(fname);
  596. hapd->ctrl_sock = s;
  597. eloop_register_read_sock(s, hostapd_ctrl_iface_receive, hapd,
  598. NULL);
  599. hapd->msg_ctx = hapd;
  600. wpa_msg_register_cb(hostapd_ctrl_iface_msg_cb);
  601. return 0;
  602. fail:
  603. if (s >= 0)
  604. close(s);
  605. if (fname) {
  606. unlink(fname);
  607. os_free(fname);
  608. }
  609. return -1;
  610. }
  611. void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd)
  612. {
  613. struct wpa_ctrl_dst *dst, *prev;
  614. if (hapd->ctrl_sock > -1) {
  615. char *fname;
  616. eloop_unregister_read_sock(hapd->ctrl_sock);
  617. close(hapd->ctrl_sock);
  618. hapd->ctrl_sock = -1;
  619. fname = hostapd_ctrl_iface_path(hapd);
  620. if (fname)
  621. unlink(fname);
  622. os_free(fname);
  623. if (hapd->conf->ctrl_interface &&
  624. rmdir(hapd->conf->ctrl_interface) < 0) {
  625. if (errno == ENOTEMPTY) {
  626. wpa_printf(MSG_DEBUG, "Control interface "
  627. "directory not empty - leaving it "
  628. "behind");
  629. } else {
  630. perror("rmdir[ctrl_interface]");
  631. }
  632. }
  633. }
  634. dst = hapd->ctrl_dst;
  635. while (dst) {
  636. prev = dst;
  637. dst = dst->next;
  638. os_free(prev);
  639. }
  640. }
  641. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  642. const char *buf, size_t len)
  643. {
  644. struct wpa_ctrl_dst *dst, *next;
  645. struct msghdr msg;
  646. int idx;
  647. struct iovec io[2];
  648. char levelstr[10];
  649. dst = hapd->ctrl_dst;
  650. if (hapd->ctrl_sock < 0 || dst == NULL)
  651. return;
  652. os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
  653. io[0].iov_base = levelstr;
  654. io[0].iov_len = os_strlen(levelstr);
  655. io[1].iov_base = (char *) buf;
  656. io[1].iov_len = len;
  657. os_memset(&msg, 0, sizeof(msg));
  658. msg.msg_iov = io;
  659. msg.msg_iovlen = 2;
  660. idx = 0;
  661. while (dst) {
  662. next = dst->next;
  663. if (level >= dst->debug_level) {
  664. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor send",
  665. (u8 *) dst->addr.sun_path, dst->addrlen -
  666. offsetof(struct sockaddr_un, sun_path));
  667. msg.msg_name = &dst->addr;
  668. msg.msg_namelen = dst->addrlen;
  669. if (sendmsg(hapd->ctrl_sock, &msg, 0) < 0) {
  670. int _errno = errno;
  671. wpa_printf(MSG_INFO, "CTRL_IFACE monitor[%d]: "
  672. "%d - %s",
  673. idx, errno, strerror(errno));
  674. dst->errors++;
  675. if (dst->errors > 10 || _errno == ENOENT) {
  676. hostapd_ctrl_iface_detach(
  677. hapd, &dst->addr,
  678. dst->addrlen);
  679. }
  680. } else
  681. dst->errors = 0;
  682. }
  683. idx++;
  684. dst = next;
  685. }
  686. }
  687. #endif /* CONFIG_NATIVE_WINDOWS */