blob: 7f2042d3790427b10516975400775e820055c5e9 [file] [log] [blame]
Johannes Bergb8695a82009-02-10 21:25:46 +01001/*
2 * HT handling
3 *
4 * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi>
5 * Copyright 2002-2005, Instant802 Networks, Inc.
6 * Copyright 2005-2006, Devicescape Software, Inc.
7 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
8 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
9 * Copyright 2007-2009, Intel Corporation
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
16#include <linux/ieee80211.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Johannes Bergb8695a82009-02-10 21:25:46 +010018#include <net/mac80211.h>
19#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020020#include "driver-ops.h"
Johannes Bergb8695a82009-02-10 21:25:46 +010021#include "wme.h"
22
Johannes Berg86ab6c52009-02-10 21:25:49 +010023/**
24 * DOC: TX aggregation
25 *
26 * Aggregation on the TX side requires setting the hardware flag
27 * %IEEE80211_HW_AMPDU_AGGREGATION as well as, if present, the @ampdu_queues
28 * hardware parameter to the number of hardware AMPDU queues. If there are no
29 * hardware queues then the driver will (currently) have to do all frame
30 * buffering.
31 *
32 * When TX aggregation is started by some subsystem (usually the rate control
33 * algorithm would be appropriate) by calling the
34 * ieee80211_start_tx_ba_session() function, the driver will be notified via
35 * its @ampdu_action function, with the %IEEE80211_AMPDU_TX_START action.
36 *
37 * In response to that, the driver is later required to call the
38 * ieee80211_start_tx_ba_cb() (or ieee80211_start_tx_ba_cb_irqsafe())
39 * function, which will start the aggregation session.
40 *
41 * Similarly, when the aggregation session is stopped by
42 * ieee80211_stop_tx_ba_session(), the driver's @ampdu_action function will
43 * be called with the action %IEEE80211_AMPDU_TX_STOP. In this case, the
44 * call must not fail, and the driver must later call ieee80211_stop_tx_ba_cb()
45 * (or ieee80211_stop_tx_ba_cb_irqsafe()).
46 */
47
Johannes Bergb8695a82009-02-10 21:25:46 +010048static void ieee80211_send_addba_request(struct ieee80211_sub_if_data *sdata,
49 const u8 *da, u16 tid,
50 u8 dialog_token, u16 start_seq_num,
51 u16 agg_size, u16 timeout)
52{
53 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +010054 struct sk_buff *skb;
55 struct ieee80211_mgmt *mgmt;
56 u16 capab;
57
58 skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom);
59
60 if (!skb) {
61 printk(KERN_ERR "%s: failed to allocate buffer "
Johannes Berg47846c92009-11-25 17:46:19 +010062 "for addba request frame\n", sdata->name);
Johannes Bergb8695a82009-02-10 21:25:46 +010063 return;
64 }
65 skb_reserve(skb, local->hw.extra_tx_headroom);
66 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
67 memset(mgmt, 0, 24);
68 memcpy(mgmt->da, da, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +010069 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg8abd3f92009-02-10 21:25:47 +010070 if (sdata->vif.type == NL80211_IFTYPE_AP ||
71 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg47846c92009-11-25 17:46:19 +010072 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +010073 else if (sdata->vif.type == NL80211_IFTYPE_STATION)
74 memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
Johannes Bergb8695a82009-02-10 21:25:46 +010075
76 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
77 IEEE80211_STYPE_ACTION);
78
79 skb_put(skb, 1 + sizeof(mgmt->u.action.u.addba_req));
80
81 mgmt->u.action.category = WLAN_CATEGORY_BACK;
82 mgmt->u.action.u.addba_req.action_code = WLAN_ACTION_ADDBA_REQ;
83
84 mgmt->u.action.u.addba_req.dialog_token = dialog_token;
85 capab = (u16)(1 << 1); /* bit 1 aggregation policy */
86 capab |= (u16)(tid << 2); /* bit 5:2 TID number */
87 capab |= (u16)(agg_size << 6); /* bit 15:6 max size of aggergation */
88
89 mgmt->u.action.u.addba_req.capab = cpu_to_le16(capab);
90
91 mgmt->u.action.u.addba_req.timeout = cpu_to_le16(timeout);
92 mgmt->u.action.u.addba_req.start_seq_num =
93 cpu_to_le16(start_seq_num << 4);
94
Johannes Berg62ae67b2009-11-18 18:42:05 +010095 ieee80211_tx_skb(sdata, skb);
Johannes Bergb8695a82009-02-10 21:25:46 +010096}
97
98void ieee80211_send_bar(struct ieee80211_sub_if_data *sdata, u8 *ra, u16 tid, u16 ssn)
99{
100 struct ieee80211_local *local = sdata->local;
101 struct sk_buff *skb;
102 struct ieee80211_bar *bar;
103 u16 bar_control = 0;
104
105 skb = dev_alloc_skb(sizeof(*bar) + local->hw.extra_tx_headroom);
106 if (!skb) {
107 printk(KERN_ERR "%s: failed to allocate buffer for "
Johannes Berg47846c92009-11-25 17:46:19 +0100108 "bar frame\n", sdata->name);
Johannes Bergb8695a82009-02-10 21:25:46 +0100109 return;
110 }
111 skb_reserve(skb, local->hw.extra_tx_headroom);
112 bar = (struct ieee80211_bar *)skb_put(skb, sizeof(*bar));
113 memset(bar, 0, sizeof(*bar));
114 bar->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
115 IEEE80211_STYPE_BACK_REQ);
116 memcpy(bar->ra, ra, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100117 memcpy(bar->ta, sdata->vif.addr, ETH_ALEN);
Johannes Bergb8695a82009-02-10 21:25:46 +0100118 bar_control |= (u16)IEEE80211_BAR_CTRL_ACK_POLICY_NORMAL;
119 bar_control |= (u16)IEEE80211_BAR_CTRL_CBMTID_COMPRESSED_BA;
120 bar_control |= (u16)(tid << 12);
121 bar->control = cpu_to_le16(bar_control);
122 bar->start_seq_num = cpu_to_le16(ssn);
123
Johannes Berg62ae67b2009-11-18 18:42:05 +0100124 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
125 ieee80211_tx_skb(sdata, skb);
Johannes Bergb8695a82009-02-10 21:25:46 +0100126}
127
Johannes Berga622ab72010-06-10 10:21:39 +0200128static void kfree_tid_tx(struct rcu_head *rcu_head)
129{
130 struct tid_ampdu_tx *tid_tx =
131 container_of(rcu_head, struct tid_ampdu_tx, rcu_head);
132
133 kfree(tid_tx);
134}
135
136static int ___ieee80211_stop_tx_ba_session(
137 struct sta_info *sta, u16 tid,
138 enum ieee80211_back_parties initiator)
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100139{
Johannes Berg849b7962009-02-10 21:25:54 +0100140 struct ieee80211_local *local = sta->local;
Johannes Berga622ab72010-06-10 10:21:39 +0200141 struct tid_ampdu_tx *tid_tx = sta->ampdu_mlme.tid_tx[tid];
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100142 int ret;
Johannes Berga622ab72010-06-10 10:21:39 +0200143
144 lockdep_assert_held(&sta->lock);
145
146 if (WARN_ON(!tid_tx))
147 return -ENOENT;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100148
Johannes Berg827d42c2009-11-22 12:28:41 +0100149#ifdef CONFIG_MAC80211_HT_DEBUG
150 printk(KERN_DEBUG "Tx BA session stop requested for %pM tid %u\n",
151 sta->sta.addr, tid);
152#endif /* CONFIG_MAC80211_HT_DEBUG */
153
Johannes Berga622ab72010-06-10 10:21:39 +0200154 set_bit(HT_AGG_STATE_STOPPING, &tid_tx->state);
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100155
Johannes Berga622ab72010-06-10 10:21:39 +0200156 /*
157 * After this packets are no longer handed right through
158 * to the driver but are put onto tid_tx->pending instead,
159 * with locking to ensure proper access.
160 */
161 clear_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state);
Vasanthakumar Thiagarajan736708b2009-06-09 14:11:46 +0530162
Johannes Berga622ab72010-06-10 10:21:39 +0200163 tid_tx->stop_initiator = initiator;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100164
Johannes Berg12375ef2009-11-25 20:30:31 +0100165 ret = drv_ampdu_action(local, sta->sdata,
Johannes Bergc951ad32009-11-16 12:00:38 +0100166 IEEE80211_AMPDU_TX_STOP,
Johannes Berg24487982009-04-23 18:52:52 +0200167 &sta->sta, tid, NULL);
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100168
169 /* HW shall not deny going back to legacy */
170 if (WARN_ON(ret)) {
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100171 /*
172 * We may have pending packets get stuck in this case...
173 * Not bothering with a workaround for now.
174 */
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100175 }
176
177 return ret;
178}
179
Johannes Bergb8695a82009-02-10 21:25:46 +0100180/*
181 * After sending add Block Ack request we activated a timer until
182 * add Block Ack response will arrive from the recipient.
183 * If this timer expires sta_addba_resp_timer_expired will be executed.
184 */
185static void sta_addba_resp_timer_expired(unsigned long data)
186{
187 /* not an elegant detour, but there is no choice as the timer passes
188 * only one argument, and both sta_info and TID are needed, so init
189 * flow in sta_info_create gives the TID as data, while the timer_to_id
190 * array gives the sta through container_of */
191 u16 tid = *(u8 *)data;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100192 struct sta_info *sta = container_of((void *)data,
Johannes Bergb8695a82009-02-10 21:25:46 +0100193 struct sta_info, timer_to_tid[tid]);
Johannes Berga622ab72010-06-10 10:21:39 +0200194 struct tid_ampdu_tx *tid_tx;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100195
Johannes Bergb8695a82009-02-10 21:25:46 +0100196 /* check if the TID waits for addBA response */
197 spin_lock_bh(&sta->lock);
Johannes Berga622ab72010-06-10 10:21:39 +0200198 tid_tx = sta->ampdu_mlme.tid_tx[tid];
199 if (!tid_tx ||
200 test_bit(HT_AGG_STATE_RESPONSE_RECEIVED, &tid_tx->state)) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100201 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100202#ifdef CONFIG_MAC80211_HT_DEBUG
203 printk(KERN_DEBUG "timer expired on tid %d but we are not "
Johannes Berg67e0f392010-04-19 11:03:13 +0200204 "(or no longer) expecting addBA response there\n",
Johannes Berg8ade0082009-11-18 17:15:06 +0100205 tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100206#endif
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100207 return;
Johannes Bergb8695a82009-02-10 21:25:46 +0100208 }
209
210#ifdef CONFIG_MAC80211_HT_DEBUG
211 printk(KERN_DEBUG "addBA response timer expired on tid %d\n", tid);
212#endif
213
Johannes Berg849b7962009-02-10 21:25:54 +0100214 ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
Johannes Bergb8695a82009-02-10 21:25:46 +0100215 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100216}
217
Johannes Berg96f5e662009-02-12 00:51:53 +0100218static inline int ieee80211_ac_from_tid(int tid)
219{
220 return ieee802_1d_to_ac[tid & 7];
221}
222
Johannes Berga6a67db2010-06-10 10:21:41 +0200223/*
224 * When multiple aggregation sessions on multiple stations
225 * are being created/destroyed simultaneously, we need to
226 * refcount the global queue stop caused by that in order
227 * to not get into a situation where one of the aggregation
228 * setup or teardown re-enables queues before the other is
229 * ready to handle that.
230 *
231 * These two functions take care of this issue by keeping
232 * a global "agg_queue_stop" refcount.
233 */
234static void __acquires(agg_queue)
235ieee80211_stop_queue_agg(struct ieee80211_local *local, int tid)
236{
237 int queue = ieee80211_ac_from_tid(tid);
238
239 if (atomic_inc_return(&local->agg_queue_stop[queue]) == 1)
240 ieee80211_stop_queue_by_reason(
241 &local->hw, queue,
242 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
243 __acquire(agg_queue);
244}
245
246static void __releases(agg_queue)
247ieee80211_wake_queue_agg(struct ieee80211_local *local, int tid)
248{
249 int queue = ieee80211_ac_from_tid(tid);
250
251 if (atomic_dec_return(&local->agg_queue_stop[queue]) == 0)
252 ieee80211_wake_queue_by_reason(
253 &local->hw, queue,
254 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
255 __release(agg_queue);
256}
257
Johannes Bergc951ad32009-11-16 12:00:38 +0100258int ieee80211_start_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100259{
Johannes Bergc951ad32009-11-16 12:00:38 +0100260 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
261 struct ieee80211_sub_if_data *sdata = sta->sdata;
262 struct ieee80211_local *local = sdata->local;
Johannes Berga622ab72010-06-10 10:21:39 +0200263 struct tid_ampdu_tx *tid_tx;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100264 int ret = 0;
Johannes Berg96f5e662009-02-12 00:51:53 +0100265 u16 start_seq_num;
Johannes Bergb8695a82009-02-10 21:25:46 +0100266
Johannes Bergb5878a22010-04-07 16:48:40 +0200267 trace_api_start_tx_ba_session(pubsta, tid);
268
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100269 if (WARN_ON(!local->ops->ampdu_action))
270 return -EINVAL;
271
Johannes Bergc951ad32009-11-16 12:00:38 +0100272 if ((tid >= STA_TID_NUM) ||
273 !(local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION))
Johannes Bergb8695a82009-02-10 21:25:46 +0100274 return -EINVAL;
275
276#ifdef CONFIG_MAC80211_HT_DEBUG
277 printk(KERN_DEBUG "Open BA session requested for %pM tid %u\n",
Johannes Bergc951ad32009-11-16 12:00:38 +0100278 pubsta->addr, tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100279#endif /* CONFIG_MAC80211_HT_DEBUG */
280
Johannes Berg8abd3f92009-02-10 21:25:47 +0100281 /*
282 * The aggregation code is not prepared to handle
283 * anything but STA/AP due to the BSSID handling.
284 * IBSS could work in the code but isn't supported
285 * by drivers or the standard.
286 */
Johannes Bergc951ad32009-11-16 12:00:38 +0100287 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
288 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
289 sdata->vif.type != NL80211_IFTYPE_AP)
290 return -EINVAL;
Johannes Berg8abd3f92009-02-10 21:25:47 +0100291
Johannes Berg618f3562010-04-06 11:18:46 +0200292 if (test_sta_flags(sta, WLAN_STA_BLOCK_BA)) {
Sujith722f0692009-03-17 08:50:06 +0530293#ifdef CONFIG_MAC80211_HT_DEBUG
Johannes Berg2a419052010-06-10 10:21:29 +0200294 printk(KERN_DEBUG "BA sessions blocked. "
Sujith722f0692009-03-17 08:50:06 +0530295 "Denying BA session request\n");
296#endif
Johannes Bergc951ad32009-11-16 12:00:38 +0100297 return -EINVAL;
Sujith722f0692009-03-17 08:50:06 +0530298 }
299
Johannes Bergb8695a82009-02-10 21:25:46 +0100300 spin_lock_bh(&sta->lock);
301
302 /* we have tried too many times, receiver does not want A-MPDU */
303 if (sta->ampdu_mlme.addba_req_num[tid] > HT_AGG_MAX_RETRIES) {
304 ret = -EBUSY;
305 goto err_unlock_sta;
306 }
307
Johannes Berga622ab72010-06-10 10:21:39 +0200308 tid_tx = sta->ampdu_mlme.tid_tx[tid];
Johannes Bergb8695a82009-02-10 21:25:46 +0100309 /* check if the TID is not in aggregation flow already */
Johannes Berga622ab72010-06-10 10:21:39 +0200310 if (tid_tx) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100311#ifdef CONFIG_MAC80211_HT_DEBUG
312 printk(KERN_DEBUG "BA request denied - session is not "
313 "idle on tid %u\n", tid);
314#endif /* CONFIG_MAC80211_HT_DEBUG */
315 ret = -EAGAIN;
316 goto err_unlock_sta;
317 }
318
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100319 /*
320 * While we're asking the driver about the aggregation,
321 * stop the AC queue so that we don't have to worry
322 * about frames that came in while we were doing that,
323 * which would require us to put them to the AC pending
324 * afterwards which just makes the code more complex.
325 */
Johannes Berga6a67db2010-06-10 10:21:41 +0200326 ieee80211_stop_queue_agg(local, tid);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100327
Johannes Bergb8695a82009-02-10 21:25:46 +0100328 /* prepare A-MPDU MLME for Tx aggregation */
Johannes Berga622ab72010-06-10 10:21:39 +0200329 tid_tx = kzalloc(sizeof(struct tid_ampdu_tx), GFP_ATOMIC);
330 if (!tid_tx) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100331#ifdef CONFIG_MAC80211_HT_DEBUG
332 if (net_ratelimit())
333 printk(KERN_ERR "allocate tx mlme to tid %d failed\n",
334 tid);
335#endif
336 ret = -ENOMEM;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100337 goto err_wake_queue;
Johannes Bergb8695a82009-02-10 21:25:46 +0100338 }
Johannes Berg96f5e662009-02-12 00:51:53 +0100339
Johannes Berga622ab72010-06-10 10:21:39 +0200340 skb_queue_head_init(&tid_tx->pending);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100341
Johannes Bergb8695a82009-02-10 21:25:46 +0100342 /* Tx timer */
Johannes Berga622ab72010-06-10 10:21:39 +0200343 tid_tx->addba_resp_timer.function = sta_addba_resp_timer_expired;
344 tid_tx->addba_resp_timer.data = (unsigned long)&sta->timer_to_tid[tid];
345 init_timer(&tid_tx->addba_resp_timer);
Johannes Bergb8695a82009-02-10 21:25:46 +0100346
Christian Lamparterf3f66b62010-01-04 00:52:56 +0100347 start_seq_num = sta->tid_seq[tid] >> 4;
Johannes Bergb8695a82009-02-10 21:25:46 +0100348
Johannes Berg12375ef2009-11-25 20:30:31 +0100349 ret = drv_ampdu_action(local, sdata, IEEE80211_AMPDU_TX_START,
Johannes Bergc951ad32009-11-16 12:00:38 +0100350 pubsta, tid, &start_seq_num);
Johannes Bergb8695a82009-02-10 21:25:46 +0100351 if (ret) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100352#ifdef CONFIG_MAC80211_HT_DEBUG
353 printk(KERN_DEBUG "BA request denied - HW unavailable for"
354 " tid %d\n", tid);
355#endif /* CONFIG_MAC80211_HT_DEBUG */
Johannes Berg96f5e662009-02-12 00:51:53 +0100356 goto err_free;
Johannes Bergb8695a82009-02-10 21:25:46 +0100357 }
358
Johannes Berga622ab72010-06-10 10:21:39 +0200359 rcu_assign_pointer(sta->ampdu_mlme.tid_tx[tid], tid_tx);
360
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100361 /* Driver vetoed or OKed, but we can take packets again now */
Johannes Berga6a67db2010-06-10 10:21:41 +0200362 ieee80211_wake_queue_agg(local, tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100363
Johannes Berga622ab72010-06-10 10:21:39 +0200364 /* activate the timer for the recipient's addBA response */
365 tid_tx->addba_resp_timer.expires = jiffies + ADDBA_RESP_INTERVAL;
366 add_timer(&tid_tx->addba_resp_timer);
367#ifdef CONFIG_MAC80211_HT_DEBUG
368 printk(KERN_DEBUG "activated addBA response timer on tid %d\n", tid);
369#endif
370
Johannes Berg51a0d382010-05-31 12:00:12 +0200371 /* prepare tid data */
Johannes Bergb8695a82009-02-10 21:25:46 +0100372 sta->ampdu_mlme.dialog_token_allocator++;
Johannes Berga622ab72010-06-10 10:21:39 +0200373 tid_tx->dialog_token = sta->ampdu_mlme.dialog_token_allocator;
374 tid_tx->ssn = start_seq_num;
375
376 sta->ampdu_mlme.addba_req_num[tid]++;
Johannes Bergb8695a82009-02-10 21:25:46 +0100377
Johannes Berg51a0d382010-05-31 12:00:12 +0200378 spin_unlock_bh(&sta->lock);
379
380 /* send AddBA request */
Johannes Bergc951ad32009-11-16 12:00:38 +0100381 ieee80211_send_addba_request(sdata, pubsta->addr, tid,
Johannes Berga622ab72010-06-10 10:21:39 +0200382 tid_tx->dialog_token, tid_tx->ssn,
Johannes Bergb8695a82009-02-10 21:25:46 +0100383 0x40, 5000);
Johannes Bergc951ad32009-11-16 12:00:38 +0100384 return 0;
Johannes Bergb8695a82009-02-10 21:25:46 +0100385
Johannes Berg96f5e662009-02-12 00:51:53 +0100386 err_free:
Johannes Berga622ab72010-06-10 10:21:39 +0200387 kfree(tid_tx);
Johannes Berge4e72fb2009-03-23 17:28:42 +0100388 err_wake_queue:
Johannes Berga6a67db2010-06-10 10:21:41 +0200389 ieee80211_wake_queue_agg(local, tid);
Johannes Berg96f5e662009-02-12 00:51:53 +0100390 err_unlock_sta:
Johannes Bergb8695a82009-02-10 21:25:46 +0100391 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100392 return ret;
393}
394EXPORT_SYMBOL(ieee80211_start_tx_ba_session);
395
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100396/*
397 * splice packets from the STA's pending to the local pending,
Johannes Berga6a67db2010-06-10 10:21:41 +0200398 * requires a call to ieee80211_agg_splice_finish later
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100399 */
Johannes Berga6a67db2010-06-10 10:21:41 +0200400static void __acquires(agg_queue)
401ieee80211_agg_splice_packets(struct ieee80211_local *local,
402 struct tid_ampdu_tx *tid_tx, u16 tid)
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100403{
Johannes Berga6a67db2010-06-10 10:21:41 +0200404 int queue = ieee80211_ac_from_tid(tid);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100405 unsigned long flags;
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100406
Johannes Berga6a67db2010-06-10 10:21:41 +0200407 ieee80211_stop_queue_agg(local, tid);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100408
Johannes Berga622ab72010-06-10 10:21:39 +0200409 if (WARN(!tid_tx, "TID %d gone but expected when splicing aggregates"
410 " from the pending queue\n", tid))
Luis R. Rodriguez416fbdf2009-08-11 13:10:33 -0700411 return;
412
Johannes Berga622ab72010-06-10 10:21:39 +0200413 if (!skb_queue_empty(&tid_tx->pending)) {
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100414 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100415 /* copy over remaining packets */
Johannes Berga622ab72010-06-10 10:21:39 +0200416 skb_queue_splice_tail_init(&tid_tx->pending,
417 &local->pending[queue]);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100418 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
419 }
420}
421
Johannes Berga6a67db2010-06-10 10:21:41 +0200422static void __releases(agg_queue)
423ieee80211_agg_splice_finish(struct ieee80211_local *local, u16 tid)
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100424{
Johannes Berga6a67db2010-06-10 10:21:41 +0200425 ieee80211_wake_queue_agg(local, tid);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100426}
427
428/* caller must hold sta->lock */
Johannes Bergb1720232009-03-23 17:28:39 +0100429static void ieee80211_agg_tx_operational(struct ieee80211_local *local,
430 struct sta_info *sta, u16 tid)
431{
Johannes Berga622ab72010-06-10 10:21:39 +0200432 lockdep_assert_held(&sta->lock);
433
Johannes Bergb1720232009-03-23 17:28:39 +0100434#ifdef CONFIG_MAC80211_HT_DEBUG
Frans Pop55f98932010-03-24 19:46:29 +0100435 printk(KERN_DEBUG "Aggregation is on for tid %d\n", tid);
Johannes Bergb1720232009-03-23 17:28:39 +0100436#endif
437
Johannes Berga622ab72010-06-10 10:21:39 +0200438 ieee80211_agg_splice_packets(local, sta->ampdu_mlme.tid_tx[tid], tid);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100439 /*
Johannes Berga622ab72010-06-10 10:21:39 +0200440 * Now mark as operational. This will be visible
441 * in the TX path, and lets it go lock-free in
442 * the common case.
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100443 */
Johannes Berga622ab72010-06-10 10:21:39 +0200444 set_bit(HT_AGG_STATE_OPERATIONAL, &sta->ampdu_mlme.tid_tx[tid]->state);
445 ieee80211_agg_splice_finish(local, tid);
Johannes Bergb1720232009-03-23 17:28:39 +0100446
Johannes Berg12375ef2009-11-25 20:30:31 +0100447 drv_ampdu_action(local, sta->sdata,
Johannes Bergc951ad32009-11-16 12:00:38 +0100448 IEEE80211_AMPDU_TX_OPERATIONAL,
Johannes Berg24487982009-04-23 18:52:52 +0200449 &sta->sta, tid, NULL);
Johannes Bergb1720232009-03-23 17:28:39 +0100450}
451
Johannes Bergc951ad32009-11-16 12:00:38 +0100452void ieee80211_start_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100453{
Johannes Bergc951ad32009-11-16 12:00:38 +0100454 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
455 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100456 struct sta_info *sta;
Johannes Berga622ab72010-06-10 10:21:39 +0200457 struct tid_ampdu_tx *tid_tx;
Johannes Bergb8695a82009-02-10 21:25:46 +0100458
Johannes Bergb5878a22010-04-07 16:48:40 +0200459 trace_api_start_tx_ba_cb(sdata, ra, tid);
460
Johannes Bergb8695a82009-02-10 21:25:46 +0100461 if (tid >= STA_TID_NUM) {
462#ifdef CONFIG_MAC80211_HT_DEBUG
463 printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
464 tid, STA_TID_NUM);
465#endif
466 return;
467 }
468
469 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100470 sta = sta_info_get(sdata, ra);
Johannes Bergb8695a82009-02-10 21:25:46 +0100471 if (!sta) {
472 rcu_read_unlock();
473#ifdef CONFIG_MAC80211_HT_DEBUG
474 printk(KERN_DEBUG "Could not find station: %pM\n", ra);
475#endif
476 return;
477 }
478
Johannes Bergb8695a82009-02-10 21:25:46 +0100479 spin_lock_bh(&sta->lock);
Johannes Berga622ab72010-06-10 10:21:39 +0200480 tid_tx = sta->ampdu_mlme.tid_tx[tid];
Johannes Bergb8695a82009-02-10 21:25:46 +0100481
Johannes Berga622ab72010-06-10 10:21:39 +0200482 if (WARN_ON(!tid_tx)) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100483#ifdef CONFIG_MAC80211_HT_DEBUG
Johannes Berga622ab72010-06-10 10:21:39 +0200484 printk(KERN_DEBUG "addBA was not requested!\n");
Johannes Bergb8695a82009-02-10 21:25:46 +0100485#endif
486 spin_unlock_bh(&sta->lock);
487 rcu_read_unlock();
488 return;
489 }
490
Johannes Berga622ab72010-06-10 10:21:39 +0200491 if (WARN_ON(test_and_set_bit(HT_AGG_STATE_DRV_READY, &tid_tx->state)))
Johannes Berg96f5e662009-02-12 00:51:53 +0100492 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100493
Johannes Berga622ab72010-06-10 10:21:39 +0200494 if (test_bit(HT_AGG_STATE_RESPONSE_RECEIVED, &tid_tx->state))
Johannes Bergb1720232009-03-23 17:28:39 +0100495 ieee80211_agg_tx_operational(local, sta, tid);
Johannes Berg96f5e662009-02-12 00:51:53 +0100496
497 out:
Johannes Bergb8695a82009-02-10 21:25:46 +0100498 spin_unlock_bh(&sta->lock);
499 rcu_read_unlock();
500}
Johannes Bergb8695a82009-02-10 21:25:46 +0100501
Johannes Bergc951ad32009-11-16 12:00:38 +0100502void ieee80211_start_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
Johannes Berg86ab6c52009-02-10 21:25:49 +0100503 const u8 *ra, u16 tid)
504{
Johannes Bergc951ad32009-11-16 12:00:38 +0100505 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
506 struct ieee80211_local *local = sdata->local;
Johannes Berg86ab6c52009-02-10 21:25:49 +0100507 struct ieee80211_ra_tid *ra_tid;
508 struct sk_buff *skb = dev_alloc_skb(0);
509
510 if (unlikely(!skb)) {
511#ifdef CONFIG_MAC80211_HT_DEBUG
512 if (net_ratelimit())
513 printk(KERN_WARNING "%s: Not enough memory, "
Johannes Berg47846c92009-11-25 17:46:19 +0100514 "dropping start BA session", sdata->name);
Johannes Berg86ab6c52009-02-10 21:25:49 +0100515#endif
516 return;
517 }
518 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
519 memcpy(&ra_tid->ra, ra, ETH_ALEN);
520 ra_tid->tid = tid;
521
Johannes Bergc1475ca2010-06-10 10:21:37 +0200522 skb->pkt_type = IEEE80211_SDATA_QUEUE_AGG_START;
523 skb_queue_tail(&sdata->skb_queue, skb);
524 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Berg86ab6c52009-02-10 21:25:49 +0100525}
526EXPORT_SYMBOL(ieee80211_start_tx_ba_cb_irqsafe);
527
Johannes Berg849b7962009-02-10 21:25:54 +0100528int __ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
529 enum ieee80211_back_parties initiator)
530{
Johannes Berga622ab72010-06-10 10:21:39 +0200531 struct tid_ampdu_tx *tid_tx;
Johannes Berg849b7962009-02-10 21:25:54 +0100532 int ret;
533
Johannes Berg849b7962009-02-10 21:25:54 +0100534 spin_lock_bh(&sta->lock);
Johannes Berga622ab72010-06-10 10:21:39 +0200535 tid_tx = sta->ampdu_mlme.tid_tx[tid];
Johannes Berg849b7962009-02-10 21:25:54 +0100536
Johannes Berga622ab72010-06-10 10:21:39 +0200537 /* check if the TID is in aggregation */
538 if (!tid_tx || !test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
Johannes Berg849b7962009-02-10 21:25:54 +0100539 ret = -ENOENT;
540 goto unlock;
541 }
542
Johannes Berg849b7962009-02-10 21:25:54 +0100543 ret = ___ieee80211_stop_tx_ba_session(sta, tid, initiator);
544
545 unlock:
546 spin_unlock_bh(&sta->lock);
547 return ret;
548}
Johannes Bergb8695a82009-02-10 21:25:46 +0100549
Johannes Berg6a8579d2010-05-27 14:41:07 +0200550int ieee80211_stop_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100551{
Johannes Bergc951ad32009-11-16 12:00:38 +0100552 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
553 struct ieee80211_sub_if_data *sdata = sta->sdata;
554 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100555
Johannes Berg6a8579d2010-05-27 14:41:07 +0200556 trace_api_stop_tx_ba_session(pubsta, tid);
Johannes Bergb5878a22010-04-07 16:48:40 +0200557
Johannes Berg42531192009-11-20 09:15:51 +0100558 if (!local->ops->ampdu_action)
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100559 return -EINVAL;
560
Johannes Bergb8695a82009-02-10 21:25:46 +0100561 if (tid >= STA_TID_NUM)
562 return -EINVAL;
563
Johannes Berg6a8579d2010-05-27 14:41:07 +0200564 return __ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
Johannes Bergb8695a82009-02-10 21:25:46 +0100565}
566EXPORT_SYMBOL(ieee80211_stop_tx_ba_session);
567
Johannes Bergc951ad32009-11-16 12:00:38 +0100568void ieee80211_stop_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u8 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100569{
Johannes Bergc951ad32009-11-16 12:00:38 +0100570 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
571 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100572 struct sta_info *sta;
Johannes Berga622ab72010-06-10 10:21:39 +0200573 struct tid_ampdu_tx *tid_tx;
Johannes Bergb8695a82009-02-10 21:25:46 +0100574
Johannes Bergb5878a22010-04-07 16:48:40 +0200575 trace_api_stop_tx_ba_cb(sdata, ra, tid);
576
Johannes Bergb8695a82009-02-10 21:25:46 +0100577 if (tid >= STA_TID_NUM) {
578#ifdef CONFIG_MAC80211_HT_DEBUG
579 printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
580 tid, STA_TID_NUM);
581#endif
582 return;
583 }
584
585#ifdef CONFIG_MAC80211_HT_DEBUG
586 printk(KERN_DEBUG "Stopping Tx BA session for %pM tid %d\n",
587 ra, tid);
588#endif /* CONFIG_MAC80211_HT_DEBUG */
589
590 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100591 sta = sta_info_get(sdata, ra);
Johannes Bergb8695a82009-02-10 21:25:46 +0100592 if (!sta) {
593#ifdef CONFIG_MAC80211_HT_DEBUG
594 printk(KERN_DEBUG "Could not find station: %pM\n", ra);
595#endif
596 rcu_read_unlock();
597 return;
598 }
Johannes Bergb8695a82009-02-10 21:25:46 +0100599
Johannes Berga622ab72010-06-10 10:21:39 +0200600 spin_lock_bh(&sta->lock);
601 tid_tx = sta->ampdu_mlme.tid_tx[tid];
602
603 if (!tid_tx || !test_bit(HT_AGG_STATE_STOPPING, &tid_tx->state)) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100604#ifdef CONFIG_MAC80211_HT_DEBUG
605 printk(KERN_DEBUG "unexpected callback to A-MPDU stop\n");
606#endif
Johannes Berga622ab72010-06-10 10:21:39 +0200607 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100608 rcu_read_unlock();
609 return;
610 }
611
Johannes Berga622ab72010-06-10 10:21:39 +0200612 if (tid_tx->stop_initiator == WLAN_BACK_INITIATOR)
Johannes Bergb8695a82009-02-10 21:25:46 +0100613 ieee80211_send_delba(sta->sdata, ra, tid,
614 WLAN_BACK_INITIATOR, WLAN_REASON_QSTA_NOT_USE);
615
Johannes Berga622ab72010-06-10 10:21:39 +0200616 /*
617 * When we get here, the TX path will not be lockless any more wrt.
618 * aggregation, since the OPERATIONAL bit has long been cleared.
619 * Thus it will block on getting the lock, if it occurs. So if we
620 * stop the queue now, we will not get any more packets, and any
621 * that might be being processed will wait for us here, thereby
622 * guaranteeing that no packets go to the tid_tx pending queue any
623 * more.
624 */
625
Johannes Berga622ab72010-06-10 10:21:39 +0200626 ieee80211_agg_splice_packets(local, tid_tx, tid);
Johannes Berg96f5e662009-02-12 00:51:53 +0100627
Johannes Berga622ab72010-06-10 10:21:39 +0200628 /* future packets must not find the tid_tx struct any more */
629 rcu_assign_pointer(sta->ampdu_mlme.tid_tx[tid], NULL);
Johannes Berg96f5e662009-02-12 00:51:53 +0100630
Johannes Berga622ab72010-06-10 10:21:39 +0200631 ieee80211_agg_splice_finish(local, tid);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100632
Johannes Berga622ab72010-06-10 10:21:39 +0200633 call_rcu(&tid_tx->rcu_head, kfree_tid_tx);
Johannes Bergb8695a82009-02-10 21:25:46 +0100634
Johannes Berga622ab72010-06-10 10:21:39 +0200635 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100636 rcu_read_unlock();
637}
Johannes Bergb8695a82009-02-10 21:25:46 +0100638
Johannes Bergc951ad32009-11-16 12:00:38 +0100639void ieee80211_stop_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
Johannes Bergb8695a82009-02-10 21:25:46 +0100640 const u8 *ra, u16 tid)
641{
Johannes Bergc951ad32009-11-16 12:00:38 +0100642 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
643 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100644 struct ieee80211_ra_tid *ra_tid;
645 struct sk_buff *skb = dev_alloc_skb(0);
646
647 if (unlikely(!skb)) {
648#ifdef CONFIG_MAC80211_HT_DEBUG
649 if (net_ratelimit())
650 printk(KERN_WARNING "%s: Not enough memory, "
Johannes Berg47846c92009-11-25 17:46:19 +0100651 "dropping stop BA session", sdata->name);
Johannes Bergb8695a82009-02-10 21:25:46 +0100652#endif
653 return;
654 }
655 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
656 memcpy(&ra_tid->ra, ra, ETH_ALEN);
657 ra_tid->tid = tid;
658
Johannes Bergc1475ca2010-06-10 10:21:37 +0200659 skb->pkt_type = IEEE80211_SDATA_QUEUE_AGG_STOP;
660 skb_queue_tail(&sdata->skb_queue, skb);
661 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Bergb8695a82009-02-10 21:25:46 +0100662}
663EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb_irqsafe);
664
Johannes Berg86ab6c52009-02-10 21:25:49 +0100665
Johannes Bergb8695a82009-02-10 21:25:46 +0100666void ieee80211_process_addba_resp(struct ieee80211_local *local,
667 struct sta_info *sta,
668 struct ieee80211_mgmt *mgmt,
669 size_t len)
670{
Johannes Berga622ab72010-06-10 10:21:39 +0200671 struct tid_ampdu_tx *tid_tx;
Johannes Bergb1720232009-03-23 17:28:39 +0100672 u16 capab, tid;
Johannes Bergb8695a82009-02-10 21:25:46 +0100673
674 capab = le16_to_cpu(mgmt->u.action.u.addba_resp.capab);
675 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
676
Johannes Bergb8695a82009-02-10 21:25:46 +0100677 spin_lock_bh(&sta->lock);
678
Johannes Berga622ab72010-06-10 10:21:39 +0200679 tid_tx = sta->ampdu_mlme.tid_tx[tid];
680
681 if (!tid_tx)
Johannes Berg8ade0082009-11-18 17:15:06 +0100682 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100683
Johannes Berga622ab72010-06-10 10:21:39 +0200684 if (mgmt->u.action.u.addba_resp.dialog_token != tid_tx->dialog_token) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100685#ifdef CONFIG_MAC80211_HT_DEBUG
686 printk(KERN_DEBUG "wrong addBA response token, tid %d\n", tid);
Johannes Berga622ab72010-06-10 10:21:39 +0200687#endif
Johannes Berg8ade0082009-11-18 17:15:06 +0100688 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100689 }
690
Johannes Berga622ab72010-06-10 10:21:39 +0200691 del_timer(&tid_tx->addba_resp_timer);
Johannes Berg8ade0082009-11-18 17:15:06 +0100692
Johannes Bergb8695a82009-02-10 21:25:46 +0100693#ifdef CONFIG_MAC80211_HT_DEBUG
Frans Pop55f98932010-03-24 19:46:29 +0100694 printk(KERN_DEBUG "switched off addBA timer for tid %d\n", tid);
Johannes Berga622ab72010-06-10 10:21:39 +0200695#endif
Johannes Berg2171abc2009-10-29 08:34:00 +0100696
Johannes Bergb8695a82009-02-10 21:25:46 +0100697 if (le16_to_cpu(mgmt->u.action.u.addba_resp.status)
698 == WLAN_STATUS_SUCCESS) {
Johannes Berga622ab72010-06-10 10:21:39 +0200699 if (test_and_set_bit(HT_AGG_STATE_RESPONSE_RECEIVED,
700 &tid_tx->state)) {
701 /* ignore duplicate response */
702 goto out;
703 }
Johannes Bergb8695a82009-02-10 21:25:46 +0100704
Johannes Berga622ab72010-06-10 10:21:39 +0200705 if (test_bit(HT_AGG_STATE_DRV_READY, &tid_tx->state))
Johannes Bergb1720232009-03-23 17:28:39 +0100706 ieee80211_agg_tx_operational(local, sta, tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100707
Johannes Bergb1720232009-03-23 17:28:39 +0100708 sta->ampdu_mlme.addba_req_num[tid] = 0;
Johannes Bergb8695a82009-02-10 21:25:46 +0100709 } else {
Johannes Berg849b7962009-02-10 21:25:54 +0100710 ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
Johannes Bergb8695a82009-02-10 21:25:46 +0100711 }
Johannes Berg2171abc2009-10-29 08:34:00 +0100712
Johannes Berg2171abc2009-10-29 08:34:00 +0100713 out:
Johannes Berg849b7962009-02-10 21:25:54 +0100714 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100715}