ctrl_iface.c 27 KB

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