|
@@ -150,7 +150,8 @@ static void wpa_supplicant_ctrl_iface_receive(int sock, void *eloop_ctx,
|
|
|
res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
|
|
|
(struct sockaddr *) &from, &fromlen);
|
|
|
if (res < 0) {
|
|
|
- perror("recvfrom(ctrl_iface)");
|
|
|
+ wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
|
|
|
+ strerror(errno));
|
|
|
return;
|
|
|
}
|
|
|
buf[res] = '\0';
|
|
@@ -327,7 +328,8 @@ wpa_supplicant_ctrl_iface_init(struct wpa_supplicant *wpa_s)
|
|
|
wpa_printf(MSG_DEBUG, "Using existing control "
|
|
|
"interface directory.");
|
|
|
} else {
|
|
|
- perror("mkdir[ctrl_interface]");
|
|
|
+ wpa_printf(MSG_ERROR, "mkdir[ctrl_interface=%s]: %s",
|
|
|
+ dir, strerror(errno));
|
|
|
goto fail;
|
|
|
}
|
|
|
}
|
|
@@ -371,7 +373,8 @@ wpa_supplicant_ctrl_iface_init(struct wpa_supplicant *wpa_s)
|
|
|
}
|
|
|
|
|
|
if (gid_set && chown(dir, -1, gid) < 0) {
|
|
|
- perror("chown[ctrl_interface]");
|
|
|
+ wpa_printf(MSG_ERROR, "chown[ctrl_interface=%s,gid=%d]: %s",
|
|
|
+ dir, (int) gid, strerror(errno));
|
|
|
goto fail;
|
|
|
}
|
|
|
|
|
@@ -391,7 +394,7 @@ wpa_supplicant_ctrl_iface_init(struct wpa_supplicant *wpa_s)
|
|
|
|
|
|
priv->sock = socket(PF_UNIX, SOCK_DGRAM, 0);
|
|
|
if (priv->sock < 0) {
|
|
|
- perror("socket(PF_UNIX)");
|
|
|
+ wpa_printf(MSG_ERROR, "socket(PF_UNIX): %s", strerror(errno));
|
|
|
goto fail;
|
|
|
}
|
|
|
|
|
@@ -413,15 +416,15 @@ wpa_supplicant_ctrl_iface_init(struct wpa_supplicant *wpa_s)
|
|
|
" allow connections - assuming it was left"
|
|
|
"over from forced program termination");
|
|
|
if (unlink(fname) < 0) {
|
|
|
- perror("unlink[ctrl_iface]");
|
|
|
- wpa_printf(MSG_ERROR, "Could not unlink "
|
|
|
- "existing ctrl_iface socket '%s'",
|
|
|
- fname);
|
|
|
+ wpa_printf(MSG_ERROR,
|
|
|
+ "Could not unlink existing ctrl_iface socket '%s': %s",
|
|
|
+ fname, strerror(errno));
|
|
|
goto fail;
|
|
|
}
|
|
|
if (bind(priv->sock, (struct sockaddr *) &addr,
|
|
|
sizeof(addr)) < 0) {
|
|
|
- perror("supp-ctrl-iface-init: bind(PF_UNIX)");
|
|
|
+ wpa_printf(MSG_ERROR, "supp-ctrl-iface-init: bind(PF_UNIX): %s",
|
|
|
+ strerror(errno));
|
|
|
goto fail;
|
|
|
}
|
|
|
wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
|
|
@@ -438,12 +441,14 @@ wpa_supplicant_ctrl_iface_init(struct wpa_supplicant *wpa_s)
|
|
|
}
|
|
|
|
|
|
if (gid_set && chown(fname, -1, gid) < 0) {
|
|
|
- perror("chown[ctrl_interface/ifname]");
|
|
|
+ wpa_printf(MSG_ERROR, "chown[ctrl_interface=%s,gid=%d]: %s",
|
|
|
+ fname, (int) gid, strerror(errno));
|
|
|
goto fail;
|
|
|
}
|
|
|
|
|
|
if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
|
|
|
- perror("chmod[ctrl_interface/ifname]");
|
|
|
+ wpa_printf(MSG_ERROR, "chmod[ctrl_interface=%s]: %s",
|
|
|
+ fname, strerror(errno));
|
|
|
goto fail;
|
|
|
}
|
|
|
os_free(fname);
|
|
@@ -460,7 +465,8 @@ havesock:
|
|
|
if (flags >= 0) {
|
|
|
flags |= O_NONBLOCK;
|
|
|
if (fcntl(priv->sock, F_SETFL, flags) < 0) {
|
|
|
- perror("fcntl(ctrl, O_NONBLOCK)");
|
|
|
+ wpa_printf(MSG_INFO, "fcntl(ctrl, O_NONBLOCK): %s",
|
|
|
+ strerror(errno));
|
|
|
/* Not fatal, continue on.*/
|
|
|
}
|
|
|
}
|
|
@@ -530,7 +536,9 @@ void wpa_supplicant_ctrl_iface_deinit(struct ctrl_iface_priv *priv)
|
|
|
"directory not empty - leaving it "
|
|
|
"behind");
|
|
|
} else {
|
|
|
- perror("rmdir[ctrl_interface]");
|
|
|
+ wpa_printf(MSG_ERROR,
|
|
|
+ "rmdir[ctrl_interface=%s]: %s",
|
|
|
+ dir, strerror(errno));
|
|
|
}
|
|
|
}
|
|
|
os_free(buf);
|
|
@@ -638,7 +646,8 @@ void wpa_supplicant_ctrl_iface_wait(struct ctrl_iface_priv *priv)
|
|
|
res = recvfrom(priv->sock, buf, sizeof(buf) - 1, 0,
|
|
|
(struct sockaddr *) &from, &fromlen);
|
|
|
if (res < 0) {
|
|
|
- perror("recvfrom(ctrl_iface)");
|
|
|
+ wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
|
|
|
+ strerror(errno));
|
|
|
continue;
|
|
|
}
|
|
|
buf[res] = '\0';
|
|
@@ -681,7 +690,8 @@ static void wpa_supplicant_global_ctrl_iface_receive(int sock, void *eloop_ctx,
|
|
|
res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
|
|
|
(struct sockaddr *) &from, &fromlen);
|
|
|
if (res < 0) {
|
|
|
- perror("recvfrom(ctrl_iface)");
|
|
|
+ wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
|
|
|
+ strerror(errno));
|
|
|
return;
|
|
|
}
|
|
|
buf[res] = '\0';
|
|
@@ -767,7 +777,7 @@ wpa_supplicant_global_ctrl_iface_init(struct wpa_global *global)
|
|
|
|
|
|
priv->sock = socket(PF_UNIX, SOCK_DGRAM, 0);
|
|
|
if (priv->sock < 0) {
|
|
|
- perror("socket(PF_UNIX)");
|
|
|
+ wpa_printf(MSG_ERROR, "socket(PF_UNIX): %s", strerror(errno));
|
|
|
goto fail;
|
|
|
}
|
|
|
|
|
@@ -784,7 +794,8 @@ wpa_supplicant_global_ctrl_iface_init(struct wpa_global *global)
|
|
|
if (bind(priv->sock, (struct sockaddr *) &addr, sizeof(addr)) <
|
|
|
0) {
|
|
|
wpa_printf(MSG_ERROR, "supp-global-ctrl-iface-init: "
|
|
|
- "bind(PF_UNIX) failed: %s", strerror(errno));
|
|
|
+ "bind(PF_UNIX;%s) failed: %s",
|
|
|
+ ctrl, strerror(errno));
|
|
|
goto fail;
|
|
|
}
|
|
|
wpa_printf(MSG_DEBUG, "Using Abstract control socket '%s'",
|
|
@@ -794,23 +805,23 @@ wpa_supplicant_global_ctrl_iface_init(struct wpa_global *global)
|
|
|
|
|
|
os_strlcpy(addr.sun_path, ctrl, sizeof(addr.sun_path));
|
|
|
if (bind(priv->sock, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
|
|
|
- perror("supp-global-ctrl-iface-init (will try fixup): "
|
|
|
- "bind(PF_UNIX)");
|
|
|
+ wpa_printf(MSG_INFO, "supp-global-ctrl-iface-init(%s) (will try fixup): bind(PF_UNIX): %s",
|
|
|
+ ctrl, 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(ctrl) < 0) {
|
|
|
- perror("unlink[ctrl_iface]");
|
|
|
- wpa_printf(MSG_ERROR, "Could not unlink "
|
|
|
- "existing ctrl_iface socket '%s'",
|
|
|
- ctrl);
|
|
|
+ wpa_printf(MSG_ERROR,
|
|
|
+ "Could not unlink existing ctrl_iface socket '%s': %s",
|
|
|
+ ctrl, strerror(errno));
|
|
|
goto fail;
|
|
|
}
|
|
|
if (bind(priv->sock, (struct sockaddr *) &addr,
|
|
|
sizeof(addr)) < 0) {
|
|
|
- perror("supp-glb-iface-init: bind(PF_UNIX)");
|
|
|
+ wpa_printf(MSG_ERROR, "supp-glb-iface-init: bind(PF_UNIX;%s): %s",
|
|
|
+ ctrl, strerror(errno));
|
|
|
goto fail;
|
|
|
}
|
|
|
wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
|
|
@@ -852,12 +863,16 @@ wpa_supplicant_global_ctrl_iface_init(struct wpa_global *global)
|
|
|
(int) gid);
|
|
|
}
|
|
|
if (chown(ctrl, -1, gid) < 0) {
|
|
|
- perror("chown[global_ctrl_interface/ifname]");
|
|
|
+ wpa_printf(MSG_ERROR,
|
|
|
+ "chown[global_ctrl_interface=%s,gid=%d]: %s",
|
|
|
+ ctrl, (int) gid, strerror(errno));
|
|
|
goto fail;
|
|
|
}
|
|
|
|
|
|
if (chmod(ctrl, S_IRWXU | S_IRWXG) < 0) {
|
|
|
- perror("chmod[global_ctrl_interface/ifname]");
|
|
|
+ wpa_printf(MSG_ERROR,
|
|
|
+ "chmod[global_ctrl_interface=%s]: %s",
|
|
|
+ ctrl, strerror(errno));
|
|
|
goto fail;
|
|
|
}
|
|
|
} else {
|
|
@@ -874,7 +889,8 @@ havesock:
|
|
|
if (flags >= 0) {
|
|
|
flags |= O_NONBLOCK;
|
|
|
if (fcntl(priv->sock, F_SETFL, flags) < 0) {
|
|
|
- perror("fcntl(ctrl, O_NONBLOCK)");
|
|
|
+ wpa_printf(MSG_INFO, "fcntl(ctrl, O_NONBLOCK): %s",
|
|
|
+ strerror(errno));
|
|
|
/* Not fatal, continue on.*/
|
|
|
}
|
|
|
}
|