ctrl_iface.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569
  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. if (reply_len >= 0) {
  230. res = radius_client_get_mib(hapd->radius,
  231. reply + reply_len,
  232. reply_size - reply_len);
  233. if (res < 0)
  234. reply_len = -1;
  235. else
  236. reply_len += res;
  237. }
  238. } else if (os_strcmp(buf, "STA-FIRST") == 0) {
  239. reply_len = hostapd_ctrl_iface_sta_first(hapd, reply,
  240. reply_size);
  241. } else if (os_strncmp(buf, "STA ", 4) == 0) {
  242. reply_len = hostapd_ctrl_iface_sta(hapd, buf + 4, reply,
  243. reply_size);
  244. } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
  245. reply_len = hostapd_ctrl_iface_sta_next(hapd, buf + 9, reply,
  246. reply_size);
  247. } else if (os_strcmp(buf, "ATTACH") == 0) {
  248. if (hostapd_ctrl_iface_attach(hapd, &from, fromlen))
  249. reply_len = -1;
  250. } else if (os_strcmp(buf, "DETACH") == 0) {
  251. if (hostapd_ctrl_iface_detach(hapd, &from, fromlen))
  252. reply_len = -1;
  253. } else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
  254. if (hostapd_ctrl_iface_level(hapd, &from, fromlen,
  255. buf + 6))
  256. reply_len = -1;
  257. } else if (os_strncmp(buf, "NEW_STA ", 8) == 0) {
  258. if (hostapd_ctrl_iface_new_sta(hapd, buf + 8))
  259. reply_len = -1;
  260. #ifdef CONFIG_IEEE80211W
  261. #ifdef NEED_AP_MLME
  262. } else if (os_strncmp(buf, "SA_QUERY ", 9) == 0) {
  263. if (hostapd_ctrl_iface_sa_query(hapd, buf + 9))
  264. reply_len = -1;
  265. #endif /* NEED_AP_MLME */
  266. #endif /* CONFIG_IEEE80211W */
  267. #ifdef CONFIG_WPS
  268. } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
  269. if (hostapd_ctrl_iface_wps_pin(hapd, buf + 8))
  270. reply_len = -1;
  271. } else if (os_strcmp(buf, "WPS_PBC") == 0) {
  272. if (hostapd_wps_button_pushed(hapd))
  273. reply_len = -1;
  274. #ifdef CONFIG_WPS_OOB
  275. } else if (os_strncmp(buf, "WPS_OOB ", 8) == 0) {
  276. if (hostapd_ctrl_iface_wps_oob(hapd, buf + 8))
  277. reply_len = -1;
  278. #endif /* CONFIG_WPS_OOB */
  279. #endif /* CONFIG_WPS */
  280. } else {
  281. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  282. reply_len = 16;
  283. }
  284. if (reply_len < 0) {
  285. os_memcpy(reply, "FAIL\n", 5);
  286. reply_len = 5;
  287. }
  288. sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from, fromlen);
  289. os_free(reply);
  290. }
  291. static char * hostapd_ctrl_iface_path(struct hostapd_data *hapd)
  292. {
  293. char *buf;
  294. size_t len;
  295. if (hapd->conf->ctrl_interface == NULL)
  296. return NULL;
  297. len = os_strlen(hapd->conf->ctrl_interface) +
  298. os_strlen(hapd->conf->iface) + 2;
  299. buf = os_malloc(len);
  300. if (buf == NULL)
  301. return NULL;
  302. os_snprintf(buf, len, "%s/%s",
  303. hapd->conf->ctrl_interface, hapd->conf->iface);
  304. buf[len - 1] = '\0';
  305. return buf;
  306. }
  307. static void hostapd_ctrl_iface_msg_cb(void *ctx, int level,
  308. const char *txt, size_t len)
  309. {
  310. struct hostapd_data *hapd = ctx;
  311. if (hapd == NULL)
  312. return;
  313. hostapd_ctrl_iface_send(hapd, level, txt, len);
  314. }
  315. int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
  316. {
  317. struct sockaddr_un addr;
  318. int s = -1;
  319. char *fname = NULL;
  320. hapd->ctrl_sock = -1;
  321. if (hapd->conf->ctrl_interface == NULL)
  322. return 0;
  323. if (mkdir(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
  324. if (errno == EEXIST) {
  325. wpa_printf(MSG_DEBUG, "Using existing control "
  326. "interface directory.");
  327. } else {
  328. perror("mkdir[ctrl_interface]");
  329. goto fail;
  330. }
  331. }
  332. if (hapd->conf->ctrl_interface_gid_set &&
  333. chown(hapd->conf->ctrl_interface, 0,
  334. hapd->conf->ctrl_interface_gid) < 0) {
  335. perror("chown[ctrl_interface]");
  336. return -1;
  337. }
  338. if (os_strlen(hapd->conf->ctrl_interface) + 1 +
  339. os_strlen(hapd->conf->iface) >= sizeof(addr.sun_path))
  340. goto fail;
  341. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  342. if (s < 0) {
  343. perror("socket(PF_UNIX)");
  344. goto fail;
  345. }
  346. os_memset(&addr, 0, sizeof(addr));
  347. #ifdef __FreeBSD__
  348. addr.sun_len = sizeof(addr);
  349. #endif /* __FreeBSD__ */
  350. addr.sun_family = AF_UNIX;
  351. fname = hostapd_ctrl_iface_path(hapd);
  352. if (fname == NULL)
  353. goto fail;
  354. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  355. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  356. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  357. strerror(errno));
  358. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  359. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  360. " allow connections - assuming it was left"
  361. "over from forced program termination");
  362. if (unlink(fname) < 0) {
  363. perror("unlink[ctrl_iface]");
  364. wpa_printf(MSG_ERROR, "Could not unlink "
  365. "existing ctrl_iface socket '%s'",
  366. fname);
  367. goto fail;
  368. }
  369. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
  370. 0) {
  371. perror("bind(PF_UNIX)");
  372. goto fail;
  373. }
  374. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  375. "ctrl_iface socket '%s'", fname);
  376. } else {
  377. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  378. "be in use - cannot override it");
  379. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  380. "not used anymore", fname);
  381. os_free(fname);
  382. fname = NULL;
  383. goto fail;
  384. }
  385. }
  386. if (hapd->conf->ctrl_interface_gid_set &&
  387. chown(fname, 0, hapd->conf->ctrl_interface_gid) < 0) {
  388. perror("chown[ctrl_interface/ifname]");
  389. goto fail;
  390. }
  391. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  392. perror("chmod[ctrl_interface/ifname]");
  393. goto fail;
  394. }
  395. os_free(fname);
  396. hapd->ctrl_sock = s;
  397. eloop_register_read_sock(s, hostapd_ctrl_iface_receive, hapd,
  398. NULL);
  399. hapd->msg_ctx = hapd;
  400. wpa_msg_register_cb(hostapd_ctrl_iface_msg_cb);
  401. return 0;
  402. fail:
  403. if (s >= 0)
  404. close(s);
  405. if (fname) {
  406. unlink(fname);
  407. os_free(fname);
  408. }
  409. return -1;
  410. }
  411. void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd)
  412. {
  413. struct wpa_ctrl_dst *dst, *prev;
  414. if (hapd->ctrl_sock > -1) {
  415. char *fname;
  416. eloop_unregister_read_sock(hapd->ctrl_sock);
  417. close(hapd->ctrl_sock);
  418. hapd->ctrl_sock = -1;
  419. fname = hostapd_ctrl_iface_path(hapd);
  420. if (fname)
  421. unlink(fname);
  422. os_free(fname);
  423. if (hapd->conf->ctrl_interface &&
  424. rmdir(hapd->conf->ctrl_interface) < 0) {
  425. if (errno == ENOTEMPTY) {
  426. wpa_printf(MSG_DEBUG, "Control interface "
  427. "directory not empty - leaving it "
  428. "behind");
  429. } else {
  430. perror("rmdir[ctrl_interface]");
  431. }
  432. }
  433. }
  434. dst = hapd->ctrl_dst;
  435. while (dst) {
  436. prev = dst;
  437. dst = dst->next;
  438. os_free(prev);
  439. }
  440. }
  441. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  442. const char *buf, size_t len)
  443. {
  444. struct wpa_ctrl_dst *dst, *next;
  445. struct msghdr msg;
  446. int idx;
  447. struct iovec io[2];
  448. char levelstr[10];
  449. dst = hapd->ctrl_dst;
  450. if (hapd->ctrl_sock < 0 || dst == NULL)
  451. return;
  452. os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
  453. io[0].iov_base = levelstr;
  454. io[0].iov_len = os_strlen(levelstr);
  455. io[1].iov_base = (char *) buf;
  456. io[1].iov_len = len;
  457. os_memset(&msg, 0, sizeof(msg));
  458. msg.msg_iov = io;
  459. msg.msg_iovlen = 2;
  460. idx = 0;
  461. while (dst) {
  462. next = dst->next;
  463. if (level >= dst->debug_level) {
  464. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor send",
  465. (u8 *) dst->addr.sun_path, dst->addrlen -
  466. offsetof(struct sockaddr_un, sun_path));
  467. msg.msg_name = &dst->addr;
  468. msg.msg_namelen = dst->addrlen;
  469. if (sendmsg(hapd->ctrl_sock, &msg, 0) < 0) {
  470. int _errno = errno;
  471. wpa_printf(MSG_INFO, "CTRL_IFACE monitor[%d]: "
  472. "%d - %s",
  473. idx, errno, strerror(errno));
  474. dst->errors++;
  475. if (dst->errors > 10 || _errno == ENOENT) {
  476. hostapd_ctrl_iface_detach(
  477. hapd, &dst->addr,
  478. dst->addrlen);
  479. }
  480. } else
  481. dst->errors = 0;
  482. }
  483. idx++;
  484. dst = next;
  485. }
  486. }
  487. #endif /* CONFIG_NATIVE_WINDOWS */