ctrl_iface.c 25 KB

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