ctrl_iface_unix.c 35 KB

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