|
@@ -99,31 +99,6 @@ static int macsec_qca_get_capa(void *priv, struct wpa_driver_capa *capa)
|
|
|
}
|
|
|
|
|
|
|
|
|
-static int macsec_qca_get_ifflags(const char *ifname, int *flags)
|
|
|
-{
|
|
|
- struct ifreq ifr;
|
|
|
- int s;
|
|
|
-
|
|
|
- s = socket(PF_INET, SOCK_DGRAM, 0);
|
|
|
- if (s < 0) {
|
|
|
- wpa_printf(MSG_ERROR, "socket: %s", strerror(errno));
|
|
|
- return -1;
|
|
|
- }
|
|
|
-
|
|
|
- os_memset(&ifr, 0, sizeof(ifr));
|
|
|
- os_strlcpy(ifr.ifr_name, ifname, IFNAMSIZ);
|
|
|
- if (ioctl(s, SIOCGIFFLAGS, (caddr_t) &ifr) < 0) {
|
|
|
- wpa_printf(MSG_ERROR, "ioctl[SIOCGIFFLAGS]: %s",
|
|
|
- strerror(errno));
|
|
|
- close(s);
|
|
|
- return -1;
|
|
|
- }
|
|
|
- close(s);
|
|
|
- *flags = ifr.ifr_flags & 0xffff;
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
static int macsec_qca_set_ifflags(const char *ifname, int flags)
|
|
|
{
|
|
|
struct ifreq ifr;
|
|
@@ -252,7 +227,7 @@ static void * macsec_qca_init(void *ctx, const char *ifname)
|
|
|
drv->common.pf_sock = -1;
|
|
|
#endif /* __linux__ */
|
|
|
|
|
|
- if (macsec_qca_get_ifflags(ifname, &flags) == 0 &&
|
|
|
+ if (driver_wired_get_ifflags(ifname, &flags) == 0 &&
|
|
|
!(flags & IFF_UP) &&
|
|
|
macsec_qca_set_ifflags(ifname, flags | IFF_UP) == 0) {
|
|
|
drv->common.iff_up = 1;
|
|
@@ -270,7 +245,7 @@ static void * macsec_qca_init(void *ctx, const char *ifname)
|
|
|
"%s: Added multicast membership with SIOCADDMULTI",
|
|
|
__func__);
|
|
|
drv->common.multi = 1;
|
|
|
- } else if (macsec_qca_get_ifflags(ifname, &flags) < 0) {
|
|
|
+ } else if (driver_wired_get_ifflags(ifname, &flags) < 0) {
|
|
|
wpa_printf(MSG_INFO, "%s: Could not get interface flags",
|
|
|
__func__);
|
|
|
os_free(drv);
|
|
@@ -325,7 +300,7 @@ static void macsec_qca_deinit(void *priv)
|
|
|
}
|
|
|
|
|
|
if (drv->common.iff_allmulti &&
|
|
|
- (macsec_qca_get_ifflags(drv->common.ifname, &flags) < 0 ||
|
|
|
+ (driver_wired_get_ifflags(drv->common.ifname, &flags) < 0 ||
|
|
|
macsec_qca_set_ifflags(drv->common.ifname,
|
|
|
flags & ~IFF_ALLMULTI) < 0)) {
|
|
|
wpa_printf(MSG_DEBUG, "%s: Failed to disable allmulti mode",
|
|
@@ -333,7 +308,7 @@ static void macsec_qca_deinit(void *priv)
|
|
|
}
|
|
|
|
|
|
if (drv->common.iff_up &&
|
|
|
- macsec_qca_get_ifflags(drv->common.ifname, &flags) == 0 &&
|
|
|
+ driver_wired_get_ifflags(drv->common.ifname, &flags) == 0 &&
|
|
|
(flags & IFF_UP) &&
|
|
|
macsec_qca_set_ifflags(drv->common.ifname, flags & ~IFF_UP) < 0) {
|
|
|
wpa_printf(MSG_DEBUG, "%s: Failed to set the interface down",
|