ctrl_iface.c 29 KB

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