|
@@ -353,21 +353,13 @@ static void wpa_driver_nl80211_event_link(struct wpa_driver_nl80211_data *drv,
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_own_ifname(struct wpa_driver_nl80211_data *drv,
|
|
|
- struct nlmsghdr *h)
|
|
|
+ u8 *buf, size_t len)
|
|
|
{
|
|
|
- struct ifinfomsg *ifi;
|
|
|
- int attrlen, _nlmsg_len, rta_len;
|
|
|
+ int attrlen, rta_len;
|
|
|
struct rtattr *attr;
|
|
|
|
|
|
- ifi = NLMSG_DATA(h);
|
|
|
-
|
|
|
- _nlmsg_len = NLMSG_ALIGN(sizeof(struct ifinfomsg));
|
|
|
-
|
|
|
- attrlen = NLMSG_PAYLOAD(h, sizeof(struct ifinfomsg));
|
|
|
- if (attrlen < 0)
|
|
|
- return 0;
|
|
|
-
|
|
|
- attr = (struct rtattr *) (((char *) ifi) + _nlmsg_len);
|
|
|
+ attrlen = len;
|
|
|
+ attr = (struct rtattr *) buf;
|
|
|
|
|
|
rta_len = RTA_ALIGN(sizeof(struct rtattr));
|
|
|
while (RTA_OK(attr, attrlen)) {
|
|
@@ -386,12 +378,12 @@ static int wpa_driver_nl80211_own_ifname(struct wpa_driver_nl80211_data *drv,
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_own_ifindex(struct wpa_driver_nl80211_data *drv,
|
|
|
- int ifindex, struct nlmsghdr *h)
|
|
|
+ int ifindex, u8 *buf, size_t len)
|
|
|
{
|
|
|
if (drv->ifindex == ifindex)
|
|
|
return 1;
|
|
|
|
|
|
- if (drv->if_removed && wpa_driver_nl80211_own_ifname(drv, h)) {
|
|
|
+ if (drv->if_removed && wpa_driver_nl80211_own_ifname(drv, buf, len)) {
|
|
|
drv->ifindex = if_nametoindex(drv->ifname);
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Update ifindex for a removed "
|
|
|
"interface");
|
|
@@ -403,20 +395,15 @@ static int wpa_driver_nl80211_own_ifindex(struct wpa_driver_nl80211_data *drv,
|
|
|
}
|
|
|
|
|
|
|
|
|
-static void wpa_driver_nl80211_event_rtm_newlink(void *ctx, struct nlmsghdr *h,
|
|
|
- size_t len)
|
|
|
+static void wpa_driver_nl80211_event_rtm_newlink(void *ctx,
|
|
|
+ struct ifinfomsg *ifi,
|
|
|
+ u8 *buf, size_t len)
|
|
|
{
|
|
|
struct wpa_driver_nl80211_data *drv = ctx;
|
|
|
- struct ifinfomsg *ifi;
|
|
|
- int attrlen, _nlmsg_len, rta_len;
|
|
|
- struct rtattr * attr;
|
|
|
-
|
|
|
- if (len < sizeof(*ifi))
|
|
|
- return;
|
|
|
-
|
|
|
- ifi = NLMSG_DATA(h);
|
|
|
+ int attrlen, rta_len;
|
|
|
+ struct rtattr *attr;
|
|
|
|
|
|
- if (!wpa_driver_nl80211_own_ifindex(drv, ifi->ifi_index, h)) {
|
|
|
+ if (!wpa_driver_nl80211_own_ifindex(drv, ifi->ifi_index, buf, len)) {
|
|
|
wpa_printf(MSG_DEBUG, "Ignore event for foreign ifindex %d",
|
|
|
ifi->ifi_index);
|
|
|
return;
|
|
@@ -441,14 +428,8 @@ static void wpa_driver_nl80211_event_rtm_newlink(void *ctx, struct nlmsghdr *h,
|
|
|
netlink_send_oper_ifla(drv->netlink, drv->ifindex,
|
|
|
-1, IF_OPER_UP);
|
|
|
|
|
|
- _nlmsg_len = NLMSG_ALIGN(sizeof(struct ifinfomsg));
|
|
|
-
|
|
|
- attrlen = NLMSG_PAYLOAD(h, sizeof(struct ifinfomsg));
|
|
|
- if (attrlen < 0)
|
|
|
- return;
|
|
|
-
|
|
|
- attr = (struct rtattr *) (((char *) ifi) + _nlmsg_len);
|
|
|
-
|
|
|
+ attrlen = len;
|
|
|
+ attr = (struct rtattr *) buf;
|
|
|
rta_len = RTA_ALIGN(sizeof(struct rtattr));
|
|
|
while (RTA_OK(attr, attrlen)) {
|
|
|
if (attr->rta_type == IFLA_IFNAME) {
|
|
@@ -462,26 +443,16 @@ static void wpa_driver_nl80211_event_rtm_newlink(void *ctx, struct nlmsghdr *h,
|
|
|
}
|
|
|
|
|
|
|
|
|
-static void wpa_driver_nl80211_event_rtm_dellink(void *ctx, struct nlmsghdr *h,
|
|
|
- size_t len)
|
|
|
+static void wpa_driver_nl80211_event_rtm_dellink(void *ctx,
|
|
|
+ struct ifinfomsg *ifi,
|
|
|
+ u8 *buf, size_t len)
|
|
|
{
|
|
|
struct wpa_driver_nl80211_data *drv = ctx;
|
|
|
- struct ifinfomsg *ifi;
|
|
|
- int attrlen, _nlmsg_len, rta_len;
|
|
|
- struct rtattr * attr;
|
|
|
-
|
|
|
- if (len < sizeof(*ifi))
|
|
|
- return;
|
|
|
-
|
|
|
- ifi = NLMSG_DATA(h);
|
|
|
-
|
|
|
- _nlmsg_len = NLMSG_ALIGN(sizeof(struct ifinfomsg));
|
|
|
-
|
|
|
- attrlen = NLMSG_PAYLOAD(h, sizeof(struct ifinfomsg));
|
|
|
- if (attrlen < 0)
|
|
|
- return;
|
|
|
+ int attrlen, rta_len;
|
|
|
+ struct rtattr *attr;
|
|
|
|
|
|
- attr = (struct rtattr *) (((char *) ifi) + _nlmsg_len);
|
|
|
+ attrlen = len;
|
|
|
+ attr = (struct rtattr *) buf;
|
|
|
|
|
|
rta_len = RTA_ALIGN(sizeof(struct rtattr));
|
|
|
while (RTA_OK(attr, attrlen)) {
|