ctrl_iface_unix.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927
  1. /*
  2. * WPA Supplicant / UNIX domain socket -based control interface
  3. * Copyright (c) 2004-2013, 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 "includes.h"
  9. #include <sys/un.h>
  10. #include <sys/stat.h>
  11. #include <grp.h>
  12. #include <stddef.h>
  13. #include <unistd.h>
  14. #include <fcntl.h>
  15. #ifdef ANDROID
  16. #include <cutils/sockets.h>
  17. #endif /* ANDROID */
  18. #include "utils/common.h"
  19. #include "utils/eloop.h"
  20. #include "utils/list.h"
  21. #include "eapol_supp/eapol_supp_sm.h"
  22. #include "config.h"
  23. #include "wpa_supplicant_i.h"
  24. #include "ctrl_iface.h"
  25. /* Per-interface ctrl_iface */
  26. /**
  27. * struct wpa_ctrl_dst - Internal data structure of control interface monitors
  28. *
  29. * This structure is used to store information about registered control
  30. * interface monitors into struct wpa_supplicant. This data is private to
  31. * ctrl_iface_unix.c and should not be touched directly from other files.
  32. */
  33. struct wpa_ctrl_dst {
  34. struct dl_list list;
  35. struct sockaddr_un addr;
  36. socklen_t addrlen;
  37. int debug_level;
  38. int errors;
  39. };
  40. struct ctrl_iface_priv {
  41. struct wpa_supplicant *wpa_s;
  42. int sock;
  43. struct dl_list ctrl_dst;
  44. };
  45. struct ctrl_iface_global_priv {
  46. struct wpa_global *global;
  47. int sock;
  48. struct dl_list ctrl_dst;
  49. };
  50. static void wpa_supplicant_ctrl_iface_send(const char *ifname, int sock,
  51. struct dl_list *ctrl_dst,
  52. int level, const char *buf,
  53. size_t len);
  54. static int wpa_supplicant_ctrl_iface_attach(struct dl_list *ctrl_dst,
  55. struct sockaddr_un *from,
  56. socklen_t fromlen)
  57. {
  58. struct wpa_ctrl_dst *dst;
  59. dst = os_zalloc(sizeof(*dst));
  60. if (dst == NULL)
  61. return -1;
  62. os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un));
  63. dst->addrlen = fromlen;
  64. dst->debug_level = MSG_INFO;
  65. dl_list_add(ctrl_dst, &dst->list);
  66. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor attached",
  67. (u8 *) from->sun_path,
  68. fromlen - offsetof(struct sockaddr_un, sun_path));
  69. return 0;
  70. }
  71. static int wpa_supplicant_ctrl_iface_detach(struct dl_list *ctrl_dst,
  72. struct sockaddr_un *from,
  73. socklen_t fromlen)
  74. {
  75. struct wpa_ctrl_dst *dst;
  76. dl_list_for_each(dst, ctrl_dst, struct wpa_ctrl_dst, list) {
  77. if (fromlen == dst->addrlen &&
  78. os_memcmp(from->sun_path, dst->addr.sun_path,
  79. fromlen - offsetof(struct sockaddr_un, sun_path))
  80. == 0) {
  81. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor detached",
  82. (u8 *) from->sun_path,
  83. fromlen -
  84. offsetof(struct sockaddr_un, sun_path));
  85. dl_list_del(&dst->list);
  86. os_free(dst);
  87. return 0;
  88. }
  89. }
  90. return -1;
  91. }
  92. static int wpa_supplicant_ctrl_iface_level(struct ctrl_iface_priv *priv,
  93. struct sockaddr_un *from,
  94. socklen_t fromlen,
  95. char *level)
  96. {
  97. struct wpa_ctrl_dst *dst;
  98. wpa_printf(MSG_DEBUG, "CTRL_IFACE LEVEL %s", level);
  99. dl_list_for_each(dst, &priv->ctrl_dst, struct wpa_ctrl_dst, list) {
  100. if (fromlen == dst->addrlen &&
  101. os_memcmp(from->sun_path, dst->addr.sun_path,
  102. fromlen - offsetof(struct sockaddr_un, sun_path))
  103. == 0) {
  104. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE changed monitor "
  105. "level", (u8 *) from->sun_path,
  106. fromlen -
  107. offsetof(struct sockaddr_un, sun_path));
  108. dst->debug_level = atoi(level);
  109. return 0;
  110. }
  111. }
  112. return -1;
  113. }
  114. static void wpa_supplicant_ctrl_iface_receive(int sock, void *eloop_ctx,
  115. void *sock_ctx)
  116. {
  117. struct wpa_supplicant *wpa_s = eloop_ctx;
  118. struct ctrl_iface_priv *priv = sock_ctx;
  119. char buf[4096];
  120. int res;
  121. struct sockaddr_un from;
  122. socklen_t fromlen = sizeof(from);
  123. char *reply = NULL;
  124. size_t reply_len = 0;
  125. int new_attached = 0;
  126. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  127. (struct sockaddr *) &from, &fromlen);
  128. if (res < 0) {
  129. wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
  130. strerror(errno));
  131. return;
  132. }
  133. buf[res] = '\0';
  134. if (os_strcmp(buf, "ATTACH") == 0) {
  135. if (wpa_supplicant_ctrl_iface_attach(&priv->ctrl_dst, &from,
  136. fromlen))
  137. reply_len = 1;
  138. else {
  139. new_attached = 1;
  140. reply_len = 2;
  141. }
  142. } else if (os_strcmp(buf, "DETACH") == 0) {
  143. if (wpa_supplicant_ctrl_iface_detach(&priv->ctrl_dst, &from,
  144. fromlen))
  145. reply_len = 1;
  146. else
  147. reply_len = 2;
  148. } else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
  149. if (wpa_supplicant_ctrl_iface_level(priv, &from, fromlen,
  150. buf + 6))
  151. reply_len = 1;
  152. else
  153. reply_len = 2;
  154. } else {
  155. reply = wpa_supplicant_ctrl_iface_process(wpa_s, buf,
  156. &reply_len);
  157. }
  158. if (reply) {
  159. sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from,
  160. fromlen);
  161. os_free(reply);
  162. } else if (reply_len == 1) {
  163. sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
  164. fromlen);
  165. } else if (reply_len == 2) {
  166. sendto(sock, "OK\n", 3, 0, (struct sockaddr *) &from,
  167. fromlen);
  168. }
  169. if (new_attached)
  170. eapol_sm_notify_ctrl_attached(wpa_s->eapol);
  171. }
  172. static char * wpa_supplicant_ctrl_iface_path(struct wpa_supplicant *wpa_s)
  173. {
  174. char *buf;
  175. size_t len;
  176. char *pbuf, *dir = NULL, *gid_str = NULL;
  177. int res;
  178. if (wpa_s->conf->ctrl_interface == NULL)
  179. return NULL;
  180. pbuf = os_strdup(wpa_s->conf->ctrl_interface);
  181. if (pbuf == NULL)
  182. return NULL;
  183. if (os_strncmp(pbuf, "DIR=", 4) == 0) {
  184. dir = pbuf + 4;
  185. gid_str = os_strstr(dir, " GROUP=");
  186. if (gid_str) {
  187. *gid_str = '\0';
  188. gid_str += 7;
  189. }
  190. } else
  191. dir = pbuf;
  192. len = os_strlen(dir) + os_strlen(wpa_s->ifname) + 2;
  193. buf = os_malloc(len);
  194. if (buf == NULL) {
  195. os_free(pbuf);
  196. return NULL;
  197. }
  198. res = os_snprintf(buf, len, "%s/%s", dir, wpa_s->ifname);
  199. if (res < 0 || (size_t) res >= len) {
  200. os_free(pbuf);
  201. os_free(buf);
  202. return NULL;
  203. }
  204. #ifdef __CYGWIN__
  205. {
  206. /* Windows/WinPcap uses interface names that are not suitable
  207. * as a file name - convert invalid chars to underscores */
  208. char *pos = buf;
  209. while (*pos) {
  210. if (*pos == '\\')
  211. *pos = '_';
  212. pos++;
  213. }
  214. }
  215. #endif /* __CYGWIN__ */
  216. os_free(pbuf);
  217. return buf;
  218. }
  219. static void wpa_supplicant_ctrl_iface_msg_cb(void *ctx, int level, int global,
  220. const char *txt, size_t len)
  221. {
  222. struct wpa_supplicant *wpa_s = ctx;
  223. if (wpa_s == NULL)
  224. return;
  225. if (global != 2 && wpa_s->global->ctrl_iface) {
  226. struct ctrl_iface_global_priv *priv = wpa_s->global->ctrl_iface;
  227. if (!dl_list_empty(&priv->ctrl_dst)) {
  228. wpa_supplicant_ctrl_iface_send(global ? NULL :
  229. wpa_s->ifname,
  230. priv->sock,
  231. &priv->ctrl_dst,
  232. level, txt, len);
  233. }
  234. }
  235. if (wpa_s->ctrl_iface == NULL)
  236. return;
  237. wpa_supplicant_ctrl_iface_send(NULL, wpa_s->ctrl_iface->sock,
  238. &wpa_s->ctrl_iface->ctrl_dst,
  239. level, txt, len);
  240. }
  241. struct ctrl_iface_priv *
  242. wpa_supplicant_ctrl_iface_init(struct wpa_supplicant *wpa_s)
  243. {
  244. struct ctrl_iface_priv *priv;
  245. struct sockaddr_un addr;
  246. char *fname = NULL;
  247. gid_t gid = 0;
  248. int gid_set = 0;
  249. char *buf, *dir = NULL, *gid_str = NULL;
  250. struct group *grp;
  251. char *endp;
  252. int flags;
  253. priv = os_zalloc(sizeof(*priv));
  254. if (priv == NULL)
  255. return NULL;
  256. dl_list_init(&priv->ctrl_dst);
  257. priv->wpa_s = wpa_s;
  258. priv->sock = -1;
  259. if (wpa_s->conf->ctrl_interface == NULL)
  260. return priv;
  261. buf = os_strdup(wpa_s->conf->ctrl_interface);
  262. if (buf == NULL)
  263. goto fail;
  264. #ifdef ANDROID
  265. os_snprintf(addr.sun_path, sizeof(addr.sun_path), "wpa_%s",
  266. wpa_s->conf->ctrl_interface);
  267. priv->sock = android_get_control_socket(addr.sun_path);
  268. if (priv->sock >= 0)
  269. goto havesock;
  270. #endif /* ANDROID */
  271. if (os_strncmp(buf, "DIR=", 4) == 0) {
  272. dir = buf + 4;
  273. gid_str = os_strstr(dir, " GROUP=");
  274. if (gid_str) {
  275. *gid_str = '\0';
  276. gid_str += 7;
  277. }
  278. } else {
  279. dir = buf;
  280. gid_str = wpa_s->conf->ctrl_interface_group;
  281. }
  282. if (mkdir(dir, S_IRWXU | S_IRWXG) < 0) {
  283. if (errno == EEXIST) {
  284. wpa_printf(MSG_DEBUG, "Using existing control "
  285. "interface directory.");
  286. } else {
  287. wpa_printf(MSG_ERROR, "mkdir[ctrl_interface=%s]: %s",
  288. dir, strerror(errno));
  289. goto fail;
  290. }
  291. }
  292. #ifdef ANDROID
  293. /*
  294. * wpa_supplicant is started from /init.*.rc on Android and that seems
  295. * to be using umask 0077 which would leave the control interface
  296. * directory without group access. This breaks things since Wi-Fi
  297. * framework assumes that this directory can be accessed by other
  298. * applications in the wifi group. Fix this by adding group access even
  299. * if umask value would prevent this.
  300. */
  301. if (chmod(dir, S_IRWXU | S_IRWXG) < 0) {
  302. wpa_printf(MSG_ERROR, "CTRL: Could not chmod directory: %s",
  303. strerror(errno));
  304. /* Try to continue anyway */
  305. }
  306. #endif /* ANDROID */
  307. if (gid_str) {
  308. grp = getgrnam(gid_str);
  309. if (grp) {
  310. gid = grp->gr_gid;
  311. gid_set = 1;
  312. wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d"
  313. " (from group name '%s')",
  314. (int) gid, gid_str);
  315. } else {
  316. /* Group name not found - try to parse this as gid */
  317. gid = strtol(gid_str, &endp, 10);
  318. if (*gid_str == '\0' || *endp != '\0') {
  319. wpa_printf(MSG_ERROR, "CTRL: Invalid group "
  320. "'%s'", gid_str);
  321. goto fail;
  322. }
  323. gid_set = 1;
  324. wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d",
  325. (int) gid);
  326. }
  327. }
  328. if (gid_set && chown(dir, -1, gid) < 0) {
  329. wpa_printf(MSG_ERROR, "chown[ctrl_interface=%s,gid=%d]: %s",
  330. dir, (int) gid, strerror(errno));
  331. goto fail;
  332. }
  333. /* Make sure the group can enter and read the directory */
  334. if (gid_set &&
  335. chmod(dir, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP) < 0) {
  336. wpa_printf(MSG_ERROR, "CTRL: chmod[ctrl_interface]: %s",
  337. strerror(errno));
  338. goto fail;
  339. }
  340. if (os_strlen(dir) + 1 + os_strlen(wpa_s->ifname) >=
  341. sizeof(addr.sun_path)) {
  342. wpa_printf(MSG_ERROR, "ctrl_iface path limit exceeded");
  343. goto fail;
  344. }
  345. priv->sock = socket(PF_UNIX, SOCK_DGRAM, 0);
  346. if (priv->sock < 0) {
  347. wpa_printf(MSG_ERROR, "socket(PF_UNIX): %s", strerror(errno));
  348. goto fail;
  349. }
  350. os_memset(&addr, 0, sizeof(addr));
  351. #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
  352. addr.sun_len = sizeof(addr);
  353. #endif /* __FreeBSD__ */
  354. addr.sun_family = AF_UNIX;
  355. fname = wpa_supplicant_ctrl_iface_path(wpa_s);
  356. if (fname == NULL)
  357. goto fail;
  358. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  359. if (bind(priv->sock, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  360. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  361. strerror(errno));
  362. if (connect(priv->sock, (struct sockaddr *) &addr,
  363. sizeof(addr)) < 0) {
  364. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  365. " allow connections - assuming it was left"
  366. "over from forced program termination");
  367. if (unlink(fname) < 0) {
  368. wpa_printf(MSG_ERROR,
  369. "Could not unlink existing ctrl_iface socket '%s': %s",
  370. fname, strerror(errno));
  371. goto fail;
  372. }
  373. if (bind(priv->sock, (struct sockaddr *) &addr,
  374. sizeof(addr)) < 0) {
  375. wpa_printf(MSG_ERROR, "supp-ctrl-iface-init: bind(PF_UNIX): %s",
  376. strerror(errno));
  377. goto fail;
  378. }
  379. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  380. "ctrl_iface socket '%s'", fname);
  381. } else {
  382. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  383. "be in use - cannot override it");
  384. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  385. "not used anymore", fname);
  386. os_free(fname);
  387. fname = NULL;
  388. goto fail;
  389. }
  390. }
  391. if (gid_set && chown(fname, -1, gid) < 0) {
  392. wpa_printf(MSG_ERROR, "chown[ctrl_interface=%s,gid=%d]: %s",
  393. fname, (int) gid, strerror(errno));
  394. goto fail;
  395. }
  396. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  397. wpa_printf(MSG_ERROR, "chmod[ctrl_interface=%s]: %s",
  398. fname, strerror(errno));
  399. goto fail;
  400. }
  401. os_free(fname);
  402. #ifdef ANDROID
  403. havesock:
  404. #endif /* ANDROID */
  405. /*
  406. * Make socket non-blocking so that we don't hang forever if
  407. * target dies unexpectedly.
  408. */
  409. flags = fcntl(priv->sock, F_GETFL);
  410. if (flags >= 0) {
  411. flags |= O_NONBLOCK;
  412. if (fcntl(priv->sock, F_SETFL, flags) < 0) {
  413. wpa_printf(MSG_INFO, "fcntl(ctrl, O_NONBLOCK): %s",
  414. strerror(errno));
  415. /* Not fatal, continue on.*/
  416. }
  417. }
  418. eloop_register_read_sock(priv->sock, wpa_supplicant_ctrl_iface_receive,
  419. wpa_s, priv);
  420. wpa_msg_register_cb(wpa_supplicant_ctrl_iface_msg_cb);
  421. os_free(buf);
  422. return priv;
  423. fail:
  424. if (priv->sock >= 0)
  425. close(priv->sock);
  426. os_free(priv);
  427. if (fname) {
  428. unlink(fname);
  429. os_free(fname);
  430. }
  431. os_free(buf);
  432. return NULL;
  433. }
  434. void wpa_supplicant_ctrl_iface_deinit(struct ctrl_iface_priv *priv)
  435. {
  436. struct wpa_ctrl_dst *dst, *prev;
  437. if (priv->sock > -1) {
  438. char *fname;
  439. char *buf, *dir = NULL, *gid_str = NULL;
  440. eloop_unregister_read_sock(priv->sock);
  441. if (!dl_list_empty(&priv->ctrl_dst)) {
  442. /*
  443. * Wait before closing the control socket if
  444. * there are any attached monitors in order to allow
  445. * them to receive any pending messages.
  446. */
  447. wpa_printf(MSG_DEBUG, "CTRL_IFACE wait for attached "
  448. "monitors to receive messages");
  449. os_sleep(0, 100000);
  450. }
  451. close(priv->sock);
  452. priv->sock = -1;
  453. fname = wpa_supplicant_ctrl_iface_path(priv->wpa_s);
  454. if (fname) {
  455. unlink(fname);
  456. os_free(fname);
  457. }
  458. buf = os_strdup(priv->wpa_s->conf->ctrl_interface);
  459. if (buf == NULL)
  460. goto free_dst;
  461. if (os_strncmp(buf, "DIR=", 4) == 0) {
  462. dir = buf + 4;
  463. gid_str = os_strstr(dir, " GROUP=");
  464. if (gid_str) {
  465. *gid_str = '\0';
  466. gid_str += 7;
  467. }
  468. } else
  469. dir = buf;
  470. if (rmdir(dir) < 0) {
  471. if (errno == ENOTEMPTY) {
  472. wpa_printf(MSG_DEBUG, "Control interface "
  473. "directory not empty - leaving it "
  474. "behind");
  475. } else {
  476. wpa_printf(MSG_ERROR,
  477. "rmdir[ctrl_interface=%s]: %s",
  478. dir, strerror(errno));
  479. }
  480. }
  481. os_free(buf);
  482. }
  483. free_dst:
  484. dl_list_for_each_safe(dst, prev, &priv->ctrl_dst, struct wpa_ctrl_dst,
  485. list)
  486. os_free(dst);
  487. os_free(priv);
  488. }
  489. /**
  490. * wpa_supplicant_ctrl_iface_send - Send a control interface packet to monitors
  491. * @ifname: Interface name for global control socket or %NULL
  492. * @sock: Local socket fd
  493. * @ctrl_dst: List of attached listeners
  494. * @level: Priority level of the message
  495. * @buf: Message data
  496. * @len: Message length
  497. *
  498. * Send a packet to all monitor programs attached to the control interface.
  499. */
  500. static void wpa_supplicant_ctrl_iface_send(const char *ifname, int sock,
  501. struct dl_list *ctrl_dst,
  502. int level, const char *buf,
  503. size_t len)
  504. {
  505. struct wpa_ctrl_dst *dst, *next;
  506. char levelstr[10];
  507. int idx, res;
  508. struct msghdr msg;
  509. struct iovec io[5];
  510. if (sock < 0 || dl_list_empty(ctrl_dst))
  511. return;
  512. res = os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
  513. if (res < 0 || (size_t) res >= sizeof(levelstr))
  514. return;
  515. idx = 0;
  516. if (ifname) {
  517. io[idx].iov_base = "IFNAME=";
  518. io[idx].iov_len = 7;
  519. idx++;
  520. io[idx].iov_base = (char *) ifname;
  521. io[idx].iov_len = os_strlen(ifname);
  522. idx++;
  523. io[idx].iov_base = " ";
  524. io[idx].iov_len = 1;
  525. idx++;
  526. }
  527. io[idx].iov_base = levelstr;
  528. io[idx].iov_len = os_strlen(levelstr);
  529. idx++;
  530. io[idx].iov_base = (char *) buf;
  531. io[idx].iov_len = len;
  532. idx++;
  533. os_memset(&msg, 0, sizeof(msg));
  534. msg.msg_iov = io;
  535. msg.msg_iovlen = idx;
  536. idx = 0;
  537. dl_list_for_each_safe(dst, next, ctrl_dst, struct wpa_ctrl_dst, list) {
  538. if (level >= dst->debug_level) {
  539. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor send",
  540. (u8 *) dst->addr.sun_path, dst->addrlen -
  541. offsetof(struct sockaddr_un, sun_path));
  542. msg.msg_name = (void *) &dst->addr;
  543. msg.msg_namelen = dst->addrlen;
  544. if (sendmsg(sock, &msg, MSG_DONTWAIT) < 0) {
  545. int _errno = errno;
  546. wpa_printf(MSG_INFO, "CTRL_IFACE monitor[%d]: "
  547. "%d - %s",
  548. idx, errno, strerror(errno));
  549. dst->errors++;
  550. if (dst->errors > 1000 ||
  551. (_errno != ENOBUFS && dst->errors > 10) ||
  552. _errno == ENOENT) {
  553. wpa_supplicant_ctrl_iface_detach(
  554. ctrl_dst, &dst->addr,
  555. dst->addrlen);
  556. }
  557. } else
  558. dst->errors = 0;
  559. }
  560. idx++;
  561. }
  562. }
  563. void wpa_supplicant_ctrl_iface_wait(struct ctrl_iface_priv *priv)
  564. {
  565. char buf[256];
  566. int res;
  567. struct sockaddr_un from;
  568. socklen_t fromlen = sizeof(from);
  569. for (;;) {
  570. wpa_printf(MSG_DEBUG, "CTRL_IFACE - %s - wait for monitor to "
  571. "attach", priv->wpa_s->ifname);
  572. eloop_wait_for_read_sock(priv->sock);
  573. res = recvfrom(priv->sock, buf, sizeof(buf) - 1, 0,
  574. (struct sockaddr *) &from, &fromlen);
  575. if (res < 0) {
  576. wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
  577. strerror(errno));
  578. continue;
  579. }
  580. buf[res] = '\0';
  581. if (os_strcmp(buf, "ATTACH") == 0) {
  582. /* handle ATTACH signal of first monitor interface */
  583. if (!wpa_supplicant_ctrl_iface_attach(&priv->ctrl_dst,
  584. &from, fromlen)) {
  585. sendto(priv->sock, "OK\n", 3, 0,
  586. (struct sockaddr *) &from, fromlen);
  587. /* OK to continue */
  588. return;
  589. } else {
  590. sendto(priv->sock, "FAIL\n", 5, 0,
  591. (struct sockaddr *) &from, fromlen);
  592. }
  593. } else {
  594. /* return FAIL for all other signals */
  595. sendto(priv->sock, "FAIL\n", 5, 0,
  596. (struct sockaddr *) &from, fromlen);
  597. }
  598. }
  599. }
  600. /* Global ctrl_iface */
  601. static void wpa_supplicant_global_ctrl_iface_receive(int sock, void *eloop_ctx,
  602. void *sock_ctx)
  603. {
  604. struct wpa_global *global = eloop_ctx;
  605. struct ctrl_iface_global_priv *priv = sock_ctx;
  606. char buf[256];
  607. int res;
  608. struct sockaddr_un from;
  609. socklen_t fromlen = sizeof(from);
  610. char *reply = NULL;
  611. size_t reply_len;
  612. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  613. (struct sockaddr *) &from, &fromlen);
  614. if (res < 0) {
  615. wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
  616. strerror(errno));
  617. return;
  618. }
  619. buf[res] = '\0';
  620. if (os_strcmp(buf, "ATTACH") == 0) {
  621. if (wpa_supplicant_ctrl_iface_attach(&priv->ctrl_dst, &from,
  622. fromlen))
  623. reply_len = 1;
  624. else
  625. reply_len = 2;
  626. } else if (os_strcmp(buf, "DETACH") == 0) {
  627. if (wpa_supplicant_ctrl_iface_detach(&priv->ctrl_dst, &from,
  628. fromlen))
  629. reply_len = 1;
  630. else
  631. reply_len = 2;
  632. } else {
  633. reply = wpa_supplicant_global_ctrl_iface_process(global, buf,
  634. &reply_len);
  635. }
  636. if (reply) {
  637. sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from,
  638. fromlen);
  639. os_free(reply);
  640. } else if (reply_len == 1) {
  641. sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
  642. fromlen);
  643. } else if (reply_len == 2) {
  644. sendto(sock, "OK\n", 3, 0, (struct sockaddr *) &from, fromlen);
  645. }
  646. }
  647. struct ctrl_iface_global_priv *
  648. wpa_supplicant_global_ctrl_iface_init(struct wpa_global *global)
  649. {
  650. struct ctrl_iface_global_priv *priv;
  651. struct sockaddr_un addr;
  652. const char *ctrl = global->params.ctrl_interface;
  653. int flags;
  654. priv = os_zalloc(sizeof(*priv));
  655. if (priv == NULL)
  656. return NULL;
  657. dl_list_init(&priv->ctrl_dst);
  658. priv->global = global;
  659. priv->sock = -1;
  660. if (ctrl == NULL)
  661. return priv;
  662. wpa_printf(MSG_DEBUG, "Global control interface '%s'", ctrl);
  663. #ifdef ANDROID
  664. if (os_strncmp(ctrl, "@android:", 9) == 0) {
  665. priv->sock = android_get_control_socket(ctrl + 9);
  666. if (priv->sock < 0) {
  667. wpa_printf(MSG_ERROR, "Failed to open Android control "
  668. "socket '%s'", ctrl + 9);
  669. goto fail;
  670. }
  671. wpa_printf(MSG_DEBUG, "Using Android control socket '%s'",
  672. ctrl + 9);
  673. goto havesock;
  674. }
  675. if (os_strncmp(ctrl, "@abstract:", 10) != 0) {
  676. /*
  677. * Backwards compatibility - try to open an Android control
  678. * socket and if that fails, assume this was a UNIX domain
  679. * socket instead.
  680. */
  681. priv->sock = android_get_control_socket(ctrl);
  682. if (priv->sock >= 0) {
  683. wpa_printf(MSG_DEBUG,
  684. "Using Android control socket '%s'",
  685. ctrl);
  686. goto havesock;
  687. }
  688. }
  689. #endif /* ANDROID */
  690. priv->sock = socket(PF_UNIX, SOCK_DGRAM, 0);
  691. if (priv->sock < 0) {
  692. wpa_printf(MSG_ERROR, "socket(PF_UNIX): %s", strerror(errno));
  693. goto fail;
  694. }
  695. os_memset(&addr, 0, sizeof(addr));
  696. #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
  697. addr.sun_len = sizeof(addr);
  698. #endif /* __FreeBSD__ */
  699. addr.sun_family = AF_UNIX;
  700. if (os_strncmp(ctrl, "@abstract:", 10) == 0) {
  701. addr.sun_path[0] = '\0';
  702. os_strlcpy(addr.sun_path + 1, ctrl + 10,
  703. sizeof(addr.sun_path) - 1);
  704. if (bind(priv->sock, (struct sockaddr *) &addr, sizeof(addr)) <
  705. 0) {
  706. wpa_printf(MSG_ERROR, "supp-global-ctrl-iface-init: "
  707. "bind(PF_UNIX;%s) failed: %s",
  708. ctrl, strerror(errno));
  709. goto fail;
  710. }
  711. wpa_printf(MSG_DEBUG, "Using Abstract control socket '%s'",
  712. ctrl + 10);
  713. goto havesock;
  714. }
  715. os_strlcpy(addr.sun_path, ctrl, sizeof(addr.sun_path));
  716. if (bind(priv->sock, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  717. wpa_printf(MSG_INFO, "supp-global-ctrl-iface-init(%s) (will try fixup): bind(PF_UNIX): %s",
  718. ctrl, strerror(errno));
  719. if (connect(priv->sock, (struct sockaddr *) &addr,
  720. sizeof(addr)) < 0) {
  721. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  722. " allow connections - assuming it was left"
  723. "over from forced program termination");
  724. if (unlink(ctrl) < 0) {
  725. wpa_printf(MSG_ERROR,
  726. "Could not unlink existing ctrl_iface socket '%s': %s",
  727. ctrl, strerror(errno));
  728. goto fail;
  729. }
  730. if (bind(priv->sock, (struct sockaddr *) &addr,
  731. sizeof(addr)) < 0) {
  732. wpa_printf(MSG_ERROR, "supp-glb-iface-init: bind(PF_UNIX;%s): %s",
  733. ctrl, strerror(errno));
  734. goto fail;
  735. }
  736. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  737. "ctrl_iface socket '%s'",
  738. ctrl);
  739. } else {
  740. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  741. "be in use - cannot override it");
  742. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  743. "not used anymore",
  744. ctrl);
  745. goto fail;
  746. }
  747. }
  748. wpa_printf(MSG_DEBUG, "Using UNIX control socket '%s'", ctrl);
  749. if (global->params.ctrl_interface_group) {
  750. char *gid_str = global->params.ctrl_interface_group;
  751. gid_t gid = 0;
  752. struct group *grp;
  753. char *endp;
  754. grp = getgrnam(gid_str);
  755. if (grp) {
  756. gid = grp->gr_gid;
  757. wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d"
  758. " (from group name '%s')",
  759. (int) gid, gid_str);
  760. } else {
  761. /* Group name not found - try to parse this as gid */
  762. gid = strtol(gid_str, &endp, 10);
  763. if (*gid_str == '\0' || *endp != '\0') {
  764. wpa_printf(MSG_ERROR, "CTRL: Invalid group "
  765. "'%s'", gid_str);
  766. goto fail;
  767. }
  768. wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d",
  769. (int) gid);
  770. }
  771. if (chown(ctrl, -1, gid) < 0) {
  772. wpa_printf(MSG_ERROR,
  773. "chown[global_ctrl_interface=%s,gid=%d]: %s",
  774. ctrl, (int) gid, strerror(errno));
  775. goto fail;
  776. }
  777. if (chmod(ctrl, S_IRWXU | S_IRWXG) < 0) {
  778. wpa_printf(MSG_ERROR,
  779. "chmod[global_ctrl_interface=%s]: %s",
  780. ctrl, strerror(errno));
  781. goto fail;
  782. }
  783. } else {
  784. chmod(ctrl, S_IRWXU);
  785. }
  786. havesock:
  787. /*
  788. * Make socket non-blocking so that we don't hang forever if
  789. * target dies unexpectedly.
  790. */
  791. flags = fcntl(priv->sock, F_GETFL);
  792. if (flags >= 0) {
  793. flags |= O_NONBLOCK;
  794. if (fcntl(priv->sock, F_SETFL, flags) < 0) {
  795. wpa_printf(MSG_INFO, "fcntl(ctrl, O_NONBLOCK): %s",
  796. strerror(errno));
  797. /* Not fatal, continue on.*/
  798. }
  799. }
  800. eloop_register_read_sock(priv->sock,
  801. wpa_supplicant_global_ctrl_iface_receive,
  802. global, priv);
  803. return priv;
  804. fail:
  805. if (priv->sock >= 0)
  806. close(priv->sock);
  807. os_free(priv);
  808. return NULL;
  809. }
  810. void
  811. wpa_supplicant_global_ctrl_iface_deinit(struct ctrl_iface_global_priv *priv)
  812. {
  813. struct wpa_ctrl_dst *dst, *prev;
  814. if (priv->sock >= 0) {
  815. eloop_unregister_read_sock(priv->sock);
  816. close(priv->sock);
  817. }
  818. if (priv->global->params.ctrl_interface)
  819. unlink(priv->global->params.ctrl_interface);
  820. dl_list_for_each_safe(dst, prev, &priv->ctrl_dst, struct wpa_ctrl_dst,
  821. list)
  822. os_free(dst);
  823. os_free(priv);
  824. }