Allow global ctrl_iface monitors
The ATTACH/DETACH mechanism to request event messages from wpa_supplicant can now be used through the global control interface, too. This results in events from all interfaces being delivered through a single monitor socket. "IFNAME=<ifname> " prefix is used on events that are specific to an interface. Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
89c7ac570b
commit
214e428b42
2 changed files with 111 additions and 35 deletions
|
@ -50,12 +50,20 @@ struct ctrl_iface_priv {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
static void wpa_supplicant_ctrl_iface_send(struct ctrl_iface_priv *priv,
|
struct ctrl_iface_global_priv {
|
||||||
|
struct wpa_global *global;
|
||||||
|
int sock;
|
||||||
|
struct dl_list ctrl_dst;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
static void wpa_supplicant_ctrl_iface_send(const char *ifname, int sock,
|
||||||
|
struct dl_list *ctrl_dst,
|
||||||
int level, const char *buf,
|
int level, const char *buf,
|
||||||
size_t len);
|
size_t len);
|
||||||
|
|
||||||
|
|
||||||
static int wpa_supplicant_ctrl_iface_attach(struct ctrl_iface_priv *priv,
|
static int wpa_supplicant_ctrl_iface_attach(struct dl_list *ctrl_dst,
|
||||||
struct sockaddr_un *from,
|
struct sockaddr_un *from,
|
||||||
socklen_t fromlen)
|
socklen_t fromlen)
|
||||||
{
|
{
|
||||||
|
@ -67,7 +75,7 @@ static int wpa_supplicant_ctrl_iface_attach(struct ctrl_iface_priv *priv,
|
||||||
os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un));
|
os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un));
|
||||||
dst->addrlen = fromlen;
|
dst->addrlen = fromlen;
|
||||||
dst->debug_level = MSG_INFO;
|
dst->debug_level = MSG_INFO;
|
||||||
dl_list_add(&priv->ctrl_dst, &dst->list);
|
dl_list_add(ctrl_dst, &dst->list);
|
||||||
wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor attached",
|
wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor attached",
|
||||||
(u8 *) from->sun_path,
|
(u8 *) from->sun_path,
|
||||||
fromlen - offsetof(struct sockaddr_un, sun_path));
|
fromlen - offsetof(struct sockaddr_un, sun_path));
|
||||||
|
@ -75,13 +83,13 @@ static int wpa_supplicant_ctrl_iface_attach(struct ctrl_iface_priv *priv,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int wpa_supplicant_ctrl_iface_detach(struct ctrl_iface_priv *priv,
|
static int wpa_supplicant_ctrl_iface_detach(struct dl_list *ctrl_dst,
|
||||||
struct sockaddr_un *from,
|
struct sockaddr_un *from,
|
||||||
socklen_t fromlen)
|
socklen_t fromlen)
|
||||||
{
|
{
|
||||||
struct wpa_ctrl_dst *dst;
|
struct wpa_ctrl_dst *dst;
|
||||||
|
|
||||||
dl_list_for_each(dst, &priv->ctrl_dst, struct wpa_ctrl_dst, list) {
|
dl_list_for_each(dst, ctrl_dst, struct wpa_ctrl_dst, list) {
|
||||||
if (fromlen == dst->addrlen &&
|
if (fromlen == dst->addrlen &&
|
||||||
os_memcmp(from->sun_path, dst->addr.sun_path,
|
os_memcmp(from->sun_path, dst->addr.sun_path,
|
||||||
fromlen - offsetof(struct sockaddr_un, sun_path))
|
fromlen - offsetof(struct sockaddr_un, sun_path))
|
||||||
|
@ -148,14 +156,16 @@ static void wpa_supplicant_ctrl_iface_receive(int sock, void *eloop_ctx,
|
||||||
buf[res] = '\0';
|
buf[res] = '\0';
|
||||||
|
|
||||||
if (os_strcmp(buf, "ATTACH") == 0) {
|
if (os_strcmp(buf, "ATTACH") == 0) {
|
||||||
if (wpa_supplicant_ctrl_iface_attach(priv, &from, fromlen))
|
if (wpa_supplicant_ctrl_iface_attach(&priv->ctrl_dst, &from,
|
||||||
|
fromlen))
|
||||||
reply_len = 1;
|
reply_len = 1;
|
||||||
else {
|
else {
|
||||||
new_attached = 1;
|
new_attached = 1;
|
||||||
reply_len = 2;
|
reply_len = 2;
|
||||||
}
|
}
|
||||||
} else if (os_strcmp(buf, "DETACH") == 0) {
|
} else if (os_strcmp(buf, "DETACH") == 0) {
|
||||||
if (wpa_supplicant_ctrl_iface_detach(priv, &from, fromlen))
|
if (wpa_supplicant_ctrl_iface_detach(&priv->ctrl_dst, &from,
|
||||||
|
fromlen))
|
||||||
reply_len = 1;
|
reply_len = 1;
|
||||||
else
|
else
|
||||||
reply_len = 2;
|
reply_len = 2;
|
||||||
|
@ -244,9 +254,25 @@ static void wpa_supplicant_ctrl_iface_msg_cb(void *ctx, int level,
|
||||||
const char *txt, size_t len)
|
const char *txt, size_t len)
|
||||||
{
|
{
|
||||||
struct wpa_supplicant *wpa_s = ctx;
|
struct wpa_supplicant *wpa_s = ctx;
|
||||||
if (wpa_s == NULL || wpa_s->ctrl_iface == NULL)
|
|
||||||
|
if (wpa_s == NULL)
|
||||||
return;
|
return;
|
||||||
wpa_supplicant_ctrl_iface_send(wpa_s->ctrl_iface, level, txt, len);
|
|
||||||
|
if (wpa_s->global->ctrl_iface) {
|
||||||
|
struct ctrl_iface_global_priv *priv = wpa_s->global->ctrl_iface;
|
||||||
|
if (!dl_list_empty(&priv->ctrl_dst)) {
|
||||||
|
wpa_supplicant_ctrl_iface_send(wpa_s->ifname,
|
||||||
|
priv->sock,
|
||||||
|
&priv->ctrl_dst,
|
||||||
|
level, txt, len);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (wpa_s->ctrl_iface == NULL)
|
||||||
|
return;
|
||||||
|
wpa_supplicant_ctrl_iface_send(NULL, wpa_s->ctrl_iface->sock,
|
||||||
|
&wpa_s->ctrl_iface->ctrl_dst,
|
||||||
|
level, txt, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -519,14 +545,17 @@ free_dst:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* wpa_supplicant_ctrl_iface_send - Send a control interface packet to monitors
|
* wpa_supplicant_ctrl_iface_send - Send a control interface packet to monitors
|
||||||
* @priv: Pointer to private data from wpa_supplicant_ctrl_iface_init()
|
* @ifname: Interface name for global control socket or %NULL
|
||||||
|
* @sock: Local socket fd
|
||||||
|
* @ctrl_dst: List of attached listeners
|
||||||
* @level: Priority level of the message
|
* @level: Priority level of the message
|
||||||
* @buf: Message data
|
* @buf: Message data
|
||||||
* @len: Message length
|
* @len: Message length
|
||||||
*
|
*
|
||||||
* Send a packet to all monitor programs attached to the control interface.
|
* Send a packet to all monitor programs attached to the control interface.
|
||||||
*/
|
*/
|
||||||
static void wpa_supplicant_ctrl_iface_send(struct ctrl_iface_priv *priv,
|
static void wpa_supplicant_ctrl_iface_send(const char *ifname, int sock,
|
||||||
|
struct dl_list *ctrl_dst,
|
||||||
int level, const char *buf,
|
int level, const char *buf,
|
||||||
size_t len)
|
size_t len)
|
||||||
{
|
{
|
||||||
|
@ -534,32 +563,45 @@ static void wpa_supplicant_ctrl_iface_send(struct ctrl_iface_priv *priv,
|
||||||
char levelstr[10];
|
char levelstr[10];
|
||||||
int idx, res;
|
int idx, res;
|
||||||
struct msghdr msg;
|
struct msghdr msg;
|
||||||
struct iovec io[2];
|
struct iovec io[5];
|
||||||
|
|
||||||
if (priv->sock < 0 || dl_list_empty(&priv->ctrl_dst))
|
if (sock < 0 || dl_list_empty(ctrl_dst))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
res = os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
|
res = os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
|
||||||
if (res < 0 || (size_t) res >= sizeof(levelstr))
|
if (res < 0 || (size_t) res >= sizeof(levelstr))
|
||||||
return;
|
return;
|
||||||
io[0].iov_base = levelstr;
|
idx = 0;
|
||||||
io[0].iov_len = os_strlen(levelstr);
|
if (ifname) {
|
||||||
io[1].iov_base = (char *) buf;
|
io[idx].iov_base = "IFNAME=";
|
||||||
io[1].iov_len = len;
|
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++;
|
||||||
os_memset(&msg, 0, sizeof(msg));
|
os_memset(&msg, 0, sizeof(msg));
|
||||||
msg.msg_iov = io;
|
msg.msg_iov = io;
|
||||||
msg.msg_iovlen = 2;
|
msg.msg_iovlen = idx;
|
||||||
|
|
||||||
idx = 0;
|
idx = 0;
|
||||||
dl_list_for_each_safe(dst, next, &priv->ctrl_dst, struct wpa_ctrl_dst,
|
dl_list_for_each_safe(dst, next, ctrl_dst, struct wpa_ctrl_dst, list) {
|
||||||
list) {
|
|
||||||
if (level >= dst->debug_level) {
|
if (level >= dst->debug_level) {
|
||||||
wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor send",
|
wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor send",
|
||||||
(u8 *) dst->addr.sun_path, dst->addrlen -
|
(u8 *) dst->addr.sun_path, dst->addrlen -
|
||||||
offsetof(struct sockaddr_un, sun_path));
|
offsetof(struct sockaddr_un, sun_path));
|
||||||
msg.msg_name = (void *) &dst->addr;
|
msg.msg_name = (void *) &dst->addr;
|
||||||
msg.msg_namelen = dst->addrlen;
|
msg.msg_namelen = dst->addrlen;
|
||||||
if (sendmsg(priv->sock, &msg, 0) < 0) {
|
if (sendmsg(sock, &msg, 0) < 0) {
|
||||||
int _errno = errno;
|
int _errno = errno;
|
||||||
wpa_printf(MSG_INFO, "CTRL_IFACE monitor[%d]: "
|
wpa_printf(MSG_INFO, "CTRL_IFACE monitor[%d]: "
|
||||||
"%d - %s",
|
"%d - %s",
|
||||||
|
@ -569,7 +611,7 @@ static void wpa_supplicant_ctrl_iface_send(struct ctrl_iface_priv *priv,
|
||||||
(_errno != ENOBUFS && dst->errors > 10) ||
|
(_errno != ENOBUFS && dst->errors > 10) ||
|
||||||
_errno == ENOENT) {
|
_errno == ENOENT) {
|
||||||
wpa_supplicant_ctrl_iface_detach(
|
wpa_supplicant_ctrl_iface_detach(
|
||||||
priv, &dst->addr,
|
ctrl_dst, &dst->addr,
|
||||||
dst->addrlen);
|
dst->addrlen);
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
|
@ -602,8 +644,8 @@ void wpa_supplicant_ctrl_iface_wait(struct ctrl_iface_priv *priv)
|
||||||
|
|
||||||
if (os_strcmp(buf, "ATTACH") == 0) {
|
if (os_strcmp(buf, "ATTACH") == 0) {
|
||||||
/* handle ATTACH signal of first monitor interface */
|
/* handle ATTACH signal of first monitor interface */
|
||||||
if (!wpa_supplicant_ctrl_iface_attach(priv, &from,
|
if (!wpa_supplicant_ctrl_iface_attach(&priv->ctrl_dst,
|
||||||
fromlen)) {
|
&from, fromlen)) {
|
||||||
sendto(priv->sock, "OK\n", 3, 0,
|
sendto(priv->sock, "OK\n", 3, 0,
|
||||||
(struct sockaddr *) &from, fromlen);
|
(struct sockaddr *) &from, fromlen);
|
||||||
/* OK to continue */
|
/* OK to continue */
|
||||||
|
@ -623,21 +665,16 @@ void wpa_supplicant_ctrl_iface_wait(struct ctrl_iface_priv *priv)
|
||||||
|
|
||||||
/* Global ctrl_iface */
|
/* Global ctrl_iface */
|
||||||
|
|
||||||
struct ctrl_iface_global_priv {
|
|
||||||
struct wpa_global *global;
|
|
||||||
int sock;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
static void wpa_supplicant_global_ctrl_iface_receive(int sock, void *eloop_ctx,
|
static void wpa_supplicant_global_ctrl_iface_receive(int sock, void *eloop_ctx,
|
||||||
void *sock_ctx)
|
void *sock_ctx)
|
||||||
{
|
{
|
||||||
struct wpa_global *global = eloop_ctx;
|
struct wpa_global *global = eloop_ctx;
|
||||||
|
struct ctrl_iface_global_priv *priv = sock_ctx;
|
||||||
char buf[256];
|
char buf[256];
|
||||||
int res;
|
int res;
|
||||||
struct sockaddr_un from;
|
struct sockaddr_un from;
|
||||||
socklen_t fromlen = sizeof(from);
|
socklen_t fromlen = sizeof(from);
|
||||||
char *reply;
|
char *reply = NULL;
|
||||||
size_t reply_len;
|
size_t reply_len;
|
||||||
|
|
||||||
res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
|
res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
|
||||||
|
@ -648,16 +685,32 @@ static void wpa_supplicant_global_ctrl_iface_receive(int sock, void *eloop_ctx,
|
||||||
}
|
}
|
||||||
buf[res] = '\0';
|
buf[res] = '\0';
|
||||||
|
|
||||||
|
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 {
|
||||||
reply = wpa_supplicant_global_ctrl_iface_process(global, buf,
|
reply = wpa_supplicant_global_ctrl_iface_process(global, buf,
|
||||||
&reply_len);
|
&reply_len);
|
||||||
|
}
|
||||||
|
|
||||||
if (reply) {
|
if (reply) {
|
||||||
sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from,
|
sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from,
|
||||||
fromlen);
|
fromlen);
|
||||||
os_free(reply);
|
os_free(reply);
|
||||||
} else if (reply_len) {
|
} else if (reply_len == 1) {
|
||||||
sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
|
sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
|
||||||
fromlen);
|
fromlen);
|
||||||
|
} else if (reply_len == 2) {
|
||||||
|
sendto(sock, "OK\n", 3, 0, (struct sockaddr *) &from, fromlen);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -672,6 +725,7 @@ wpa_supplicant_global_ctrl_iface_init(struct wpa_global *global)
|
||||||
priv = os_zalloc(sizeof(*priv));
|
priv = os_zalloc(sizeof(*priv));
|
||||||
if (priv == NULL)
|
if (priv == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
dl_list_init(&priv->ctrl_dst);
|
||||||
priv->global = global;
|
priv->global = global;
|
||||||
priv->sock = -1;
|
priv->sock = -1;
|
||||||
|
|
||||||
|
@ -811,7 +865,7 @@ wpa_supplicant_global_ctrl_iface_init(struct wpa_global *global)
|
||||||
havesock:
|
havesock:
|
||||||
eloop_register_read_sock(priv->sock,
|
eloop_register_read_sock(priv->sock,
|
||||||
wpa_supplicant_global_ctrl_iface_receive,
|
wpa_supplicant_global_ctrl_iface_receive,
|
||||||
global, NULL);
|
global, priv);
|
||||||
|
|
||||||
return priv;
|
return priv;
|
||||||
|
|
||||||
|
@ -826,11 +880,16 @@ fail:
|
||||||
void
|
void
|
||||||
wpa_supplicant_global_ctrl_iface_deinit(struct ctrl_iface_global_priv *priv)
|
wpa_supplicant_global_ctrl_iface_deinit(struct ctrl_iface_global_priv *priv)
|
||||||
{
|
{
|
||||||
|
struct wpa_ctrl_dst *dst, *prev;
|
||||||
|
|
||||||
if (priv->sock >= 0) {
|
if (priv->sock >= 0) {
|
||||||
eloop_unregister_read_sock(priv->sock);
|
eloop_unregister_read_sock(priv->sock);
|
||||||
close(priv->sock);
|
close(priv->sock);
|
||||||
}
|
}
|
||||||
if (priv->global->params.ctrl_interface)
|
if (priv->global->params.ctrl_interface)
|
||||||
unlink(priv->global->params.ctrl_interface);
|
unlink(priv->global->params.ctrl_interface);
|
||||||
|
dl_list_for_each_safe(dst, prev, &priv->ctrl_dst, struct wpa_ctrl_dst,
|
||||||
|
list)
|
||||||
|
os_free(dst);
|
||||||
os_free(priv);
|
os_free(priv);
|
||||||
}
|
}
|
||||||
|
|
|
@ -3567,6 +3567,23 @@ int main(int argc, char *argv[])
|
||||||
global, strerror(errno));
|
global, strerror(errno));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (interactive) {
|
||||||
|
mon_conn = wpa_ctrl_open(global);
|
||||||
|
if (mon_conn) {
|
||||||
|
if (wpa_ctrl_attach(mon_conn) == 0) {
|
||||||
|
wpa_cli_attached = 1;
|
||||||
|
eloop_register_read_sock(
|
||||||
|
wpa_ctrl_get_fd(mon_conn),
|
||||||
|
wpa_cli_mon_receive,
|
||||||
|
NULL, NULL);
|
||||||
|
} else {
|
||||||
|
printf("Failed to open monitor "
|
||||||
|
"connection through global "
|
||||||
|
"control interface\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
eloop_register_signal_terminate(wpa_cli_terminate, NULL);
|
eloop_register_signal_terminate(wpa_cli_terminate, NULL);
|
||||||
|
|
Loading…
Reference in a new issue