diff options
author | Ron Rindjunsky <ron.rindjunsky@intel.com> | 2007-12-25 10:00:36 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:01:01 -0500 |
commit | 713647169e3aaca16be4cfba42513bd4558abec0 (patch) | |
tree | 460c9454def4c5bd99104760637ae52a8137b38c /net/mac80211/rx.c | |
parent | b580781e038968fb2529460e8b61e3bf77de112a (diff) |
mac80211: A-MPDU Rx adding BAR handling capability
This patch adds the ability to handle Block Ack Request
Signed-off-by: Ron Rindjunsky <ron.rindjunsky@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/mac80211/rx.c')
-rw-r--r-- | net/mac80211/rx.c | 62 |
1 files changed, 58 insertions, 4 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index e7b1eb8da25c..ed3b81639203 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c | |||
@@ -24,6 +24,10 @@ | |||
24 | #include "tkip.h" | 24 | #include "tkip.h" |
25 | #include "wme.h" | 25 | #include "wme.h" |
26 | 26 | ||
27 | u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw, | ||
28 | struct tid_ampdu_rx *tid_agg_rx, | ||
29 | struct sk_buff *skb, u16 mpdu_seq_num, | ||
30 | int bar_req); | ||
27 | /* | 31 | /* |
28 | * monitor mode reception | 32 | * monitor mode reception |
29 | * | 33 | * |
@@ -64,7 +68,9 @@ static inline int should_drop_frame(struct ieee80211_rx_status *status, | |||
64 | if (((hdr->frame_control & cpu_to_le16(IEEE80211_FCTL_FTYPE)) == | 68 | if (((hdr->frame_control & cpu_to_le16(IEEE80211_FCTL_FTYPE)) == |
65 | cpu_to_le16(IEEE80211_FTYPE_CTL)) && | 69 | cpu_to_le16(IEEE80211_FTYPE_CTL)) && |
66 | ((hdr->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE)) != | 70 | ((hdr->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE)) != |
67 | cpu_to_le16(IEEE80211_STYPE_PSPOLL))) | 71 | cpu_to_le16(IEEE80211_STYPE_PSPOLL)) && |
72 | ((hdr->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE)) != | ||
73 | cpu_to_le16(IEEE80211_STYPE_BACK_REQ))) | ||
68 | return 1; | 74 | return 1; |
69 | return 0; | 75 | return 0; |
70 | } | 76 | } |
@@ -634,7 +640,8 @@ ieee80211_rx_h_sta_process(struct ieee80211_txrx_data *rx) | |||
634 | * BSSID to avoid keeping the current IBSS network alive in cases where | 640 | * BSSID to avoid keeping the current IBSS network alive in cases where |
635 | * other STAs are using different BSSID. */ | 641 | * other STAs are using different BSSID. */ |
636 | if (rx->sdata->type == IEEE80211_IF_TYPE_IBSS) { | 642 | if (rx->sdata->type == IEEE80211_IF_TYPE_IBSS) { |
637 | u8 *bssid = ieee80211_get_bssid(hdr, rx->skb->len); | 643 | u8 *bssid = ieee80211_get_bssid(hdr, rx->skb->len, |
644 | IEEE80211_IF_TYPE_IBSS); | ||
638 | if (compare_ether_addr(bssid, rx->sdata->u.sta.bssid) == 0) | 645 | if (compare_ether_addr(bssid, rx->sdata->u.sta.bssid) == 0) |
639 | sta->last_rx = jiffies; | 646 | sta->last_rx = jiffies; |
640 | } else | 647 | } else |
@@ -1377,6 +1384,49 @@ ieee80211_rx_h_data(struct ieee80211_txrx_data *rx) | |||
1377 | } | 1384 | } |
1378 | 1385 | ||
1379 | static ieee80211_txrx_result | 1386 | static ieee80211_txrx_result |
1387 | ieee80211_rx_h_ctrl(struct ieee80211_txrx_data *rx) | ||
1388 | { | ||
1389 | struct ieee80211_local *local = rx->local; | ||
1390 | struct ieee80211_hw *hw = &local->hw; | ||
1391 | struct sk_buff *skb = rx->skb; | ||
1392 | struct ieee80211_bar *bar = (struct ieee80211_bar *) skb->data; | ||
1393 | struct tid_ampdu_rx *tid_agg_rx; | ||
1394 | u16 start_seq_num; | ||
1395 | u16 tid; | ||
1396 | |||
1397 | if (likely((rx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_CTL)) | ||
1398 | return TXRX_CONTINUE; | ||
1399 | |||
1400 | if ((rx->fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_BACK_REQ) { | ||
1401 | if (!rx->sta) | ||
1402 | return TXRX_CONTINUE; | ||
1403 | tid = le16_to_cpu(bar->control) >> 12; | ||
1404 | tid_agg_rx = &(rx->sta->ampdu_mlme.tid_rx[tid]); | ||
1405 | if (tid_agg_rx->state != HT_AGG_STATE_OPERATIONAL) | ||
1406 | return TXRX_CONTINUE; | ||
1407 | |||
1408 | start_seq_num = le16_to_cpu(bar->start_seq_num) >> 4; | ||
1409 | |||
1410 | /* reset session timer */ | ||
1411 | if (tid_agg_rx->timeout) { | ||
1412 | unsigned long expires = | ||
1413 | jiffies + (tid_agg_rx->timeout / 1000) * HZ; | ||
1414 | mod_timer(&tid_agg_rx->session_timer, expires); | ||
1415 | } | ||
1416 | |||
1417 | /* manage reordering buffer according to requested */ | ||
1418 | /* sequence number */ | ||
1419 | rcu_read_lock(); | ||
1420 | ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, NULL, | ||
1421 | start_seq_num, 1); | ||
1422 | rcu_read_unlock(); | ||
1423 | return TXRX_DROP; | ||
1424 | } | ||
1425 | |||
1426 | return TXRX_CONTINUE; | ||
1427 | } | ||
1428 | |||
1429 | static ieee80211_txrx_result | ||
1380 | ieee80211_rx_h_mgmt(struct ieee80211_txrx_data *rx) | 1430 | ieee80211_rx_h_mgmt(struct ieee80211_txrx_data *rx) |
1381 | { | 1431 | { |
1382 | struct ieee80211_sub_if_data *sdata; | 1432 | struct ieee80211_sub_if_data *sdata; |
@@ -1527,6 +1577,7 @@ ieee80211_rx_handler ieee80211_rx_handlers[] = | |||
1527 | ieee80211_rx_h_remove_qos_control, | 1577 | ieee80211_rx_h_remove_qos_control, |
1528 | ieee80211_rx_h_amsdu, | 1578 | ieee80211_rx_h_amsdu, |
1529 | ieee80211_rx_h_data, | 1579 | ieee80211_rx_h_data, |
1580 | ieee80211_rx_h_ctrl, | ||
1530 | ieee80211_rx_h_mgmt, | 1581 | ieee80211_rx_h_mgmt, |
1531 | NULL | 1582 | NULL |
1532 | }; | 1583 | }; |
@@ -1683,8 +1734,6 @@ void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw, struct sk_buff *skb, | |||
1683 | return; | 1734 | return; |
1684 | } | 1735 | } |
1685 | 1736 | ||
1686 | bssid = ieee80211_get_bssid(hdr, skb->len); | ||
1687 | |||
1688 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { | 1737 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { |
1689 | if (!netif_running(sdata->dev)) | 1738 | if (!netif_running(sdata->dev)) |
1690 | continue; | 1739 | continue; |
@@ -1692,6 +1741,7 @@ void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw, struct sk_buff *skb, | |||
1692 | if (sdata->type == IEEE80211_IF_TYPE_MNTR) | 1741 | if (sdata->type == IEEE80211_IF_TYPE_MNTR) |
1693 | continue; | 1742 | continue; |
1694 | 1743 | ||
1744 | bssid = ieee80211_get_bssid(hdr, skb->len, sdata->type); | ||
1695 | rx.flags |= IEEE80211_TXRXD_RXRA_MATCH; | 1745 | rx.flags |= IEEE80211_TXRXD_RXRA_MATCH; |
1696 | prepares = prepare_for_handlers(sdata, bssid, &rx, hdr); | 1746 | prepares = prepare_for_handlers(sdata, bssid, &rx, hdr); |
1697 | /* prepare_for_handlers can change sta */ | 1747 | /* prepare_for_handlers can change sta */ |
@@ -1767,6 +1817,10 @@ static inline u16 seq_sub(u16 sq1, u16 sq2) | |||
1767 | } | 1817 | } |
1768 | 1818 | ||
1769 | 1819 | ||
1820 | /* | ||
1821 | * As it function blongs to Rx path it must be called with | ||
1822 | * the proper rcu_read_lock protection for its flow. | ||
1823 | */ | ||
1770 | u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw, | 1824 | u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw, |
1771 | struct tid_ampdu_rx *tid_agg_rx, | 1825 | struct tid_ampdu_rx *tid_agg_rx, |
1772 | struct sk_buff *skb, u16 mpdu_seq_num, | 1826 | struct sk_buff *skb, u16 mpdu_seq_num, |