ctrl_iface.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  1. /*
  2. * hostapd / UNIX domain socket -based control interface
  3. * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "utils/includes.h"
  15. #ifndef CONFIG_NATIVE_WINDOWS
  16. #include <sys/un.h>
  17. #include <sys/stat.h>
  18. #include <stddef.h>
  19. #include "utils/common.h"
  20. #include "utils/eloop.h"
  21. #include "common/ieee802_11_defs.h"
  22. #include "drivers/driver.h"
  23. #include "radius/radius_client.h"
  24. #include "ap/hostapd.h"
  25. #include "ap/ap_config.h"
  26. #include "ap/ieee802_1x.h"
  27. #include "ap/wpa_auth.h"
  28. #include "ap/ieee802_11.h"
  29. #include "ap/sta_info.h"
  30. #include "ap/accounting.h"
  31. #include "ap/wps_hostapd.h"
  32. #include "ap/ctrl_iface_ap.h"
  33. #include "ctrl_iface.h"
  34. struct wpa_ctrl_dst {
  35. struct wpa_ctrl_dst *next;
  36. struct sockaddr_un addr;
  37. socklen_t addrlen;
  38. int debug_level;
  39. int errors;
  40. };
  41. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  42. const char *buf, size_t len);
  43. static int hostapd_ctrl_iface_attach(struct hostapd_data *hapd,
  44. struct sockaddr_un *from,
  45. socklen_t fromlen)
  46. {
  47. struct wpa_ctrl_dst *dst;
  48. dst = os_zalloc(sizeof(*dst));
  49. if (dst == NULL)
  50. return -1;
  51. os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un));
  52. dst->addrlen = fromlen;
  53. dst->debug_level = MSG_INFO;
  54. dst->next = hapd->ctrl_dst;
  55. hapd->ctrl_dst = dst;
  56. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor attached",
  57. (u8 *) from->sun_path,
  58. fromlen - offsetof(struct sockaddr_un, sun_path));
  59. return 0;
  60. }
  61. static int hostapd_ctrl_iface_detach(struct hostapd_data *hapd,
  62. struct sockaddr_un *from,
  63. socklen_t fromlen)
  64. {
  65. struct wpa_ctrl_dst *dst, *prev = NULL;
  66. dst = hapd->ctrl_dst;
  67. while (dst) {
  68. if (fromlen == dst->addrlen &&
  69. os_memcmp(from->sun_path, dst->addr.sun_path,
  70. fromlen - offsetof(struct sockaddr_un, sun_path))
  71. == 0) {
  72. if (prev == NULL)
  73. hapd->ctrl_dst = dst->next;
  74. else
  75. prev->next = dst->next;
  76. os_free(dst);
  77. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor detached",
  78. (u8 *) from->sun_path,
  79. fromlen -
  80. offsetof(struct sockaddr_un, sun_path));
  81. return 0;
  82. }
  83. prev = dst;
  84. dst = dst->next;
  85. }
  86. return -1;
  87. }
  88. static int hostapd_ctrl_iface_level(struct hostapd_data *hapd,
  89. struct sockaddr_un *from,
  90. socklen_t fromlen,
  91. char *level)
  92. {
  93. struct wpa_ctrl_dst *dst;
  94. wpa_printf(MSG_DEBUG, "CTRL_IFACE LEVEL %s", level);
  95. dst = hapd->ctrl_dst;
  96. while (dst) {
  97. if (fromlen == dst->addrlen &&
  98. os_memcmp(from->sun_path, dst->addr.sun_path,
  99. fromlen - offsetof(struct sockaddr_un, sun_path))
  100. == 0) {
  101. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE changed monitor "
  102. "level", (u8 *) from->sun_path, fromlen -
  103. offsetof(struct sockaddr_un, sun_path));
  104. dst->debug_level = atoi(level);
  105. return 0;
  106. }
  107. dst = dst->next;
  108. }
  109. return -1;
  110. }
  111. static int hostapd_ctrl_iface_new_sta(struct hostapd_data *hapd,
  112. const char *txtaddr)
  113. {
  114. u8 addr[ETH_ALEN];
  115. struct sta_info *sta;
  116. wpa_printf(MSG_DEBUG, "CTRL_IFACE NEW_STA %s", txtaddr);
  117. if (hwaddr_aton(txtaddr, addr))
  118. return -1;
  119. sta = ap_get_sta(hapd, addr);
  120. if (sta)
  121. return 0;
  122. wpa_printf(MSG_DEBUG, "Add new STA " MACSTR " based on ctrl_iface "
  123. "notification", MAC2STR(addr));
  124. sta = ap_sta_add(hapd, addr);
  125. if (sta == NULL)
  126. return -1;
  127. hostapd_new_assoc_sta(hapd, sta, 0);
  128. return 0;
  129. }
  130. static int hostapd_ctrl_iface_deauthenticate(struct hostapd_data *hapd,
  131. const char *txtaddr)
  132. {
  133. u8 addr[ETH_ALEN];
  134. struct sta_info *sta;
  135. wpa_printf(MSG_DEBUG, "CTRL_IFACE DEAUTHENTICATE %s", txtaddr);
  136. if (hwaddr_aton(txtaddr, addr))
  137. return -1;
  138. hapd->drv.sta_deauth(hapd, addr, WLAN_REASON_PREV_AUTH_NOT_VALID);
  139. sta = ap_get_sta(hapd, addr);
  140. if (sta)
  141. ap_sta_deauthenticate(hapd, sta,
  142. WLAN_REASON_PREV_AUTH_NOT_VALID);
  143. return 0;
  144. }
  145. static int hostapd_ctrl_iface_disassociate(struct hostapd_data *hapd,
  146. const char *txtaddr)
  147. {
  148. u8 addr[ETH_ALEN];
  149. struct sta_info *sta;
  150. wpa_printf(MSG_DEBUG, "CTRL_IFACE DISASSOCIATE %s", txtaddr);
  151. if (hwaddr_aton(txtaddr, addr))
  152. return -1;
  153. hapd->drv.sta_disassoc(hapd, addr, WLAN_REASON_PREV_AUTH_NOT_VALID);
  154. sta = ap_get_sta(hapd, addr);
  155. if (sta)
  156. ap_sta_disassociate(hapd, sta,
  157. WLAN_REASON_PREV_AUTH_NOT_VALID);
  158. return 0;
  159. }
  160. #ifdef CONFIG_IEEE80211W
  161. #ifdef NEED_AP_MLME
  162. static int hostapd_ctrl_iface_sa_query(struct hostapd_data *hapd,
  163. const char *txtaddr)
  164. {
  165. u8 addr[ETH_ALEN];
  166. u8 trans_id[WLAN_SA_QUERY_TR_ID_LEN];
  167. wpa_printf(MSG_DEBUG, "CTRL_IFACE SA_QUERY %s", txtaddr);
  168. if (hwaddr_aton(txtaddr, addr) ||
  169. os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN) < 0)
  170. return -1;
  171. ieee802_11_send_sa_query_req(hapd, addr, trans_id);
  172. return 0;
  173. }
  174. #endif /* NEED_AP_MLME */
  175. #endif /* CONFIG_IEEE80211W */
  176. #ifdef CONFIG_WPS
  177. static int hostapd_ctrl_iface_wps_pin(struct hostapd_data *hapd, char *txt)
  178. {
  179. char *pin = os_strchr(txt, ' ');
  180. char *timeout_txt;
  181. int timeout;
  182. if (pin == NULL)
  183. return -1;
  184. *pin++ = '\0';
  185. timeout_txt = os_strchr(pin, ' ');
  186. if (timeout_txt) {
  187. *timeout_txt++ = '\0';
  188. timeout = atoi(timeout_txt);
  189. } else
  190. timeout = 0;
  191. return hostapd_wps_add_pin(hapd, txt, pin, timeout);
  192. }
  193. #ifdef CONFIG_WPS_OOB
  194. static int hostapd_ctrl_iface_wps_oob(struct hostapd_data *hapd, char *txt)
  195. {
  196. char *path, *method, *name;
  197. path = os_strchr(txt, ' ');
  198. if (path == NULL)
  199. return -1;
  200. *path++ = '\0';
  201. method = os_strchr(path, ' ');
  202. if (method == NULL)
  203. return -1;
  204. *method++ = '\0';
  205. name = os_strchr(method, ' ');
  206. if (name != NULL)
  207. *name++ = '\0';
  208. return hostapd_wps_start_oob(hapd, txt, path, method, name);
  209. }
  210. #endif /* CONFIG_WPS_OOB */
  211. #endif /* CONFIG_WPS */
  212. static void hostapd_ctrl_iface_receive(int sock, void *eloop_ctx,
  213. void *sock_ctx)
  214. {
  215. struct hostapd_data *hapd = eloop_ctx;
  216. char buf[256];
  217. int res;
  218. struct sockaddr_un from;
  219. socklen_t fromlen = sizeof(from);
  220. char *reply;
  221. const int reply_size = 4096;
  222. int reply_len;
  223. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  224. (struct sockaddr *) &from, &fromlen);
  225. if (res < 0) {
  226. perror("recvfrom(ctrl_iface)");
  227. return;
  228. }
  229. buf[res] = '\0';
  230. wpa_hexdump_ascii(MSG_DEBUG, "RX ctrl_iface", (u8 *) buf, res);
  231. reply = os_malloc(reply_size);
  232. if (reply == NULL) {
  233. sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
  234. fromlen);
  235. return;
  236. }
  237. os_memcpy(reply, "OK\n", 3);
  238. reply_len = 3;
  239. if (os_strcmp(buf, "PING") == 0) {
  240. os_memcpy(reply, "PONG\n", 5);
  241. reply_len = 5;
  242. } else if (os_strcmp(buf, "MIB") == 0) {
  243. reply_len = ieee802_11_get_mib(hapd, reply, reply_size);
  244. if (reply_len >= 0) {
  245. res = wpa_get_mib(hapd->wpa_auth, reply + reply_len,
  246. reply_size - reply_len);
  247. if (res < 0)
  248. reply_len = -1;
  249. else
  250. reply_len += res;
  251. }
  252. if (reply_len >= 0) {
  253. res = ieee802_1x_get_mib(hapd, reply + reply_len,
  254. reply_size - reply_len);
  255. if (res < 0)
  256. reply_len = -1;
  257. else
  258. reply_len += res;
  259. }
  260. #ifndef CONFIG_NO_RADIUS
  261. if (reply_len >= 0) {
  262. res = radius_client_get_mib(hapd->radius,
  263. reply + reply_len,
  264. reply_size - reply_len);
  265. if (res < 0)
  266. reply_len = -1;
  267. else
  268. reply_len += res;
  269. }
  270. #endif /* CONFIG_NO_RADIUS */
  271. } else if (os_strcmp(buf, "STA-FIRST") == 0) {
  272. reply_len = hostapd_ctrl_iface_sta_first(hapd, reply,
  273. reply_size);
  274. } else if (os_strncmp(buf, "STA ", 4) == 0) {
  275. reply_len = hostapd_ctrl_iface_sta(hapd, buf + 4, reply,
  276. reply_size);
  277. } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
  278. reply_len = hostapd_ctrl_iface_sta_next(hapd, buf + 9, reply,
  279. reply_size);
  280. } else if (os_strcmp(buf, "ATTACH") == 0) {
  281. if (hostapd_ctrl_iface_attach(hapd, &from, fromlen))
  282. reply_len = -1;
  283. } else if (os_strcmp(buf, "DETACH") == 0) {
  284. if (hostapd_ctrl_iface_detach(hapd, &from, fromlen))
  285. reply_len = -1;
  286. } else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
  287. if (hostapd_ctrl_iface_level(hapd, &from, fromlen,
  288. buf + 6))
  289. reply_len = -1;
  290. } else if (os_strncmp(buf, "NEW_STA ", 8) == 0) {
  291. if (hostapd_ctrl_iface_new_sta(hapd, buf + 8))
  292. reply_len = -1;
  293. } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
  294. if (hostapd_ctrl_iface_deauthenticate(hapd, buf + 15))
  295. reply_len = -1;
  296. } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
  297. if (hostapd_ctrl_iface_disassociate(hapd, buf + 13))
  298. reply_len = -1;
  299. #ifdef CONFIG_IEEE80211W
  300. #ifdef NEED_AP_MLME
  301. } else if (os_strncmp(buf, "SA_QUERY ", 9) == 0) {
  302. if (hostapd_ctrl_iface_sa_query(hapd, buf + 9))
  303. reply_len = -1;
  304. #endif /* NEED_AP_MLME */
  305. #endif /* CONFIG_IEEE80211W */
  306. #ifdef CONFIG_WPS
  307. } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
  308. if (hostapd_ctrl_iface_wps_pin(hapd, buf + 8))
  309. reply_len = -1;
  310. } else if (os_strcmp(buf, "WPS_PBC") == 0) {
  311. if (hostapd_wps_button_pushed(hapd))
  312. reply_len = -1;
  313. #ifdef CONFIG_WPS_OOB
  314. } else if (os_strncmp(buf, "WPS_OOB ", 8) == 0) {
  315. if (hostapd_ctrl_iface_wps_oob(hapd, buf + 8))
  316. reply_len = -1;
  317. #endif /* CONFIG_WPS_OOB */
  318. #endif /* CONFIG_WPS */
  319. } else {
  320. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  321. reply_len = 16;
  322. }
  323. if (reply_len < 0) {
  324. os_memcpy(reply, "FAIL\n", 5);
  325. reply_len = 5;
  326. }
  327. sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from, fromlen);
  328. os_free(reply);
  329. }
  330. static char * hostapd_ctrl_iface_path(struct hostapd_data *hapd)
  331. {
  332. char *buf;
  333. size_t len;
  334. if (hapd->conf->ctrl_interface == NULL)
  335. return NULL;
  336. len = os_strlen(hapd->conf->ctrl_interface) +
  337. os_strlen(hapd->conf->iface) + 2;
  338. buf = os_malloc(len);
  339. if (buf == NULL)
  340. return NULL;
  341. os_snprintf(buf, len, "%s/%s",
  342. hapd->conf->ctrl_interface, hapd->conf->iface);
  343. buf[len - 1] = '\0';
  344. return buf;
  345. }
  346. static void hostapd_ctrl_iface_msg_cb(void *ctx, int level,
  347. const char *txt, size_t len)
  348. {
  349. struct hostapd_data *hapd = ctx;
  350. if (hapd == NULL)
  351. return;
  352. hostapd_ctrl_iface_send(hapd, level, txt, len);
  353. }
  354. int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
  355. {
  356. struct sockaddr_un addr;
  357. int s = -1;
  358. char *fname = NULL;
  359. hapd->ctrl_sock = -1;
  360. if (hapd->conf->ctrl_interface == NULL)
  361. return 0;
  362. if (mkdir(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
  363. if (errno == EEXIST) {
  364. wpa_printf(MSG_DEBUG, "Using existing control "
  365. "interface directory.");
  366. } else {
  367. perror("mkdir[ctrl_interface]");
  368. goto fail;
  369. }
  370. }
  371. if (hapd->conf->ctrl_interface_gid_set &&
  372. chown(hapd->conf->ctrl_interface, 0,
  373. hapd->conf->ctrl_interface_gid) < 0) {
  374. perror("chown[ctrl_interface]");
  375. return -1;
  376. }
  377. if (os_strlen(hapd->conf->ctrl_interface) + 1 +
  378. os_strlen(hapd->conf->iface) >= sizeof(addr.sun_path))
  379. goto fail;
  380. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  381. if (s < 0) {
  382. perror("socket(PF_UNIX)");
  383. goto fail;
  384. }
  385. os_memset(&addr, 0, sizeof(addr));
  386. #ifdef __FreeBSD__
  387. addr.sun_len = sizeof(addr);
  388. #endif /* __FreeBSD__ */
  389. addr.sun_family = AF_UNIX;
  390. fname = hostapd_ctrl_iface_path(hapd);
  391. if (fname == NULL)
  392. goto fail;
  393. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  394. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  395. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  396. strerror(errno));
  397. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  398. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  399. " allow connections - assuming it was left"
  400. "over from forced program termination");
  401. if (unlink(fname) < 0) {
  402. perror("unlink[ctrl_iface]");
  403. wpa_printf(MSG_ERROR, "Could not unlink "
  404. "existing ctrl_iface socket '%s'",
  405. fname);
  406. goto fail;
  407. }
  408. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
  409. 0) {
  410. perror("bind(PF_UNIX)");
  411. goto fail;
  412. }
  413. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  414. "ctrl_iface socket '%s'", fname);
  415. } else {
  416. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  417. "be in use - cannot override it");
  418. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  419. "not used anymore", fname);
  420. os_free(fname);
  421. fname = NULL;
  422. goto fail;
  423. }
  424. }
  425. if (hapd->conf->ctrl_interface_gid_set &&
  426. chown(fname, 0, hapd->conf->ctrl_interface_gid) < 0) {
  427. perror("chown[ctrl_interface/ifname]");
  428. goto fail;
  429. }
  430. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  431. perror("chmod[ctrl_interface/ifname]");
  432. goto fail;
  433. }
  434. os_free(fname);
  435. hapd->ctrl_sock = s;
  436. eloop_register_read_sock(s, hostapd_ctrl_iface_receive, hapd,
  437. NULL);
  438. hapd->msg_ctx = hapd;
  439. wpa_msg_register_cb(hostapd_ctrl_iface_msg_cb);
  440. return 0;
  441. fail:
  442. if (s >= 0)
  443. close(s);
  444. if (fname) {
  445. unlink(fname);
  446. os_free(fname);
  447. }
  448. return -1;
  449. }
  450. void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd)
  451. {
  452. struct wpa_ctrl_dst *dst, *prev;
  453. if (hapd->ctrl_sock > -1) {
  454. char *fname;
  455. eloop_unregister_read_sock(hapd->ctrl_sock);
  456. close(hapd->ctrl_sock);
  457. hapd->ctrl_sock = -1;
  458. fname = hostapd_ctrl_iface_path(hapd);
  459. if (fname)
  460. unlink(fname);
  461. os_free(fname);
  462. if (hapd->conf->ctrl_interface &&
  463. rmdir(hapd->conf->ctrl_interface) < 0) {
  464. if (errno == ENOTEMPTY) {
  465. wpa_printf(MSG_DEBUG, "Control interface "
  466. "directory not empty - leaving it "
  467. "behind");
  468. } else {
  469. perror("rmdir[ctrl_interface]");
  470. }
  471. }
  472. }
  473. dst = hapd->ctrl_dst;
  474. while (dst) {
  475. prev = dst;
  476. dst = dst->next;
  477. os_free(prev);
  478. }
  479. }
  480. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  481. const char *buf, size_t len)
  482. {
  483. struct wpa_ctrl_dst *dst, *next;
  484. struct msghdr msg;
  485. int idx;
  486. struct iovec io[2];
  487. char levelstr[10];
  488. dst = hapd->ctrl_dst;
  489. if (hapd->ctrl_sock < 0 || dst == NULL)
  490. return;
  491. os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
  492. io[0].iov_base = levelstr;
  493. io[0].iov_len = os_strlen(levelstr);
  494. io[1].iov_base = (char *) buf;
  495. io[1].iov_len = len;
  496. os_memset(&msg, 0, sizeof(msg));
  497. msg.msg_iov = io;
  498. msg.msg_iovlen = 2;
  499. idx = 0;
  500. while (dst) {
  501. next = dst->next;
  502. if (level >= dst->debug_level) {
  503. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor send",
  504. (u8 *) dst->addr.sun_path, dst->addrlen -
  505. offsetof(struct sockaddr_un, sun_path));
  506. msg.msg_name = &dst->addr;
  507. msg.msg_namelen = dst->addrlen;
  508. if (sendmsg(hapd->ctrl_sock, &msg, 0) < 0) {
  509. int _errno = errno;
  510. wpa_printf(MSG_INFO, "CTRL_IFACE monitor[%d]: "
  511. "%d - %s",
  512. idx, errno, strerror(errno));
  513. dst->errors++;
  514. if (dst->errors > 10 || _errno == ENOENT) {
  515. hostapd_ctrl_iface_detach(
  516. hapd, &dst->addr,
  517. dst->addrlen);
  518. }
  519. } else
  520. dst->errors = 0;
  521. }
  522. idx++;
  523. dst = next;
  524. }
  525. }
  526. #endif /* CONFIG_NATIVE_WINDOWS */