ctrl_iface_unix.c 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171
  1. /*
  2. * WPA Supplicant / UNIX domain socket -based control interface
  3. * Copyright (c) 2004-2014, 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 __linux__
  16. #include <sys/ioctl.h>
  17. #include <linux/sockios.h>
  18. #endif /* __linux__ */
  19. #ifdef ANDROID
  20. #include <cutils/sockets.h>
  21. #endif /* ANDROID */
  22. #include "utils/common.h"
  23. #include "utils/eloop.h"
  24. #include "utils/list.h"
  25. #include "eapol_supp/eapol_supp_sm.h"
  26. #include "config.h"
  27. #include "wpa_supplicant_i.h"
  28. #include "ctrl_iface.h"
  29. /* Per-interface ctrl_iface */
  30. /**
  31. * struct wpa_ctrl_dst - Internal data structure of control interface monitors
  32. *
  33. * This structure is used to store information about registered control
  34. * interface monitors into struct wpa_supplicant. This data is private to
  35. * ctrl_iface_unix.c and should not be touched directly from other files.
  36. */
  37. struct wpa_ctrl_dst {
  38. struct dl_list list;
  39. struct sockaddr_un addr;
  40. socklen_t addrlen;
  41. int debug_level;
  42. int errors;
  43. };
  44. struct ctrl_iface_priv {
  45. struct wpa_supplicant *wpa_s;
  46. int sock;
  47. struct dl_list ctrl_dst;
  48. int android_control_socket;
  49. };
  50. struct ctrl_iface_global_priv {
  51. struct wpa_global *global;
  52. int sock;
  53. struct dl_list ctrl_dst;
  54. int android_control_socket;
  55. };
  56. static void wpa_supplicant_ctrl_iface_send(struct wpa_supplicant *wpa_s,
  57. const char *ifname, int sock,
  58. struct dl_list *ctrl_dst,
  59. int level, const char *buf,
  60. size_t len,
  61. struct ctrl_iface_priv *priv,
  62. struct ctrl_iface_global_priv *gp);
  63. static int wpas_ctrl_iface_reinit(struct wpa_supplicant *wpa_s,
  64. struct ctrl_iface_priv *priv);
  65. static int wpas_ctrl_iface_global_reinit(struct wpa_global *global,
  66. struct ctrl_iface_global_priv *priv);
  67. static void wpas_ctrl_sock_debug(const char *title, int sock, const char *buf,
  68. size_t len)
  69. {
  70. #ifdef __linux__
  71. socklen_t optlen;
  72. int sndbuf, outq;
  73. int level = MSG_MSGDUMP;
  74. if (len >= 5 && os_strncmp(buf, "PONG\n", 5) == 0)
  75. level = MSG_EXCESSIVE;
  76. optlen = sizeof(sndbuf);
  77. sndbuf = 0;
  78. if (getsockopt(sock, SOL_SOCKET, SO_SNDBUF, &sndbuf, &optlen) < 0)
  79. sndbuf = -1;
  80. if (ioctl(sock, SIOCOUTQ, &outq) < 0)
  81. outq = -1;
  82. wpa_printf(level,
  83. "CTRL-DEBUG: %s: sock=%d sndbuf=%d outq=%d send_len=%d",
  84. title, sock, sndbuf, outq, (int) len);
  85. #endif /* __linux__ */
  86. }
  87. static int wpa_supplicant_ctrl_iface_attach(struct dl_list *ctrl_dst,
  88. struct sockaddr_un *from,
  89. socklen_t fromlen, int global)
  90. {
  91. struct wpa_ctrl_dst *dst;
  92. char addr_txt[200];
  93. dst = os_zalloc(sizeof(*dst));
  94. if (dst == NULL)
  95. return -1;
  96. os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un));
  97. dst->addrlen = fromlen;
  98. dst->debug_level = MSG_INFO;
  99. dl_list_add(ctrl_dst, &dst->list);
  100. printf_encode(addr_txt, sizeof(addr_txt),
  101. (u8 *) from->sun_path,
  102. fromlen - offsetof(struct sockaddr_un, sun_path));
  103. wpa_printf(MSG_DEBUG, "CTRL_IFACE %smonitor attached %s",
  104. global ? "global " : "", addr_txt);
  105. return 0;
  106. }
  107. static int wpa_supplicant_ctrl_iface_detach(struct dl_list *ctrl_dst,
  108. struct sockaddr_un *from,
  109. socklen_t fromlen)
  110. {
  111. struct wpa_ctrl_dst *dst;
  112. dl_list_for_each(dst, ctrl_dst, struct wpa_ctrl_dst, list) {
  113. if (fromlen == dst->addrlen &&
  114. os_memcmp(from->sun_path, dst->addr.sun_path,
  115. fromlen - offsetof(struct sockaddr_un, sun_path))
  116. == 0) {
  117. char addr_txt[200];
  118. printf_encode(addr_txt, sizeof(addr_txt),
  119. (u8 *) from->sun_path,
  120. fromlen -
  121. offsetof(struct sockaddr_un, sun_path));
  122. wpa_printf(MSG_DEBUG, "CTRL_IFACE monitor detached %s",
  123. addr_txt);
  124. dl_list_del(&dst->list);
  125. os_free(dst);
  126. return 0;
  127. }
  128. }
  129. return -1;
  130. }
  131. static int wpa_supplicant_ctrl_iface_level(struct ctrl_iface_priv *priv,
  132. struct sockaddr_un *from,
  133. socklen_t fromlen,
  134. char *level)
  135. {
  136. struct wpa_ctrl_dst *dst;
  137. wpa_printf(MSG_DEBUG, "CTRL_IFACE LEVEL %s", level);
  138. dl_list_for_each(dst, &priv->ctrl_dst, struct wpa_ctrl_dst, list) {
  139. if (fromlen == dst->addrlen &&
  140. os_memcmp(from->sun_path, dst->addr.sun_path,
  141. fromlen - offsetof(struct sockaddr_un, sun_path))
  142. == 0) {
  143. char addr_txt[200];
  144. dst->debug_level = atoi(level);
  145. printf_encode(addr_txt, sizeof(addr_txt),
  146. (u8 *) from->sun_path, fromlen -
  147. offsetof(struct sockaddr_un, sun_path));
  148. wpa_printf(MSG_DEBUG, "CTRL_IFACE changed monitor level to %d for %s",
  149. dst->debug_level, addr_txt);
  150. return 0;
  151. }
  152. }
  153. return -1;
  154. }
  155. static void wpa_supplicant_ctrl_iface_receive(int sock, void *eloop_ctx,
  156. void *sock_ctx)
  157. {
  158. struct wpa_supplicant *wpa_s = eloop_ctx;
  159. struct ctrl_iface_priv *priv = sock_ctx;
  160. char buf[4096];
  161. int res;
  162. struct sockaddr_un from;
  163. socklen_t fromlen = sizeof(from);
  164. char *reply = NULL, *reply_buf = NULL;
  165. size_t reply_len = 0;
  166. int new_attached = 0;
  167. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  168. (struct sockaddr *) &from, &fromlen);
  169. if (res < 0) {
  170. wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
  171. strerror(errno));
  172. return;
  173. }
  174. buf[res] = '\0';
  175. if (os_strcmp(buf, "ATTACH") == 0) {
  176. if (wpa_supplicant_ctrl_iface_attach(&priv->ctrl_dst, &from,
  177. fromlen, 0))
  178. reply_len = 1;
  179. else {
  180. new_attached = 1;
  181. reply_len = 2;
  182. }
  183. } else if (os_strcmp(buf, "DETACH") == 0) {
  184. if (wpa_supplicant_ctrl_iface_detach(&priv->ctrl_dst, &from,
  185. fromlen))
  186. reply_len = 1;
  187. else
  188. reply_len = 2;
  189. } else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
  190. if (wpa_supplicant_ctrl_iface_level(priv, &from, fromlen,
  191. buf + 6))
  192. reply_len = 1;
  193. else
  194. reply_len = 2;
  195. } else {
  196. reply_buf = wpa_supplicant_ctrl_iface_process(wpa_s, buf,
  197. &reply_len);
  198. reply = reply_buf;
  199. /*
  200. * There could be some password/key material in the command, so
  201. * clear the buffer explicitly now that it is not needed
  202. * anymore.
  203. */
  204. os_memset(buf, 0, res);
  205. }
  206. if (!reply && reply_len == 1) {
  207. reply = "FAIL\n";
  208. reply_len = 5;
  209. } else if (!reply && reply_len == 2) {
  210. reply = "OK\n";
  211. reply_len = 3;
  212. }
  213. if (reply) {
  214. wpas_ctrl_sock_debug("ctrl_sock-sendto", sock, reply,
  215. reply_len);
  216. if (sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from,
  217. fromlen) < 0) {
  218. int _errno = errno;
  219. wpa_dbg(wpa_s, MSG_DEBUG,
  220. "ctrl_iface sendto failed: %d - %s",
  221. _errno, strerror(_errno));
  222. if (_errno == ENOBUFS || _errno == EAGAIN) {
  223. /*
  224. * The socket send buffer could be full. This
  225. * may happen if client programs are not
  226. * receiving their pending messages. Close and
  227. * reopen the socket as a workaround to avoid
  228. * getting stuck being unable to send any new
  229. * responses.
  230. */
  231. sock = wpas_ctrl_iface_reinit(wpa_s, priv);
  232. if (sock < 0) {
  233. wpa_dbg(wpa_s, MSG_DEBUG, "Failed to reinitialize ctrl_iface socket");
  234. }
  235. }
  236. if (new_attached) {
  237. wpa_dbg(wpa_s, MSG_DEBUG, "Failed to send response to ATTACH - detaching");
  238. new_attached = 0;
  239. wpa_supplicant_ctrl_iface_detach(
  240. &priv->ctrl_dst, &from, fromlen);
  241. }
  242. }
  243. }
  244. os_free(reply_buf);
  245. if (new_attached)
  246. eapol_sm_notify_ctrl_attached(wpa_s->eapol);
  247. }
  248. static char * wpa_supplicant_ctrl_iface_path(struct wpa_supplicant *wpa_s)
  249. {
  250. char *buf;
  251. size_t len;
  252. char *pbuf, *dir = NULL;
  253. int res;
  254. if (wpa_s->conf->ctrl_interface == NULL)
  255. return NULL;
  256. pbuf = os_strdup(wpa_s->conf->ctrl_interface);
  257. if (pbuf == NULL)
  258. return NULL;
  259. if (os_strncmp(pbuf, "DIR=", 4) == 0) {
  260. char *gid_str;
  261. dir = pbuf + 4;
  262. gid_str = os_strstr(dir, " GROUP=");
  263. if (gid_str)
  264. *gid_str = '\0';
  265. } else
  266. dir = pbuf;
  267. len = os_strlen(dir) + os_strlen(wpa_s->ifname) + 2;
  268. buf = os_malloc(len);
  269. if (buf == NULL) {
  270. os_free(pbuf);
  271. return NULL;
  272. }
  273. res = os_snprintf(buf, len, "%s/%s", dir, wpa_s->ifname);
  274. if (os_snprintf_error(len, res)) {
  275. os_free(pbuf);
  276. os_free(buf);
  277. return NULL;
  278. }
  279. #ifdef __CYGWIN__
  280. {
  281. /* Windows/WinPcap uses interface names that are not suitable
  282. * as a file name - convert invalid chars to underscores */
  283. char *pos = buf;
  284. while (*pos) {
  285. if (*pos == '\\')
  286. *pos = '_';
  287. pos++;
  288. }
  289. }
  290. #endif /* __CYGWIN__ */
  291. os_free(pbuf);
  292. return buf;
  293. }
  294. static void wpa_supplicant_ctrl_iface_msg_cb(void *ctx, int level,
  295. enum wpa_msg_type type,
  296. const char *txt, size_t len)
  297. {
  298. struct wpa_supplicant *wpa_s = ctx;
  299. if (wpa_s == NULL)
  300. return;
  301. if (type != WPA_MSG_NO_GLOBAL && wpa_s->global->ctrl_iface) {
  302. struct ctrl_iface_global_priv *priv = wpa_s->global->ctrl_iface;
  303. if (!dl_list_empty(&priv->ctrl_dst)) {
  304. wpa_supplicant_ctrl_iface_send(
  305. wpa_s,
  306. type != WPA_MSG_PER_INTERFACE ?
  307. NULL : wpa_s->ifname,
  308. priv->sock, &priv->ctrl_dst, level, txt, len,
  309. NULL, priv);
  310. }
  311. }
  312. if (type == WPA_MSG_ONLY_GLOBAL || wpa_s->ctrl_iface == NULL)
  313. return;
  314. wpa_supplicant_ctrl_iface_send(wpa_s, NULL, wpa_s->ctrl_iface->sock,
  315. &wpa_s->ctrl_iface->ctrl_dst,
  316. level, txt, len, wpa_s->ctrl_iface,
  317. NULL);
  318. }
  319. static int wpas_ctrl_iface_open_sock(struct wpa_supplicant *wpa_s,
  320. struct ctrl_iface_priv *priv)
  321. {
  322. struct sockaddr_un addr;
  323. char *fname = NULL;
  324. gid_t gid = 0;
  325. int gid_set = 0;
  326. char *buf, *dir = NULL, *gid_str = NULL;
  327. struct group *grp;
  328. char *endp;
  329. int flags;
  330. buf = os_strdup(wpa_s->conf->ctrl_interface);
  331. if (buf == NULL)
  332. goto fail;
  333. #ifdef ANDROID
  334. os_snprintf(addr.sun_path, sizeof(addr.sun_path), "wpa_%s",
  335. wpa_s->conf->ctrl_interface);
  336. priv->sock = android_get_control_socket(addr.sun_path);
  337. if (priv->sock >= 0) {
  338. priv->android_control_socket = 1;
  339. goto havesock;
  340. }
  341. #endif /* ANDROID */
  342. if (os_strncmp(buf, "DIR=", 4) == 0) {
  343. dir = buf + 4;
  344. gid_str = os_strstr(dir, " GROUP=");
  345. if (gid_str) {
  346. *gid_str = '\0';
  347. gid_str += 7;
  348. }
  349. } else {
  350. dir = buf;
  351. gid_str = wpa_s->conf->ctrl_interface_group;
  352. }
  353. if (mkdir(dir, S_IRWXU | S_IRWXG) < 0) {
  354. if (errno == EEXIST) {
  355. wpa_printf(MSG_DEBUG, "Using existing control "
  356. "interface directory.");
  357. } else {
  358. wpa_printf(MSG_ERROR, "mkdir[ctrl_interface=%s]: %s",
  359. dir, strerror(errno));
  360. goto fail;
  361. }
  362. }
  363. #ifdef ANDROID
  364. /*
  365. * wpa_supplicant is started from /init.*.rc on Android and that seems
  366. * to be using umask 0077 which would leave the control interface
  367. * directory without group access. This breaks things since Wi-Fi
  368. * framework assumes that this directory can be accessed by other
  369. * applications in the wifi group. Fix this by adding group access even
  370. * if umask value would prevent this.
  371. */
  372. if (chmod(dir, S_IRWXU | S_IRWXG) < 0) {
  373. wpa_printf(MSG_ERROR, "CTRL: Could not chmod directory: %s",
  374. strerror(errno));
  375. /* Try to continue anyway */
  376. }
  377. #endif /* ANDROID */
  378. if (gid_str) {
  379. grp = getgrnam(gid_str);
  380. if (grp) {
  381. gid = grp->gr_gid;
  382. gid_set = 1;
  383. wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d"
  384. " (from group name '%s')",
  385. (int) gid, gid_str);
  386. } else {
  387. /* Group name not found - try to parse this as gid */
  388. gid = strtol(gid_str, &endp, 10);
  389. if (*gid_str == '\0' || *endp != '\0') {
  390. wpa_printf(MSG_ERROR, "CTRL: Invalid group "
  391. "'%s'", gid_str);
  392. goto fail;
  393. }
  394. gid_set = 1;
  395. wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d",
  396. (int) gid);
  397. }
  398. }
  399. if (gid_set && chown(dir, -1, gid) < 0) {
  400. wpa_printf(MSG_ERROR, "chown[ctrl_interface=%s,gid=%d]: %s",
  401. dir, (int) gid, strerror(errno));
  402. goto fail;
  403. }
  404. /* Make sure the group can enter and read the directory */
  405. if (gid_set &&
  406. chmod(dir, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP) < 0) {
  407. wpa_printf(MSG_ERROR, "CTRL: chmod[ctrl_interface]: %s",
  408. strerror(errno));
  409. goto fail;
  410. }
  411. if (os_strlen(dir) + 1 + os_strlen(wpa_s->ifname) >=
  412. sizeof(addr.sun_path)) {
  413. wpa_printf(MSG_ERROR, "ctrl_iface path limit exceeded");
  414. goto fail;
  415. }
  416. priv->sock = socket(PF_UNIX, SOCK_DGRAM, 0);
  417. if (priv->sock < 0) {
  418. wpa_printf(MSG_ERROR, "socket(PF_UNIX): %s", strerror(errno));
  419. goto fail;
  420. }
  421. os_memset(&addr, 0, sizeof(addr));
  422. #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
  423. addr.sun_len = sizeof(addr);
  424. #endif /* __FreeBSD__ */
  425. addr.sun_family = AF_UNIX;
  426. fname = wpa_supplicant_ctrl_iface_path(wpa_s);
  427. if (fname == NULL)
  428. goto fail;
  429. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  430. if (bind(priv->sock, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  431. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  432. strerror(errno));
  433. if (connect(priv->sock, (struct sockaddr *) &addr,
  434. sizeof(addr)) < 0) {
  435. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  436. " allow connections - assuming it was left"
  437. "over from forced program termination");
  438. if (unlink(fname) < 0) {
  439. wpa_printf(MSG_ERROR,
  440. "Could not unlink existing ctrl_iface socket '%s': %s",
  441. fname, strerror(errno));
  442. goto fail;
  443. }
  444. if (bind(priv->sock, (struct sockaddr *) &addr,
  445. sizeof(addr)) < 0) {
  446. wpa_printf(MSG_ERROR, "supp-ctrl-iface-init: bind(PF_UNIX): %s",
  447. strerror(errno));
  448. goto fail;
  449. }
  450. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  451. "ctrl_iface socket '%s'", fname);
  452. } else {
  453. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  454. "be in use - cannot override it");
  455. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  456. "not used anymore", fname);
  457. os_free(fname);
  458. fname = NULL;
  459. goto fail;
  460. }
  461. }
  462. if (gid_set && chown(fname, -1, gid) < 0) {
  463. wpa_printf(MSG_ERROR, "chown[ctrl_interface=%s,gid=%d]: %s",
  464. fname, (int) gid, strerror(errno));
  465. goto fail;
  466. }
  467. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  468. wpa_printf(MSG_ERROR, "chmod[ctrl_interface=%s]: %s",
  469. fname, strerror(errno));
  470. goto fail;
  471. }
  472. os_free(fname);
  473. #ifdef ANDROID
  474. havesock:
  475. #endif /* ANDROID */
  476. /*
  477. * Make socket non-blocking so that we don't hang forever if
  478. * target dies unexpectedly.
  479. */
  480. flags = fcntl(priv->sock, F_GETFL);
  481. if (flags >= 0) {
  482. flags |= O_NONBLOCK;
  483. if (fcntl(priv->sock, F_SETFL, flags) < 0) {
  484. wpa_printf(MSG_INFO, "fcntl(ctrl, O_NONBLOCK): %s",
  485. strerror(errno));
  486. /* Not fatal, continue on.*/
  487. }
  488. }
  489. eloop_register_read_sock(priv->sock, wpa_supplicant_ctrl_iface_receive,
  490. wpa_s, priv);
  491. wpa_msg_register_cb(wpa_supplicant_ctrl_iface_msg_cb);
  492. os_free(buf);
  493. return 0;
  494. fail:
  495. if (priv->sock >= 0) {
  496. close(priv->sock);
  497. priv->sock = -1;
  498. }
  499. if (fname) {
  500. unlink(fname);
  501. os_free(fname);
  502. }
  503. os_free(buf);
  504. return -1;
  505. }
  506. struct ctrl_iface_priv *
  507. wpa_supplicant_ctrl_iface_init(struct wpa_supplicant *wpa_s)
  508. {
  509. struct ctrl_iface_priv *priv;
  510. priv = os_zalloc(sizeof(*priv));
  511. if (priv == NULL)
  512. return NULL;
  513. dl_list_init(&priv->ctrl_dst);
  514. priv->wpa_s = wpa_s;
  515. priv->sock = -1;
  516. if (wpa_s->conf->ctrl_interface == NULL)
  517. return priv;
  518. if (wpas_ctrl_iface_open_sock(wpa_s, priv) < 0) {
  519. os_free(priv);
  520. return NULL;
  521. }
  522. return priv;
  523. }
  524. static int wpas_ctrl_iface_reinit(struct wpa_supplicant *wpa_s,
  525. struct ctrl_iface_priv *priv)
  526. {
  527. int res;
  528. if (priv->sock <= 0)
  529. return -1;
  530. /*
  531. * On Android, the control socket being used may be the socket
  532. * that is created when wpa_supplicant is started as a /init.*.rc
  533. * service. Such a socket is maintained as a key-value pair in
  534. * Android's environment. Closing this control socket would leave us
  535. * in a bad state with an invalid socket descriptor.
  536. */
  537. if (priv->android_control_socket)
  538. return priv->sock;
  539. eloop_unregister_read_sock(priv->sock);
  540. close(priv->sock);
  541. priv->sock = -1;
  542. res = wpas_ctrl_iface_open_sock(wpa_s, priv);
  543. if (res < 0)
  544. return -1;
  545. return priv->sock;
  546. }
  547. void wpa_supplicant_ctrl_iface_deinit(struct ctrl_iface_priv *priv)
  548. {
  549. struct wpa_ctrl_dst *dst, *prev;
  550. if (priv->sock > -1) {
  551. char *fname;
  552. char *buf, *dir = NULL;
  553. eloop_unregister_read_sock(priv->sock);
  554. if (!dl_list_empty(&priv->ctrl_dst)) {
  555. /*
  556. * Wait before closing the control socket if
  557. * there are any attached monitors in order to allow
  558. * them to receive any pending messages.
  559. */
  560. wpa_printf(MSG_DEBUG, "CTRL_IFACE wait for attached "
  561. "monitors to receive messages");
  562. os_sleep(0, 100000);
  563. }
  564. close(priv->sock);
  565. priv->sock = -1;
  566. fname = wpa_supplicant_ctrl_iface_path(priv->wpa_s);
  567. if (fname) {
  568. unlink(fname);
  569. os_free(fname);
  570. }
  571. if (priv->wpa_s->conf->ctrl_interface == NULL)
  572. goto free_dst;
  573. buf = os_strdup(priv->wpa_s->conf->ctrl_interface);
  574. if (buf == NULL)
  575. goto free_dst;
  576. if (os_strncmp(buf, "DIR=", 4) == 0) {
  577. char *gid_str;
  578. dir = buf + 4;
  579. gid_str = os_strstr(dir, " GROUP=");
  580. if (gid_str)
  581. *gid_str = '\0';
  582. } else
  583. dir = buf;
  584. if (rmdir(dir) < 0) {
  585. if (errno == ENOTEMPTY) {
  586. wpa_printf(MSG_DEBUG, "Control interface "
  587. "directory not empty - leaving it "
  588. "behind");
  589. } else {
  590. wpa_printf(MSG_ERROR,
  591. "rmdir[ctrl_interface=%s]: %s",
  592. dir, strerror(errno));
  593. }
  594. }
  595. os_free(buf);
  596. }
  597. free_dst:
  598. dl_list_for_each_safe(dst, prev, &priv->ctrl_dst, struct wpa_ctrl_dst,
  599. list)
  600. os_free(dst);
  601. os_free(priv);
  602. }
  603. /**
  604. * wpa_supplicant_ctrl_iface_send - Send a control interface packet to monitors
  605. * @ifname: Interface name for global control socket or %NULL
  606. * @sock: Local socket fd
  607. * @ctrl_dst: List of attached listeners
  608. * @level: Priority level of the message
  609. * @buf: Message data
  610. * @len: Message length
  611. *
  612. * Send a packet to all monitor programs attached to the control interface.
  613. */
  614. static void wpa_supplicant_ctrl_iface_send(struct wpa_supplicant *wpa_s,
  615. const char *ifname, int sock,
  616. struct dl_list *ctrl_dst,
  617. int level, const char *buf,
  618. size_t len,
  619. struct ctrl_iface_priv *priv,
  620. struct ctrl_iface_global_priv *gp)
  621. {
  622. struct wpa_ctrl_dst *dst, *next;
  623. char levelstr[10];
  624. int idx, res;
  625. struct msghdr msg;
  626. struct iovec io[5];
  627. if (sock < 0 || dl_list_empty(ctrl_dst))
  628. return;
  629. res = os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
  630. if (os_snprintf_error(sizeof(levelstr), res))
  631. return;
  632. idx = 0;
  633. if (ifname) {
  634. io[idx].iov_base = "IFNAME=";
  635. io[idx].iov_len = 7;
  636. idx++;
  637. io[idx].iov_base = (char *) ifname;
  638. io[idx].iov_len = os_strlen(ifname);
  639. idx++;
  640. io[idx].iov_base = " ";
  641. io[idx].iov_len = 1;
  642. idx++;
  643. }
  644. io[idx].iov_base = levelstr;
  645. io[idx].iov_len = os_strlen(levelstr);
  646. idx++;
  647. io[idx].iov_base = (char *) buf;
  648. io[idx].iov_len = len;
  649. idx++;
  650. os_memset(&msg, 0, sizeof(msg));
  651. msg.msg_iov = io;
  652. msg.msg_iovlen = idx;
  653. dl_list_for_each_safe(dst, next, ctrl_dst, struct wpa_ctrl_dst, list) {
  654. int _errno;
  655. char addr_txt[200];
  656. if (level < dst->debug_level)
  657. continue;
  658. printf_encode(addr_txt, sizeof(addr_txt),
  659. (u8 *) dst->addr.sun_path, dst->addrlen -
  660. offsetof(struct sockaddr_un, sun_path));
  661. msg.msg_name = (void *) &dst->addr;
  662. msg.msg_namelen = dst->addrlen;
  663. wpas_ctrl_sock_debug("ctrl_sock-sendmsg", sock, buf, len);
  664. if (sendmsg(sock, &msg, MSG_DONTWAIT) >= 0) {
  665. wpa_printf(MSG_MSGDUMP,
  666. "CTRL_IFACE monitor sent successfully to %s",
  667. addr_txt);
  668. dst->errors = 0;
  669. continue;
  670. }
  671. _errno = errno;
  672. wpa_printf(MSG_DEBUG, "CTRL_IFACE monitor[%s]: %d - %s",
  673. addr_txt, errno, strerror(errno));
  674. dst->errors++;
  675. if (dst->errors > 10 || _errno == ENOENT || _errno == EPERM) {
  676. wpa_printf(MSG_INFO, "CTRL_IFACE: Detach monitor %s that cannot receive messages",
  677. addr_txt);
  678. wpa_supplicant_ctrl_iface_detach(ctrl_dst, &dst->addr,
  679. dst->addrlen);
  680. }
  681. if (_errno == ENOBUFS || _errno == EAGAIN) {
  682. /*
  683. * The socket send buffer could be full. This may happen
  684. * if client programs are not receiving their pending
  685. * messages. Close and reopen the socket as a workaround
  686. * to avoid getting stuck being unable to send any new
  687. * responses.
  688. */
  689. if (priv)
  690. sock = wpas_ctrl_iface_reinit(wpa_s, priv);
  691. else if (gp)
  692. sock = wpas_ctrl_iface_global_reinit(
  693. wpa_s->global, gp);
  694. else
  695. break;
  696. if (sock < 0) {
  697. wpa_dbg(wpa_s, MSG_DEBUG,
  698. "Failed to reinitialize ctrl_iface socket");
  699. break;
  700. }
  701. }
  702. }
  703. }
  704. void wpa_supplicant_ctrl_iface_wait(struct ctrl_iface_priv *priv)
  705. {
  706. char buf[256];
  707. int res;
  708. struct sockaddr_un from;
  709. socklen_t fromlen = sizeof(from);
  710. for (;;) {
  711. wpa_printf(MSG_DEBUG, "CTRL_IFACE - %s - wait for monitor to "
  712. "attach", priv->wpa_s->ifname);
  713. eloop_wait_for_read_sock(priv->sock);
  714. res = recvfrom(priv->sock, buf, sizeof(buf) - 1, 0,
  715. (struct sockaddr *) &from, &fromlen);
  716. if (res < 0) {
  717. wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
  718. strerror(errno));
  719. continue;
  720. }
  721. buf[res] = '\0';
  722. if (os_strcmp(buf, "ATTACH") == 0) {
  723. /* handle ATTACH signal of first monitor interface */
  724. if (!wpa_supplicant_ctrl_iface_attach(&priv->ctrl_dst,
  725. &from, fromlen,
  726. 0)) {
  727. if (sendto(priv->sock, "OK\n", 3, 0,
  728. (struct sockaddr *) &from, fromlen) <
  729. 0) {
  730. wpa_printf(MSG_DEBUG, "ctrl_iface sendto failed: %s",
  731. strerror(errno));
  732. }
  733. /* OK to continue */
  734. return;
  735. } else {
  736. if (sendto(priv->sock, "FAIL\n", 5, 0,
  737. (struct sockaddr *) &from, fromlen) <
  738. 0) {
  739. wpa_printf(MSG_DEBUG, "ctrl_iface sendto failed: %s",
  740. strerror(errno));
  741. }
  742. }
  743. } else {
  744. /* return FAIL for all other signals */
  745. if (sendto(priv->sock, "FAIL\n", 5, 0,
  746. (struct sockaddr *) &from, fromlen) < 0) {
  747. wpa_printf(MSG_DEBUG,
  748. "ctrl_iface sendto failed: %s",
  749. strerror(errno));
  750. }
  751. }
  752. }
  753. }
  754. /* Global ctrl_iface */
  755. static void wpa_supplicant_global_ctrl_iface_receive(int sock, void *eloop_ctx,
  756. void *sock_ctx)
  757. {
  758. struct wpa_global *global = eloop_ctx;
  759. struct ctrl_iface_global_priv *priv = sock_ctx;
  760. char buf[4096];
  761. int res;
  762. struct sockaddr_un from;
  763. socklen_t fromlen = sizeof(from);
  764. char *reply = NULL, *reply_buf = NULL;
  765. size_t reply_len;
  766. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  767. (struct sockaddr *) &from, &fromlen);
  768. if (res < 0) {
  769. wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
  770. strerror(errno));
  771. return;
  772. }
  773. buf[res] = '\0';
  774. if (os_strcmp(buf, "ATTACH") == 0) {
  775. if (wpa_supplicant_ctrl_iface_attach(&priv->ctrl_dst, &from,
  776. fromlen, 1))
  777. reply_len = 1;
  778. else
  779. reply_len = 2;
  780. } else if (os_strcmp(buf, "DETACH") == 0) {
  781. if (wpa_supplicant_ctrl_iface_detach(&priv->ctrl_dst, &from,
  782. fromlen))
  783. reply_len = 1;
  784. else
  785. reply_len = 2;
  786. } else {
  787. reply_buf = wpa_supplicant_global_ctrl_iface_process(
  788. global, buf, &reply_len);
  789. reply = reply_buf;
  790. /*
  791. * There could be some password/key material in the command, so
  792. * clear the buffer explicitly now that it is not needed
  793. * anymore.
  794. */
  795. os_memset(buf, 0, res);
  796. }
  797. if (!reply && reply_len == 1) {
  798. reply = "FAIL\n";
  799. reply_len = 5;
  800. } else if (!reply && reply_len == 2) {
  801. reply = "OK\n";
  802. reply_len = 3;
  803. }
  804. if (reply) {
  805. wpas_ctrl_sock_debug("global_ctrl_sock-sendto",
  806. sock, reply, reply_len);
  807. if (sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from,
  808. fromlen) < 0) {
  809. wpa_printf(MSG_DEBUG, "ctrl_iface sendto failed: %s",
  810. strerror(errno));
  811. }
  812. }
  813. os_free(reply_buf);
  814. }
  815. static int wpas_global_ctrl_iface_open_sock(struct wpa_global *global,
  816. struct ctrl_iface_global_priv *priv)
  817. {
  818. struct sockaddr_un addr;
  819. const char *ctrl = global->params.ctrl_interface;
  820. int flags;
  821. wpa_printf(MSG_DEBUG, "Global control interface '%s'", ctrl);
  822. #ifdef ANDROID
  823. if (os_strncmp(ctrl, "@android:", 9) == 0) {
  824. priv->sock = android_get_control_socket(ctrl + 9);
  825. if (priv->sock < 0) {
  826. wpa_printf(MSG_ERROR, "Failed to open Android control "
  827. "socket '%s'", ctrl + 9);
  828. goto fail;
  829. }
  830. wpa_printf(MSG_DEBUG, "Using Android control socket '%s'",
  831. ctrl + 9);
  832. priv->android_control_socket = 1;
  833. goto havesock;
  834. }
  835. if (os_strncmp(ctrl, "@abstract:", 10) != 0) {
  836. /*
  837. * Backwards compatibility - try to open an Android control
  838. * socket and if that fails, assume this was a UNIX domain
  839. * socket instead.
  840. */
  841. priv->sock = android_get_control_socket(ctrl);
  842. if (priv->sock >= 0) {
  843. wpa_printf(MSG_DEBUG,
  844. "Using Android control socket '%s'",
  845. ctrl);
  846. priv->android_control_socket = 1;
  847. goto havesock;
  848. }
  849. }
  850. #endif /* ANDROID */
  851. priv->sock = socket(PF_UNIX, SOCK_DGRAM, 0);
  852. if (priv->sock < 0) {
  853. wpa_printf(MSG_ERROR, "socket(PF_UNIX): %s", strerror(errno));
  854. goto fail;
  855. }
  856. os_memset(&addr, 0, sizeof(addr));
  857. #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
  858. addr.sun_len = sizeof(addr);
  859. #endif /* __FreeBSD__ */
  860. addr.sun_family = AF_UNIX;
  861. if (os_strncmp(ctrl, "@abstract:", 10) == 0) {
  862. addr.sun_path[0] = '\0';
  863. os_strlcpy(addr.sun_path + 1, ctrl + 10,
  864. sizeof(addr.sun_path) - 1);
  865. if (bind(priv->sock, (struct sockaddr *) &addr, sizeof(addr)) <
  866. 0) {
  867. wpa_printf(MSG_ERROR, "supp-global-ctrl-iface-init: "
  868. "bind(PF_UNIX;%s) failed: %s",
  869. ctrl, strerror(errno));
  870. goto fail;
  871. }
  872. wpa_printf(MSG_DEBUG, "Using Abstract control socket '%s'",
  873. ctrl + 10);
  874. goto havesock;
  875. }
  876. os_strlcpy(addr.sun_path, ctrl, sizeof(addr.sun_path));
  877. if (bind(priv->sock, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  878. wpa_printf(MSG_INFO, "supp-global-ctrl-iface-init(%s) (will try fixup): bind(PF_UNIX): %s",
  879. ctrl, strerror(errno));
  880. if (connect(priv->sock, (struct sockaddr *) &addr,
  881. sizeof(addr)) < 0) {
  882. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  883. " allow connections - assuming it was left"
  884. "over from forced program termination");
  885. if (unlink(ctrl) < 0) {
  886. wpa_printf(MSG_ERROR,
  887. "Could not unlink existing ctrl_iface socket '%s': %s",
  888. ctrl, strerror(errno));
  889. goto fail;
  890. }
  891. if (bind(priv->sock, (struct sockaddr *) &addr,
  892. sizeof(addr)) < 0) {
  893. wpa_printf(MSG_ERROR, "supp-glb-iface-init: bind(PF_UNIX;%s): %s",
  894. ctrl, strerror(errno));
  895. goto fail;
  896. }
  897. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  898. "ctrl_iface socket '%s'",
  899. ctrl);
  900. } else {
  901. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  902. "be in use - cannot override it");
  903. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  904. "not used anymore",
  905. ctrl);
  906. goto fail;
  907. }
  908. }
  909. wpa_printf(MSG_DEBUG, "Using UNIX control socket '%s'", ctrl);
  910. if (global->params.ctrl_interface_group) {
  911. char *gid_str = global->params.ctrl_interface_group;
  912. gid_t gid = 0;
  913. struct group *grp;
  914. char *endp;
  915. grp = getgrnam(gid_str);
  916. if (grp) {
  917. gid = grp->gr_gid;
  918. wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d"
  919. " (from group name '%s')",
  920. (int) gid, gid_str);
  921. } else {
  922. /* Group name not found - try to parse this as gid */
  923. gid = strtol(gid_str, &endp, 10);
  924. if (*gid_str == '\0' || *endp != '\0') {
  925. wpa_printf(MSG_ERROR, "CTRL: Invalid group "
  926. "'%s'", gid_str);
  927. goto fail;
  928. }
  929. wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d",
  930. (int) gid);
  931. }
  932. if (chown(ctrl, -1, gid) < 0) {
  933. wpa_printf(MSG_ERROR,
  934. "chown[global_ctrl_interface=%s,gid=%d]: %s",
  935. ctrl, (int) gid, strerror(errno));
  936. goto fail;
  937. }
  938. if (chmod(ctrl, S_IRWXU | S_IRWXG) < 0) {
  939. wpa_printf(MSG_ERROR,
  940. "chmod[global_ctrl_interface=%s]: %s",
  941. ctrl, strerror(errno));
  942. goto fail;
  943. }
  944. } else {
  945. if (chmod(ctrl, S_IRWXU) < 0) {
  946. wpa_printf(MSG_DEBUG,
  947. "chmod[global_ctrl_interface=%s](S_IRWXU): %s",
  948. ctrl, strerror(errno));
  949. /* continue anyway since group change was not required
  950. */
  951. }
  952. }
  953. havesock:
  954. /*
  955. * Make socket non-blocking so that we don't hang forever if
  956. * target dies unexpectedly.
  957. */
  958. flags = fcntl(priv->sock, F_GETFL);
  959. if (flags >= 0) {
  960. flags |= O_NONBLOCK;
  961. if (fcntl(priv->sock, F_SETFL, flags) < 0) {
  962. wpa_printf(MSG_INFO, "fcntl(ctrl, O_NONBLOCK): %s",
  963. strerror(errno));
  964. /* Not fatal, continue on.*/
  965. }
  966. }
  967. eloop_register_read_sock(priv->sock,
  968. wpa_supplicant_global_ctrl_iface_receive,
  969. global, priv);
  970. return 0;
  971. fail:
  972. if (priv->sock >= 0) {
  973. close(priv->sock);
  974. priv->sock = -1;
  975. }
  976. return -1;
  977. }
  978. struct ctrl_iface_global_priv *
  979. wpa_supplicant_global_ctrl_iface_init(struct wpa_global *global)
  980. {
  981. struct ctrl_iface_global_priv *priv;
  982. priv = os_zalloc(sizeof(*priv));
  983. if (priv == NULL)
  984. return NULL;
  985. dl_list_init(&priv->ctrl_dst);
  986. priv->global = global;
  987. priv->sock = -1;
  988. if (global->params.ctrl_interface == NULL)
  989. return priv;
  990. if (wpas_global_ctrl_iface_open_sock(global, priv) < 0) {
  991. os_free(priv);
  992. return NULL;
  993. }
  994. wpa_msg_register_cb(wpa_supplicant_ctrl_iface_msg_cb);
  995. return priv;
  996. }
  997. static int wpas_ctrl_iface_global_reinit(struct wpa_global *global,
  998. struct ctrl_iface_global_priv *priv)
  999. {
  1000. int res;
  1001. if (priv->sock <= 0)
  1002. return -1;
  1003. /*
  1004. * On Android, the control socket being used may be the socket
  1005. * that is created when wpa_supplicant is started as a /init.*.rc
  1006. * service. Such a socket is maintained as a key-value pair in
  1007. * Android's environment. Closing this control socket would leave us
  1008. * in a bad state with an invalid socket descriptor.
  1009. */
  1010. if (priv->android_control_socket)
  1011. return priv->sock;
  1012. eloop_unregister_read_sock(priv->sock);
  1013. close(priv->sock);
  1014. priv->sock = -1;
  1015. res = wpas_global_ctrl_iface_open_sock(global, priv);
  1016. if (res < 0)
  1017. return -1;
  1018. return priv->sock;
  1019. }
  1020. void
  1021. wpa_supplicant_global_ctrl_iface_deinit(struct ctrl_iface_global_priv *priv)
  1022. {
  1023. struct wpa_ctrl_dst *dst, *prev;
  1024. if (priv->sock >= 0) {
  1025. eloop_unregister_read_sock(priv->sock);
  1026. close(priv->sock);
  1027. }
  1028. if (priv->global->params.ctrl_interface)
  1029. unlink(priv->global->params.ctrl_interface);
  1030. dl_list_for_each_safe(dst, prev, &priv->ctrl_dst, struct wpa_ctrl_dst,
  1031. list)
  1032. os_free(dst);
  1033. os_free(priv);
  1034. }