ctrl_iface_unix.c 22 KB

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