2008-02-28 02:34:43 +01:00
|
|
|
/*
|
|
|
|
* WPA Supplicant / UNIX domain socket -based control interface
|
2014-01-04 06:32:08 +01:00
|
|
|
* Copyright (c) 2004-2014, Jouni Malinen <j@w1.fi>
|
2008-02-28 02:34:43 +01:00
|
|
|
*
|
2012-02-11 15:46:35 +01:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2008-02-28 02:34:43 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
#include <sys/un.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <grp.h>
|
2009-03-21 21:00:27 +01:00
|
|
|
#include <stddef.h>
|
2012-08-04 19:34:27 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
2011-02-27 17:19:17 +01:00
|
|
|
#ifdef ANDROID
|
|
|
|
#include <cutils/sockets.h>
|
|
|
|
#endif /* ANDROID */
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2009-12-23 22:56:35 +01:00
|
|
|
#include "utils/common.h"
|
|
|
|
#include "utils/eloop.h"
|
|
|
|
#include "utils/list.h"
|
2008-02-28 02:34:43 +01:00
|
|
|
#include "eapol_supp/eapol_supp_sm.h"
|
2009-12-23 22:56:35 +01:00
|
|
|
#include "config.h"
|
2008-02-28 02:34:43 +01:00
|
|
|
#include "wpa_supplicant_i.h"
|
|
|
|
#include "ctrl_iface.h"
|
|
|
|
|
|
|
|
/* Per-interface ctrl_iface */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct wpa_ctrl_dst - Internal data structure of control interface monitors
|
|
|
|
*
|
|
|
|
* This structure is used to store information about registered control
|
|
|
|
* interface monitors into struct wpa_supplicant. This data is private to
|
|
|
|
* ctrl_iface_unix.c and should not be touched directly from other files.
|
|
|
|
*/
|
|
|
|
struct wpa_ctrl_dst {
|
2009-12-23 22:56:35 +01:00
|
|
|
struct dl_list list;
|
2008-02-28 02:34:43 +01:00
|
|
|
struct sockaddr_un addr;
|
|
|
|
socklen_t addrlen;
|
|
|
|
int debug_level;
|
|
|
|
int errors;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct ctrl_iface_priv {
|
|
|
|
struct wpa_supplicant *wpa_s;
|
|
|
|
int sock;
|
2009-12-23 22:56:35 +01:00
|
|
|
struct dl_list ctrl_dst;
|
2008-02-28 02:34:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-05-18 13:07:28 +02:00
|
|
|
struct ctrl_iface_global_priv {
|
|
|
|
struct wpa_global *global;
|
|
|
|
int sock;
|
|
|
|
struct dl_list ctrl_dst;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-09-25 15:23:11 +02:00
|
|
|
static void wpa_supplicant_ctrl_iface_send(struct wpa_supplicant *wpa_s,
|
|
|
|
const char *ifname, int sock,
|
2013-05-18 13:07:28 +02:00
|
|
|
struct dl_list *ctrl_dst,
|
2008-02-28 02:34:43 +01:00
|
|
|
int level, const char *buf,
|
2013-09-25 15:23:11 +02:00
|
|
|
size_t len,
|
|
|
|
struct ctrl_iface_priv *priv,
|
|
|
|
struct ctrl_iface_global_priv *gp);
|
|
|
|
static int wpas_ctrl_iface_reinit(struct wpa_supplicant *wpa_s,
|
|
|
|
struct ctrl_iface_priv *priv);
|
|
|
|
static int wpas_ctrl_iface_global_reinit(struct wpa_global *global,
|
|
|
|
struct ctrl_iface_global_priv *priv);
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
|
2013-05-18 13:07:28 +02:00
|
|
|
static int wpa_supplicant_ctrl_iface_attach(struct dl_list *ctrl_dst,
|
2008-02-28 02:34:43 +01:00
|
|
|
struct sockaddr_un *from,
|
|
|
|
socklen_t fromlen)
|
|
|
|
{
|
|
|
|
struct wpa_ctrl_dst *dst;
|
2014-01-04 06:32:08 +01:00
|
|
|
char addr_txt[200];
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
dst = os_zalloc(sizeof(*dst));
|
|
|
|
if (dst == NULL)
|
|
|
|
return -1;
|
|
|
|
os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un));
|
|
|
|
dst->addrlen = fromlen;
|
|
|
|
dst->debug_level = MSG_INFO;
|
2013-05-18 13:07:28 +02:00
|
|
|
dl_list_add(ctrl_dst, &dst->list);
|
2014-01-04 06:32:08 +01:00
|
|
|
printf_encode(addr_txt, sizeof(addr_txt),
|
|
|
|
(u8 *) from->sun_path,
|
|
|
|
fromlen - offsetof(struct sockaddr_un, sun_path));
|
|
|
|
wpa_printf(MSG_DEBUG, "CTRL_IFACE monitor attached %s", addr_txt);
|
2008-02-28 02:34:43 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-18 13:07:28 +02:00
|
|
|
static int wpa_supplicant_ctrl_iface_detach(struct dl_list *ctrl_dst,
|
2008-02-28 02:34:43 +01:00
|
|
|
struct sockaddr_un *from,
|
|
|
|
socklen_t fromlen)
|
|
|
|
{
|
2009-12-23 22:56:35 +01:00
|
|
|
struct wpa_ctrl_dst *dst;
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2013-05-18 13:07:28 +02:00
|
|
|
dl_list_for_each(dst, ctrl_dst, struct wpa_ctrl_dst, list) {
|
2008-02-28 02:34:43 +01:00
|
|
|
if (fromlen == dst->addrlen &&
|
|
|
|
os_memcmp(from->sun_path, dst->addr.sun_path,
|
2009-03-21 21:00:27 +01:00
|
|
|
fromlen - offsetof(struct sockaddr_un, sun_path))
|
|
|
|
== 0) {
|
2014-01-04 06:32:08 +01:00
|
|
|
char addr_txt[200];
|
|
|
|
printf_encode(addr_txt, sizeof(addr_txt),
|
|
|
|
(u8 *) from->sun_path,
|
|
|
|
fromlen -
|
|
|
|
offsetof(struct sockaddr_un, sun_path));
|
|
|
|
wpa_printf(MSG_DEBUG, "CTRL_IFACE monitor detached %s",
|
|
|
|
addr_txt);
|
2013-08-24 22:31:06 +02:00
|
|
|
dl_list_del(&dst->list);
|
|
|
|
os_free(dst);
|
2008-02-28 02:34:43 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_supplicant_ctrl_iface_level(struct ctrl_iface_priv *priv,
|
|
|
|
struct sockaddr_un *from,
|
|
|
|
socklen_t fromlen,
|
|
|
|
char *level)
|
|
|
|
{
|
|
|
|
struct wpa_ctrl_dst *dst;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "CTRL_IFACE LEVEL %s", level);
|
|
|
|
|
2009-12-23 22:56:35 +01:00
|
|
|
dl_list_for_each(dst, &priv->ctrl_dst, struct wpa_ctrl_dst, list) {
|
2008-02-28 02:34:43 +01:00
|
|
|
if (fromlen == dst->addrlen &&
|
|
|
|
os_memcmp(from->sun_path, dst->addr.sun_path,
|
2009-03-21 21:00:27 +01:00
|
|
|
fromlen - offsetof(struct sockaddr_un, sun_path))
|
|
|
|
== 0) {
|
2014-01-04 06:32:08 +01:00
|
|
|
char addr_txt[200];
|
2008-02-28 02:34:43 +01:00
|
|
|
dst->debug_level = atoi(level);
|
2014-01-04 06:32:08 +01:00
|
|
|
printf_encode(addr_txt, sizeof(addr_txt),
|
|
|
|
(u8 *) from->sun_path, fromlen -
|
|
|
|
offsetof(struct sockaddr_un, sun_path));
|
|
|
|
wpa_printf(MSG_DEBUG, "CTRL_IFACE changed monitor level to %d for %s",
|
|
|
|
dst->debug_level, addr_txt);
|
2008-02-28 02:34:43 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void wpa_supplicant_ctrl_iface_receive(int sock, void *eloop_ctx,
|
|
|
|
void *sock_ctx)
|
|
|
|
{
|
|
|
|
struct wpa_supplicant *wpa_s = eloop_ctx;
|
|
|
|
struct ctrl_iface_priv *priv = sock_ctx;
|
2010-07-18 23:30:25 +02:00
|
|
|
char buf[4096];
|
2008-02-28 02:34:43 +01:00
|
|
|
int res;
|
|
|
|
struct sockaddr_un from;
|
|
|
|
socklen_t fromlen = sizeof(from);
|
2013-09-23 16:52:10 +02:00
|
|
|
char *reply = NULL, *reply_buf = NULL;
|
2008-02-28 02:34:43 +01:00
|
|
|
size_t reply_len = 0;
|
|
|
|
int new_attached = 0;
|
|
|
|
|
|
|
|
res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
|
|
|
|
(struct sockaddr *) &from, &fromlen);
|
|
|
|
if (res < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
|
|
|
|
strerror(errno));
|
2008-02-28 02:34:43 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
buf[res] = '\0';
|
|
|
|
|
|
|
|
if (os_strcmp(buf, "ATTACH") == 0) {
|
2013-05-18 13:07:28 +02:00
|
|
|
if (wpa_supplicant_ctrl_iface_attach(&priv->ctrl_dst, &from,
|
|
|
|
fromlen))
|
2008-02-28 02:34:43 +01:00
|
|
|
reply_len = 1;
|
|
|
|
else {
|
|
|
|
new_attached = 1;
|
|
|
|
reply_len = 2;
|
|
|
|
}
|
|
|
|
} else if (os_strcmp(buf, "DETACH") == 0) {
|
2013-05-18 13:07:28 +02:00
|
|
|
if (wpa_supplicant_ctrl_iface_detach(&priv->ctrl_dst, &from,
|
|
|
|
fromlen))
|
2008-02-28 02:34:43 +01:00
|
|
|
reply_len = 1;
|
|
|
|
else
|
|
|
|
reply_len = 2;
|
|
|
|
} else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
|
|
|
|
if (wpa_supplicant_ctrl_iface_level(priv, &from, fromlen,
|
|
|
|
buf + 6))
|
|
|
|
reply_len = 1;
|
|
|
|
else
|
|
|
|
reply_len = 2;
|
|
|
|
} else {
|
2013-09-23 16:52:10 +02:00
|
|
|
reply_buf = wpa_supplicant_ctrl_iface_process(wpa_s, buf,
|
|
|
|
&reply_len);
|
|
|
|
reply = reply_buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!reply && reply_len == 1) {
|
|
|
|
reply = "FAIL\n";
|
|
|
|
reply_len = 5;
|
|
|
|
} else if (!reply && reply_len == 2) {
|
|
|
|
reply = "OK\n";
|
|
|
|
reply_len = 3;
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (reply) {
|
2013-09-11 05:17:07 +02:00
|
|
|
if (sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from,
|
|
|
|
fromlen) < 0) {
|
2013-09-25 15:23:11 +02:00
|
|
|
int _errno = errno;
|
2013-09-11 05:17:07 +02:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG,
|
2013-09-25 15:23:11 +02:00
|
|
|
"ctrl_iface sendto failed: %d - %s",
|
|
|
|
_errno, strerror(_errno));
|
|
|
|
if (_errno == ENOBUFS || _errno == EAGAIN) {
|
|
|
|
/*
|
|
|
|
* The socket send buffer could be full. This
|
|
|
|
* may happen if client programs are not
|
|
|
|
* receiving their pending messages. Close and
|
|
|
|
* reopen the socket as a workaround to avoid
|
|
|
|
* getting stuck being unable to send any new
|
|
|
|
* responses.
|
|
|
|
*/
|
|
|
|
sock = wpas_ctrl_iface_reinit(wpa_s, priv);
|
|
|
|
if (sock < 0) {
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "Failed to reinitialize ctrl_iface socket");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (new_attached) {
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "Failed to send response to ATTACH - detaching");
|
|
|
|
new_attached = 0;
|
|
|
|
wpa_supplicant_ctrl_iface_detach(
|
|
|
|
&priv->ctrl_dst, &from, fromlen);
|
|
|
|
}
|
2013-09-11 05:17:07 +02:00
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
2013-09-23 16:52:10 +02:00
|
|
|
os_free(reply_buf);
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
if (new_attached)
|
|
|
|
eapol_sm_notify_ctrl_attached(wpa_s->eapol);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static char * wpa_supplicant_ctrl_iface_path(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
char *buf;
|
|
|
|
size_t len;
|
2014-03-02 14:52:10 +01:00
|
|
|
char *pbuf, *dir = NULL;
|
2008-02-28 02:34:43 +01:00
|
|
|
int res;
|
|
|
|
|
|
|
|
if (wpa_s->conf->ctrl_interface == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
pbuf = os_strdup(wpa_s->conf->ctrl_interface);
|
|
|
|
if (pbuf == NULL)
|
|
|
|
return NULL;
|
|
|
|
if (os_strncmp(pbuf, "DIR=", 4) == 0) {
|
2014-03-02 14:52:10 +01:00
|
|
|
char *gid_str;
|
2008-02-28 02:34:43 +01:00
|
|
|
dir = pbuf + 4;
|
|
|
|
gid_str = os_strstr(dir, " GROUP=");
|
2014-03-02 14:52:10 +01:00
|
|
|
if (gid_str)
|
2008-02-28 02:34:43 +01:00
|
|
|
*gid_str = '\0';
|
|
|
|
} else
|
|
|
|
dir = pbuf;
|
|
|
|
|
|
|
|
len = os_strlen(dir) + os_strlen(wpa_s->ifname) + 2;
|
|
|
|
buf = os_malloc(len);
|
|
|
|
if (buf == NULL) {
|
|
|
|
os_free(pbuf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = os_snprintf(buf, len, "%s/%s", dir, wpa_s->ifname);
|
|
|
|
if (res < 0 || (size_t) res >= len) {
|
|
|
|
os_free(pbuf);
|
|
|
|
os_free(buf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#ifdef __CYGWIN__
|
|
|
|
{
|
|
|
|
/* Windows/WinPcap uses interface names that are not suitable
|
|
|
|
* as a file name - convert invalid chars to underscores */
|
|
|
|
char *pos = buf;
|
|
|
|
while (*pos) {
|
|
|
|
if (*pos == '\\')
|
|
|
|
*pos = '_';
|
|
|
|
pos++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* __CYGWIN__ */
|
|
|
|
os_free(pbuf);
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-18 13:19:24 +02:00
|
|
|
static void wpa_supplicant_ctrl_iface_msg_cb(void *ctx, int level, int global,
|
2008-02-28 02:34:43 +01:00
|
|
|
const char *txt, size_t len)
|
|
|
|
{
|
|
|
|
struct wpa_supplicant *wpa_s = ctx;
|
2013-05-18 13:07:28 +02:00
|
|
|
|
|
|
|
if (wpa_s == NULL)
|
2008-02-28 02:34:43 +01:00
|
|
|
return;
|
2013-05-18 13:07:28 +02:00
|
|
|
|
2013-05-18 18:18:31 +02:00
|
|
|
if (global != 2 && wpa_s->global->ctrl_iface) {
|
2013-05-18 13:07:28 +02:00
|
|
|
struct ctrl_iface_global_priv *priv = wpa_s->global->ctrl_iface;
|
|
|
|
if (!dl_list_empty(&priv->ctrl_dst)) {
|
2013-09-25 15:23:11 +02:00
|
|
|
wpa_supplicant_ctrl_iface_send(wpa_s, global ? NULL :
|
2013-05-18 13:19:24 +02:00
|
|
|
wpa_s->ifname,
|
2013-05-18 13:07:28 +02:00
|
|
|
priv->sock,
|
|
|
|
&priv->ctrl_dst,
|
2013-09-25 15:23:11 +02:00
|
|
|
level, txt, len, NULL,
|
|
|
|
priv);
|
2013-05-18 13:07:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wpa_s->ctrl_iface == NULL)
|
|
|
|
return;
|
2013-09-25 15:23:11 +02:00
|
|
|
wpa_supplicant_ctrl_iface_send(wpa_s, NULL, wpa_s->ctrl_iface->sock,
|
2013-05-18 13:07:28 +02:00
|
|
|
&wpa_s->ctrl_iface->ctrl_dst,
|
2013-09-25 15:23:11 +02:00
|
|
|
level, txt, len, wpa_s->ctrl_iface,
|
|
|
|
NULL);
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-25 15:23:11 +02:00
|
|
|
static int wpas_ctrl_iface_open_sock(struct wpa_supplicant *wpa_s,
|
|
|
|
struct ctrl_iface_priv *priv)
|
2008-02-28 02:34:43 +01:00
|
|
|
{
|
|
|
|
struct sockaddr_un addr;
|
|
|
|
char *fname = NULL;
|
|
|
|
gid_t gid = 0;
|
|
|
|
int gid_set = 0;
|
|
|
|
char *buf, *dir = NULL, *gid_str = NULL;
|
|
|
|
struct group *grp;
|
|
|
|
char *endp;
|
2012-08-04 19:34:27 +02:00
|
|
|
int flags;
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
buf = os_strdup(wpa_s->conf->ctrl_interface);
|
|
|
|
if (buf == NULL)
|
|
|
|
goto fail;
|
2011-02-27 17:19:17 +01:00
|
|
|
#ifdef ANDROID
|
|
|
|
os_snprintf(addr.sun_path, sizeof(addr.sun_path), "wpa_%s",
|
|
|
|
wpa_s->conf->ctrl_interface);
|
|
|
|
priv->sock = android_get_control_socket(addr.sun_path);
|
|
|
|
if (priv->sock >= 0)
|
|
|
|
goto havesock;
|
|
|
|
#endif /* ANDROID */
|
2008-02-28 02:34:43 +01:00
|
|
|
if (os_strncmp(buf, "DIR=", 4) == 0) {
|
|
|
|
dir = buf + 4;
|
|
|
|
gid_str = os_strstr(dir, " GROUP=");
|
|
|
|
if (gid_str) {
|
|
|
|
*gid_str = '\0';
|
|
|
|
gid_str += 7;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dir = buf;
|
|
|
|
gid_str = wpa_s->conf->ctrl_interface_group;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mkdir(dir, S_IRWXU | S_IRWXG) < 0) {
|
|
|
|
if (errno == EEXIST) {
|
|
|
|
wpa_printf(MSG_DEBUG, "Using existing control "
|
|
|
|
"interface directory.");
|
|
|
|
} else {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_ERROR, "mkdir[ctrl_interface=%s]: %s",
|
|
|
|
dir, strerror(errno));
|
2008-02-28 02:34:43 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-23 16:05:47 +01:00
|
|
|
#ifdef ANDROID
|
|
|
|
/*
|
|
|
|
* wpa_supplicant is started from /init.*.rc on Android and that seems
|
|
|
|
* to be using umask 0077 which would leave the control interface
|
|
|
|
* directory without group access. This breaks things since Wi-Fi
|
|
|
|
* framework assumes that this directory can be accessed by other
|
|
|
|
* applications in the wifi group. Fix this by adding group access even
|
|
|
|
* if umask value would prevent this.
|
|
|
|
*/
|
|
|
|
if (chmod(dir, S_IRWXU | S_IRWXG) < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "CTRL: Could not chmod directory: %s",
|
|
|
|
strerror(errno));
|
|
|
|
/* Try to continue anyway */
|
|
|
|
}
|
|
|
|
#endif /* ANDROID */
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
if (gid_str) {
|
|
|
|
grp = getgrnam(gid_str);
|
|
|
|
if (grp) {
|
|
|
|
gid = grp->gr_gid;
|
|
|
|
gid_set = 1;
|
|
|
|
wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d"
|
|
|
|
" (from group name '%s')",
|
|
|
|
(int) gid, gid_str);
|
|
|
|
} else {
|
|
|
|
/* Group name not found - try to parse this as gid */
|
|
|
|
gid = strtol(gid_str, &endp, 10);
|
|
|
|
if (*gid_str == '\0' || *endp != '\0') {
|
2008-03-06 21:49:46 +01:00
|
|
|
wpa_printf(MSG_ERROR, "CTRL: Invalid group "
|
2008-02-28 02:34:43 +01:00
|
|
|
"'%s'", gid_str);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
gid_set = 1;
|
|
|
|
wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d",
|
|
|
|
(int) gid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gid_set && chown(dir, -1, gid) < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_ERROR, "chown[ctrl_interface=%s,gid=%d]: %s",
|
|
|
|
dir, (int) gid, strerror(errno));
|
2008-02-28 02:34:43 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2009-11-16 15:43:25 +01:00
|
|
|
/* Make sure the group can enter and read the directory */
|
|
|
|
if (gid_set &&
|
|
|
|
chmod(dir, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP) < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "CTRL: chmod[ctrl_interface]: %s",
|
|
|
|
strerror(errno));
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
if (os_strlen(dir) + 1 + os_strlen(wpa_s->ifname) >=
|
|
|
|
sizeof(addr.sun_path)) {
|
|
|
|
wpa_printf(MSG_ERROR, "ctrl_iface path limit exceeded");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->sock = socket(PF_UNIX, SOCK_DGRAM, 0);
|
|
|
|
if (priv->sock < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_ERROR, "socket(PF_UNIX): %s", strerror(errno));
|
2008-02-28 02:34:43 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
os_memset(&addr, 0, sizeof(addr));
|
2010-03-06 09:16:47 +01:00
|
|
|
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
2009-03-21 21:00:27 +01:00
|
|
|
addr.sun_len = sizeof(addr);
|
|
|
|
#endif /* __FreeBSD__ */
|
2008-02-28 02:34:43 +01:00
|
|
|
addr.sun_family = AF_UNIX;
|
|
|
|
fname = wpa_supplicant_ctrl_iface_path(wpa_s);
|
|
|
|
if (fname == NULL)
|
|
|
|
goto fail;
|
|
|
|
os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
|
|
|
|
if (bind(priv->sock, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
|
|
|
|
strerror(errno));
|
|
|
|
if (connect(priv->sock, (struct sockaddr *) &addr,
|
|
|
|
sizeof(addr)) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
|
|
|
|
" allow connections - assuming it was left"
|
|
|
|
"over from forced program termination");
|
|
|
|
if (unlink(fname) < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_ERROR,
|
|
|
|
"Could not unlink existing ctrl_iface socket '%s': %s",
|
|
|
|
fname, strerror(errno));
|
2008-02-28 02:34:43 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (bind(priv->sock, (struct sockaddr *) &addr,
|
|
|
|
sizeof(addr)) < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_ERROR, "supp-ctrl-iface-init: bind(PF_UNIX): %s",
|
|
|
|
strerror(errno));
|
2008-02-28 02:34:43 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
|
|
|
|
"ctrl_iface socket '%s'", fname);
|
|
|
|
} else {
|
|
|
|
wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
|
|
|
|
"be in use - cannot override it");
|
|
|
|
wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
|
|
|
|
"not used anymore", fname);
|
|
|
|
os_free(fname);
|
|
|
|
fname = NULL;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gid_set && chown(fname, -1, gid) < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_ERROR, "chown[ctrl_interface=%s,gid=%d]: %s",
|
|
|
|
fname, (int) gid, strerror(errno));
|
2008-02-28 02:34:43 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_ERROR, "chmod[ctrl_interface=%s]: %s",
|
|
|
|
fname, strerror(errno));
|
2008-02-28 02:34:43 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
os_free(fname);
|
|
|
|
|
2011-02-27 17:19:17 +01:00
|
|
|
#ifdef ANDROID
|
|
|
|
havesock:
|
|
|
|
#endif /* ANDROID */
|
2012-08-04 19:34:27 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Make socket non-blocking so that we don't hang forever if
|
|
|
|
* target dies unexpectedly.
|
|
|
|
*/
|
|
|
|
flags = fcntl(priv->sock, F_GETFL);
|
|
|
|
if (flags >= 0) {
|
|
|
|
flags |= O_NONBLOCK;
|
|
|
|
if (fcntl(priv->sock, F_SETFL, flags) < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_INFO, "fcntl(ctrl, O_NONBLOCK): %s",
|
|
|
|
strerror(errno));
|
2012-08-04 19:34:27 +02:00
|
|
|
/* Not fatal, continue on.*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
eloop_register_read_sock(priv->sock, wpa_supplicant_ctrl_iface_receive,
|
|
|
|
wpa_s, priv);
|
|
|
|
wpa_msg_register_cb(wpa_supplicant_ctrl_iface_msg_cb);
|
|
|
|
|
|
|
|
os_free(buf);
|
2013-09-25 15:23:11 +02:00
|
|
|
return 0;
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
fail:
|
2013-09-25 15:23:11 +02:00
|
|
|
if (priv->sock >= 0) {
|
2008-02-28 02:34:43 +01:00
|
|
|
close(priv->sock);
|
2013-09-25 15:23:11 +02:00
|
|
|
priv->sock = -1;
|
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
if (fname) {
|
|
|
|
unlink(fname);
|
|
|
|
os_free(fname);
|
|
|
|
}
|
|
|
|
os_free(buf);
|
2013-09-25 15:23:11 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct ctrl_iface_priv *
|
|
|
|
wpa_supplicant_ctrl_iface_init(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
struct ctrl_iface_priv *priv;
|
|
|
|
|
|
|
|
priv = os_zalloc(sizeof(*priv));
|
|
|
|
if (priv == NULL)
|
|
|
|
return NULL;
|
|
|
|
dl_list_init(&priv->ctrl_dst);
|
|
|
|
priv->wpa_s = wpa_s;
|
|
|
|
priv->sock = -1;
|
|
|
|
|
|
|
|
if (wpa_s->conf->ctrl_interface == NULL)
|
|
|
|
return priv;
|
|
|
|
|
|
|
|
if (wpas_ctrl_iface_open_sock(wpa_s, priv) < 0) {
|
|
|
|
os_free(priv);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return priv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpas_ctrl_iface_reinit(struct wpa_supplicant *wpa_s,
|
|
|
|
struct ctrl_iface_priv *priv)
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (priv->sock <= 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
eloop_unregister_read_sock(priv->sock);
|
|
|
|
close(priv->sock);
|
|
|
|
priv->sock = -1;
|
|
|
|
res = wpas_ctrl_iface_open_sock(wpa_s, priv);
|
|
|
|
if (res < 0)
|
|
|
|
return -1;
|
|
|
|
return priv->sock;
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpa_supplicant_ctrl_iface_deinit(struct ctrl_iface_priv *priv)
|
|
|
|
{
|
|
|
|
struct wpa_ctrl_dst *dst, *prev;
|
|
|
|
|
|
|
|
if (priv->sock > -1) {
|
|
|
|
char *fname;
|
2014-03-02 14:52:10 +01:00
|
|
|
char *buf, *dir = NULL;
|
2008-02-28 02:34:43 +01:00
|
|
|
eloop_unregister_read_sock(priv->sock);
|
2009-12-23 22:56:35 +01:00
|
|
|
if (!dl_list_empty(&priv->ctrl_dst)) {
|
2008-02-28 02:34:43 +01:00
|
|
|
/*
|
2013-08-25 08:48:27 +02:00
|
|
|
* Wait before closing the control socket if
|
2008-02-28 02:34:43 +01:00
|
|
|
* there are any attached monitors in order to allow
|
|
|
|
* them to receive any pending messages.
|
|
|
|
*/
|
|
|
|
wpa_printf(MSG_DEBUG, "CTRL_IFACE wait for attached "
|
|
|
|
"monitors to receive messages");
|
2013-08-25 08:48:27 +02:00
|
|
|
os_sleep(0, 100000);
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
close(priv->sock);
|
|
|
|
priv->sock = -1;
|
|
|
|
fname = wpa_supplicant_ctrl_iface_path(priv->wpa_s);
|
|
|
|
if (fname) {
|
|
|
|
unlink(fname);
|
|
|
|
os_free(fname);
|
|
|
|
}
|
|
|
|
|
2013-09-27 22:30:20 +02:00
|
|
|
if (priv->wpa_s->conf->ctrl_interface == NULL)
|
|
|
|
goto free_dst;
|
2008-02-28 02:34:43 +01:00
|
|
|
buf = os_strdup(priv->wpa_s->conf->ctrl_interface);
|
|
|
|
if (buf == NULL)
|
|
|
|
goto free_dst;
|
|
|
|
if (os_strncmp(buf, "DIR=", 4) == 0) {
|
2014-03-02 14:52:10 +01:00
|
|
|
char *gid_str;
|
2008-02-28 02:34:43 +01:00
|
|
|
dir = buf + 4;
|
|
|
|
gid_str = os_strstr(dir, " GROUP=");
|
2014-03-02 14:52:10 +01:00
|
|
|
if (gid_str)
|
2008-02-28 02:34:43 +01:00
|
|
|
*gid_str = '\0';
|
|
|
|
} else
|
|
|
|
dir = buf;
|
|
|
|
|
|
|
|
if (rmdir(dir) < 0) {
|
|
|
|
if (errno == ENOTEMPTY) {
|
|
|
|
wpa_printf(MSG_DEBUG, "Control interface "
|
|
|
|
"directory not empty - leaving it "
|
|
|
|
"behind");
|
|
|
|
} else {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_ERROR,
|
|
|
|
"rmdir[ctrl_interface=%s]: %s",
|
|
|
|
dir, strerror(errno));
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
os_free(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
free_dst:
|
2009-12-23 22:56:35 +01:00
|
|
|
dl_list_for_each_safe(dst, prev, &priv->ctrl_dst, struct wpa_ctrl_dst,
|
|
|
|
list)
|
|
|
|
os_free(dst);
|
2008-02-28 02:34:43 +01:00
|
|
|
os_free(priv);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wpa_supplicant_ctrl_iface_send - Send a control interface packet to monitors
|
2013-05-18 13:07:28 +02:00
|
|
|
* @ifname: Interface name for global control socket or %NULL
|
|
|
|
* @sock: Local socket fd
|
|
|
|
* @ctrl_dst: List of attached listeners
|
2008-02-28 02:34:43 +01:00
|
|
|
* @level: Priority level of the message
|
|
|
|
* @buf: Message data
|
|
|
|
* @len: Message length
|
|
|
|
*
|
|
|
|
* Send a packet to all monitor programs attached to the control interface.
|
|
|
|
*/
|
2013-09-25 15:23:11 +02:00
|
|
|
static void wpa_supplicant_ctrl_iface_send(struct wpa_supplicant *wpa_s,
|
|
|
|
const char *ifname, int sock,
|
2013-05-18 13:07:28 +02:00
|
|
|
struct dl_list *ctrl_dst,
|
2008-02-28 02:34:43 +01:00
|
|
|
int level, const char *buf,
|
2013-09-25 15:23:11 +02:00
|
|
|
size_t len,
|
|
|
|
struct ctrl_iface_priv *priv,
|
|
|
|
struct ctrl_iface_global_priv *gp)
|
2008-02-28 02:34:43 +01:00
|
|
|
{
|
|
|
|
struct wpa_ctrl_dst *dst, *next;
|
|
|
|
char levelstr[10];
|
|
|
|
int idx, res;
|
|
|
|
struct msghdr msg;
|
2013-05-18 13:07:28 +02:00
|
|
|
struct iovec io[5];
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2013-05-18 13:07:28 +02:00
|
|
|
if (sock < 0 || dl_list_empty(ctrl_dst))
|
2008-02-28 02:34:43 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
res = os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
|
|
|
|
if (res < 0 || (size_t) res >= sizeof(levelstr))
|
|
|
|
return;
|
2013-05-18 13:07:28 +02:00
|
|
|
idx = 0;
|
|
|
|
if (ifname) {
|
|
|
|
io[idx].iov_base = "IFNAME=";
|
|
|
|
io[idx].iov_len = 7;
|
|
|
|
idx++;
|
|
|
|
io[idx].iov_base = (char *) ifname;
|
|
|
|
io[idx].iov_len = os_strlen(ifname);
|
|
|
|
idx++;
|
|
|
|
io[idx].iov_base = " ";
|
|
|
|
io[idx].iov_len = 1;
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
io[idx].iov_base = levelstr;
|
|
|
|
io[idx].iov_len = os_strlen(levelstr);
|
|
|
|
idx++;
|
|
|
|
io[idx].iov_base = (char *) buf;
|
|
|
|
io[idx].iov_len = len;
|
|
|
|
idx++;
|
2008-02-28 02:34:43 +01:00
|
|
|
os_memset(&msg, 0, sizeof(msg));
|
|
|
|
msg.msg_iov = io;
|
2013-05-18 13:07:28 +02:00
|
|
|
msg.msg_iovlen = idx;
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2013-05-18 13:07:28 +02:00
|
|
|
dl_list_for_each_safe(dst, next, ctrl_dst, struct wpa_ctrl_dst, list) {
|
2013-09-25 15:23:11 +02:00
|
|
|
int _errno;
|
2014-01-04 06:32:08 +01:00
|
|
|
char addr_txt[200];
|
2013-09-25 15:23:11 +02:00
|
|
|
|
|
|
|
if (level < dst->debug_level)
|
|
|
|
continue;
|
|
|
|
|
2014-01-04 06:32:08 +01:00
|
|
|
printf_encode(addr_txt, sizeof(addr_txt),
|
|
|
|
(u8 *) dst->addr.sun_path, dst->addrlen -
|
|
|
|
offsetof(struct sockaddr_un, sun_path));
|
2013-09-25 15:23:11 +02:00
|
|
|
msg.msg_name = (void *) &dst->addr;
|
|
|
|
msg.msg_namelen = dst->addrlen;
|
|
|
|
if (sendmsg(sock, &msg, MSG_DONTWAIT) >= 0) {
|
2014-01-04 06:32:08 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "CTRL_IFACE monitor sent successfully to %s",
|
|
|
|
addr_txt);
|
2013-09-25 15:23:11 +02:00
|
|
|
dst->errors = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
_errno = errno;
|
2014-01-04 06:32:08 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "CTRL_IFACE monitor[%s]: %d - %s",
|
|
|
|
addr_txt, errno, strerror(errno));
|
2013-09-25 15:23:11 +02:00
|
|
|
dst->errors++;
|
|
|
|
|
|
|
|
if (dst->errors > 10 || _errno == ENOENT || _errno == EPERM) {
|
2014-01-04 06:32:08 +01:00
|
|
|
wpa_printf(MSG_INFO, "CTRL_IFACE: Detach monitor %s that cannot receive messages",
|
|
|
|
addr_txt);
|
2013-09-25 15:23:11 +02:00
|
|
|
wpa_supplicant_ctrl_iface_detach(ctrl_dst, &dst->addr,
|
|
|
|
dst->addrlen);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_errno == ENOBUFS || _errno == EAGAIN) {
|
|
|
|
/*
|
|
|
|
* The socket send buffer could be full. This may happen
|
|
|
|
* if client programs are not receiving their pending
|
|
|
|
* messages. Close and reopen the socket as a workaround
|
|
|
|
* to avoid getting stuck being unable to send any new
|
|
|
|
* responses.
|
|
|
|
*/
|
|
|
|
if (priv)
|
|
|
|
sock = wpas_ctrl_iface_reinit(wpa_s, priv);
|
|
|
|
else if (gp)
|
|
|
|
sock = wpas_ctrl_iface_global_reinit(
|
|
|
|
wpa_s->global, gp);
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
if (sock < 0) {
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG,
|
|
|
|
"Failed to reinitialize ctrl_iface socket");
|
2013-10-26 12:18:40 +02:00
|
|
|
break;
|
2013-09-25 15:23:11 +02:00
|
|
|
}
|
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpa_supplicant_ctrl_iface_wait(struct ctrl_iface_priv *priv)
|
|
|
|
{
|
|
|
|
char buf[256];
|
|
|
|
int res;
|
|
|
|
struct sockaddr_un from;
|
|
|
|
socklen_t fromlen = sizeof(from);
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
wpa_printf(MSG_DEBUG, "CTRL_IFACE - %s - wait for monitor to "
|
|
|
|
"attach", priv->wpa_s->ifname);
|
|
|
|
eloop_wait_for_read_sock(priv->sock);
|
|
|
|
|
|
|
|
res = recvfrom(priv->sock, buf, sizeof(buf) - 1, 0,
|
|
|
|
(struct sockaddr *) &from, &fromlen);
|
|
|
|
if (res < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
|
|
|
|
strerror(errno));
|
2008-02-28 02:34:43 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
buf[res] = '\0';
|
|
|
|
|
|
|
|
if (os_strcmp(buf, "ATTACH") == 0) {
|
|
|
|
/* handle ATTACH signal of first monitor interface */
|
2013-05-18 13:07:28 +02:00
|
|
|
if (!wpa_supplicant_ctrl_iface_attach(&priv->ctrl_dst,
|
|
|
|
&from, fromlen)) {
|
2013-09-11 05:17:07 +02:00
|
|
|
if (sendto(priv->sock, "OK\n", 3, 0,
|
|
|
|
(struct sockaddr *) &from, fromlen) <
|
|
|
|
0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "ctrl_iface sendto failed: %s",
|
|
|
|
strerror(errno));
|
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
/* OK to continue */
|
|
|
|
return;
|
|
|
|
} else {
|
2013-09-11 05:17:07 +02:00
|
|
|
if (sendto(priv->sock, "FAIL\n", 5, 0,
|
|
|
|
(struct sockaddr *) &from, fromlen) <
|
|
|
|
0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "ctrl_iface sendto failed: %s",
|
|
|
|
strerror(errno));
|
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* return FAIL for all other signals */
|
2013-09-11 05:17:07 +02:00
|
|
|
if (sendto(priv->sock, "FAIL\n", 5, 0,
|
|
|
|
(struct sockaddr *) &from, fromlen) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"ctrl_iface sendto failed: %s",
|
|
|
|
strerror(errno));
|
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Global ctrl_iface */
|
|
|
|
|
|
|
|
static void wpa_supplicant_global_ctrl_iface_receive(int sock, void *eloop_ctx,
|
|
|
|
void *sock_ctx)
|
|
|
|
{
|
|
|
|
struct wpa_global *global = eloop_ctx;
|
2013-05-18 13:07:28 +02:00
|
|
|
struct ctrl_iface_global_priv *priv = sock_ctx;
|
2014-01-23 15:57:15 +01:00
|
|
|
char buf[4096];
|
2008-02-28 02:34:43 +01:00
|
|
|
int res;
|
|
|
|
struct sockaddr_un from;
|
|
|
|
socklen_t fromlen = sizeof(from);
|
2013-09-23 16:52:10 +02:00
|
|
|
char *reply = NULL, *reply_buf = NULL;
|
2008-02-28 02:34:43 +01:00
|
|
|
size_t reply_len;
|
|
|
|
|
|
|
|
res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
|
|
|
|
(struct sockaddr *) &from, &fromlen);
|
|
|
|
if (res < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
|
|
|
|
strerror(errno));
|
2008-02-28 02:34:43 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
buf[res] = '\0';
|
|
|
|
|
2013-05-18 13:07:28 +02:00
|
|
|
if (os_strcmp(buf, "ATTACH") == 0) {
|
|
|
|
if (wpa_supplicant_ctrl_iface_attach(&priv->ctrl_dst, &from,
|
|
|
|
fromlen))
|
|
|
|
reply_len = 1;
|
|
|
|
else
|
|
|
|
reply_len = 2;
|
|
|
|
} else if (os_strcmp(buf, "DETACH") == 0) {
|
|
|
|
if (wpa_supplicant_ctrl_iface_detach(&priv->ctrl_dst, &from,
|
|
|
|
fromlen))
|
|
|
|
reply_len = 1;
|
|
|
|
else
|
|
|
|
reply_len = 2;
|
|
|
|
} else {
|
2013-09-23 16:52:10 +02:00
|
|
|
reply_buf = wpa_supplicant_global_ctrl_iface_process(
|
|
|
|
global, buf, &reply_len);
|
|
|
|
reply = reply_buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!reply && reply_len == 1) {
|
|
|
|
reply = "FAIL\n";
|
|
|
|
reply_len = 5;
|
|
|
|
} else if (!reply && reply_len == 2) {
|
|
|
|
reply = "OK\n";
|
|
|
|
reply_len = 3;
|
2013-05-18 13:07:28 +02:00
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
if (reply) {
|
2013-09-11 05:17:07 +02:00
|
|
|
if (sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from,
|
|
|
|
fromlen) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "ctrl_iface sendto failed: %s",
|
|
|
|
strerror(errno));
|
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
2013-09-23 16:52:10 +02:00
|
|
|
os_free(reply_buf);
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-25 15:23:11 +02:00
|
|
|
static int wpas_global_ctrl_iface_open_sock(struct wpa_global *global,
|
|
|
|
struct ctrl_iface_global_priv *priv)
|
2008-02-28 02:34:43 +01:00
|
|
|
{
|
|
|
|
struct sockaddr_un addr;
|
2013-05-18 10:42:09 +02:00
|
|
|
const char *ctrl = global->params.ctrl_interface;
|
2013-08-24 19:31:04 +02:00
|
|
|
int flags;
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2013-05-18 10:42:09 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "Global control interface '%s'", ctrl);
|
|
|
|
|
2011-02-27 17:19:17 +01:00
|
|
|
#ifdef ANDROID
|
2013-05-18 10:42:09 +02:00
|
|
|
if (os_strncmp(ctrl, "@android:", 9) == 0) {
|
|
|
|
priv->sock = android_get_control_socket(ctrl + 9);
|
|
|
|
if (priv->sock < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "Failed to open Android control "
|
|
|
|
"socket '%s'", ctrl + 9);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "Using Android control socket '%s'",
|
|
|
|
ctrl + 9);
|
2011-02-27 17:19:17 +01:00
|
|
|
goto havesock;
|
2013-05-18 10:42:09 +02:00
|
|
|
}
|
2011-02-27 17:19:17 +01:00
|
|
|
|
2013-05-18 10:42:09 +02:00
|
|
|
if (os_strncmp(ctrl, "@abstract:", 10) != 0) {
|
|
|
|
/*
|
|
|
|
* Backwards compatibility - try to open an Android control
|
|
|
|
* socket and if that fails, assume this was a UNIX domain
|
|
|
|
* socket instead.
|
|
|
|
*/
|
|
|
|
priv->sock = android_get_control_socket(ctrl);
|
|
|
|
if (priv->sock >= 0) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"Using Android control socket '%s'",
|
|
|
|
ctrl);
|
|
|
|
goto havesock;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* ANDROID */
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
priv->sock = socket(PF_UNIX, SOCK_DGRAM, 0);
|
|
|
|
if (priv->sock < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_ERROR, "socket(PF_UNIX): %s", strerror(errno));
|
2008-02-28 02:34:43 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
os_memset(&addr, 0, sizeof(addr));
|
2010-03-06 09:16:47 +01:00
|
|
|
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
2009-03-21 21:00:27 +01:00
|
|
|
addr.sun_len = sizeof(addr);
|
|
|
|
#endif /* __FreeBSD__ */
|
2008-02-28 02:34:43 +01:00
|
|
|
addr.sun_family = AF_UNIX;
|
2013-05-18 10:42:09 +02:00
|
|
|
|
|
|
|
if (os_strncmp(ctrl, "@abstract:", 10) == 0) {
|
|
|
|
addr.sun_path[0] = '\0';
|
|
|
|
os_strlcpy(addr.sun_path + 1, ctrl + 10,
|
|
|
|
sizeof(addr.sun_path) - 1);
|
|
|
|
if (bind(priv->sock, (struct sockaddr *) &addr, sizeof(addr)) <
|
|
|
|
0) {
|
|
|
|
wpa_printf(MSG_ERROR, "supp-global-ctrl-iface-init: "
|
2013-08-26 10:46:21 +02:00
|
|
|
"bind(PF_UNIX;%s) failed: %s",
|
|
|
|
ctrl, strerror(errno));
|
2013-05-18 10:42:09 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "Using Abstract control socket '%s'",
|
|
|
|
ctrl + 10);
|
|
|
|
goto havesock;
|
|
|
|
}
|
|
|
|
|
|
|
|
os_strlcpy(addr.sun_path, ctrl, sizeof(addr.sun_path));
|
2008-02-28 02:34:43 +01:00
|
|
|
if (bind(priv->sock, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_INFO, "supp-global-ctrl-iface-init(%s) (will try fixup): bind(PF_UNIX): %s",
|
|
|
|
ctrl, strerror(errno));
|
2008-02-28 02:34:43 +01:00
|
|
|
if (connect(priv->sock, (struct sockaddr *) &addr,
|
|
|
|
sizeof(addr)) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
|
|
|
|
" allow connections - assuming it was left"
|
|
|
|
"over from forced program termination");
|
2013-05-18 10:42:09 +02:00
|
|
|
if (unlink(ctrl) < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_ERROR,
|
|
|
|
"Could not unlink existing ctrl_iface socket '%s': %s",
|
|
|
|
ctrl, strerror(errno));
|
2008-02-28 02:34:43 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (bind(priv->sock, (struct sockaddr *) &addr,
|
|
|
|
sizeof(addr)) < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_ERROR, "supp-glb-iface-init: bind(PF_UNIX;%s): %s",
|
|
|
|
ctrl, strerror(errno));
|
2008-02-28 02:34:43 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
|
|
|
|
"ctrl_iface socket '%s'",
|
2013-05-18 10:42:09 +02:00
|
|
|
ctrl);
|
2008-02-28 02:34:43 +01:00
|
|
|
} else {
|
|
|
|
wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
|
|
|
|
"be in use - cannot override it");
|
|
|
|
wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
|
|
|
|
"not used anymore",
|
2013-05-18 10:42:09 +02:00
|
|
|
ctrl);
|
2008-02-28 02:34:43 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-18 10:42:09 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "Using UNIX control socket '%s'", ctrl);
|
|
|
|
|
2013-05-18 10:00:05 +02:00
|
|
|
if (global->params.ctrl_interface_group) {
|
|
|
|
char *gid_str = global->params.ctrl_interface_group;
|
|
|
|
gid_t gid = 0;
|
|
|
|
struct group *grp;
|
|
|
|
char *endp;
|
|
|
|
|
|
|
|
grp = getgrnam(gid_str);
|
|
|
|
if (grp) {
|
|
|
|
gid = grp->gr_gid;
|
|
|
|
wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d"
|
|
|
|
" (from group name '%s')",
|
|
|
|
(int) gid, gid_str);
|
|
|
|
} else {
|
|
|
|
/* Group name not found - try to parse this as gid */
|
|
|
|
gid = strtol(gid_str, &endp, 10);
|
|
|
|
if (*gid_str == '\0' || *endp != '\0') {
|
|
|
|
wpa_printf(MSG_ERROR, "CTRL: Invalid group "
|
|
|
|
"'%s'", gid_str);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d",
|
|
|
|
(int) gid);
|
|
|
|
}
|
2013-05-18 10:42:09 +02:00
|
|
|
if (chown(ctrl, -1, gid) < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_ERROR,
|
|
|
|
"chown[global_ctrl_interface=%s,gid=%d]: %s",
|
|
|
|
ctrl, (int) gid, strerror(errno));
|
2013-05-18 10:00:05 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2013-05-18 10:42:09 +02:00
|
|
|
if (chmod(ctrl, S_IRWXU | S_IRWXG) < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_ERROR,
|
|
|
|
"chmod[global_ctrl_interface=%s]: %s",
|
|
|
|
ctrl, strerror(errno));
|
2013-05-18 10:00:05 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
2013-05-18 10:42:09 +02:00
|
|
|
} else {
|
2014-06-14 00:20:18 +02:00
|
|
|
if (chmod(ctrl, S_IRWXU) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"chmod[global_ctrl_interface=%s](S_IRWXU): %s",
|
|
|
|
ctrl, strerror(errno));
|
|
|
|
/* continue anyway since group change was not required
|
|
|
|
*/
|
|
|
|
}
|
2013-05-18 10:00:05 +02:00
|
|
|
}
|
|
|
|
|
2011-02-27 17:19:17 +01:00
|
|
|
havesock:
|
2013-08-24 19:31:04 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Make socket non-blocking so that we don't hang forever if
|
|
|
|
* target dies unexpectedly.
|
|
|
|
*/
|
|
|
|
flags = fcntl(priv->sock, F_GETFL);
|
|
|
|
if (flags >= 0) {
|
|
|
|
flags |= O_NONBLOCK;
|
|
|
|
if (fcntl(priv->sock, F_SETFL, flags) < 0) {
|
2013-08-26 10:46:21 +02:00
|
|
|
wpa_printf(MSG_INFO, "fcntl(ctrl, O_NONBLOCK): %s",
|
|
|
|
strerror(errno));
|
2013-08-24 19:31:04 +02:00
|
|
|
/* Not fatal, continue on.*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
eloop_register_read_sock(priv->sock,
|
|
|
|
wpa_supplicant_global_ctrl_iface_receive,
|
2013-05-18 13:07:28 +02:00
|
|
|
global, priv);
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2013-09-25 15:23:11 +02:00
|
|
|
return 0;
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
fail:
|
2013-09-25 15:23:11 +02:00
|
|
|
if (priv->sock >= 0) {
|
2008-02-28 02:34:43 +01:00
|
|
|
close(priv->sock);
|
2013-09-25 15:23:11 +02:00
|
|
|
priv->sock = -1;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct ctrl_iface_global_priv *
|
|
|
|
wpa_supplicant_global_ctrl_iface_init(struct wpa_global *global)
|
|
|
|
{
|
|
|
|
struct ctrl_iface_global_priv *priv;
|
|
|
|
|
|
|
|
priv = os_zalloc(sizeof(*priv));
|
|
|
|
if (priv == NULL)
|
|
|
|
return NULL;
|
|
|
|
dl_list_init(&priv->ctrl_dst);
|
|
|
|
priv->global = global;
|
|
|
|
priv->sock = -1;
|
|
|
|
|
|
|
|
if (global->params.ctrl_interface == NULL)
|
|
|
|
return priv;
|
|
|
|
|
|
|
|
if (wpas_global_ctrl_iface_open_sock(global, priv) < 0) {
|
|
|
|
os_free(priv);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-09-26 00:31:32 +02:00
|
|
|
wpa_msg_register_cb(wpa_supplicant_ctrl_iface_msg_cb);
|
|
|
|
|
2013-09-25 15:23:11 +02:00
|
|
|
return priv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpas_ctrl_iface_global_reinit(struct wpa_global *global,
|
|
|
|
struct ctrl_iface_global_priv *priv)
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (priv->sock <= 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
eloop_unregister_read_sock(priv->sock);
|
|
|
|
close(priv->sock);
|
|
|
|
priv->sock = -1;
|
|
|
|
res = wpas_global_ctrl_iface_open_sock(global, priv);
|
|
|
|
if (res < 0)
|
|
|
|
return -1;
|
|
|
|
return priv->sock;
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
wpa_supplicant_global_ctrl_iface_deinit(struct ctrl_iface_global_priv *priv)
|
|
|
|
{
|
2013-05-18 13:07:28 +02:00
|
|
|
struct wpa_ctrl_dst *dst, *prev;
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
if (priv->sock >= 0) {
|
|
|
|
eloop_unregister_read_sock(priv->sock);
|
|
|
|
close(priv->sock);
|
|
|
|
}
|
|
|
|
if (priv->global->params.ctrl_interface)
|
|
|
|
unlink(priv->global->params.ctrl_interface);
|
2013-05-18 13:07:28 +02:00
|
|
|
dl_list_for_each_safe(dst, prev, &priv->ctrl_dst, struct wpa_ctrl_dst,
|
|
|
|
list)
|
|
|
|
os_free(dst);
|
2008-02-28 02:34:43 +01:00
|
|
|
os_free(priv);
|
|
|
|
}
|