ctrl_iface.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896
  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 "wps/wps_defs.h"
  34. #include "wps/wps.h"
  35. #include "ctrl_iface.h"
  36. struct wpa_ctrl_dst {
  37. struct wpa_ctrl_dst *next;
  38. struct sockaddr_un addr;
  39. socklen_t addrlen;
  40. int debug_level;
  41. int errors;
  42. };
  43. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  44. const char *buf, size_t len);
  45. static int hostapd_ctrl_iface_attach(struct hostapd_data *hapd,
  46. struct sockaddr_un *from,
  47. socklen_t fromlen)
  48. {
  49. struct wpa_ctrl_dst *dst;
  50. dst = os_zalloc(sizeof(*dst));
  51. if (dst == NULL)
  52. return -1;
  53. os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un));
  54. dst->addrlen = fromlen;
  55. dst->debug_level = MSG_INFO;
  56. dst->next = hapd->ctrl_dst;
  57. hapd->ctrl_dst = dst;
  58. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor attached",
  59. (u8 *) from->sun_path,
  60. fromlen - offsetof(struct sockaddr_un, sun_path));
  61. return 0;
  62. }
  63. static int hostapd_ctrl_iface_detach(struct hostapd_data *hapd,
  64. struct sockaddr_un *from,
  65. socklen_t fromlen)
  66. {
  67. struct wpa_ctrl_dst *dst, *prev = NULL;
  68. dst = hapd->ctrl_dst;
  69. while (dst) {
  70. if (fromlen == dst->addrlen &&
  71. os_memcmp(from->sun_path, dst->addr.sun_path,
  72. fromlen - offsetof(struct sockaddr_un, sun_path))
  73. == 0) {
  74. if (prev == NULL)
  75. hapd->ctrl_dst = dst->next;
  76. else
  77. prev->next = dst->next;
  78. os_free(dst);
  79. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor detached",
  80. (u8 *) from->sun_path,
  81. fromlen -
  82. offsetof(struct sockaddr_un, sun_path));
  83. return 0;
  84. }
  85. prev = dst;
  86. dst = dst->next;
  87. }
  88. return -1;
  89. }
  90. static int hostapd_ctrl_iface_level(struct hostapd_data *hapd,
  91. struct sockaddr_un *from,
  92. socklen_t fromlen,
  93. char *level)
  94. {
  95. struct wpa_ctrl_dst *dst;
  96. wpa_printf(MSG_DEBUG, "CTRL_IFACE LEVEL %s", level);
  97. dst = hapd->ctrl_dst;
  98. while (dst) {
  99. if (fromlen == dst->addrlen &&
  100. os_memcmp(from->sun_path, dst->addr.sun_path,
  101. fromlen - offsetof(struct sockaddr_un, sun_path))
  102. == 0) {
  103. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE changed monitor "
  104. "level", (u8 *) from->sun_path, fromlen -
  105. offsetof(struct sockaddr_un, sun_path));
  106. dst->debug_level = atoi(level);
  107. return 0;
  108. }
  109. dst = dst->next;
  110. }
  111. return -1;
  112. }
  113. static int hostapd_ctrl_iface_new_sta(struct hostapd_data *hapd,
  114. const char *txtaddr)
  115. {
  116. u8 addr[ETH_ALEN];
  117. struct sta_info *sta;
  118. wpa_printf(MSG_DEBUG, "CTRL_IFACE NEW_STA %s", txtaddr);
  119. if (hwaddr_aton(txtaddr, addr))
  120. return -1;
  121. sta = ap_get_sta(hapd, addr);
  122. if (sta)
  123. return 0;
  124. wpa_printf(MSG_DEBUG, "Add new STA " MACSTR " based on ctrl_iface "
  125. "notification", MAC2STR(addr));
  126. sta = ap_sta_add(hapd, addr);
  127. if (sta == NULL)
  128. return -1;
  129. hostapd_new_assoc_sta(hapd, sta, 0);
  130. return 0;
  131. }
  132. #ifdef CONFIG_P2P_MANAGER
  133. static int p2p_manager_disconnect(struct hostapd_data *hapd, u16 stype,
  134. u8 minor_reason_code, const u8 *addr)
  135. {
  136. struct ieee80211_mgmt *mgmt;
  137. int ret;
  138. u8 *pos;
  139. if (hapd->driver->send_frame == NULL)
  140. return -1;
  141. mgmt = os_zalloc(sizeof(*mgmt) + 100);
  142. if (mgmt == NULL)
  143. return -1;
  144. wpa_printf(MSG_DEBUG, "P2P: Disconnect STA " MACSTR " with minor "
  145. "reason code %u (stype=%u)",
  146. MAC2STR(addr), minor_reason_code, stype);
  147. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT, stype);
  148. os_memcpy(mgmt->da, addr, ETH_ALEN);
  149. os_memcpy(mgmt->sa, hapd->own_addr, ETH_ALEN);
  150. os_memcpy(mgmt->bssid, hapd->own_addr, ETH_ALEN);
  151. if (stype == WLAN_FC_STYPE_DEAUTH) {
  152. mgmt->u.deauth.reason_code =
  153. host_to_le16(WLAN_REASON_PREV_AUTH_NOT_VALID);
  154. pos = (u8 *) (&mgmt->u.deauth.reason_code + 1);
  155. } else {
  156. mgmt->u.disassoc.reason_code =
  157. host_to_le16(WLAN_REASON_PREV_AUTH_NOT_VALID);
  158. pos = (u8 *) (&mgmt->u.disassoc.reason_code + 1);
  159. }
  160. *pos++ = WLAN_EID_VENDOR_SPECIFIC;
  161. *pos++ = 4 + 3 + 1;
  162. WPA_PUT_BE24(pos, OUI_WFA);
  163. pos += 3;
  164. *pos++ = P2P_OUI_TYPE;
  165. *pos++ = P2P_ATTR_MINOR_REASON_CODE;
  166. WPA_PUT_LE16(pos, 1);
  167. pos += 2;
  168. *pos++ = minor_reason_code;
  169. ret = hapd->driver->send_frame(hapd->drv_priv, (u8 *) mgmt,
  170. pos - (u8 *) mgmt, 1);
  171. os_free(mgmt);
  172. return ret < 0 ? -1 : 0;
  173. }
  174. #endif /* CONFIG_P2P_MANAGER */
  175. static int hostapd_ctrl_iface_deauthenticate(struct hostapd_data *hapd,
  176. const char *txtaddr)
  177. {
  178. u8 addr[ETH_ALEN];
  179. struct sta_info *sta;
  180. const char *pos;
  181. wpa_printf(MSG_DEBUG, "CTRL_IFACE DEAUTHENTICATE %s", txtaddr);
  182. if (hwaddr_aton(txtaddr, addr))
  183. return -1;
  184. pos = os_strstr(txtaddr, " test=");
  185. if (pos) {
  186. struct ieee80211_mgmt mgmt;
  187. int encrypt;
  188. if (hapd->driver->send_frame == NULL)
  189. return -1;
  190. pos += 6;
  191. encrypt = atoi(pos);
  192. os_memset(&mgmt, 0, sizeof(mgmt));
  193. mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  194. WLAN_FC_STYPE_DEAUTH);
  195. os_memcpy(mgmt.da, addr, ETH_ALEN);
  196. os_memcpy(mgmt.sa, hapd->own_addr, ETH_ALEN);
  197. os_memcpy(mgmt.bssid, hapd->own_addr, ETH_ALEN);
  198. mgmt.u.deauth.reason_code =
  199. host_to_le16(WLAN_REASON_PREV_AUTH_NOT_VALID);
  200. if (hapd->driver->send_frame(hapd->drv_priv, (u8 *) &mgmt,
  201. IEEE80211_HDRLEN +
  202. sizeof(mgmt.u.deauth),
  203. encrypt) < 0)
  204. return -1;
  205. return 0;
  206. }
  207. #ifdef CONFIG_P2P_MANAGER
  208. pos = os_strstr(txtaddr, " p2p=");
  209. if (pos) {
  210. return p2p_manager_disconnect(hapd, WLAN_FC_STYPE_DEAUTH,
  211. atoi(pos + 5), addr);
  212. }
  213. #endif /* CONFIG_P2P_MANAGER */
  214. hapd->drv.sta_deauth(hapd, addr, WLAN_REASON_PREV_AUTH_NOT_VALID);
  215. sta = ap_get_sta(hapd, addr);
  216. if (sta)
  217. ap_sta_deauthenticate(hapd, sta,
  218. WLAN_REASON_PREV_AUTH_NOT_VALID);
  219. return 0;
  220. }
  221. static int hostapd_ctrl_iface_disassociate(struct hostapd_data *hapd,
  222. const char *txtaddr)
  223. {
  224. u8 addr[ETH_ALEN];
  225. struct sta_info *sta;
  226. const char *pos;
  227. wpa_printf(MSG_DEBUG, "CTRL_IFACE DISASSOCIATE %s", txtaddr);
  228. if (hwaddr_aton(txtaddr, addr))
  229. return -1;
  230. pos = os_strstr(txtaddr, " test=");
  231. if (pos) {
  232. struct ieee80211_mgmt mgmt;
  233. int encrypt;
  234. if (hapd->driver->send_frame == NULL)
  235. return -1;
  236. pos += 6;
  237. encrypt = atoi(pos);
  238. os_memset(&mgmt, 0, sizeof(mgmt));
  239. mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  240. WLAN_FC_STYPE_DISASSOC);
  241. os_memcpy(mgmt.da, addr, ETH_ALEN);
  242. os_memcpy(mgmt.sa, hapd->own_addr, ETH_ALEN);
  243. os_memcpy(mgmt.bssid, hapd->own_addr, ETH_ALEN);
  244. mgmt.u.disassoc.reason_code =
  245. host_to_le16(WLAN_REASON_PREV_AUTH_NOT_VALID);
  246. if (hapd->driver->send_frame(hapd->drv_priv, (u8 *) &mgmt,
  247. IEEE80211_HDRLEN +
  248. sizeof(mgmt.u.deauth),
  249. encrypt) < 0)
  250. return -1;
  251. return 0;
  252. }
  253. #ifdef CONFIG_P2P_MANAGER
  254. pos = os_strstr(txtaddr, " p2p=");
  255. if (pos) {
  256. return p2p_manager_disconnect(hapd, WLAN_FC_STYPE_DISASSOC,
  257. atoi(pos + 5), addr);
  258. }
  259. #endif /* CONFIG_P2P_MANAGER */
  260. hapd->drv.sta_disassoc(hapd, addr, WLAN_REASON_PREV_AUTH_NOT_VALID);
  261. sta = ap_get_sta(hapd, addr);
  262. if (sta)
  263. ap_sta_disassociate(hapd, sta,
  264. WLAN_REASON_PREV_AUTH_NOT_VALID);
  265. return 0;
  266. }
  267. #ifdef CONFIG_IEEE80211W
  268. #ifdef NEED_AP_MLME
  269. static int hostapd_ctrl_iface_sa_query(struct hostapd_data *hapd,
  270. const char *txtaddr)
  271. {
  272. u8 addr[ETH_ALEN];
  273. u8 trans_id[WLAN_SA_QUERY_TR_ID_LEN];
  274. wpa_printf(MSG_DEBUG, "CTRL_IFACE SA_QUERY %s", txtaddr);
  275. if (hwaddr_aton(txtaddr, addr) ||
  276. os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN) < 0)
  277. return -1;
  278. ieee802_11_send_sa_query_req(hapd, addr, trans_id);
  279. return 0;
  280. }
  281. #endif /* NEED_AP_MLME */
  282. #endif /* CONFIG_IEEE80211W */
  283. #ifdef CONFIG_WPS
  284. static int hostapd_ctrl_iface_wps_pin(struct hostapd_data *hapd, char *txt)
  285. {
  286. char *pin = os_strchr(txt, ' ');
  287. char *timeout_txt;
  288. int timeout;
  289. u8 addr_buf[ETH_ALEN], *addr = NULL;
  290. char *pos;
  291. if (pin == NULL)
  292. return -1;
  293. *pin++ = '\0';
  294. timeout_txt = os_strchr(pin, ' ');
  295. if (timeout_txt) {
  296. *timeout_txt++ = '\0';
  297. timeout = atoi(timeout_txt);
  298. pos = os_strchr(timeout_txt, ' ');
  299. if (pos) {
  300. *pos++ = '\0';
  301. if (hwaddr_aton(pos, addr_buf) == 0)
  302. addr = addr_buf;
  303. }
  304. } else
  305. timeout = 0;
  306. return hostapd_wps_add_pin(hapd, addr, txt, pin, timeout);
  307. }
  308. static int hostapd_ctrl_iface_wps_check_pin(
  309. struct hostapd_data *hapd, char *cmd, char *buf, size_t buflen)
  310. {
  311. char pin[9];
  312. size_t len;
  313. char *pos;
  314. int ret;
  315. wpa_hexdump_ascii_key(MSG_DEBUG, "WPS_CHECK_PIN",
  316. (u8 *) cmd, os_strlen(cmd));
  317. for (pos = cmd, len = 0; *pos != '\0'; pos++) {
  318. if (*pos < '0' || *pos > '9')
  319. continue;
  320. pin[len++] = *pos;
  321. if (len == 9) {
  322. wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
  323. return -1;
  324. }
  325. }
  326. if (len != 4 && len != 8) {
  327. wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
  328. return -1;
  329. }
  330. pin[len] = '\0';
  331. if (len == 8) {
  332. unsigned int pin_val;
  333. pin_val = atoi(pin);
  334. if (!wps_pin_valid(pin_val)) {
  335. wpa_printf(MSG_DEBUG, "WPS: Invalid checksum digit");
  336. ret = os_snprintf(buf, buflen, "FAIL-CHECKSUM\n");
  337. if (ret < 0 || (size_t) ret >= buflen)
  338. return -1;
  339. return ret;
  340. }
  341. }
  342. ret = os_snprintf(buf, buflen, "%s", pin);
  343. if (ret < 0 || (size_t) ret >= buflen)
  344. return -1;
  345. return ret;
  346. }
  347. #ifdef CONFIG_WPS_OOB
  348. static int hostapd_ctrl_iface_wps_oob(struct hostapd_data *hapd, char *txt)
  349. {
  350. char *path, *method, *name;
  351. path = os_strchr(txt, ' ');
  352. if (path == NULL)
  353. return -1;
  354. *path++ = '\0';
  355. method = os_strchr(path, ' ');
  356. if (method == NULL)
  357. return -1;
  358. *method++ = '\0';
  359. name = os_strchr(method, ' ');
  360. if (name != NULL)
  361. *name++ = '\0';
  362. return hostapd_wps_start_oob(hapd, txt, path, method, name);
  363. }
  364. #endif /* CONFIG_WPS_OOB */
  365. static int hostapd_ctrl_iface_wps_ap_pin(struct hostapd_data *hapd, char *txt,
  366. char *buf, size_t buflen)
  367. {
  368. int timeout = 300;
  369. char *pos;
  370. const char *pin_txt;
  371. pos = os_strchr(txt, ' ');
  372. if (pos)
  373. *pos++ = '\0';
  374. if (os_strcmp(txt, "disable") == 0) {
  375. hostapd_wps_ap_pin_disable(hapd);
  376. return os_snprintf(buf, buflen, "OK\n");
  377. }
  378. if (os_strcmp(txt, "random") == 0) {
  379. if (pos)
  380. timeout = atoi(pos);
  381. pin_txt = hostapd_wps_ap_pin_random(hapd, timeout);
  382. if (pin_txt == NULL)
  383. return -1;
  384. return os_snprintf(buf, buflen, "%s", pin_txt);
  385. }
  386. if (os_strcmp(txt, "get") == 0) {
  387. pin_txt = hostapd_wps_ap_pin_get(hapd);
  388. if (pin_txt == NULL)
  389. return -1;
  390. return os_snprintf(buf, buflen, "%s", pin_txt);
  391. }
  392. if (os_strcmp(txt, "set") == 0) {
  393. char *pin;
  394. if (pos == NULL)
  395. return -1;
  396. pin = pos;
  397. pos = os_strchr(pos, ' ');
  398. if (pos) {
  399. *pos++ = '\0';
  400. timeout = atoi(pos);
  401. }
  402. if (os_strlen(pin) > buflen)
  403. return -1;
  404. if (hostapd_wps_ap_pin_set(hapd, pin, timeout) < 0)
  405. return -1;
  406. return os_snprintf(buf, buflen, "%s", pin);
  407. }
  408. return -1;
  409. }
  410. #endif /* CONFIG_WPS */
  411. static int hostapd_ctrl_iface_set(struct hostapd_data *wpa_s, char *cmd)
  412. {
  413. char *value;
  414. int ret = 0;
  415. value = os_strchr(cmd, ' ');
  416. if (value == NULL)
  417. return -1;
  418. *value++ = '\0';
  419. wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
  420. if (0) {
  421. #ifdef CONFIG_WPS_TESTING
  422. } else if (os_strcasecmp(cmd, "wps_version_number") == 0) {
  423. long int val;
  424. val = strtol(value, NULL, 0);
  425. if (val < 0 || val > 0xff) {
  426. ret = -1;
  427. wpa_printf(MSG_DEBUG, "WPS: Invalid "
  428. "wps_version_number %ld", val);
  429. } else {
  430. wps_version_number = val;
  431. wpa_printf(MSG_DEBUG, "WPS: Testing - force WPS "
  432. "version %u.%u",
  433. (wps_version_number & 0xf0) >> 4,
  434. wps_version_number & 0x0f);
  435. }
  436. } else if (os_strcasecmp(cmd, "wps_testing_dummy_cred") == 0) {
  437. wps_testing_dummy_cred = atoi(value);
  438. wpa_printf(MSG_DEBUG, "WPS: Testing - dummy_cred=%d",
  439. wps_testing_dummy_cred);
  440. #endif /* CONFIG_WPS_TESTING */
  441. } else {
  442. ret = -1;
  443. }
  444. return ret;
  445. }
  446. static void hostapd_ctrl_iface_receive(int sock, void *eloop_ctx,
  447. void *sock_ctx)
  448. {
  449. struct hostapd_data *hapd = eloop_ctx;
  450. char buf[256];
  451. int res;
  452. struct sockaddr_un from;
  453. socklen_t fromlen = sizeof(from);
  454. char *reply;
  455. const int reply_size = 4096;
  456. int reply_len;
  457. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  458. (struct sockaddr *) &from, &fromlen);
  459. if (res < 0) {
  460. perror("recvfrom(ctrl_iface)");
  461. return;
  462. }
  463. buf[res] = '\0';
  464. wpa_hexdump_ascii(MSG_DEBUG, "RX ctrl_iface", (u8 *) buf, res);
  465. reply = os_malloc(reply_size);
  466. if (reply == NULL) {
  467. sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
  468. fromlen);
  469. return;
  470. }
  471. os_memcpy(reply, "OK\n", 3);
  472. reply_len = 3;
  473. if (os_strcmp(buf, "PING") == 0) {
  474. os_memcpy(reply, "PONG\n", 5);
  475. reply_len = 5;
  476. } else if (os_strcmp(buf, "MIB") == 0) {
  477. reply_len = ieee802_11_get_mib(hapd, reply, reply_size);
  478. if (reply_len >= 0) {
  479. res = wpa_get_mib(hapd->wpa_auth, reply + reply_len,
  480. reply_size - reply_len);
  481. if (res < 0)
  482. reply_len = -1;
  483. else
  484. reply_len += res;
  485. }
  486. if (reply_len >= 0) {
  487. res = ieee802_1x_get_mib(hapd, reply + reply_len,
  488. reply_size - reply_len);
  489. if (res < 0)
  490. reply_len = -1;
  491. else
  492. reply_len += res;
  493. }
  494. #ifndef CONFIG_NO_RADIUS
  495. if (reply_len >= 0) {
  496. res = radius_client_get_mib(hapd->radius,
  497. reply + reply_len,
  498. reply_size - reply_len);
  499. if (res < 0)
  500. reply_len = -1;
  501. else
  502. reply_len += res;
  503. }
  504. #endif /* CONFIG_NO_RADIUS */
  505. } else if (os_strcmp(buf, "STA-FIRST") == 0) {
  506. reply_len = hostapd_ctrl_iface_sta_first(hapd, reply,
  507. reply_size);
  508. } else if (os_strncmp(buf, "STA ", 4) == 0) {
  509. reply_len = hostapd_ctrl_iface_sta(hapd, buf + 4, reply,
  510. reply_size);
  511. } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
  512. reply_len = hostapd_ctrl_iface_sta_next(hapd, buf + 9, reply,
  513. reply_size);
  514. } else if (os_strcmp(buf, "ATTACH") == 0) {
  515. if (hostapd_ctrl_iface_attach(hapd, &from, fromlen))
  516. reply_len = -1;
  517. } else if (os_strcmp(buf, "DETACH") == 0) {
  518. if (hostapd_ctrl_iface_detach(hapd, &from, fromlen))
  519. reply_len = -1;
  520. } else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
  521. if (hostapd_ctrl_iface_level(hapd, &from, fromlen,
  522. buf + 6))
  523. reply_len = -1;
  524. } else if (os_strncmp(buf, "NEW_STA ", 8) == 0) {
  525. if (hostapd_ctrl_iface_new_sta(hapd, buf + 8))
  526. reply_len = -1;
  527. } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
  528. if (hostapd_ctrl_iface_deauthenticate(hapd, buf + 15))
  529. reply_len = -1;
  530. } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
  531. if (hostapd_ctrl_iface_disassociate(hapd, buf + 13))
  532. reply_len = -1;
  533. #ifdef CONFIG_IEEE80211W
  534. #ifdef NEED_AP_MLME
  535. } else if (os_strncmp(buf, "SA_QUERY ", 9) == 0) {
  536. if (hostapd_ctrl_iface_sa_query(hapd, buf + 9))
  537. reply_len = -1;
  538. #endif /* NEED_AP_MLME */
  539. #endif /* CONFIG_IEEE80211W */
  540. #ifdef CONFIG_WPS
  541. } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
  542. if (hostapd_ctrl_iface_wps_pin(hapd, buf + 8))
  543. reply_len = -1;
  544. } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
  545. reply_len = hostapd_ctrl_iface_wps_check_pin(
  546. hapd, buf + 14, reply, reply_size);
  547. } else if (os_strcmp(buf, "WPS_PBC") == 0) {
  548. if (hostapd_wps_button_pushed(hapd))
  549. reply_len = -1;
  550. #ifdef CONFIG_WPS_OOB
  551. } else if (os_strncmp(buf, "WPS_OOB ", 8) == 0) {
  552. if (hostapd_ctrl_iface_wps_oob(hapd, buf + 8))
  553. reply_len = -1;
  554. #endif /* CONFIG_WPS_OOB */
  555. } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
  556. reply_len = hostapd_ctrl_iface_wps_ap_pin(hapd, buf + 11,
  557. reply, reply_size);
  558. #endif /* CONFIG_WPS */
  559. } else if (os_strncmp(buf, "SET ", 4) == 0) {
  560. if (hostapd_ctrl_iface_set(hapd, buf + 4))
  561. reply_len = -1;
  562. } else {
  563. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  564. reply_len = 16;
  565. }
  566. if (reply_len < 0) {
  567. os_memcpy(reply, "FAIL\n", 5);
  568. reply_len = 5;
  569. }
  570. sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from, fromlen);
  571. os_free(reply);
  572. }
  573. static char * hostapd_ctrl_iface_path(struct hostapd_data *hapd)
  574. {
  575. char *buf;
  576. size_t len;
  577. if (hapd->conf->ctrl_interface == NULL)
  578. return NULL;
  579. len = os_strlen(hapd->conf->ctrl_interface) +
  580. os_strlen(hapd->conf->iface) + 2;
  581. buf = os_malloc(len);
  582. if (buf == NULL)
  583. return NULL;
  584. os_snprintf(buf, len, "%s/%s",
  585. hapd->conf->ctrl_interface, hapd->conf->iface);
  586. buf[len - 1] = '\0';
  587. return buf;
  588. }
  589. static void hostapd_ctrl_iface_msg_cb(void *ctx, int level,
  590. const char *txt, size_t len)
  591. {
  592. struct hostapd_data *hapd = ctx;
  593. if (hapd == NULL)
  594. return;
  595. hostapd_ctrl_iface_send(hapd, level, txt, len);
  596. }
  597. int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
  598. {
  599. struct sockaddr_un addr;
  600. int s = -1;
  601. char *fname = NULL;
  602. hapd->ctrl_sock = -1;
  603. if (hapd->conf->ctrl_interface == NULL)
  604. return 0;
  605. if (mkdir(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
  606. if (errno == EEXIST) {
  607. wpa_printf(MSG_DEBUG, "Using existing control "
  608. "interface directory.");
  609. } else {
  610. perror("mkdir[ctrl_interface]");
  611. goto fail;
  612. }
  613. }
  614. if (hapd->conf->ctrl_interface_gid_set &&
  615. chown(hapd->conf->ctrl_interface, 0,
  616. hapd->conf->ctrl_interface_gid) < 0) {
  617. perror("chown[ctrl_interface]");
  618. return -1;
  619. }
  620. if (os_strlen(hapd->conf->ctrl_interface) + 1 +
  621. os_strlen(hapd->conf->iface) >= sizeof(addr.sun_path))
  622. goto fail;
  623. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  624. if (s < 0) {
  625. perror("socket(PF_UNIX)");
  626. goto fail;
  627. }
  628. os_memset(&addr, 0, sizeof(addr));
  629. #ifdef __FreeBSD__
  630. addr.sun_len = sizeof(addr);
  631. #endif /* __FreeBSD__ */
  632. addr.sun_family = AF_UNIX;
  633. fname = hostapd_ctrl_iface_path(hapd);
  634. if (fname == NULL)
  635. goto fail;
  636. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  637. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  638. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  639. strerror(errno));
  640. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  641. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  642. " allow connections - assuming it was left"
  643. "over from forced program termination");
  644. if (unlink(fname) < 0) {
  645. perror("unlink[ctrl_iface]");
  646. wpa_printf(MSG_ERROR, "Could not unlink "
  647. "existing ctrl_iface socket '%s'",
  648. fname);
  649. goto fail;
  650. }
  651. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
  652. 0) {
  653. perror("bind(PF_UNIX)");
  654. goto fail;
  655. }
  656. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  657. "ctrl_iface socket '%s'", fname);
  658. } else {
  659. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  660. "be in use - cannot override it");
  661. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  662. "not used anymore", fname);
  663. os_free(fname);
  664. fname = NULL;
  665. goto fail;
  666. }
  667. }
  668. if (hapd->conf->ctrl_interface_gid_set &&
  669. chown(fname, 0, hapd->conf->ctrl_interface_gid) < 0) {
  670. perror("chown[ctrl_interface/ifname]");
  671. goto fail;
  672. }
  673. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  674. perror("chmod[ctrl_interface/ifname]");
  675. goto fail;
  676. }
  677. os_free(fname);
  678. hapd->ctrl_sock = s;
  679. eloop_register_read_sock(s, hostapd_ctrl_iface_receive, hapd,
  680. NULL);
  681. hapd->msg_ctx = hapd;
  682. wpa_msg_register_cb(hostapd_ctrl_iface_msg_cb);
  683. return 0;
  684. fail:
  685. if (s >= 0)
  686. close(s);
  687. if (fname) {
  688. unlink(fname);
  689. os_free(fname);
  690. }
  691. return -1;
  692. }
  693. void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd)
  694. {
  695. struct wpa_ctrl_dst *dst, *prev;
  696. if (hapd->ctrl_sock > -1) {
  697. char *fname;
  698. eloop_unregister_read_sock(hapd->ctrl_sock);
  699. close(hapd->ctrl_sock);
  700. hapd->ctrl_sock = -1;
  701. fname = hostapd_ctrl_iface_path(hapd);
  702. if (fname)
  703. unlink(fname);
  704. os_free(fname);
  705. if (hapd->conf->ctrl_interface &&
  706. rmdir(hapd->conf->ctrl_interface) < 0) {
  707. if (errno == ENOTEMPTY) {
  708. wpa_printf(MSG_DEBUG, "Control interface "
  709. "directory not empty - leaving it "
  710. "behind");
  711. } else {
  712. perror("rmdir[ctrl_interface]");
  713. }
  714. }
  715. }
  716. dst = hapd->ctrl_dst;
  717. while (dst) {
  718. prev = dst;
  719. dst = dst->next;
  720. os_free(prev);
  721. }
  722. }
  723. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  724. const char *buf, size_t len)
  725. {
  726. struct wpa_ctrl_dst *dst, *next;
  727. struct msghdr msg;
  728. int idx;
  729. struct iovec io[2];
  730. char levelstr[10];
  731. dst = hapd->ctrl_dst;
  732. if (hapd->ctrl_sock < 0 || dst == NULL)
  733. return;
  734. os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
  735. io[0].iov_base = levelstr;
  736. io[0].iov_len = os_strlen(levelstr);
  737. io[1].iov_base = (char *) buf;
  738. io[1].iov_len = len;
  739. os_memset(&msg, 0, sizeof(msg));
  740. msg.msg_iov = io;
  741. msg.msg_iovlen = 2;
  742. idx = 0;
  743. while (dst) {
  744. next = dst->next;
  745. if (level >= dst->debug_level) {
  746. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor send",
  747. (u8 *) dst->addr.sun_path, dst->addrlen -
  748. offsetof(struct sockaddr_un, sun_path));
  749. msg.msg_name = &dst->addr;
  750. msg.msg_namelen = dst->addrlen;
  751. if (sendmsg(hapd->ctrl_sock, &msg, 0) < 0) {
  752. int _errno = errno;
  753. wpa_printf(MSG_INFO, "CTRL_IFACE monitor[%d]: "
  754. "%d - %s",
  755. idx, errno, strerror(errno));
  756. dst->errors++;
  757. if (dst->errors > 10 || _errno == ENOENT) {
  758. hostapd_ctrl_iface_detach(
  759. hapd, &dst->addr,
  760. dst->addrlen);
  761. }
  762. } else
  763. dst->errors = 0;
  764. }
  765. idx++;
  766. dst = next;
  767. }
  768. }
  769. #endif /* CONFIG_NATIVE_WINDOWS */