ctrl_iface.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062
  1. /*
  2. * hostapd / UNIX domain socket -based control interface
  3. * Copyright (c) 2004-2012, 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 "wps/wps_defs.h"
  29. #include "wps/wps.h"
  30. #include "config_file.h"
  31. #include "ctrl_iface.h"
  32. struct wpa_ctrl_dst {
  33. struct wpa_ctrl_dst *next;
  34. struct sockaddr_un addr;
  35. socklen_t addrlen;
  36. int debug_level;
  37. int errors;
  38. };
  39. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  40. const char *buf, size_t len);
  41. static int hostapd_ctrl_iface_attach(struct hostapd_data *hapd,
  42. struct sockaddr_un *from,
  43. socklen_t fromlen)
  44. {
  45. struct wpa_ctrl_dst *dst;
  46. dst = os_zalloc(sizeof(*dst));
  47. if (dst == NULL)
  48. return -1;
  49. os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un));
  50. dst->addrlen = fromlen;
  51. dst->debug_level = MSG_INFO;
  52. dst->next = hapd->ctrl_dst;
  53. hapd->ctrl_dst = dst;
  54. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor attached",
  55. (u8 *) from->sun_path,
  56. fromlen - offsetof(struct sockaddr_un, sun_path));
  57. return 0;
  58. }
  59. static int hostapd_ctrl_iface_detach(struct hostapd_data *hapd,
  60. struct sockaddr_un *from,
  61. socklen_t fromlen)
  62. {
  63. struct wpa_ctrl_dst *dst, *prev = NULL;
  64. dst = hapd->ctrl_dst;
  65. while (dst) {
  66. if (fromlen == dst->addrlen &&
  67. os_memcmp(from->sun_path, dst->addr.sun_path,
  68. fromlen - offsetof(struct sockaddr_un, sun_path))
  69. == 0) {
  70. if (prev == NULL)
  71. hapd->ctrl_dst = dst->next;
  72. else
  73. prev->next = dst->next;
  74. os_free(dst);
  75. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor detached",
  76. (u8 *) from->sun_path,
  77. fromlen -
  78. offsetof(struct sockaddr_un, sun_path));
  79. return 0;
  80. }
  81. prev = dst;
  82. dst = dst->next;
  83. }
  84. return -1;
  85. }
  86. static int hostapd_ctrl_iface_level(struct hostapd_data *hapd,
  87. struct sockaddr_un *from,
  88. socklen_t fromlen,
  89. char *level)
  90. {
  91. struct wpa_ctrl_dst *dst;
  92. wpa_printf(MSG_DEBUG, "CTRL_IFACE LEVEL %s", level);
  93. dst = hapd->ctrl_dst;
  94. while (dst) {
  95. if (fromlen == dst->addrlen &&
  96. os_memcmp(from->sun_path, dst->addr.sun_path,
  97. fromlen - offsetof(struct sockaddr_un, sun_path))
  98. == 0) {
  99. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE changed monitor "
  100. "level", (u8 *) from->sun_path, fromlen -
  101. offsetof(struct sockaddr_un, sun_path));
  102. dst->debug_level = atoi(level);
  103. return 0;
  104. }
  105. dst = dst->next;
  106. }
  107. return -1;
  108. }
  109. static int hostapd_ctrl_iface_new_sta(struct hostapd_data *hapd,
  110. const char *txtaddr)
  111. {
  112. u8 addr[ETH_ALEN];
  113. struct sta_info *sta;
  114. wpa_printf(MSG_DEBUG, "CTRL_IFACE NEW_STA %s", txtaddr);
  115. if (hwaddr_aton(txtaddr, addr))
  116. return -1;
  117. sta = ap_get_sta(hapd, addr);
  118. if (sta)
  119. return 0;
  120. wpa_printf(MSG_DEBUG, "Add new STA " MACSTR " based on ctrl_iface "
  121. "notification", MAC2STR(addr));
  122. sta = ap_sta_add(hapd, addr);
  123. if (sta == NULL)
  124. return -1;
  125. hostapd_new_assoc_sta(hapd, sta, 0);
  126. return 0;
  127. }
  128. #ifdef CONFIG_IEEE80211W
  129. #ifdef NEED_AP_MLME
  130. static int hostapd_ctrl_iface_sa_query(struct hostapd_data *hapd,
  131. const char *txtaddr)
  132. {
  133. u8 addr[ETH_ALEN];
  134. u8 trans_id[WLAN_SA_QUERY_TR_ID_LEN];
  135. wpa_printf(MSG_DEBUG, "CTRL_IFACE SA_QUERY %s", txtaddr);
  136. if (hwaddr_aton(txtaddr, addr) ||
  137. os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN) < 0)
  138. return -1;
  139. ieee802_11_send_sa_query_req(hapd, addr, trans_id);
  140. return 0;
  141. }
  142. #endif /* NEED_AP_MLME */
  143. #endif /* CONFIG_IEEE80211W */
  144. #ifdef CONFIG_WPS
  145. static int hostapd_ctrl_iface_wps_pin(struct hostapd_data *hapd, char *txt)
  146. {
  147. char *pin = os_strchr(txt, ' ');
  148. char *timeout_txt;
  149. int timeout;
  150. u8 addr_buf[ETH_ALEN], *addr = NULL;
  151. char *pos;
  152. if (pin == NULL)
  153. return -1;
  154. *pin++ = '\0';
  155. timeout_txt = os_strchr(pin, ' ');
  156. if (timeout_txt) {
  157. *timeout_txt++ = '\0';
  158. timeout = atoi(timeout_txt);
  159. pos = os_strchr(timeout_txt, ' ');
  160. if (pos) {
  161. *pos++ = '\0';
  162. if (hwaddr_aton(pos, addr_buf) == 0)
  163. addr = addr_buf;
  164. }
  165. } else
  166. timeout = 0;
  167. return hostapd_wps_add_pin(hapd, addr, txt, pin, timeout);
  168. }
  169. static int hostapd_ctrl_iface_wps_check_pin(
  170. struct hostapd_data *hapd, char *cmd, char *buf, size_t buflen)
  171. {
  172. char pin[9];
  173. size_t len;
  174. char *pos;
  175. int ret;
  176. wpa_hexdump_ascii_key(MSG_DEBUG, "WPS_CHECK_PIN",
  177. (u8 *) cmd, os_strlen(cmd));
  178. for (pos = cmd, len = 0; *pos != '\0'; pos++) {
  179. if (*pos < '0' || *pos > '9')
  180. continue;
  181. pin[len++] = *pos;
  182. if (len == 9) {
  183. wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
  184. return -1;
  185. }
  186. }
  187. if (len != 4 && len != 8) {
  188. wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
  189. return -1;
  190. }
  191. pin[len] = '\0';
  192. if (len == 8) {
  193. unsigned int pin_val;
  194. pin_val = atoi(pin);
  195. if (!wps_pin_valid(pin_val)) {
  196. wpa_printf(MSG_DEBUG, "WPS: Invalid checksum digit");
  197. ret = os_snprintf(buf, buflen, "FAIL-CHECKSUM\n");
  198. if (ret < 0 || (size_t) ret >= buflen)
  199. return -1;
  200. return ret;
  201. }
  202. }
  203. ret = os_snprintf(buf, buflen, "%s", pin);
  204. if (ret < 0 || (size_t) ret >= buflen)
  205. return -1;
  206. return ret;
  207. }
  208. #ifdef CONFIG_WPS_OOB
  209. static int hostapd_ctrl_iface_wps_oob(struct hostapd_data *hapd, char *txt)
  210. {
  211. char *path, *method, *name;
  212. path = os_strchr(txt, ' ');
  213. if (path == NULL)
  214. return -1;
  215. *path++ = '\0';
  216. method = os_strchr(path, ' ');
  217. if (method == NULL)
  218. return -1;
  219. *method++ = '\0';
  220. name = os_strchr(method, ' ');
  221. if (name != NULL)
  222. *name++ = '\0';
  223. return hostapd_wps_start_oob(hapd, txt, path, method, name);
  224. }
  225. #endif /* CONFIG_WPS_OOB */
  226. #ifdef CONFIG_WPS_NFC
  227. static int hostapd_ctrl_iface_wps_nfc_tag_read(struct hostapd_data *hapd,
  228. char *pos)
  229. {
  230. size_t len;
  231. struct wpabuf *buf;
  232. int ret;
  233. len = os_strlen(pos);
  234. if (len & 0x01)
  235. return -1;
  236. len /= 2;
  237. buf = wpabuf_alloc(len);
  238. if (buf == NULL)
  239. return -1;
  240. if (hexstr2bin(pos, wpabuf_put(buf, len), len) < 0) {
  241. wpabuf_free(buf);
  242. return -1;
  243. }
  244. ret = hostapd_wps_nfc_tag_read(hapd, buf);
  245. wpabuf_free(buf);
  246. return ret;
  247. }
  248. #endif /* CONFIG_WPS_NFC */
  249. static int hostapd_ctrl_iface_wps_ap_pin(struct hostapd_data *hapd, char *txt,
  250. char *buf, size_t buflen)
  251. {
  252. int timeout = 300;
  253. char *pos;
  254. const char *pin_txt;
  255. pos = os_strchr(txt, ' ');
  256. if (pos)
  257. *pos++ = '\0';
  258. if (os_strcmp(txt, "disable") == 0) {
  259. hostapd_wps_ap_pin_disable(hapd);
  260. return os_snprintf(buf, buflen, "OK\n");
  261. }
  262. if (os_strcmp(txt, "random") == 0) {
  263. if (pos)
  264. timeout = atoi(pos);
  265. pin_txt = hostapd_wps_ap_pin_random(hapd, timeout);
  266. if (pin_txt == NULL)
  267. return -1;
  268. return os_snprintf(buf, buflen, "%s", pin_txt);
  269. }
  270. if (os_strcmp(txt, "get") == 0) {
  271. pin_txt = hostapd_wps_ap_pin_get(hapd);
  272. if (pin_txt == NULL)
  273. return -1;
  274. return os_snprintf(buf, buflen, "%s", pin_txt);
  275. }
  276. if (os_strcmp(txt, "set") == 0) {
  277. char *pin;
  278. if (pos == NULL)
  279. return -1;
  280. pin = pos;
  281. pos = os_strchr(pos, ' ');
  282. if (pos) {
  283. *pos++ = '\0';
  284. timeout = atoi(pos);
  285. }
  286. if (os_strlen(pin) > buflen)
  287. return -1;
  288. if (hostapd_wps_ap_pin_set(hapd, pin, timeout) < 0)
  289. return -1;
  290. return os_snprintf(buf, buflen, "%s", pin);
  291. }
  292. return -1;
  293. }
  294. static int hostapd_ctrl_iface_wps_config(struct hostapd_data *hapd, char *txt)
  295. {
  296. char *pos;
  297. char *ssid, *auth, *encr = NULL, *key = NULL;
  298. ssid = txt;
  299. pos = os_strchr(txt, ' ');
  300. if (!pos)
  301. return -1;
  302. *pos++ = '\0';
  303. auth = pos;
  304. pos = os_strchr(pos, ' ');
  305. if (pos) {
  306. *pos++ = '\0';
  307. encr = pos;
  308. pos = os_strchr(pos, ' ');
  309. if (pos) {
  310. *pos++ = '\0';
  311. key = pos;
  312. }
  313. }
  314. return hostapd_wps_config_ap(hapd, ssid, auth, encr, key);
  315. }
  316. #endif /* CONFIG_WPS */
  317. static int hostapd_ctrl_iface_ess_disassoc(struct hostapd_data *hapd,
  318. const char *cmd)
  319. {
  320. u8 addr[ETH_ALEN];
  321. const char *url;
  322. u8 buf[1000], *pos;
  323. struct ieee80211_mgmt *mgmt;
  324. size_t url_len;
  325. if (hwaddr_aton(cmd, addr))
  326. return -1;
  327. url = cmd + 17;
  328. if (*url != ' ')
  329. return -1;
  330. url++;
  331. url_len = os_strlen(url);
  332. if (url_len > 255)
  333. return -1;
  334. os_memset(buf, 0, sizeof(buf));
  335. mgmt = (struct ieee80211_mgmt *) buf;
  336. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  337. WLAN_FC_STYPE_ACTION);
  338. os_memcpy(mgmt->da, addr, ETH_ALEN);
  339. os_memcpy(mgmt->sa, hapd->own_addr, ETH_ALEN);
  340. os_memcpy(mgmt->bssid, hapd->own_addr, ETH_ALEN);
  341. mgmt->u.action.category = WLAN_ACTION_WNM;
  342. mgmt->u.action.u.bss_tm_req.action = WNM_BSS_TRANS_MGMT_REQ;
  343. mgmt->u.action.u.bss_tm_req.dialog_token = 1;
  344. mgmt->u.action.u.bss_tm_req.req_mode =
  345. WNM_BSS_TM_REQ_ESS_DISASSOC_IMMINENT;
  346. mgmt->u.action.u.bss_tm_req.disassoc_timer = host_to_le16(0);
  347. mgmt->u.action.u.bss_tm_req.validity_interval = 0;
  348. pos = mgmt->u.action.u.bss_tm_req.variable;
  349. /* Session Information URL */
  350. *pos++ = url_len;
  351. os_memcpy(pos, url, url_len);
  352. pos += url_len;
  353. if (hostapd_drv_send_mlme(hapd, buf, pos - buf, 0) < 0) {
  354. wpa_printf(MSG_DEBUG, "Failed to send BSS Transition "
  355. "Management Request frame");
  356. return -1;
  357. }
  358. return 0;
  359. }
  360. static int hostapd_ctrl_iface_get_config(struct hostapd_data *hapd,
  361. char *buf, size_t buflen)
  362. {
  363. int ret;
  364. char *pos, *end;
  365. pos = buf;
  366. end = buf + buflen;
  367. ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n"
  368. "ssid=%s\n",
  369. MAC2STR(hapd->own_addr),
  370. hapd->conf->ssid.ssid);
  371. if (ret < 0 || ret >= end - pos)
  372. return pos - buf;
  373. pos += ret;
  374. #ifdef CONFIG_WPS
  375. ret = os_snprintf(pos, end - pos, "wps_state=%s\n",
  376. hapd->conf->wps_state == 0 ? "disabled" :
  377. (hapd->conf->wps_state == 1 ? "not configured" :
  378. "configured"));
  379. if (ret < 0 || ret >= end - pos)
  380. return pos - buf;
  381. pos += ret;
  382. if (hapd->conf->wps_state && hapd->conf->wpa &&
  383. hapd->conf->ssid.wpa_passphrase) {
  384. ret = os_snprintf(pos, end - pos, "passphrase=%s\n",
  385. hapd->conf->ssid.wpa_passphrase);
  386. if (ret < 0 || ret >= end - pos)
  387. return pos - buf;
  388. pos += ret;
  389. }
  390. if (hapd->conf->wps_state && hapd->conf->wpa &&
  391. hapd->conf->ssid.wpa_psk &&
  392. hapd->conf->ssid.wpa_psk->group) {
  393. char hex[PMK_LEN * 2 + 1];
  394. wpa_snprintf_hex(hex, sizeof(hex),
  395. hapd->conf->ssid.wpa_psk->psk, PMK_LEN);
  396. ret = os_snprintf(pos, end - pos, "psk=%s\n", hex);
  397. if (ret < 0 || ret >= end - pos)
  398. return pos - buf;
  399. pos += ret;
  400. }
  401. #endif /* CONFIG_WPS */
  402. if (hapd->conf->wpa && hapd->conf->wpa_key_mgmt) {
  403. ret = os_snprintf(pos, end - pos, "key_mgmt=");
  404. if (ret < 0 || ret >= end - pos)
  405. return pos - buf;
  406. pos += ret;
  407. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK) {
  408. ret = os_snprintf(pos, end - pos, "WPA-PSK ");
  409. if (ret < 0 || ret >= end - pos)
  410. return pos - buf;
  411. pos += ret;
  412. }
  413. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
  414. ret = os_snprintf(pos, end - pos, "WPA-EAP ");
  415. if (ret < 0 || ret >= end - pos)
  416. return pos - buf;
  417. pos += ret;
  418. }
  419. #ifdef CONFIG_IEEE80211R
  420. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_PSK) {
  421. ret = os_snprintf(pos, end - pos, "FT-PSK ");
  422. if (ret < 0 || ret >= end - pos)
  423. return pos - buf;
  424. pos += ret;
  425. }
  426. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
  427. ret = os_snprintf(pos, end - pos, "FT-EAP ");
  428. if (ret < 0 || ret >= end - pos)
  429. return pos - buf;
  430. pos += ret;
  431. }
  432. #endif /* CONFIG_IEEE80211R */
  433. #ifdef CONFIG_IEEE80211W
  434. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
  435. ret = os_snprintf(pos, end - pos, "WPA-PSK-SHA256 ");
  436. if (ret < 0 || ret >= end - pos)
  437. return pos - buf;
  438. pos += ret;
  439. }
  440. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
  441. ret = os_snprintf(pos, end - pos, "WPA-EAP-SHA256 ");
  442. if (ret < 0 || ret >= end - pos)
  443. return pos - buf;
  444. pos += ret;
  445. }
  446. #endif /* CONFIG_IEEE80211W */
  447. ret = os_snprintf(pos, end - pos, "\n");
  448. if (ret < 0 || ret >= end - pos)
  449. return pos - buf;
  450. pos += ret;
  451. }
  452. if (hapd->conf->wpa && hapd->conf->wpa_group == WPA_CIPHER_CCMP) {
  453. ret = os_snprintf(pos, end - pos, "group_cipher=CCMP\n");
  454. if (ret < 0 || ret >= end - pos)
  455. return pos - buf;
  456. pos += ret;
  457. } else if (hapd->conf->wpa &&
  458. hapd->conf->wpa_group == WPA_CIPHER_TKIP) {
  459. ret = os_snprintf(pos, end - pos, "group_cipher=TKIP\n");
  460. if (ret < 0 || ret >= end - pos)
  461. return pos - buf;
  462. pos += ret;
  463. }
  464. if ((hapd->conf->wpa & WPA_PROTO_RSN) && hapd->conf->rsn_pairwise) {
  465. ret = os_snprintf(pos, end - pos, "rsn_pairwise_cipher=");
  466. if (ret < 0 || ret >= end - pos)
  467. return pos - buf;
  468. pos += ret;
  469. if (hapd->conf->rsn_pairwise & WPA_CIPHER_CCMP) {
  470. ret = os_snprintf(pos, end - pos, "CCMP ");
  471. if (ret < 0 || ret >= end - pos)
  472. return pos - buf;
  473. pos += ret;
  474. }
  475. if (hapd->conf->rsn_pairwise & WPA_CIPHER_TKIP) {
  476. ret = os_snprintf(pos, end - pos, "TKIP ");
  477. if (ret < 0 || ret >= end - pos)
  478. return pos - buf;
  479. pos += ret;
  480. }
  481. ret = os_snprintf(pos, end - pos, "\n");
  482. if (ret < 0 || ret >= end - pos)
  483. return pos - buf;
  484. pos += ret;
  485. }
  486. if ((hapd->conf->wpa & WPA_PROTO_WPA) && hapd->conf->wpa_pairwise) {
  487. ret = os_snprintf(pos, end - pos, "wpa_pairwise_cipher=");
  488. if (ret < 0 || ret >= end - pos)
  489. return pos - buf;
  490. pos += ret;
  491. if (hapd->conf->wpa_pairwise & WPA_CIPHER_CCMP) {
  492. ret = os_snprintf(pos, end - pos, "CCMP ");
  493. if (ret < 0 || ret >= end - pos)
  494. return pos - buf;
  495. pos += ret;
  496. }
  497. if (hapd->conf->wpa_pairwise & WPA_CIPHER_TKIP) {
  498. ret = os_snprintf(pos, end - pos, "TKIP ");
  499. if (ret < 0 || ret >= end - pos)
  500. return pos - buf;
  501. pos += ret;
  502. }
  503. ret = os_snprintf(pos, end - pos, "\n");
  504. if (ret < 0 || ret >= end - pos)
  505. return pos - buf;
  506. pos += ret;
  507. }
  508. return pos - buf;
  509. }
  510. static int hostapd_ctrl_iface_set(struct hostapd_data *hapd, char *cmd)
  511. {
  512. char *value;
  513. int ret = 0;
  514. value = os_strchr(cmd, ' ');
  515. if (value == NULL)
  516. return -1;
  517. *value++ = '\0';
  518. wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
  519. if (0) {
  520. #ifdef CONFIG_WPS_TESTING
  521. } else if (os_strcasecmp(cmd, "wps_version_number") == 0) {
  522. long int val;
  523. val = strtol(value, NULL, 0);
  524. if (val < 0 || val > 0xff) {
  525. ret = -1;
  526. wpa_printf(MSG_DEBUG, "WPS: Invalid "
  527. "wps_version_number %ld", val);
  528. } else {
  529. wps_version_number = val;
  530. wpa_printf(MSG_DEBUG, "WPS: Testing - force WPS "
  531. "version %u.%u",
  532. (wps_version_number & 0xf0) >> 4,
  533. wps_version_number & 0x0f);
  534. hostapd_wps_update_ie(hapd);
  535. }
  536. } else if (os_strcasecmp(cmd, "wps_testing_dummy_cred") == 0) {
  537. wps_testing_dummy_cred = atoi(value);
  538. wpa_printf(MSG_DEBUG, "WPS: Testing - dummy_cred=%d",
  539. wps_testing_dummy_cred);
  540. #endif /* CONFIG_WPS_TESTING */
  541. #ifdef CONFIG_INTERWORKING
  542. } else if (os_strcasecmp(cmd, "gas_frag_limit") == 0) {
  543. int val = atoi(value);
  544. if (val <= 0)
  545. ret = -1;
  546. else
  547. hapd->gas_frag_limit = val;
  548. #endif /* CONFIG_INTERWORKING */
  549. } else {
  550. ret = hostapd_set_iface(hapd->iconf, hapd->conf, cmd, value);
  551. }
  552. return ret;
  553. }
  554. static int hostapd_ctrl_iface_get(struct hostapd_data *hapd, char *cmd,
  555. char *buf, size_t buflen)
  556. {
  557. int res;
  558. wpa_printf(MSG_DEBUG, "CTRL_IFACE GET '%s'", cmd);
  559. if (os_strcmp(cmd, "version") == 0) {
  560. res = os_snprintf(buf, buflen, "%s", VERSION_STR);
  561. if (res < 0 || (unsigned int) res >= buflen)
  562. return -1;
  563. return res;
  564. }
  565. return -1;
  566. }
  567. static void hostapd_ctrl_iface_receive(int sock, void *eloop_ctx,
  568. void *sock_ctx)
  569. {
  570. struct hostapd_data *hapd = eloop_ctx;
  571. char buf[256];
  572. int res;
  573. struct sockaddr_un from;
  574. socklen_t fromlen = sizeof(from);
  575. char *reply;
  576. const int reply_size = 4096;
  577. int reply_len;
  578. int level = MSG_DEBUG;
  579. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  580. (struct sockaddr *) &from, &fromlen);
  581. if (res < 0) {
  582. perror("recvfrom(ctrl_iface)");
  583. return;
  584. }
  585. buf[res] = '\0';
  586. if (os_strcmp(buf, "PING") == 0)
  587. level = MSG_EXCESSIVE;
  588. wpa_hexdump_ascii(level, "RX ctrl_iface", (u8 *) buf, res);
  589. reply = os_malloc(reply_size);
  590. if (reply == NULL) {
  591. sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
  592. fromlen);
  593. return;
  594. }
  595. os_memcpy(reply, "OK\n", 3);
  596. reply_len = 3;
  597. if (os_strcmp(buf, "PING") == 0) {
  598. os_memcpy(reply, "PONG\n", 5);
  599. reply_len = 5;
  600. } else if (os_strncmp(buf, "RELOG", 5) == 0) {
  601. if (wpa_debug_reopen_file() < 0)
  602. reply_len = -1;
  603. } else if (os_strcmp(buf, "MIB") == 0) {
  604. reply_len = ieee802_11_get_mib(hapd, reply, reply_size);
  605. if (reply_len >= 0) {
  606. res = wpa_get_mib(hapd->wpa_auth, reply + reply_len,
  607. reply_size - reply_len);
  608. if (res < 0)
  609. reply_len = -1;
  610. else
  611. reply_len += res;
  612. }
  613. if (reply_len >= 0) {
  614. res = ieee802_1x_get_mib(hapd, reply + reply_len,
  615. reply_size - reply_len);
  616. if (res < 0)
  617. reply_len = -1;
  618. else
  619. reply_len += res;
  620. }
  621. #ifndef CONFIG_NO_RADIUS
  622. if (reply_len >= 0) {
  623. res = radius_client_get_mib(hapd->radius,
  624. reply + reply_len,
  625. reply_size - reply_len);
  626. if (res < 0)
  627. reply_len = -1;
  628. else
  629. reply_len += res;
  630. }
  631. #endif /* CONFIG_NO_RADIUS */
  632. } else if (os_strcmp(buf, "STA-FIRST") == 0) {
  633. reply_len = hostapd_ctrl_iface_sta_first(hapd, reply,
  634. reply_size);
  635. } else if (os_strncmp(buf, "STA ", 4) == 0) {
  636. reply_len = hostapd_ctrl_iface_sta(hapd, buf + 4, reply,
  637. reply_size);
  638. } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
  639. reply_len = hostapd_ctrl_iface_sta_next(hapd, buf + 9, reply,
  640. reply_size);
  641. } else if (os_strcmp(buf, "ATTACH") == 0) {
  642. if (hostapd_ctrl_iface_attach(hapd, &from, fromlen))
  643. reply_len = -1;
  644. } else if (os_strcmp(buf, "DETACH") == 0) {
  645. if (hostapd_ctrl_iface_detach(hapd, &from, fromlen))
  646. reply_len = -1;
  647. } else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
  648. if (hostapd_ctrl_iface_level(hapd, &from, fromlen,
  649. buf + 6))
  650. reply_len = -1;
  651. } else if (os_strncmp(buf, "NEW_STA ", 8) == 0) {
  652. if (hostapd_ctrl_iface_new_sta(hapd, buf + 8))
  653. reply_len = -1;
  654. } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
  655. if (hostapd_ctrl_iface_deauthenticate(hapd, buf + 15))
  656. reply_len = -1;
  657. } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
  658. if (hostapd_ctrl_iface_disassociate(hapd, buf + 13))
  659. reply_len = -1;
  660. #ifdef CONFIG_IEEE80211W
  661. #ifdef NEED_AP_MLME
  662. } else if (os_strncmp(buf, "SA_QUERY ", 9) == 0) {
  663. if (hostapd_ctrl_iface_sa_query(hapd, buf + 9))
  664. reply_len = -1;
  665. #endif /* NEED_AP_MLME */
  666. #endif /* CONFIG_IEEE80211W */
  667. #ifdef CONFIG_WPS
  668. } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
  669. if (hostapd_ctrl_iface_wps_pin(hapd, buf + 8))
  670. reply_len = -1;
  671. } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
  672. reply_len = hostapd_ctrl_iface_wps_check_pin(
  673. hapd, buf + 14, reply, reply_size);
  674. } else if (os_strcmp(buf, "WPS_PBC") == 0) {
  675. if (hostapd_wps_button_pushed(hapd, NULL))
  676. reply_len = -1;
  677. } else if (os_strcmp(buf, "WPS_CANCEL") == 0) {
  678. if (hostapd_wps_cancel(hapd))
  679. reply_len = -1;
  680. #ifdef CONFIG_WPS_OOB
  681. } else if (os_strncmp(buf, "WPS_OOB ", 8) == 0) {
  682. if (hostapd_ctrl_iface_wps_oob(hapd, buf + 8))
  683. reply_len = -1;
  684. #endif /* CONFIG_WPS_OOB */
  685. } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
  686. reply_len = hostapd_ctrl_iface_wps_ap_pin(hapd, buf + 11,
  687. reply, reply_size);
  688. } else if (os_strncmp(buf, "WPS_CONFIG ", 11) == 0) {
  689. if (hostapd_ctrl_iface_wps_config(hapd, buf + 11) < 0)
  690. reply_len = -1;
  691. #ifdef CONFIG_WPS_NFC
  692. } else if (os_strncmp(buf, "WPS_NFC_TAG_READ ", 17) == 0) {
  693. if (hostapd_ctrl_iface_wps_nfc_tag_read(hapd, buf + 17))
  694. reply_len = -1;
  695. #endif /* CONFIG_WPS_NFC */
  696. #endif /* CONFIG_WPS */
  697. } else if (os_strncmp(buf, "ESS_DISASSOC ", 13) == 0) {
  698. if (hostapd_ctrl_iface_ess_disassoc(hapd, buf + 13))
  699. reply_len = -1;
  700. } else if (os_strcmp(buf, "GET_CONFIG") == 0) {
  701. reply_len = hostapd_ctrl_iface_get_config(hapd, reply,
  702. reply_size);
  703. } else if (os_strncmp(buf, "SET ", 4) == 0) {
  704. if (hostapd_ctrl_iface_set(hapd, buf + 4))
  705. reply_len = -1;
  706. } else if (os_strncmp(buf, "GET ", 4) == 0) {
  707. reply_len = hostapd_ctrl_iface_get(hapd, buf + 4, reply,
  708. reply_size);
  709. } else {
  710. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  711. reply_len = 16;
  712. }
  713. if (reply_len < 0) {
  714. os_memcpy(reply, "FAIL\n", 5);
  715. reply_len = 5;
  716. }
  717. sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from, fromlen);
  718. os_free(reply);
  719. }
  720. static char * hostapd_ctrl_iface_path(struct hostapd_data *hapd)
  721. {
  722. char *buf;
  723. size_t len;
  724. if (hapd->conf->ctrl_interface == NULL)
  725. return NULL;
  726. len = os_strlen(hapd->conf->ctrl_interface) +
  727. os_strlen(hapd->conf->iface) + 2;
  728. buf = os_malloc(len);
  729. if (buf == NULL)
  730. return NULL;
  731. os_snprintf(buf, len, "%s/%s",
  732. hapd->conf->ctrl_interface, hapd->conf->iface);
  733. buf[len - 1] = '\0';
  734. return buf;
  735. }
  736. static void hostapd_ctrl_iface_msg_cb(void *ctx, int level,
  737. const char *txt, size_t len)
  738. {
  739. struct hostapd_data *hapd = ctx;
  740. if (hapd == NULL)
  741. return;
  742. hostapd_ctrl_iface_send(hapd, level, txt, len);
  743. }
  744. int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
  745. {
  746. struct sockaddr_un addr;
  747. int s = -1;
  748. char *fname = NULL;
  749. if (hapd->ctrl_sock > -1) {
  750. wpa_printf(MSG_DEBUG, "ctrl_iface already exists!");
  751. return 0;
  752. }
  753. if (hapd->conf->ctrl_interface == NULL)
  754. return 0;
  755. if (mkdir(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
  756. if (errno == EEXIST) {
  757. wpa_printf(MSG_DEBUG, "Using existing control "
  758. "interface directory.");
  759. } else {
  760. perror("mkdir[ctrl_interface]");
  761. goto fail;
  762. }
  763. }
  764. if (hapd->conf->ctrl_interface_gid_set &&
  765. chown(hapd->conf->ctrl_interface, 0,
  766. hapd->conf->ctrl_interface_gid) < 0) {
  767. perror("chown[ctrl_interface]");
  768. return -1;
  769. }
  770. if (os_strlen(hapd->conf->ctrl_interface) + 1 +
  771. os_strlen(hapd->conf->iface) >= sizeof(addr.sun_path))
  772. goto fail;
  773. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  774. if (s < 0) {
  775. perror("socket(PF_UNIX)");
  776. goto fail;
  777. }
  778. os_memset(&addr, 0, sizeof(addr));
  779. #ifdef __FreeBSD__
  780. addr.sun_len = sizeof(addr);
  781. #endif /* __FreeBSD__ */
  782. addr.sun_family = AF_UNIX;
  783. fname = hostapd_ctrl_iface_path(hapd);
  784. if (fname == NULL)
  785. goto fail;
  786. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  787. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  788. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  789. strerror(errno));
  790. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  791. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  792. " allow connections - assuming it was left"
  793. "over from forced program termination");
  794. if (unlink(fname) < 0) {
  795. perror("unlink[ctrl_iface]");
  796. wpa_printf(MSG_ERROR, "Could not unlink "
  797. "existing ctrl_iface socket '%s'",
  798. fname);
  799. goto fail;
  800. }
  801. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
  802. 0) {
  803. perror("hostapd-ctrl-iface: bind(PF_UNIX)");
  804. goto fail;
  805. }
  806. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  807. "ctrl_iface socket '%s'", fname);
  808. } else {
  809. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  810. "be in use - cannot override it");
  811. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  812. "not used anymore", fname);
  813. os_free(fname);
  814. fname = NULL;
  815. goto fail;
  816. }
  817. }
  818. if (hapd->conf->ctrl_interface_gid_set &&
  819. chown(fname, 0, hapd->conf->ctrl_interface_gid) < 0) {
  820. perror("chown[ctrl_interface/ifname]");
  821. goto fail;
  822. }
  823. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  824. perror("chmod[ctrl_interface/ifname]");
  825. goto fail;
  826. }
  827. os_free(fname);
  828. hapd->ctrl_sock = s;
  829. eloop_register_read_sock(s, hostapd_ctrl_iface_receive, hapd,
  830. NULL);
  831. hapd->msg_ctx = hapd;
  832. wpa_msg_register_cb(hostapd_ctrl_iface_msg_cb);
  833. return 0;
  834. fail:
  835. if (s >= 0)
  836. close(s);
  837. if (fname) {
  838. unlink(fname);
  839. os_free(fname);
  840. }
  841. return -1;
  842. }
  843. void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd)
  844. {
  845. struct wpa_ctrl_dst *dst, *prev;
  846. if (hapd->ctrl_sock > -1) {
  847. char *fname;
  848. eloop_unregister_read_sock(hapd->ctrl_sock);
  849. close(hapd->ctrl_sock);
  850. hapd->ctrl_sock = -1;
  851. fname = hostapd_ctrl_iface_path(hapd);
  852. if (fname)
  853. unlink(fname);
  854. os_free(fname);
  855. if (hapd->conf->ctrl_interface &&
  856. rmdir(hapd->conf->ctrl_interface) < 0) {
  857. if (errno == ENOTEMPTY) {
  858. wpa_printf(MSG_DEBUG, "Control interface "
  859. "directory not empty - leaving it "
  860. "behind");
  861. } else {
  862. perror("rmdir[ctrl_interface]");
  863. }
  864. }
  865. }
  866. dst = hapd->ctrl_dst;
  867. while (dst) {
  868. prev = dst;
  869. dst = dst->next;
  870. os_free(prev);
  871. }
  872. }
  873. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  874. const char *buf, size_t len)
  875. {
  876. struct wpa_ctrl_dst *dst, *next;
  877. struct msghdr msg;
  878. int idx;
  879. struct iovec io[2];
  880. char levelstr[10];
  881. dst = hapd->ctrl_dst;
  882. if (hapd->ctrl_sock < 0 || dst == NULL)
  883. return;
  884. os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
  885. io[0].iov_base = levelstr;
  886. io[0].iov_len = os_strlen(levelstr);
  887. io[1].iov_base = (char *) buf;
  888. io[1].iov_len = len;
  889. os_memset(&msg, 0, sizeof(msg));
  890. msg.msg_iov = io;
  891. msg.msg_iovlen = 2;
  892. idx = 0;
  893. while (dst) {
  894. next = dst->next;
  895. if (level >= dst->debug_level) {
  896. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor send",
  897. (u8 *) dst->addr.sun_path, dst->addrlen -
  898. offsetof(struct sockaddr_un, sun_path));
  899. msg.msg_name = &dst->addr;
  900. msg.msg_namelen = dst->addrlen;
  901. if (sendmsg(hapd->ctrl_sock, &msg, 0) < 0) {
  902. int _errno = errno;
  903. wpa_printf(MSG_INFO, "CTRL_IFACE monitor[%d]: "
  904. "%d - %s",
  905. idx, errno, strerror(errno));
  906. dst->errors++;
  907. if (dst->errors > 10 || _errno == ENOENT) {
  908. hostapd_ctrl_iface_detach(
  909. hapd, &dst->addr,
  910. dst->addrlen);
  911. }
  912. } else
  913. dst->errors = 0;
  914. }
  915. idx++;
  916. dst = next;
  917. }
  918. }
  919. #endif /* CONFIG_NATIVE_WINDOWS */