ctrl_iface.c 13 KB

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