|
@@ -599,10 +599,10 @@ static int ieee80211_is_unicast_robust_mgmt_frame(struct sk_buff *skb)
|
|
|
{
|
|
|
struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
|
|
|
|
|
|
- if (skb->len < 24 || is_multicast_ether_addr(hdr->addr1))
|
|
|
+ if (is_multicast_ether_addr(hdr->addr1))
|
|
|
return 0;
|
|
|
|
|
|
- return ieee80211_is_robust_mgmt_frame(hdr);
|
|
|
+ return ieee80211_is_robust_mgmt_frame(skb);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -610,10 +610,10 @@ static int ieee80211_is_multicast_robust_mgmt_frame(struct sk_buff *skb)
|
|
|
{
|
|
|
struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
|
|
|
|
|
|
- if (skb->len < 24 || !is_multicast_ether_addr(hdr->addr1))
|
|
|
+ if (!is_multicast_ether_addr(hdr->addr1))
|
|
|
return 0;
|
|
|
|
|
|
- return ieee80211_is_robust_mgmt_frame(hdr);
|
|
|
+ return ieee80211_is_robust_mgmt_frame(skb);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -626,7 +626,7 @@ static int ieee80211_get_mmie_keyidx(struct sk_buff *skb)
|
|
|
if (skb->len < 24 + sizeof(*mmie) || !is_multicast_ether_addr(hdr->da))
|
|
|
return -1;
|
|
|
|
|
|
- if (!ieee80211_is_robust_mgmt_frame((struct ieee80211_hdr *) hdr))
|
|
|
+ if (!ieee80211_is_robust_mgmt_frame(skb))
|
|
|
return -1; /* not a robust management frame */
|
|
|
|
|
|
mmie = (struct ieee80211_mmie *)
|
|
@@ -1845,8 +1845,7 @@ static int ieee80211_drop_unencrypted_mgmt(struct ieee80211_rx_data *rx)
|
|
|
* having configured keys.
|
|
|
*/
|
|
|
if (unlikely(ieee80211_is_action(fc) && !rx->key &&
|
|
|
- ieee80211_is_robust_mgmt_frame(
|
|
|
- (struct ieee80211_hdr *) rx->skb->data)))
|
|
|
+ ieee80211_is_robust_mgmt_frame(rx->skb)))
|
|
|
return -EACCES;
|
|
|
}
|
|
|
|