Skip to content

Commit

Permalink
mac80211: make sure data is accessible in EAPOL check
Browse files Browse the repository at this point in the history
The code to allow EAPOL frames even when the station
isn't yet marked associated needs to check that the
incoming frame is long enough and due to paged RX it
also can't assume skb->data contains the right data,
it must use skb_copy_bits(). Fix this to avoid using
data that doesn't really exist.

Cc: [email protected]
Signed-off-by: Johannes Berg <[email protected]>
  • Loading branch information
jmberg-intel committed Oct 26, 2012
1 parent 9b395bc commit 6dbda2d
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions net/mac80211/rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -888,14 +888,16 @@ ieee80211_rx_h_check(struct ieee80211_rx_data *rx)
*/
if (rx->sta && rx->sdata->vif.type == NL80211_IFTYPE_STATION &&
ieee80211_is_data_present(hdr->frame_control)) {
u16 ethertype;
u8 *payload;

payload = rx->skb->data +
ieee80211_hdrlen(hdr->frame_control);
ethertype = (payload[6] << 8) | payload[7];
if (cpu_to_be16(ethertype) ==
rx->sdata->control_port_protocol)
unsigned int hdrlen;
__be16 ethertype;

hdrlen = ieee80211_hdrlen(hdr->frame_control);

if (rx->skb->len < hdrlen + 8)
return RX_DROP_MONITOR;

skb_copy_bits(rx->skb, hdrlen + 6, &ethertype, 2);
if (ethertype == rx->sdata->control_port_protocol)
return RX_CONTINUE;
}

Expand Down

0 comments on commit 6dbda2d

Please sign in to comment.