Commit 8944b79f authored by Johannes Berg's avatar Johannes Berg Committed by John W. Linville

mac80211: move some code into ieee80211_invoke_rx_handlers

There is some duplicated code that sits in front of each function
call to ieee80211_invoke_rx_handlers() that can very well be part
of that function if it gets slightly different arguments.
Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 58905290
...@@ -1450,7 +1450,6 @@ ieee80211_rx_h_mgmt(struct ieee80211_txrx_data *rx) ...@@ -1450,7 +1450,6 @@ ieee80211_rx_h_mgmt(struct ieee80211_txrx_data *rx)
static void ieee80211_rx_michael_mic_report(struct net_device *dev, static void ieee80211_rx_michael_mic_report(struct net_device *dev,
struct ieee80211_hdr *hdr, struct ieee80211_hdr *hdr,
struct sta_info *sta,
struct ieee80211_txrx_data *rx) struct ieee80211_txrx_data *rx)
{ {
int keyidx, hdrlen; int keyidx, hdrlen;
...@@ -1469,7 +1468,7 @@ static void ieee80211_rx_michael_mic_report(struct net_device *dev, ...@@ -1469,7 +1468,7 @@ static void ieee80211_rx_michael_mic_report(struct net_device *dev,
dev->name, print_mac(mac, hdr->addr2), dev->name, print_mac(mac, hdr->addr2),
print_mac(mac2, hdr->addr1), keyidx); print_mac(mac2, hdr->addr1), keyidx);
if (!sta) { if (!rx->sta) {
/* /*
* Some hardware seem to generate incorrect Michael MIC * Some hardware seem to generate incorrect Michael MIC
* reports; ignore them to avoid triggering countermeasures. * reports; ignore them to avoid triggering countermeasures.
...@@ -1544,13 +1543,17 @@ static ieee80211_rx_handler ieee80211_rx_handlers[] = ...@@ -1544,13 +1543,17 @@ static ieee80211_rx_handler ieee80211_rx_handlers[] =
NULL NULL
}; };
static void ieee80211_invoke_rx_handlers(struct ieee80211_local *local, static void ieee80211_invoke_rx_handlers(struct ieee80211_sub_if_data *sdata,
struct ieee80211_txrx_data *rx, struct ieee80211_txrx_data *rx,
struct sta_info *sta) struct sk_buff *skb)
{ {
ieee80211_rx_handler *handler; ieee80211_rx_handler *handler;
ieee80211_rx_result res = RX_DROP_MONITOR; ieee80211_rx_result res = RX_DROP_MONITOR;
rx->skb = skb;
rx->sdata = sdata;
rx->dev = sdata->dev;
for (handler = ieee80211_rx_handlers; *handler != NULL; handler++) { for (handler = ieee80211_rx_handlers; *handler != NULL; handler++) {
res = (*handler)(rx); res = (*handler)(rx);
...@@ -1559,12 +1562,12 @@ static void ieee80211_invoke_rx_handlers(struct ieee80211_local *local, ...@@ -1559,12 +1562,12 @@ static void ieee80211_invoke_rx_handlers(struct ieee80211_local *local,
continue; continue;
case RX_DROP_UNUSABLE: case RX_DROP_UNUSABLE:
case RX_DROP_MONITOR: case RX_DROP_MONITOR:
I802_DEBUG_INC(local->rx_handlers_drop); I802_DEBUG_INC(sdata->local->rx_handlers_drop);
if (sta) if (rx->sta)
sta->rx_dropped++; rx->sta->rx_dropped++;
break; break;
case RX_QUEUED: case RX_QUEUED:
I802_DEBUG_INC(local->rx_handlers_queued); I802_DEBUG_INC(sdata->local->rx_handlers_queued);
break; break;
} }
break; break;
...@@ -1669,7 +1672,6 @@ static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw, ...@@ -1669,7 +1672,6 @@ static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
{ {
struct ieee80211_local *local = hw_to_local(hw); struct ieee80211_local *local = hw_to_local(hw);
struct ieee80211_sub_if_data *sdata; struct ieee80211_sub_if_data *sdata;
struct sta_info *sta;
struct ieee80211_hdr *hdr; struct ieee80211_hdr *hdr;
struct ieee80211_txrx_data rx; struct ieee80211_txrx_data rx;
u16 type; u16 type;
...@@ -1692,14 +1694,14 @@ static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw, ...@@ -1692,14 +1694,14 @@ static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
if (type == IEEE80211_FTYPE_DATA || type == IEEE80211_FTYPE_MGMT) if (type == IEEE80211_FTYPE_DATA || type == IEEE80211_FTYPE_MGMT)
local->dot11ReceivedFragmentCount++; local->dot11ReceivedFragmentCount++;
sta = rx.sta = sta_info_get(local, hdr->addr2); rx.sta = sta_info_get(local, hdr->addr2);
if (sta) { if (rx.sta) {
rx.dev = rx.sta->dev; rx.dev = rx.sta->dev;
rx.sdata = IEEE80211_DEV_TO_SUB_IF(rx.dev); rx.sdata = IEEE80211_DEV_TO_SUB_IF(rx.dev);
} }
if ((status->flag & RX_FLAG_MMIC_ERROR)) { if ((status->flag & RX_FLAG_MMIC_ERROR)) {
ieee80211_rx_michael_mic_report(local->mdev, hdr, sta, &rx); ieee80211_rx_michael_mic_report(local->mdev, hdr, &rx);
goto end; goto end;
} }
...@@ -1721,8 +1723,6 @@ static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw, ...@@ -1721,8 +1723,6 @@ static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
bssid = ieee80211_get_bssid(hdr, skb->len, sdata->vif.type); bssid = ieee80211_get_bssid(hdr, skb->len, sdata->vif.type);
rx.flags |= IEEE80211_TXRXD_RXRA_MATCH; rx.flags |= IEEE80211_TXRXD_RXRA_MATCH;
prepares = prepare_for_handlers(sdata, bssid, &rx, hdr); prepares = prepare_for_handlers(sdata, bssid, &rx, hdr);
/* prepare_for_handlers can change sta */
sta = rx.sta;
if (!prepares) if (!prepares)
continue; continue;
...@@ -1753,24 +1753,18 @@ static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw, ...@@ -1753,24 +1753,18 @@ static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
continue; continue;
} }
rx.fc = le16_to_cpu(hdr->frame_control); rx.fc = le16_to_cpu(hdr->frame_control);
rx.skb = skb_new; ieee80211_invoke_rx_handlers(prev, &rx, skb_new);
rx.dev = prev->dev;
rx.sdata = prev;
ieee80211_invoke_rx_handlers(local, &rx, sta);
prev = sdata; prev = sdata;
} }
if (prev) { if (prev) {
rx.fc = le16_to_cpu(hdr->frame_control); rx.fc = le16_to_cpu(hdr->frame_control);
rx.skb = skb; ieee80211_invoke_rx_handlers(prev, &rx, skb);
rx.dev = prev->dev;
rx.sdata = prev;
ieee80211_invoke_rx_handlers(local, &rx, sta);
} else } else
dev_kfree_skb(skb); dev_kfree_skb(skb);
end: end:
if (sta) if (rx.sta)
sta_info_put(sta); sta_info_put(rx.sta);
} }
#define SEQ_MODULO 0x1000 #define SEQ_MODULO 0x1000
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment