ctrl_iface.c 29 KB

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