ctrl_iface.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095
  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. static int hostapd_ctrl_iface_wps_nfc_config_token(struct hostapd_data *hapd,
  249. char *cmd, char *reply,
  250. size_t max_len)
  251. {
  252. int ndef;
  253. struct wpabuf *buf;
  254. int res;
  255. if (os_strcmp(cmd, "WPS") == 0)
  256. ndef = 0;
  257. else if (os_strcmp(cmd, "NDEF") == 0)
  258. ndef = 1;
  259. else
  260. return -1;
  261. buf = hostapd_wps_nfc_config_token(hapd, ndef);
  262. if (buf == NULL)
  263. return -1;
  264. res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
  265. wpabuf_len(buf));
  266. reply[res++] = '\n';
  267. reply[res] = '\0';
  268. wpabuf_free(buf);
  269. return res;
  270. }
  271. #endif /* CONFIG_WPS_NFC */
  272. static int hostapd_ctrl_iface_wps_ap_pin(struct hostapd_data *hapd, char *txt,
  273. char *buf, size_t buflen)
  274. {
  275. int timeout = 300;
  276. char *pos;
  277. const char *pin_txt;
  278. pos = os_strchr(txt, ' ');
  279. if (pos)
  280. *pos++ = '\0';
  281. if (os_strcmp(txt, "disable") == 0) {
  282. hostapd_wps_ap_pin_disable(hapd);
  283. return os_snprintf(buf, buflen, "OK\n");
  284. }
  285. if (os_strcmp(txt, "random") == 0) {
  286. if (pos)
  287. timeout = atoi(pos);
  288. pin_txt = hostapd_wps_ap_pin_random(hapd, timeout);
  289. if (pin_txt == NULL)
  290. return -1;
  291. return os_snprintf(buf, buflen, "%s", pin_txt);
  292. }
  293. if (os_strcmp(txt, "get") == 0) {
  294. pin_txt = hostapd_wps_ap_pin_get(hapd);
  295. if (pin_txt == NULL)
  296. return -1;
  297. return os_snprintf(buf, buflen, "%s", pin_txt);
  298. }
  299. if (os_strcmp(txt, "set") == 0) {
  300. char *pin;
  301. if (pos == NULL)
  302. return -1;
  303. pin = pos;
  304. pos = os_strchr(pos, ' ');
  305. if (pos) {
  306. *pos++ = '\0';
  307. timeout = atoi(pos);
  308. }
  309. if (os_strlen(pin) > buflen)
  310. return -1;
  311. if (hostapd_wps_ap_pin_set(hapd, pin, timeout) < 0)
  312. return -1;
  313. return os_snprintf(buf, buflen, "%s", pin);
  314. }
  315. return -1;
  316. }
  317. static int hostapd_ctrl_iface_wps_config(struct hostapd_data *hapd, char *txt)
  318. {
  319. char *pos;
  320. char *ssid, *auth, *encr = NULL, *key = NULL;
  321. ssid = txt;
  322. pos = os_strchr(txt, ' ');
  323. if (!pos)
  324. return -1;
  325. *pos++ = '\0';
  326. auth = pos;
  327. pos = os_strchr(pos, ' ');
  328. if (pos) {
  329. *pos++ = '\0';
  330. encr = pos;
  331. pos = os_strchr(pos, ' ');
  332. if (pos) {
  333. *pos++ = '\0';
  334. key = pos;
  335. }
  336. }
  337. return hostapd_wps_config_ap(hapd, ssid, auth, encr, key);
  338. }
  339. #endif /* CONFIG_WPS */
  340. static int hostapd_ctrl_iface_ess_disassoc(struct hostapd_data *hapd,
  341. const char *cmd)
  342. {
  343. u8 addr[ETH_ALEN];
  344. const char *url;
  345. u8 buf[1000], *pos;
  346. struct ieee80211_mgmt *mgmt;
  347. size_t url_len;
  348. if (hwaddr_aton(cmd, addr))
  349. return -1;
  350. url = cmd + 17;
  351. if (*url != ' ')
  352. return -1;
  353. url++;
  354. url_len = os_strlen(url);
  355. if (url_len > 255)
  356. return -1;
  357. os_memset(buf, 0, sizeof(buf));
  358. mgmt = (struct ieee80211_mgmt *) buf;
  359. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  360. WLAN_FC_STYPE_ACTION);
  361. os_memcpy(mgmt->da, addr, ETH_ALEN);
  362. os_memcpy(mgmt->sa, hapd->own_addr, ETH_ALEN);
  363. os_memcpy(mgmt->bssid, hapd->own_addr, ETH_ALEN);
  364. mgmt->u.action.category = WLAN_ACTION_WNM;
  365. mgmt->u.action.u.bss_tm_req.action = WNM_BSS_TRANS_MGMT_REQ;
  366. mgmt->u.action.u.bss_tm_req.dialog_token = 1;
  367. mgmt->u.action.u.bss_tm_req.req_mode =
  368. WNM_BSS_TM_REQ_ESS_DISASSOC_IMMINENT;
  369. mgmt->u.action.u.bss_tm_req.disassoc_timer = host_to_le16(0);
  370. mgmt->u.action.u.bss_tm_req.validity_interval = 0;
  371. pos = mgmt->u.action.u.bss_tm_req.variable;
  372. /* Session Information URL */
  373. *pos++ = url_len;
  374. os_memcpy(pos, url, url_len);
  375. pos += url_len;
  376. if (hostapd_drv_send_mlme(hapd, buf, pos - buf, 0) < 0) {
  377. wpa_printf(MSG_DEBUG, "Failed to send BSS Transition "
  378. "Management Request frame");
  379. return -1;
  380. }
  381. return 0;
  382. }
  383. static int hostapd_ctrl_iface_get_config(struct hostapd_data *hapd,
  384. char *buf, size_t buflen)
  385. {
  386. int ret;
  387. char *pos, *end;
  388. pos = buf;
  389. end = buf + buflen;
  390. ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n"
  391. "ssid=%s\n",
  392. MAC2STR(hapd->own_addr),
  393. hapd->conf->ssid.ssid);
  394. if (ret < 0 || ret >= end - pos)
  395. return pos - buf;
  396. pos += ret;
  397. #ifdef CONFIG_WPS
  398. ret = os_snprintf(pos, end - pos, "wps_state=%s\n",
  399. hapd->conf->wps_state == 0 ? "disabled" :
  400. (hapd->conf->wps_state == 1 ? "not configured" :
  401. "configured"));
  402. if (ret < 0 || ret >= end - pos)
  403. return pos - buf;
  404. pos += ret;
  405. if (hapd->conf->wps_state && hapd->conf->wpa &&
  406. hapd->conf->ssid.wpa_passphrase) {
  407. ret = os_snprintf(pos, end - pos, "passphrase=%s\n",
  408. hapd->conf->ssid.wpa_passphrase);
  409. if (ret < 0 || ret >= end - pos)
  410. return pos - buf;
  411. pos += ret;
  412. }
  413. if (hapd->conf->wps_state && hapd->conf->wpa &&
  414. hapd->conf->ssid.wpa_psk &&
  415. hapd->conf->ssid.wpa_psk->group) {
  416. char hex[PMK_LEN * 2 + 1];
  417. wpa_snprintf_hex(hex, sizeof(hex),
  418. hapd->conf->ssid.wpa_psk->psk, PMK_LEN);
  419. ret = os_snprintf(pos, end - pos, "psk=%s\n", hex);
  420. if (ret < 0 || ret >= end - pos)
  421. return pos - buf;
  422. pos += ret;
  423. }
  424. #endif /* CONFIG_WPS */
  425. if (hapd->conf->wpa && hapd->conf->wpa_key_mgmt) {
  426. ret = os_snprintf(pos, end - pos, "key_mgmt=");
  427. if (ret < 0 || ret >= end - pos)
  428. return pos - buf;
  429. pos += ret;
  430. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK) {
  431. ret = os_snprintf(pos, end - pos, "WPA-PSK ");
  432. if (ret < 0 || ret >= end - pos)
  433. return pos - buf;
  434. pos += ret;
  435. }
  436. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
  437. ret = os_snprintf(pos, end - pos, "WPA-EAP ");
  438. if (ret < 0 || ret >= end - pos)
  439. return pos - buf;
  440. pos += ret;
  441. }
  442. #ifdef CONFIG_IEEE80211R
  443. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_PSK) {
  444. ret = os_snprintf(pos, end - pos, "FT-PSK ");
  445. if (ret < 0 || ret >= end - pos)
  446. return pos - buf;
  447. pos += ret;
  448. }
  449. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
  450. ret = os_snprintf(pos, end - pos, "FT-EAP ");
  451. if (ret < 0 || ret >= end - pos)
  452. return pos - buf;
  453. pos += ret;
  454. }
  455. #endif /* CONFIG_IEEE80211R */
  456. #ifdef CONFIG_IEEE80211W
  457. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
  458. ret = os_snprintf(pos, end - pos, "WPA-PSK-SHA256 ");
  459. if (ret < 0 || ret >= end - pos)
  460. return pos - buf;
  461. pos += ret;
  462. }
  463. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
  464. ret = os_snprintf(pos, end - pos, "WPA-EAP-SHA256 ");
  465. if (ret < 0 || ret >= end - pos)
  466. return pos - buf;
  467. pos += ret;
  468. }
  469. #endif /* CONFIG_IEEE80211W */
  470. ret = os_snprintf(pos, end - pos, "\n");
  471. if (ret < 0 || ret >= end - pos)
  472. return pos - buf;
  473. pos += ret;
  474. }
  475. if (hapd->conf->wpa && hapd->conf->wpa_group == WPA_CIPHER_CCMP) {
  476. ret = os_snprintf(pos, end - pos, "group_cipher=CCMP\n");
  477. if (ret < 0 || ret >= end - pos)
  478. return pos - buf;
  479. pos += ret;
  480. } else if (hapd->conf->wpa &&
  481. hapd->conf->wpa_group == WPA_CIPHER_TKIP) {
  482. ret = os_snprintf(pos, end - pos, "group_cipher=TKIP\n");
  483. if (ret < 0 || ret >= end - pos)
  484. return pos - buf;
  485. pos += ret;
  486. }
  487. if ((hapd->conf->wpa & WPA_PROTO_RSN) && hapd->conf->rsn_pairwise) {
  488. ret = os_snprintf(pos, end - pos, "rsn_pairwise_cipher=");
  489. if (ret < 0 || ret >= end - pos)
  490. return pos - buf;
  491. pos += ret;
  492. if (hapd->conf->rsn_pairwise & WPA_CIPHER_CCMP) {
  493. ret = os_snprintf(pos, end - pos, "CCMP ");
  494. if (ret < 0 || ret >= end - pos)
  495. return pos - buf;
  496. pos += ret;
  497. }
  498. if (hapd->conf->rsn_pairwise & WPA_CIPHER_TKIP) {
  499. ret = os_snprintf(pos, end - pos, "TKIP ");
  500. if (ret < 0 || ret >= end - pos)
  501. return pos - buf;
  502. pos += ret;
  503. }
  504. ret = os_snprintf(pos, end - pos, "\n");
  505. if (ret < 0 || ret >= end - pos)
  506. return pos - buf;
  507. pos += ret;
  508. }
  509. if ((hapd->conf->wpa & WPA_PROTO_WPA) && hapd->conf->wpa_pairwise) {
  510. ret = os_snprintf(pos, end - pos, "wpa_pairwise_cipher=");
  511. if (ret < 0 || ret >= end - pos)
  512. return pos - buf;
  513. pos += ret;
  514. if (hapd->conf->wpa_pairwise & WPA_CIPHER_CCMP) {
  515. ret = os_snprintf(pos, end - pos, "CCMP ");
  516. if (ret < 0 || ret >= end - pos)
  517. return pos - buf;
  518. pos += ret;
  519. }
  520. if (hapd->conf->wpa_pairwise & WPA_CIPHER_TKIP) {
  521. ret = os_snprintf(pos, end - pos, "TKIP ");
  522. if (ret < 0 || ret >= end - pos)
  523. return pos - buf;
  524. pos += ret;
  525. }
  526. ret = os_snprintf(pos, end - pos, "\n");
  527. if (ret < 0 || ret >= end - pos)
  528. return pos - buf;
  529. pos += ret;
  530. }
  531. return pos - buf;
  532. }
  533. static int hostapd_ctrl_iface_set(struct hostapd_data *hapd, char *cmd)
  534. {
  535. char *value;
  536. int ret = 0;
  537. value = os_strchr(cmd, ' ');
  538. if (value == NULL)
  539. return -1;
  540. *value++ = '\0';
  541. wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
  542. if (0) {
  543. #ifdef CONFIG_WPS_TESTING
  544. } else if (os_strcasecmp(cmd, "wps_version_number") == 0) {
  545. long int val;
  546. val = strtol(value, NULL, 0);
  547. if (val < 0 || val > 0xff) {
  548. ret = -1;
  549. wpa_printf(MSG_DEBUG, "WPS: Invalid "
  550. "wps_version_number %ld", val);
  551. } else {
  552. wps_version_number = val;
  553. wpa_printf(MSG_DEBUG, "WPS: Testing - force WPS "
  554. "version %u.%u",
  555. (wps_version_number & 0xf0) >> 4,
  556. wps_version_number & 0x0f);
  557. hostapd_wps_update_ie(hapd);
  558. }
  559. } else if (os_strcasecmp(cmd, "wps_testing_dummy_cred") == 0) {
  560. wps_testing_dummy_cred = atoi(value);
  561. wpa_printf(MSG_DEBUG, "WPS: Testing - dummy_cred=%d",
  562. wps_testing_dummy_cred);
  563. #endif /* CONFIG_WPS_TESTING */
  564. #ifdef CONFIG_INTERWORKING
  565. } else if (os_strcasecmp(cmd, "gas_frag_limit") == 0) {
  566. int val = atoi(value);
  567. if (val <= 0)
  568. ret = -1;
  569. else
  570. hapd->gas_frag_limit = val;
  571. #endif /* CONFIG_INTERWORKING */
  572. } else {
  573. ret = hostapd_set_iface(hapd->iconf, hapd->conf, cmd, value);
  574. }
  575. return ret;
  576. }
  577. static int hostapd_ctrl_iface_get(struct hostapd_data *hapd, char *cmd,
  578. char *buf, size_t buflen)
  579. {
  580. int res;
  581. wpa_printf(MSG_DEBUG, "CTRL_IFACE GET '%s'", cmd);
  582. if (os_strcmp(cmd, "version") == 0) {
  583. res = os_snprintf(buf, buflen, "%s", VERSION_STR);
  584. if (res < 0 || (unsigned int) res >= buflen)
  585. return -1;
  586. return res;
  587. }
  588. return -1;
  589. }
  590. static void hostapd_ctrl_iface_receive(int sock, void *eloop_ctx,
  591. void *sock_ctx)
  592. {
  593. struct hostapd_data *hapd = eloop_ctx;
  594. char buf[256];
  595. int res;
  596. struct sockaddr_un from;
  597. socklen_t fromlen = sizeof(from);
  598. char *reply;
  599. const int reply_size = 4096;
  600. int reply_len;
  601. int level = MSG_DEBUG;
  602. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  603. (struct sockaddr *) &from, &fromlen);
  604. if (res < 0) {
  605. perror("recvfrom(ctrl_iface)");
  606. return;
  607. }
  608. buf[res] = '\0';
  609. if (os_strcmp(buf, "PING") == 0)
  610. level = MSG_EXCESSIVE;
  611. wpa_hexdump_ascii(level, "RX ctrl_iface", (u8 *) buf, res);
  612. reply = os_malloc(reply_size);
  613. if (reply == NULL) {
  614. sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
  615. fromlen);
  616. return;
  617. }
  618. os_memcpy(reply, "OK\n", 3);
  619. reply_len = 3;
  620. if (os_strcmp(buf, "PING") == 0) {
  621. os_memcpy(reply, "PONG\n", 5);
  622. reply_len = 5;
  623. } else if (os_strncmp(buf, "RELOG", 5) == 0) {
  624. if (wpa_debug_reopen_file() < 0)
  625. reply_len = -1;
  626. } else if (os_strcmp(buf, "MIB") == 0) {
  627. reply_len = ieee802_11_get_mib(hapd, reply, reply_size);
  628. if (reply_len >= 0) {
  629. res = wpa_get_mib(hapd->wpa_auth, reply + reply_len,
  630. reply_size - reply_len);
  631. if (res < 0)
  632. reply_len = -1;
  633. else
  634. reply_len += res;
  635. }
  636. if (reply_len >= 0) {
  637. res = ieee802_1x_get_mib(hapd, reply + reply_len,
  638. reply_size - reply_len);
  639. if (res < 0)
  640. reply_len = -1;
  641. else
  642. reply_len += res;
  643. }
  644. #ifndef CONFIG_NO_RADIUS
  645. if (reply_len >= 0) {
  646. res = radius_client_get_mib(hapd->radius,
  647. reply + reply_len,
  648. reply_size - reply_len);
  649. if (res < 0)
  650. reply_len = -1;
  651. else
  652. reply_len += res;
  653. }
  654. #endif /* CONFIG_NO_RADIUS */
  655. } else if (os_strcmp(buf, "STA-FIRST") == 0) {
  656. reply_len = hostapd_ctrl_iface_sta_first(hapd, reply,
  657. reply_size);
  658. } else if (os_strncmp(buf, "STA ", 4) == 0) {
  659. reply_len = hostapd_ctrl_iface_sta(hapd, buf + 4, reply,
  660. reply_size);
  661. } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
  662. reply_len = hostapd_ctrl_iface_sta_next(hapd, buf + 9, reply,
  663. reply_size);
  664. } else if (os_strcmp(buf, "ATTACH") == 0) {
  665. if (hostapd_ctrl_iface_attach(hapd, &from, fromlen))
  666. reply_len = -1;
  667. } else if (os_strcmp(buf, "DETACH") == 0) {
  668. if (hostapd_ctrl_iface_detach(hapd, &from, fromlen))
  669. reply_len = -1;
  670. } else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
  671. if (hostapd_ctrl_iface_level(hapd, &from, fromlen,
  672. buf + 6))
  673. reply_len = -1;
  674. } else if (os_strncmp(buf, "NEW_STA ", 8) == 0) {
  675. if (hostapd_ctrl_iface_new_sta(hapd, buf + 8))
  676. reply_len = -1;
  677. } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
  678. if (hostapd_ctrl_iface_deauthenticate(hapd, buf + 15))
  679. reply_len = -1;
  680. } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
  681. if (hostapd_ctrl_iface_disassociate(hapd, buf + 13))
  682. reply_len = -1;
  683. #ifdef CONFIG_IEEE80211W
  684. #ifdef NEED_AP_MLME
  685. } else if (os_strncmp(buf, "SA_QUERY ", 9) == 0) {
  686. if (hostapd_ctrl_iface_sa_query(hapd, buf + 9))
  687. reply_len = -1;
  688. #endif /* NEED_AP_MLME */
  689. #endif /* CONFIG_IEEE80211W */
  690. #ifdef CONFIG_WPS
  691. } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
  692. if (hostapd_ctrl_iface_wps_pin(hapd, buf + 8))
  693. reply_len = -1;
  694. } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
  695. reply_len = hostapd_ctrl_iface_wps_check_pin(
  696. hapd, buf + 14, reply, reply_size);
  697. } else if (os_strcmp(buf, "WPS_PBC") == 0) {
  698. if (hostapd_wps_button_pushed(hapd, NULL))
  699. reply_len = -1;
  700. } else if (os_strcmp(buf, "WPS_CANCEL") == 0) {
  701. if (hostapd_wps_cancel(hapd))
  702. reply_len = -1;
  703. #ifdef CONFIG_WPS_OOB
  704. } else if (os_strncmp(buf, "WPS_OOB ", 8) == 0) {
  705. if (hostapd_ctrl_iface_wps_oob(hapd, buf + 8))
  706. reply_len = -1;
  707. #endif /* CONFIG_WPS_OOB */
  708. } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
  709. reply_len = hostapd_ctrl_iface_wps_ap_pin(hapd, buf + 11,
  710. reply, reply_size);
  711. } else if (os_strncmp(buf, "WPS_CONFIG ", 11) == 0) {
  712. if (hostapd_ctrl_iface_wps_config(hapd, buf + 11) < 0)
  713. reply_len = -1;
  714. #ifdef CONFIG_WPS_NFC
  715. } else if (os_strncmp(buf, "WPS_NFC_TAG_READ ", 17) == 0) {
  716. if (hostapd_ctrl_iface_wps_nfc_tag_read(hapd, buf + 17))
  717. reply_len = -1;
  718. } else if (os_strncmp(buf, "WPS_NFC_CONFIG_TOKEN ", 21) == 0) {
  719. reply_len = hostapd_ctrl_iface_wps_nfc_config_token(
  720. hapd, buf + 21, reply, reply_size);
  721. #endif /* CONFIG_WPS_NFC */
  722. #endif /* CONFIG_WPS */
  723. } else if (os_strncmp(buf, "ESS_DISASSOC ", 13) == 0) {
  724. if (hostapd_ctrl_iface_ess_disassoc(hapd, buf + 13))
  725. reply_len = -1;
  726. } else if (os_strcmp(buf, "GET_CONFIG") == 0) {
  727. reply_len = hostapd_ctrl_iface_get_config(hapd, reply,
  728. reply_size);
  729. } else if (os_strncmp(buf, "SET ", 4) == 0) {
  730. if (hostapd_ctrl_iface_set(hapd, buf + 4))
  731. reply_len = -1;
  732. } else if (os_strncmp(buf, "GET ", 4) == 0) {
  733. reply_len = hostapd_ctrl_iface_get(hapd, buf + 4, reply,
  734. reply_size);
  735. } else {
  736. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  737. reply_len = 16;
  738. }
  739. if (reply_len < 0) {
  740. os_memcpy(reply, "FAIL\n", 5);
  741. reply_len = 5;
  742. }
  743. sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from, fromlen);
  744. os_free(reply);
  745. }
  746. static char * hostapd_ctrl_iface_path(struct hostapd_data *hapd)
  747. {
  748. char *buf;
  749. size_t len;
  750. if (hapd->conf->ctrl_interface == NULL)
  751. return NULL;
  752. len = os_strlen(hapd->conf->ctrl_interface) +
  753. os_strlen(hapd->conf->iface) + 2;
  754. buf = os_malloc(len);
  755. if (buf == NULL)
  756. return NULL;
  757. os_snprintf(buf, len, "%s/%s",
  758. hapd->conf->ctrl_interface, hapd->conf->iface);
  759. buf[len - 1] = '\0';
  760. return buf;
  761. }
  762. static void hostapd_ctrl_iface_msg_cb(void *ctx, int level,
  763. const char *txt, size_t len)
  764. {
  765. struct hostapd_data *hapd = ctx;
  766. if (hapd == NULL)
  767. return;
  768. hostapd_ctrl_iface_send(hapd, level, txt, len);
  769. }
  770. int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
  771. {
  772. struct sockaddr_un addr;
  773. int s = -1;
  774. char *fname = NULL;
  775. if (hapd->ctrl_sock > -1) {
  776. wpa_printf(MSG_DEBUG, "ctrl_iface already exists!");
  777. return 0;
  778. }
  779. if (hapd->conf->ctrl_interface == NULL)
  780. return 0;
  781. if (mkdir(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
  782. if (errno == EEXIST) {
  783. wpa_printf(MSG_DEBUG, "Using existing control "
  784. "interface directory.");
  785. } else {
  786. perror("mkdir[ctrl_interface]");
  787. goto fail;
  788. }
  789. }
  790. if (hapd->conf->ctrl_interface_gid_set &&
  791. chown(hapd->conf->ctrl_interface, 0,
  792. hapd->conf->ctrl_interface_gid) < 0) {
  793. perror("chown[ctrl_interface]");
  794. return -1;
  795. }
  796. if (os_strlen(hapd->conf->ctrl_interface) + 1 +
  797. os_strlen(hapd->conf->iface) >= sizeof(addr.sun_path))
  798. goto fail;
  799. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  800. if (s < 0) {
  801. perror("socket(PF_UNIX)");
  802. goto fail;
  803. }
  804. os_memset(&addr, 0, sizeof(addr));
  805. #ifdef __FreeBSD__
  806. addr.sun_len = sizeof(addr);
  807. #endif /* __FreeBSD__ */
  808. addr.sun_family = AF_UNIX;
  809. fname = hostapd_ctrl_iface_path(hapd);
  810. if (fname == NULL)
  811. goto fail;
  812. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  813. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  814. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  815. strerror(errno));
  816. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  817. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  818. " allow connections - assuming it was left"
  819. "over from forced program termination");
  820. if (unlink(fname) < 0) {
  821. perror("unlink[ctrl_iface]");
  822. wpa_printf(MSG_ERROR, "Could not unlink "
  823. "existing ctrl_iface socket '%s'",
  824. fname);
  825. goto fail;
  826. }
  827. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
  828. 0) {
  829. perror("hostapd-ctrl-iface: bind(PF_UNIX)");
  830. goto fail;
  831. }
  832. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  833. "ctrl_iface socket '%s'", fname);
  834. } else {
  835. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  836. "be in use - cannot override it");
  837. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  838. "not used anymore", fname);
  839. os_free(fname);
  840. fname = NULL;
  841. goto fail;
  842. }
  843. }
  844. if (hapd->conf->ctrl_interface_gid_set &&
  845. chown(fname, 0, hapd->conf->ctrl_interface_gid) < 0) {
  846. perror("chown[ctrl_interface/ifname]");
  847. goto fail;
  848. }
  849. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  850. perror("chmod[ctrl_interface/ifname]");
  851. goto fail;
  852. }
  853. os_free(fname);
  854. hapd->ctrl_sock = s;
  855. eloop_register_read_sock(s, hostapd_ctrl_iface_receive, hapd,
  856. NULL);
  857. hapd->msg_ctx = hapd;
  858. wpa_msg_register_cb(hostapd_ctrl_iface_msg_cb);
  859. return 0;
  860. fail:
  861. if (s >= 0)
  862. close(s);
  863. if (fname) {
  864. unlink(fname);
  865. os_free(fname);
  866. }
  867. return -1;
  868. }
  869. void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd)
  870. {
  871. struct wpa_ctrl_dst *dst, *prev;
  872. if (hapd->ctrl_sock > -1) {
  873. char *fname;
  874. eloop_unregister_read_sock(hapd->ctrl_sock);
  875. close(hapd->ctrl_sock);
  876. hapd->ctrl_sock = -1;
  877. fname = hostapd_ctrl_iface_path(hapd);
  878. if (fname)
  879. unlink(fname);
  880. os_free(fname);
  881. if (hapd->conf->ctrl_interface &&
  882. rmdir(hapd->conf->ctrl_interface) < 0) {
  883. if (errno == ENOTEMPTY) {
  884. wpa_printf(MSG_DEBUG, "Control interface "
  885. "directory not empty - leaving it "
  886. "behind");
  887. } else {
  888. perror("rmdir[ctrl_interface]");
  889. }
  890. }
  891. }
  892. dst = hapd->ctrl_dst;
  893. while (dst) {
  894. prev = dst;
  895. dst = dst->next;
  896. os_free(prev);
  897. }
  898. }
  899. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  900. const char *buf, size_t len)
  901. {
  902. struct wpa_ctrl_dst *dst, *next;
  903. struct msghdr msg;
  904. int idx;
  905. struct iovec io[2];
  906. char levelstr[10];
  907. dst = hapd->ctrl_dst;
  908. if (hapd->ctrl_sock < 0 || dst == NULL)
  909. return;
  910. os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
  911. io[0].iov_base = levelstr;
  912. io[0].iov_len = os_strlen(levelstr);
  913. io[1].iov_base = (char *) buf;
  914. io[1].iov_len = len;
  915. os_memset(&msg, 0, sizeof(msg));
  916. msg.msg_iov = io;
  917. msg.msg_iovlen = 2;
  918. idx = 0;
  919. while (dst) {
  920. next = dst->next;
  921. if (level >= dst->debug_level) {
  922. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor send",
  923. (u8 *) dst->addr.sun_path, dst->addrlen -
  924. offsetof(struct sockaddr_un, sun_path));
  925. msg.msg_name = &dst->addr;
  926. msg.msg_namelen = dst->addrlen;
  927. if (sendmsg(hapd->ctrl_sock, &msg, 0) < 0) {
  928. int _errno = errno;
  929. wpa_printf(MSG_INFO, "CTRL_IFACE monitor[%d]: "
  930. "%d - %s",
  931. idx, errno, strerror(errno));
  932. dst->errors++;
  933. if (dst->errors > 10 || _errno == ENOENT) {
  934. hostapd_ctrl_iface_detach(
  935. hapd, &dst->addr,
  936. dst->addrlen);
  937. }
  938. } else
  939. dst->errors = 0;
  940. }
  941. idx++;
  942. dst = next;
  943. }
  944. }
  945. #endif /* CONFIG_NATIVE_WINDOWS */