]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/mac80211/agg-tx.c
pktgen: Fix netdevice unregister
[mirror_ubuntu-artful-kernel.git] / net / mac80211 / agg-tx.c
CommitLineData
b8695a8f
JB
1/*
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>
17#include <net/mac80211.h>
18#include "ieee80211_i.h"
24487981 19#include "driver-ops.h"
b8695a8f
JB
20#include "wme.h"
21
86ab6c5a
JB
22/**
23 * DOC: TX aggregation
24 *
25 * Aggregation on the TX side requires setting the hardware flag
26 * %IEEE80211_HW_AMPDU_AGGREGATION as well as, if present, the @ampdu_queues
27 * hardware parameter to the number of hardware AMPDU queues. If there are no
28 * hardware queues then the driver will (currently) have to do all frame
29 * buffering.
30 *
31 * When TX aggregation is started by some subsystem (usually the rate control
32 * algorithm would be appropriate) by calling the
33 * ieee80211_start_tx_ba_session() function, the driver will be notified via
34 * its @ampdu_action function, with the %IEEE80211_AMPDU_TX_START action.
35 *
36 * In response to that, the driver is later required to call the
37 * ieee80211_start_tx_ba_cb() (or ieee80211_start_tx_ba_cb_irqsafe())
38 * function, which will start the aggregation session.
39 *
40 * Similarly, when the aggregation session is stopped by
41 * ieee80211_stop_tx_ba_session(), the driver's @ampdu_action function will
42 * be called with the action %IEEE80211_AMPDU_TX_STOP. In this case, the
43 * call must not fail, and the driver must later call ieee80211_stop_tx_ba_cb()
44 * (or ieee80211_stop_tx_ba_cb_irqsafe()).
45 */
46
b8695a8f
JB
47static void ieee80211_send_addba_request(struct ieee80211_sub_if_data *sdata,
48 const u8 *da, u16 tid,
49 u8 dialog_token, u16 start_seq_num,
50 u16 agg_size, u16 timeout)
51{
52 struct ieee80211_local *local = sdata->local;
b8695a8f
JB
53 struct sk_buff *skb;
54 struct ieee80211_mgmt *mgmt;
55 u16 capab;
56
57 skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom);
58
59 if (!skb) {
60 printk(KERN_ERR "%s: failed to allocate buffer "
61 "for addba request frame\n", sdata->dev->name);
62 return;
63 }
64 skb_reserve(skb, local->hw.extra_tx_headroom);
65 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
66 memset(mgmt, 0, 24);
67 memcpy(mgmt->da, da, ETH_ALEN);
68 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
8abd3f9b
JB
69 if (sdata->vif.type == NL80211_IFTYPE_AP ||
70 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
b8695a8f 71 memcpy(mgmt->bssid, sdata->dev->dev_addr, ETH_ALEN);
46900298
JB
72 else if (sdata->vif.type == NL80211_IFTYPE_STATION)
73 memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
b8695a8f
JB
74
75 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
76 IEEE80211_STYPE_ACTION);
77
78 skb_put(skb, 1 + sizeof(mgmt->u.action.u.addba_req));
79
80 mgmt->u.action.category = WLAN_CATEGORY_BACK;
81 mgmt->u.action.u.addba_req.action_code = WLAN_ACTION_ADDBA_REQ;
82
83 mgmt->u.action.u.addba_req.dialog_token = dialog_token;
84 capab = (u16)(1 << 1); /* bit 1 aggregation policy */
85 capab |= (u16)(tid << 2); /* bit 5:2 TID number */
86 capab |= (u16)(agg_size << 6); /* bit 15:6 max size of aggergation */
87
88 mgmt->u.action.u.addba_req.capab = cpu_to_le16(capab);
89
90 mgmt->u.action.u.addba_req.timeout = cpu_to_le16(timeout);
91 mgmt->u.action.u.addba_req.start_seq_num =
92 cpu_to_le16(start_seq_num << 4);
93
94 ieee80211_tx_skb(sdata, skb, 1);
95}
96
97void ieee80211_send_bar(struct ieee80211_sub_if_data *sdata, u8 *ra, u16 tid, u16 ssn)
98{
99 struct ieee80211_local *local = sdata->local;
100 struct sk_buff *skb;
101 struct ieee80211_bar *bar;
102 u16 bar_control = 0;
103
104 skb = dev_alloc_skb(sizeof(*bar) + local->hw.extra_tx_headroom);
105 if (!skb) {
106 printk(KERN_ERR "%s: failed to allocate buffer for "
107 "bar frame\n", sdata->dev->name);
108 return;
109 }
110 skb_reserve(skb, local->hw.extra_tx_headroom);
111 bar = (struct ieee80211_bar *)skb_put(skb, sizeof(*bar));
112 memset(bar, 0, sizeof(*bar));
113 bar->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
114 IEEE80211_STYPE_BACK_REQ);
115 memcpy(bar->ra, ra, ETH_ALEN);
116 memcpy(bar->ta, sdata->dev->dev_addr, ETH_ALEN);
117 bar_control |= (u16)IEEE80211_BAR_CTRL_ACK_POLICY_NORMAL;
118 bar_control |= (u16)IEEE80211_BAR_CTRL_CBMTID_COMPRESSED_BA;
119 bar_control |= (u16)(tid << 12);
120 bar->control = cpu_to_le16(bar_control);
121 bar->start_seq_num = cpu_to_le16(ssn);
122
123 ieee80211_tx_skb(sdata, skb, 0);
124}
125
849b7967
JB
126static int ___ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
127 enum ieee80211_back_parties initiator)
23e6a7ea 128{
849b7967 129 struct ieee80211_local *local = sta->local;
23e6a7ea
JB
130 int ret;
131 u8 *state;
132
133 state = &sta->ampdu_mlme.tid_state_tx[tid];
134
736708bd
VT
135 if (*state == HT_AGG_STATE_OPERATIONAL)
136 sta->ampdu_mlme.addba_req_num[tid] = 0;
137
23e6a7ea
JB
138 *state = HT_AGG_STATE_REQ_STOP_BA_MSK |
139 (initiator << HT_AGG_STATE_INITIATOR_SHIFT);
140
24487981
JB
141 ret = drv_ampdu_action(local, IEEE80211_AMPDU_TX_STOP,
142 &sta->sta, tid, NULL);
23e6a7ea
JB
143
144 /* HW shall not deny going back to legacy */
145 if (WARN_ON(ret)) {
146 *state = HT_AGG_STATE_OPERATIONAL;
cd8ffc80
JB
147 /*
148 * We may have pending packets get stuck in this case...
149 * Not bothering with a workaround for now.
150 */
23e6a7ea
JB
151 }
152
153 return ret;
154}
155
b8695a8f
JB
156/*
157 * After sending add Block Ack request we activated a timer until
158 * add Block Ack response will arrive from the recipient.
159 * If this timer expires sta_addba_resp_timer_expired will be executed.
160 */
161static void sta_addba_resp_timer_expired(unsigned long data)
162{
163 /* not an elegant detour, but there is no choice as the timer passes
164 * only one argument, and both sta_info and TID are needed, so init
165 * flow in sta_info_create gives the TID as data, while the timer_to_id
166 * array gives the sta through container_of */
167 u16 tid = *(u8 *)data;
23e6a7ea 168 struct sta_info *sta = container_of((void *)data,
b8695a8f 169 struct sta_info, timer_to_tid[tid]);
b8695a8f
JB
170 u8 *state;
171
b8695a8f 172 state = &sta->ampdu_mlme.tid_state_tx[tid];
23e6a7ea 173
b8695a8f
JB
174 /* check if the TID waits for addBA response */
175 spin_lock_bh(&sta->lock);
8ade0082
JB
176 if ((*state & (HT_ADDBA_REQUESTED_MSK | HT_ADDBA_RECEIVED_MSK)) !=
177 HT_ADDBA_REQUESTED_MSK) {
b8695a8f
JB
178 spin_unlock_bh(&sta->lock);
179 *state = HT_AGG_STATE_IDLE;
180#ifdef CONFIG_MAC80211_HT_DEBUG
181 printk(KERN_DEBUG "timer expired on tid %d but we are not "
8ade0082
JB
182 "(or no longer) expecting addBA response there",
183 tid);
b8695a8f 184#endif
23e6a7ea 185 return;
b8695a8f
JB
186 }
187
188#ifdef CONFIG_MAC80211_HT_DEBUG
189 printk(KERN_DEBUG "addBA response timer expired on tid %d\n", tid);
190#endif
191
849b7967 192 ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
b8695a8f 193 spin_unlock_bh(&sta->lock);
b8695a8f
JB
194}
195
96f5e66e
JB
196static inline int ieee80211_ac_from_tid(int tid)
197{
198 return ieee802_1d_to_ac[tid & 7];
199}
200
b8695a8f
JB
201int ieee80211_start_tx_ba_session(struct ieee80211_hw *hw, u8 *ra, u16 tid)
202{
203 struct ieee80211_local *local = hw_to_local(hw);
204 struct sta_info *sta;
205 struct ieee80211_sub_if_data *sdata;
b8695a8f 206 u8 *state;
e4e72fb4 207 int ret = 0;
96f5e66e 208 u16 start_seq_num;
b8695a8f 209
23e6a7ea
JB
210 if (WARN_ON(!local->ops->ampdu_action))
211 return -EINVAL;
212
b8695a8f
JB
213 if ((tid >= STA_TID_NUM) || !(hw->flags & IEEE80211_HW_AMPDU_AGGREGATION))
214 return -EINVAL;
215
216#ifdef CONFIG_MAC80211_HT_DEBUG
217 printk(KERN_DEBUG "Open BA session requested for %pM tid %u\n",
218 ra, tid);
219#endif /* CONFIG_MAC80211_HT_DEBUG */
220
221 rcu_read_lock();
222
223 sta = sta_info_get(local, ra);
224 if (!sta) {
225#ifdef CONFIG_MAC80211_HT_DEBUG
226 printk(KERN_DEBUG "Could not find the station\n");
227#endif
228 ret = -ENOENT;
96f5e66e 229 goto unlock;
b8695a8f
JB
230 }
231
8abd3f9b
JB
232 /*
233 * The aggregation code is not prepared to handle
234 * anything but STA/AP due to the BSSID handling.
235 * IBSS could work in the code but isn't supported
236 * by drivers or the standard.
237 */
238 if (sta->sdata->vif.type != NL80211_IFTYPE_STATION &&
239 sta->sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
240 sta->sdata->vif.type != NL80211_IFTYPE_AP) {
241 ret = -EINVAL;
96f5e66e 242 goto unlock;
8abd3f9b
JB
243 }
244
722f069a
S
245 if (test_sta_flags(sta, WLAN_STA_SUSPEND)) {
246#ifdef CONFIG_MAC80211_HT_DEBUG
247 printk(KERN_DEBUG "Suspend in progress. "
248 "Denying BA session request\n");
249#endif
250 ret = -EINVAL;
251 goto unlock;
252 }
253
b8695a8f 254 spin_lock_bh(&sta->lock);
cd8ffc80 255 spin_lock(&local->ampdu_lock);
b8695a8f 256
96f5e66e
JB
257 sdata = sta->sdata;
258
b8695a8f
JB
259 /* we have tried too many times, receiver does not want A-MPDU */
260 if (sta->ampdu_mlme.addba_req_num[tid] > HT_AGG_MAX_RETRIES) {
261 ret = -EBUSY;
262 goto err_unlock_sta;
263 }
264
265 state = &sta->ampdu_mlme.tid_state_tx[tid];
266 /* check if the TID is not in aggregation flow already */
267 if (*state != HT_AGG_STATE_IDLE) {
268#ifdef CONFIG_MAC80211_HT_DEBUG
269 printk(KERN_DEBUG "BA request denied - session is not "
270 "idle on tid %u\n", tid);
271#endif /* CONFIG_MAC80211_HT_DEBUG */
272 ret = -EAGAIN;
273 goto err_unlock_sta;
274 }
275
cd8ffc80
JB
276 /*
277 * While we're asking the driver about the aggregation,
278 * stop the AC queue so that we don't have to worry
279 * about frames that came in while we were doing that,
280 * which would require us to put them to the AC pending
281 * afterwards which just makes the code more complex.
282 */
283 ieee80211_stop_queue_by_reason(
284 &local->hw, ieee80211_ac_from_tid(tid),
285 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
286
b8695a8f
JB
287 /* prepare A-MPDU MLME for Tx aggregation */
288 sta->ampdu_mlme.tid_tx[tid] =
289 kmalloc(sizeof(struct tid_ampdu_tx), GFP_ATOMIC);
290 if (!sta->ampdu_mlme.tid_tx[tid]) {
291#ifdef CONFIG_MAC80211_HT_DEBUG
292 if (net_ratelimit())
293 printk(KERN_ERR "allocate tx mlme to tid %d failed\n",
294 tid);
295#endif
296 ret = -ENOMEM;
e4e72fb4 297 goto err_wake_queue;
b8695a8f 298 }
96f5e66e 299
cd8ffc80
JB
300 skb_queue_head_init(&sta->ampdu_mlme.tid_tx[tid]->pending);
301
b8695a8f
JB
302 /* Tx timer */
303 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.function =
304 sta_addba_resp_timer_expired;
305 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.data =
306 (unsigned long)&sta->timer_to_tid[tid];
307 init_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
308
b8695a8f
JB
309 /* Ok, the Addba frame hasn't been sent yet, but if the driver calls the
310 * call back right away, it must see that the flow has begun */
311 *state |= HT_ADDBA_REQUESTED_MSK;
312
b8695a8f
JB
313 start_seq_num = sta->tid_seq[tid];
314
24487981
JB
315 ret = drv_ampdu_action(local, IEEE80211_AMPDU_TX_START,
316 &sta->sta, tid, &start_seq_num);
b8695a8f
JB
317
318 if (ret) {
b8695a8f
JB
319#ifdef CONFIG_MAC80211_HT_DEBUG
320 printk(KERN_DEBUG "BA request denied - HW unavailable for"
321 " tid %d\n", tid);
322#endif /* CONFIG_MAC80211_HT_DEBUG */
323 *state = HT_AGG_STATE_IDLE;
96f5e66e 324 goto err_free;
b8695a8f
JB
325 }
326
cd8ffc80
JB
327 /* Driver vetoed or OKed, but we can take packets again now */
328 ieee80211_wake_queue_by_reason(
329 &local->hw, ieee80211_ac_from_tid(tid),
330 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
331
332 spin_unlock(&local->ampdu_lock);
b8695a8f
JB
333 spin_unlock_bh(&sta->lock);
334
335 /* send an addBA request */
336 sta->ampdu_mlme.dialog_token_allocator++;
337 sta->ampdu_mlme.tid_tx[tid]->dialog_token =
338 sta->ampdu_mlme.dialog_token_allocator;
339 sta->ampdu_mlme.tid_tx[tid]->ssn = start_seq_num;
340
b8695a8f
JB
341 ieee80211_send_addba_request(sta->sdata, ra, tid,
342 sta->ampdu_mlme.tid_tx[tid]->dialog_token,
343 sta->ampdu_mlme.tid_tx[tid]->ssn,
344 0x40, 5000);
736708bd 345 sta->ampdu_mlme.addba_req_num[tid]++;
b8695a8f
JB
346 /* activate the timer for the recipient's addBA response */
347 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.expires =
348 jiffies + ADDBA_RESP_INTERVAL;
349 add_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
350#ifdef CONFIG_MAC80211_HT_DEBUG
351 printk(KERN_DEBUG "activated addBA response timer on tid %d\n", tid);
352#endif
96f5e66e 353 goto unlock;
b8695a8f 354
96f5e66e 355 err_free:
b8695a8f
JB
356 kfree(sta->ampdu_mlme.tid_tx[tid]);
357 sta->ampdu_mlme.tid_tx[tid] = NULL;
e4e72fb4 358 err_wake_queue:
cd8ffc80
JB
359 ieee80211_wake_queue_by_reason(
360 &local->hw, ieee80211_ac_from_tid(tid),
361 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
96f5e66e 362 err_unlock_sta:
cd8ffc80 363 spin_unlock(&local->ampdu_lock);
b8695a8f 364 spin_unlock_bh(&sta->lock);
96f5e66e 365 unlock:
b8695a8f
JB
366 rcu_read_unlock();
367 return ret;
368}
369EXPORT_SYMBOL(ieee80211_start_tx_ba_session);
370
cd8ffc80
JB
371/*
372 * splice packets from the STA's pending to the local pending,
373 * requires a call to ieee80211_agg_splice_finish and holding
374 * local->ampdu_lock across both calls.
375 */
376static void ieee80211_agg_splice_packets(struct ieee80211_local *local,
377 struct sta_info *sta, u16 tid)
378{
379 unsigned long flags;
380 u16 queue = ieee80211_ac_from_tid(tid);
381
382 ieee80211_stop_queue_by_reason(
383 &local->hw, queue,
384 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
385
416fbdff
LR
386 if (!(sta->ampdu_mlme.tid_state_tx[tid] & HT_ADDBA_REQUESTED_MSK))
387 return;
388
389 if (WARN(!sta->ampdu_mlme.tid_tx[tid],
390 "TID %d gone but expected when splicing aggregates from"
391 "the pending queue\n", tid))
392 return;
393
cd8ffc80
JB
394 if (!skb_queue_empty(&sta->ampdu_mlme.tid_tx[tid]->pending)) {
395 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
cd8ffc80
JB
396 /* copy over remaining packets */
397 skb_queue_splice_tail_init(
398 &sta->ampdu_mlme.tid_tx[tid]->pending,
399 &local->pending[queue]);
400 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
401 }
402}
403
404static void ieee80211_agg_splice_finish(struct ieee80211_local *local,
405 struct sta_info *sta, u16 tid)
406{
407 u16 queue = ieee80211_ac_from_tid(tid);
408
409 ieee80211_wake_queue_by_reason(
410 &local->hw, queue,
411 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
412}
413
414/* caller must hold sta->lock */
b1720231
JB
415static void ieee80211_agg_tx_operational(struct ieee80211_local *local,
416 struct sta_info *sta, u16 tid)
417{
418#ifdef CONFIG_MAC80211_HT_DEBUG
419 printk(KERN_DEBUG "Aggregation is on for tid %d \n", tid);
420#endif
421
cd8ffc80
JB
422 spin_lock(&local->ampdu_lock);
423 ieee80211_agg_splice_packets(local, sta, tid);
424 /*
425 * NB: we rely on sta->lock being taken in the TX
426 * processing here when adding to the pending queue,
427 * otherwise we could only change the state of the
428 * session to OPERATIONAL _here_.
429 */
430 ieee80211_agg_splice_finish(local, sta, tid);
431 spin_unlock(&local->ampdu_lock);
b1720231 432
24487981
JB
433 drv_ampdu_action(local, IEEE80211_AMPDU_TX_OPERATIONAL,
434 &sta->sta, tid, NULL);
b1720231
JB
435}
436
b8695a8f
JB
437void ieee80211_start_tx_ba_cb(struct ieee80211_hw *hw, u8 *ra, u16 tid)
438{
439 struct ieee80211_local *local = hw_to_local(hw);
440 struct sta_info *sta;
441 u8 *state;
442
443 if (tid >= STA_TID_NUM) {
444#ifdef CONFIG_MAC80211_HT_DEBUG
445 printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
446 tid, STA_TID_NUM);
447#endif
448 return;
449 }
450
451 rcu_read_lock();
452 sta = sta_info_get(local, ra);
453 if (!sta) {
454 rcu_read_unlock();
455#ifdef CONFIG_MAC80211_HT_DEBUG
456 printk(KERN_DEBUG "Could not find station: %pM\n", ra);
457#endif
458 return;
459 }
460
461 state = &sta->ampdu_mlme.tid_state_tx[tid];
462 spin_lock_bh(&sta->lock);
463
96f5e66e 464 if (WARN_ON(!(*state & HT_ADDBA_REQUESTED_MSK))) {
b8695a8f
JB
465#ifdef CONFIG_MAC80211_HT_DEBUG
466 printk(KERN_DEBUG "addBA was not requested yet, state is %d\n",
467 *state);
468#endif
469 spin_unlock_bh(&sta->lock);
470 rcu_read_unlock();
471 return;
472 }
473
96f5e66e
JB
474 if (WARN_ON(*state & HT_ADDBA_DRV_READY_MSK))
475 goto out;
b8695a8f
JB
476
477 *state |= HT_ADDBA_DRV_READY_MSK;
478
b1720231
JB
479 if (*state == HT_AGG_STATE_OPERATIONAL)
480 ieee80211_agg_tx_operational(local, sta, tid);
96f5e66e
JB
481
482 out:
b8695a8f
JB
483 spin_unlock_bh(&sta->lock);
484 rcu_read_unlock();
485}
486EXPORT_SYMBOL(ieee80211_start_tx_ba_cb);
487
86ab6c5a
JB
488void ieee80211_start_tx_ba_cb_irqsafe(struct ieee80211_hw *hw,
489 const u8 *ra, u16 tid)
490{
491 struct ieee80211_local *local = hw_to_local(hw);
492 struct ieee80211_ra_tid *ra_tid;
493 struct sk_buff *skb = dev_alloc_skb(0);
494
495 if (unlikely(!skb)) {
496#ifdef CONFIG_MAC80211_HT_DEBUG
497 if (net_ratelimit())
498 printk(KERN_WARNING "%s: Not enough memory, "
499 "dropping start BA session", skb->dev->name);
500#endif
501 return;
502 }
503 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
504 memcpy(&ra_tid->ra, ra, ETH_ALEN);
505 ra_tid->tid = tid;
506
507 skb->pkt_type = IEEE80211_ADDBA_MSG;
508 skb_queue_tail(&local->skb_queue, skb);
509 tasklet_schedule(&local->tasklet);
510}
511EXPORT_SYMBOL(ieee80211_start_tx_ba_cb_irqsafe);
512
849b7967
JB
513int __ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
514 enum ieee80211_back_parties initiator)
515{
516 u8 *state;
517 int ret;
518
519 /* check if the TID is in aggregation */
520 state = &sta->ampdu_mlme.tid_state_tx[tid];
521 spin_lock_bh(&sta->lock);
522
523 if (*state != HT_AGG_STATE_OPERATIONAL) {
524 ret = -ENOENT;
525 goto unlock;
526 }
527
528#ifdef CONFIG_MAC80211_HT_DEBUG
529 printk(KERN_DEBUG "Tx BA session stop requested for %pM tid %u\n",
530 sta->sta.addr, tid);
531#endif /* CONFIG_MAC80211_HT_DEBUG */
532
533 ret = ___ieee80211_stop_tx_ba_session(sta, tid, initiator);
534
535 unlock:
536 spin_unlock_bh(&sta->lock);
537 return ret;
538}
b8695a8f
JB
539
540int ieee80211_stop_tx_ba_session(struct ieee80211_hw *hw,
541 u8 *ra, u16 tid,
542 enum ieee80211_back_parties initiator)
543{
544 struct ieee80211_local *local = hw_to_local(hw);
545 struct sta_info *sta;
b8695a8f
JB
546 int ret = 0;
547
23e6a7ea
JB
548 if (WARN_ON(!local->ops->ampdu_action))
549 return -EINVAL;
550
b8695a8f
JB
551 if (tid >= STA_TID_NUM)
552 return -EINVAL;
553
554 rcu_read_lock();
555 sta = sta_info_get(local, ra);
556 if (!sta) {
557 rcu_read_unlock();
558 return -ENOENT;
559 }
560
849b7967 561 ret = __ieee80211_stop_tx_ba_session(sta, tid, initiator);
b8695a8f
JB
562 rcu_read_unlock();
563 return ret;
564}
565EXPORT_SYMBOL(ieee80211_stop_tx_ba_session);
566
567void ieee80211_stop_tx_ba_cb(struct ieee80211_hw *hw, u8 *ra, u8 tid)
568{
569 struct ieee80211_local *local = hw_to_local(hw);
570 struct sta_info *sta;
571 u8 *state;
b8695a8f
JB
572
573 if (tid >= STA_TID_NUM) {
574#ifdef CONFIG_MAC80211_HT_DEBUG
575 printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
576 tid, STA_TID_NUM);
577#endif
578 return;
579 }
580
581#ifdef CONFIG_MAC80211_HT_DEBUG
582 printk(KERN_DEBUG "Stopping Tx BA session for %pM tid %d\n",
583 ra, tid);
584#endif /* CONFIG_MAC80211_HT_DEBUG */
585
586 rcu_read_lock();
587 sta = sta_info_get(local, ra);
588 if (!sta) {
589#ifdef CONFIG_MAC80211_HT_DEBUG
590 printk(KERN_DEBUG "Could not find station: %pM\n", ra);
591#endif
592 rcu_read_unlock();
593 return;
594 }
595 state = &sta->ampdu_mlme.tid_state_tx[tid];
596
597 /* NOTE: no need to use sta->lock in this state check, as
598 * ieee80211_stop_tx_ba_session will let only one stop call to
599 * pass through per sta/tid
600 */
601 if ((*state & HT_AGG_STATE_REQ_STOP_BA_MSK) == 0) {
602#ifdef CONFIG_MAC80211_HT_DEBUG
603 printk(KERN_DEBUG "unexpected callback to A-MPDU stop\n");
604#endif
605 rcu_read_unlock();
606 return;
607 }
608
609 if (*state & HT_AGG_STATE_INITIATOR_MSK)
610 ieee80211_send_delba(sta->sdata, ra, tid,
611 WLAN_BACK_INITIATOR, WLAN_REASON_QSTA_NOT_USE);
612
96f5e66e 613 spin_lock_bh(&sta->lock);
cd8ffc80 614 spin_lock(&local->ampdu_lock);
b8695a8f 615
cd8ffc80 616 ieee80211_agg_splice_packets(local, sta, tid);
96f5e66e 617
b8695a8f 618 *state = HT_AGG_STATE_IDLE;
cd8ffc80 619 /* from now on packets are no longer put onto sta->pending */
b8695a8f
JB
620 kfree(sta->ampdu_mlme.tid_tx[tid]);
621 sta->ampdu_mlme.tid_tx[tid] = NULL;
cd8ffc80
JB
622
623 ieee80211_agg_splice_finish(local, sta, tid);
624
625 spin_unlock(&local->ampdu_lock);
b8695a8f
JB
626 spin_unlock_bh(&sta->lock);
627
628 rcu_read_unlock();
629}
630EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb);
631
b8695a8f
JB
632void ieee80211_stop_tx_ba_cb_irqsafe(struct ieee80211_hw *hw,
633 const u8 *ra, u16 tid)
634{
635 struct ieee80211_local *local = hw_to_local(hw);
636 struct ieee80211_ra_tid *ra_tid;
637 struct sk_buff *skb = dev_alloc_skb(0);
638
639 if (unlikely(!skb)) {
640#ifdef CONFIG_MAC80211_HT_DEBUG
641 if (net_ratelimit())
642 printk(KERN_WARNING "%s: Not enough memory, "
643 "dropping stop BA session", skb->dev->name);
644#endif
645 return;
646 }
647 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
648 memcpy(&ra_tid->ra, ra, ETH_ALEN);
649 ra_tid->tid = tid;
650
651 skb->pkt_type = IEEE80211_DELBA_MSG;
652 skb_queue_tail(&local->skb_queue, skb);
653 tasklet_schedule(&local->tasklet);
654}
655EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb_irqsafe);
656
86ab6c5a 657
b8695a8f
JB
658void ieee80211_process_addba_resp(struct ieee80211_local *local,
659 struct sta_info *sta,
660 struct ieee80211_mgmt *mgmt,
661 size_t len)
662{
b1720231 663 u16 capab, tid;
b8695a8f
JB
664 u8 *state;
665
666 capab = le16_to_cpu(mgmt->u.action.u.addba_resp.capab);
667 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
668
669 state = &sta->ampdu_mlme.tid_state_tx[tid];
670
671 spin_lock_bh(&sta->lock);
672
2171abc5 673 if (!(*state & HT_ADDBA_REQUESTED_MSK))
8ade0082 674 goto out;
b8695a8f
JB
675
676 if (mgmt->u.action.u.addba_resp.dialog_token !=
677 sta->ampdu_mlme.tid_tx[tid]->dialog_token) {
b8695a8f
JB
678#ifdef CONFIG_MAC80211_HT_DEBUG
679 printk(KERN_DEBUG "wrong addBA response token, tid %d\n", tid);
680#endif /* CONFIG_MAC80211_HT_DEBUG */
8ade0082 681 goto out;
b8695a8f
JB
682 }
683
8ade0082
JB
684 del_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
685
b8695a8f
JB
686#ifdef CONFIG_MAC80211_HT_DEBUG
687 printk(KERN_DEBUG "switched off addBA timer for tid %d \n", tid);
688#endif /* CONFIG_MAC80211_HT_DEBUG */
2171abc5 689
b8695a8f
JB
690 if (le16_to_cpu(mgmt->u.action.u.addba_resp.status)
691 == WLAN_STATUS_SUCCESS) {
96f5e66e
JB
692 u8 curstate = *state;
693
b8695a8f 694 *state |= HT_ADDBA_RECEIVED_MSK;
b8695a8f 695
b1720231
JB
696 if (*state != curstate && *state == HT_AGG_STATE_OPERATIONAL)
697 ieee80211_agg_tx_operational(local, sta, tid);
b8695a8f 698
b1720231 699 sta->ampdu_mlme.addba_req_num[tid] = 0;
b8695a8f 700 } else {
849b7967 701 ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
b8695a8f 702 }
2171abc5 703
2171abc5 704 out:
849b7967 705 spin_unlock_bh(&sta->lock);
b8695a8f 706}