blob: 26d42e88808cd6c9d809d576864ffc9945552405 [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>
17#include <net/mac80211.h>
18#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020019#include "driver-ops.h"
Johannes Bergb8695a82009-02-10 21:25:46 +010020#include "wme.h"
21
Johannes Berg86ab6c52009-02-10 21:25:49 +010022/**
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
Johannes Bergb8695a82009-02-10 21:25:46 +010047static 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;
Johannes Bergb8695a82009-02-10 21:25:46 +010053 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);
Johannes Berg8abd3f92009-02-10 21:25:47 +010069 if (sdata->vif.type == NL80211_IFTYPE_AP ||
70 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Bergb8695a82009-02-10 21:25:46 +010071 memcpy(mgmt->bssid, sdata->dev->dev_addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +010072 else if (sdata->vif.type == NL80211_IFTYPE_STATION)
73 memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
Johannes Bergb8695a82009-02-10 21:25:46 +010074
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
Johannes Berg849b7962009-02-10 21:25:54 +0100126static int ___ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
127 enum ieee80211_back_parties initiator)
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100128{
Johannes Berg849b7962009-02-10 21:25:54 +0100129 struct ieee80211_local *local = sta->local;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100130 int ret;
131 u8 *state;
132
133 state = &sta->ampdu_mlme.tid_state_tx[tid];
134
Vasanthakumar Thiagarajan736708b2009-06-09 14:11:46 +0530135 if (*state == HT_AGG_STATE_OPERATIONAL)
136 sta->ampdu_mlme.addba_req_num[tid] = 0;
137
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100138 *state = HT_AGG_STATE_REQ_STOP_BA_MSK |
139 (initiator << HT_AGG_STATE_INITIATOR_SHIFT);
140
Johannes Bergc951ad32009-11-16 12:00:38 +0100141 ret = drv_ampdu_action(local, &sta->sdata->vif,
142 IEEE80211_AMPDU_TX_STOP,
Johannes Berg24487982009-04-23 18:52:52 +0200143 &sta->sta, tid, NULL);
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100144
145 /* HW shall not deny going back to legacy */
146 if (WARN_ON(ret)) {
147 *state = HT_AGG_STATE_OPERATIONAL;
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100148 /*
149 * We may have pending packets get stuck in this case...
150 * Not bothering with a workaround for now.
151 */
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100152 }
153
154 return ret;
155}
156
Johannes Bergb8695a82009-02-10 21:25:46 +0100157/*
158 * After sending add Block Ack request we activated a timer until
159 * add Block Ack response will arrive from the recipient.
160 * If this timer expires sta_addba_resp_timer_expired will be executed.
161 */
162static void sta_addba_resp_timer_expired(unsigned long data)
163{
164 /* not an elegant detour, but there is no choice as the timer passes
165 * only one argument, and both sta_info and TID are needed, so init
166 * flow in sta_info_create gives the TID as data, while the timer_to_id
167 * array gives the sta through container_of */
168 u16 tid = *(u8 *)data;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100169 struct sta_info *sta = container_of((void *)data,
Johannes Bergb8695a82009-02-10 21:25:46 +0100170 struct sta_info, timer_to_tid[tid]);
Johannes Bergb8695a82009-02-10 21:25:46 +0100171 u8 *state;
172
Johannes Bergb8695a82009-02-10 21:25:46 +0100173 state = &sta->ampdu_mlme.tid_state_tx[tid];
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100174
Johannes Bergb8695a82009-02-10 21:25:46 +0100175 /* check if the TID waits for addBA response */
176 spin_lock_bh(&sta->lock);
177 if (!(*state & HT_ADDBA_REQUESTED_MSK)) {
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 "
182 "expecting addBA response there", tid);
183#endif
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100184 return;
Johannes Bergb8695a82009-02-10 21:25:46 +0100185 }
186
187#ifdef CONFIG_MAC80211_HT_DEBUG
188 printk(KERN_DEBUG "addBA response timer expired on tid %d\n", tid);
189#endif
190
Johannes Berg849b7962009-02-10 21:25:54 +0100191 ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
Johannes Bergb8695a82009-02-10 21:25:46 +0100192 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100193}
194
Johannes Berg96f5e662009-02-12 00:51:53 +0100195static inline int ieee80211_ac_from_tid(int tid)
196{
197 return ieee802_1d_to_ac[tid & 7];
198}
199
Johannes Bergc951ad32009-11-16 12:00:38 +0100200int ieee80211_start_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100201{
Johannes Bergc951ad32009-11-16 12:00:38 +0100202 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
203 struct ieee80211_sub_if_data *sdata = sta->sdata;
204 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100205 u8 *state;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100206 int ret = 0;
Johannes Berg96f5e662009-02-12 00:51:53 +0100207 u16 start_seq_num;
Johannes Bergb8695a82009-02-10 21:25:46 +0100208
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100209 if (WARN_ON(!local->ops->ampdu_action))
210 return -EINVAL;
211
Johannes Bergc951ad32009-11-16 12:00:38 +0100212 if ((tid >= STA_TID_NUM) ||
213 !(local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION))
Johannes Bergb8695a82009-02-10 21:25:46 +0100214 return -EINVAL;
215
216#ifdef CONFIG_MAC80211_HT_DEBUG
217 printk(KERN_DEBUG "Open BA session requested for %pM tid %u\n",
Johannes Bergc951ad32009-11-16 12:00:38 +0100218 pubsta->addr, tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100219#endif /* CONFIG_MAC80211_HT_DEBUG */
220
Johannes Berg8abd3f92009-02-10 21:25:47 +0100221 /*
222 * The aggregation code is not prepared to handle
223 * anything but STA/AP due to the BSSID handling.
224 * IBSS could work in the code but isn't supported
225 * by drivers or the standard.
226 */
Johannes Bergc951ad32009-11-16 12:00:38 +0100227 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
228 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
229 sdata->vif.type != NL80211_IFTYPE_AP)
230 return -EINVAL;
Johannes Berg8abd3f92009-02-10 21:25:47 +0100231
Sujith722f0692009-03-17 08:50:06 +0530232 if (test_sta_flags(sta, WLAN_STA_SUSPEND)) {
233#ifdef CONFIG_MAC80211_HT_DEBUG
234 printk(KERN_DEBUG "Suspend in progress. "
235 "Denying BA session request\n");
236#endif
Johannes Bergc951ad32009-11-16 12:00:38 +0100237 return -EINVAL;
Sujith722f0692009-03-17 08:50:06 +0530238 }
239
Johannes Bergb8695a82009-02-10 21:25:46 +0100240 spin_lock_bh(&sta->lock);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100241 spin_lock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100242
243 /* we have tried too many times, receiver does not want A-MPDU */
244 if (sta->ampdu_mlme.addba_req_num[tid] > HT_AGG_MAX_RETRIES) {
245 ret = -EBUSY;
246 goto err_unlock_sta;
247 }
248
249 state = &sta->ampdu_mlme.tid_state_tx[tid];
250 /* check if the TID is not in aggregation flow already */
251 if (*state != HT_AGG_STATE_IDLE) {
252#ifdef CONFIG_MAC80211_HT_DEBUG
253 printk(KERN_DEBUG "BA request denied - session is not "
254 "idle on tid %u\n", tid);
255#endif /* CONFIG_MAC80211_HT_DEBUG */
256 ret = -EAGAIN;
257 goto err_unlock_sta;
258 }
259
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100260 /*
261 * While we're asking the driver about the aggregation,
262 * stop the AC queue so that we don't have to worry
263 * about frames that came in while we were doing that,
264 * which would require us to put them to the AC pending
265 * afterwards which just makes the code more complex.
266 */
267 ieee80211_stop_queue_by_reason(
268 &local->hw, ieee80211_ac_from_tid(tid),
269 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
270
Johannes Bergb8695a82009-02-10 21:25:46 +0100271 /* prepare A-MPDU MLME for Tx aggregation */
272 sta->ampdu_mlme.tid_tx[tid] =
273 kmalloc(sizeof(struct tid_ampdu_tx), GFP_ATOMIC);
274 if (!sta->ampdu_mlme.tid_tx[tid]) {
275#ifdef CONFIG_MAC80211_HT_DEBUG
276 if (net_ratelimit())
277 printk(KERN_ERR "allocate tx mlme to tid %d failed\n",
278 tid);
279#endif
280 ret = -ENOMEM;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100281 goto err_wake_queue;
Johannes Bergb8695a82009-02-10 21:25:46 +0100282 }
Johannes Berg96f5e662009-02-12 00:51:53 +0100283
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100284 skb_queue_head_init(&sta->ampdu_mlme.tid_tx[tid]->pending);
285
Johannes Bergb8695a82009-02-10 21:25:46 +0100286 /* Tx timer */
287 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.function =
288 sta_addba_resp_timer_expired;
289 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.data =
290 (unsigned long)&sta->timer_to_tid[tid];
291 init_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
292
Johannes Bergb8695a82009-02-10 21:25:46 +0100293 /* Ok, the Addba frame hasn't been sent yet, but if the driver calls the
294 * call back right away, it must see that the flow has begun */
295 *state |= HT_ADDBA_REQUESTED_MSK;
296
Johannes Bergb8695a82009-02-10 21:25:46 +0100297 start_seq_num = sta->tid_seq[tid];
298
Johannes Bergc951ad32009-11-16 12:00:38 +0100299 ret = drv_ampdu_action(local, &sdata->vif,
300 IEEE80211_AMPDU_TX_START,
301 pubsta, tid, &start_seq_num);
Johannes Bergb8695a82009-02-10 21:25:46 +0100302
303 if (ret) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100304#ifdef CONFIG_MAC80211_HT_DEBUG
305 printk(KERN_DEBUG "BA request denied - HW unavailable for"
306 " tid %d\n", tid);
307#endif /* CONFIG_MAC80211_HT_DEBUG */
308 *state = HT_AGG_STATE_IDLE;
Johannes Berg96f5e662009-02-12 00:51:53 +0100309 goto err_free;
Johannes Bergb8695a82009-02-10 21:25:46 +0100310 }
311
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100312 /* Driver vetoed or OKed, but we can take packets again now */
313 ieee80211_wake_queue_by_reason(
314 &local->hw, ieee80211_ac_from_tid(tid),
315 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
316
317 spin_unlock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100318 spin_unlock_bh(&sta->lock);
319
320 /* send an addBA request */
321 sta->ampdu_mlme.dialog_token_allocator++;
322 sta->ampdu_mlme.tid_tx[tid]->dialog_token =
323 sta->ampdu_mlme.dialog_token_allocator;
324 sta->ampdu_mlme.tid_tx[tid]->ssn = start_seq_num;
325
Johannes Bergc951ad32009-11-16 12:00:38 +0100326 ieee80211_send_addba_request(sdata, pubsta->addr, tid,
Johannes Bergb8695a82009-02-10 21:25:46 +0100327 sta->ampdu_mlme.tid_tx[tid]->dialog_token,
328 sta->ampdu_mlme.tid_tx[tid]->ssn,
329 0x40, 5000);
Vasanthakumar Thiagarajan736708b2009-06-09 14:11:46 +0530330 sta->ampdu_mlme.addba_req_num[tid]++;
Johannes Bergb8695a82009-02-10 21:25:46 +0100331 /* activate the timer for the recipient's addBA response */
332 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.expires =
333 jiffies + ADDBA_RESP_INTERVAL;
334 add_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
335#ifdef CONFIG_MAC80211_HT_DEBUG
336 printk(KERN_DEBUG "activated addBA response timer on tid %d\n", tid);
337#endif
Johannes Bergc951ad32009-11-16 12:00:38 +0100338 return 0;
Johannes Bergb8695a82009-02-10 21:25:46 +0100339
Johannes Berg96f5e662009-02-12 00:51:53 +0100340 err_free:
Johannes Bergb8695a82009-02-10 21:25:46 +0100341 kfree(sta->ampdu_mlme.tid_tx[tid]);
342 sta->ampdu_mlme.tid_tx[tid] = NULL;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100343 err_wake_queue:
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100344 ieee80211_wake_queue_by_reason(
345 &local->hw, ieee80211_ac_from_tid(tid),
346 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
Johannes Berg96f5e662009-02-12 00:51:53 +0100347 err_unlock_sta:
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100348 spin_unlock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100349 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100350 return ret;
351}
352EXPORT_SYMBOL(ieee80211_start_tx_ba_session);
353
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100354/*
355 * splice packets from the STA's pending to the local pending,
356 * requires a call to ieee80211_agg_splice_finish and holding
357 * local->ampdu_lock across both calls.
358 */
359static void ieee80211_agg_splice_packets(struct ieee80211_local *local,
360 struct sta_info *sta, u16 tid)
361{
362 unsigned long flags;
363 u16 queue = ieee80211_ac_from_tid(tid);
364
365 ieee80211_stop_queue_by_reason(
366 &local->hw, queue,
367 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
368
Luis R. Rodriguez416fbdf2009-08-11 13:10:33 -0700369 if (!(sta->ampdu_mlme.tid_state_tx[tid] & HT_ADDBA_REQUESTED_MSK))
370 return;
371
372 if (WARN(!sta->ampdu_mlme.tid_tx[tid],
373 "TID %d gone but expected when splicing aggregates from"
374 "the pending queue\n", tid))
375 return;
376
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100377 if (!skb_queue_empty(&sta->ampdu_mlme.tid_tx[tid]->pending)) {
378 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100379 /* copy over remaining packets */
380 skb_queue_splice_tail_init(
381 &sta->ampdu_mlme.tid_tx[tid]->pending,
382 &local->pending[queue]);
383 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
384 }
385}
386
387static void ieee80211_agg_splice_finish(struct ieee80211_local *local,
388 struct sta_info *sta, u16 tid)
389{
390 u16 queue = ieee80211_ac_from_tid(tid);
391
392 ieee80211_wake_queue_by_reason(
393 &local->hw, queue,
394 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
395}
396
397/* caller must hold sta->lock */
Johannes Bergb1720232009-03-23 17:28:39 +0100398static void ieee80211_agg_tx_operational(struct ieee80211_local *local,
399 struct sta_info *sta, u16 tid)
400{
401#ifdef CONFIG_MAC80211_HT_DEBUG
402 printk(KERN_DEBUG "Aggregation is on for tid %d \n", tid);
403#endif
404
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100405 spin_lock(&local->ampdu_lock);
406 ieee80211_agg_splice_packets(local, sta, tid);
407 /*
408 * NB: we rely on sta->lock being taken in the TX
409 * processing here when adding to the pending queue,
410 * otherwise we could only change the state of the
411 * session to OPERATIONAL _here_.
412 */
413 ieee80211_agg_splice_finish(local, sta, tid);
414 spin_unlock(&local->ampdu_lock);
Johannes Bergb1720232009-03-23 17:28:39 +0100415
Johannes Bergc951ad32009-11-16 12:00:38 +0100416 drv_ampdu_action(local, &sta->sdata->vif,
417 IEEE80211_AMPDU_TX_OPERATIONAL,
Johannes Berg24487982009-04-23 18:52:52 +0200418 &sta->sta, tid, NULL);
Johannes Bergb1720232009-03-23 17:28:39 +0100419}
420
Johannes Bergc951ad32009-11-16 12:00:38 +0100421void ieee80211_start_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100422{
Johannes Bergc951ad32009-11-16 12:00:38 +0100423 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
424 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100425 struct sta_info *sta;
426 u8 *state;
427
428 if (tid >= STA_TID_NUM) {
429#ifdef CONFIG_MAC80211_HT_DEBUG
430 printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
431 tid, STA_TID_NUM);
432#endif
433 return;
434 }
435
436 rcu_read_lock();
437 sta = sta_info_get(local, ra);
438 if (!sta) {
439 rcu_read_unlock();
440#ifdef CONFIG_MAC80211_HT_DEBUG
441 printk(KERN_DEBUG "Could not find station: %pM\n", ra);
442#endif
443 return;
444 }
445
446 state = &sta->ampdu_mlme.tid_state_tx[tid];
447 spin_lock_bh(&sta->lock);
448
Johannes Berg96f5e662009-02-12 00:51:53 +0100449 if (WARN_ON(!(*state & HT_ADDBA_REQUESTED_MSK))) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100450#ifdef CONFIG_MAC80211_HT_DEBUG
451 printk(KERN_DEBUG "addBA was not requested yet, state is %d\n",
452 *state);
453#endif
454 spin_unlock_bh(&sta->lock);
455 rcu_read_unlock();
456 return;
457 }
458
Johannes Berg96f5e662009-02-12 00:51:53 +0100459 if (WARN_ON(*state & HT_ADDBA_DRV_READY_MSK))
460 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100461
462 *state |= HT_ADDBA_DRV_READY_MSK;
463
Johannes Bergb1720232009-03-23 17:28:39 +0100464 if (*state == HT_AGG_STATE_OPERATIONAL)
465 ieee80211_agg_tx_operational(local, sta, tid);
Johannes Berg96f5e662009-02-12 00:51:53 +0100466
467 out:
Johannes Bergb8695a82009-02-10 21:25:46 +0100468 spin_unlock_bh(&sta->lock);
469 rcu_read_unlock();
470}
471EXPORT_SYMBOL(ieee80211_start_tx_ba_cb);
472
Johannes Bergc951ad32009-11-16 12:00:38 +0100473void ieee80211_start_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
Johannes Berg86ab6c52009-02-10 21:25:49 +0100474 const u8 *ra, u16 tid)
475{
Johannes Bergc951ad32009-11-16 12:00:38 +0100476 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
477 struct ieee80211_local *local = sdata->local;
Johannes Berg86ab6c52009-02-10 21:25:49 +0100478 struct ieee80211_ra_tid *ra_tid;
479 struct sk_buff *skb = dev_alloc_skb(0);
480
481 if (unlikely(!skb)) {
482#ifdef CONFIG_MAC80211_HT_DEBUG
483 if (net_ratelimit())
484 printk(KERN_WARNING "%s: Not enough memory, "
485 "dropping start BA session", skb->dev->name);
486#endif
487 return;
488 }
489 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
490 memcpy(&ra_tid->ra, ra, ETH_ALEN);
491 ra_tid->tid = tid;
Sujith0bc6b182009-11-18 11:42:14 +0530492 ra_tid->vif = vif;
Johannes Berg86ab6c52009-02-10 21:25:49 +0100493
494 skb->pkt_type = IEEE80211_ADDBA_MSG;
495 skb_queue_tail(&local->skb_queue, skb);
496 tasklet_schedule(&local->tasklet);
497}
498EXPORT_SYMBOL(ieee80211_start_tx_ba_cb_irqsafe);
499
Johannes Berg849b7962009-02-10 21:25:54 +0100500int __ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
501 enum ieee80211_back_parties initiator)
502{
503 u8 *state;
504 int ret;
505
506 /* check if the TID is in aggregation */
507 state = &sta->ampdu_mlme.tid_state_tx[tid];
508 spin_lock_bh(&sta->lock);
509
510 if (*state != HT_AGG_STATE_OPERATIONAL) {
511 ret = -ENOENT;
512 goto unlock;
513 }
514
515#ifdef CONFIG_MAC80211_HT_DEBUG
516 printk(KERN_DEBUG "Tx BA session stop requested for %pM tid %u\n",
517 sta->sta.addr, tid);
518#endif /* CONFIG_MAC80211_HT_DEBUG */
519
520 ret = ___ieee80211_stop_tx_ba_session(sta, tid, initiator);
521
522 unlock:
523 spin_unlock_bh(&sta->lock);
524 return ret;
525}
Johannes Bergb8695a82009-02-10 21:25:46 +0100526
Johannes Bergc951ad32009-11-16 12:00:38 +0100527int ieee80211_stop_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid,
Johannes Bergb8695a82009-02-10 21:25:46 +0100528 enum ieee80211_back_parties initiator)
529{
Johannes Bergc951ad32009-11-16 12:00:38 +0100530 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
531 struct ieee80211_sub_if_data *sdata = sta->sdata;
532 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100533
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100534 if (WARN_ON(!local->ops->ampdu_action))
535 return -EINVAL;
536
Johannes Bergb8695a82009-02-10 21:25:46 +0100537 if (tid >= STA_TID_NUM)
538 return -EINVAL;
539
Johannes Bergc951ad32009-11-16 12:00:38 +0100540 return __ieee80211_stop_tx_ba_session(sta, tid, initiator);
Johannes Bergb8695a82009-02-10 21:25:46 +0100541}
542EXPORT_SYMBOL(ieee80211_stop_tx_ba_session);
543
Johannes Bergc951ad32009-11-16 12:00:38 +0100544void ieee80211_stop_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u8 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100545{
Johannes Bergc951ad32009-11-16 12:00:38 +0100546 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
547 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100548 struct sta_info *sta;
549 u8 *state;
Johannes Bergb8695a82009-02-10 21:25:46 +0100550
551 if (tid >= STA_TID_NUM) {
552#ifdef CONFIG_MAC80211_HT_DEBUG
553 printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
554 tid, STA_TID_NUM);
555#endif
556 return;
557 }
558
559#ifdef CONFIG_MAC80211_HT_DEBUG
560 printk(KERN_DEBUG "Stopping Tx BA session for %pM tid %d\n",
561 ra, tid);
562#endif /* CONFIG_MAC80211_HT_DEBUG */
563
564 rcu_read_lock();
565 sta = sta_info_get(local, ra);
566 if (!sta) {
567#ifdef CONFIG_MAC80211_HT_DEBUG
568 printk(KERN_DEBUG "Could not find station: %pM\n", ra);
569#endif
570 rcu_read_unlock();
571 return;
572 }
573 state = &sta->ampdu_mlme.tid_state_tx[tid];
574
575 /* NOTE: no need to use sta->lock in this state check, as
576 * ieee80211_stop_tx_ba_session will let only one stop call to
577 * pass through per sta/tid
578 */
579 if ((*state & HT_AGG_STATE_REQ_STOP_BA_MSK) == 0) {
580#ifdef CONFIG_MAC80211_HT_DEBUG
581 printk(KERN_DEBUG "unexpected callback to A-MPDU stop\n");
582#endif
583 rcu_read_unlock();
584 return;
585 }
586
587 if (*state & HT_AGG_STATE_INITIATOR_MSK)
588 ieee80211_send_delba(sta->sdata, ra, tid,
589 WLAN_BACK_INITIATOR, WLAN_REASON_QSTA_NOT_USE);
590
Johannes Bergb8695a82009-02-10 21:25:46 +0100591 spin_lock_bh(&sta->lock);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100592 spin_lock(&local->ampdu_lock);
Johannes Berg96f5e662009-02-12 00:51:53 +0100593
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100594 ieee80211_agg_splice_packets(local, sta, tid);
Johannes Berg96f5e662009-02-12 00:51:53 +0100595
Johannes Bergb8695a82009-02-10 21:25:46 +0100596 *state = HT_AGG_STATE_IDLE;
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100597 /* from now on packets are no longer put onto sta->pending */
Johannes Bergb8695a82009-02-10 21:25:46 +0100598 kfree(sta->ampdu_mlme.tid_tx[tid]);
599 sta->ampdu_mlme.tid_tx[tid] = NULL;
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100600
601 ieee80211_agg_splice_finish(local, sta, tid);
602
603 spin_unlock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100604 spin_unlock_bh(&sta->lock);
605
606 rcu_read_unlock();
607}
608EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb);
609
Johannes Bergc951ad32009-11-16 12:00:38 +0100610void ieee80211_stop_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
Johannes Bergb8695a82009-02-10 21:25:46 +0100611 const u8 *ra, u16 tid)
612{
Johannes Bergc951ad32009-11-16 12:00:38 +0100613 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
614 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100615 struct ieee80211_ra_tid *ra_tid;
616 struct sk_buff *skb = dev_alloc_skb(0);
617
618 if (unlikely(!skb)) {
619#ifdef CONFIG_MAC80211_HT_DEBUG
620 if (net_ratelimit())
621 printk(KERN_WARNING "%s: Not enough memory, "
622 "dropping stop BA session", skb->dev->name);
623#endif
624 return;
625 }
626 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
627 memcpy(&ra_tid->ra, ra, ETH_ALEN);
628 ra_tid->tid = tid;
Sujith0bc6b182009-11-18 11:42:14 +0530629 ra_tid->vif = vif;
Johannes Bergb8695a82009-02-10 21:25:46 +0100630
631 skb->pkt_type = IEEE80211_DELBA_MSG;
632 skb_queue_tail(&local->skb_queue, skb);
633 tasklet_schedule(&local->tasklet);
634}
635EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb_irqsafe);
636
Johannes Berg86ab6c52009-02-10 21:25:49 +0100637
Johannes Bergb8695a82009-02-10 21:25:46 +0100638void ieee80211_process_addba_resp(struct ieee80211_local *local,
639 struct sta_info *sta,
640 struct ieee80211_mgmt *mgmt,
641 size_t len)
642{
Johannes Bergb1720232009-03-23 17:28:39 +0100643 u16 capab, tid;
Johannes Bergb8695a82009-02-10 21:25:46 +0100644 u8 *state;
645
646 capab = le16_to_cpu(mgmt->u.action.u.addba_resp.capab);
647 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
648
649 state = &sta->ampdu_mlme.tid_state_tx[tid];
650
Johannes Berg2171abc2009-10-29 08:34:00 +0100651 del_timer_sync(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
652
Johannes Bergb8695a82009-02-10 21:25:46 +0100653 spin_lock_bh(&sta->lock);
654
Johannes Berg2171abc2009-10-29 08:34:00 +0100655 if (!(*state & HT_ADDBA_REQUESTED_MSK))
656 goto timer_still_needed;
Johannes Bergb8695a82009-02-10 21:25:46 +0100657
658 if (mgmt->u.action.u.addba_resp.dialog_token !=
659 sta->ampdu_mlme.tid_tx[tid]->dialog_token) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100660#ifdef CONFIG_MAC80211_HT_DEBUG
661 printk(KERN_DEBUG "wrong addBA response token, tid %d\n", tid);
662#endif /* CONFIG_MAC80211_HT_DEBUG */
Johannes Berg2171abc2009-10-29 08:34:00 +0100663 goto timer_still_needed;
Johannes Bergb8695a82009-02-10 21:25:46 +0100664 }
665
Johannes Bergb8695a82009-02-10 21:25:46 +0100666#ifdef CONFIG_MAC80211_HT_DEBUG
667 printk(KERN_DEBUG "switched off addBA timer for tid %d \n", tid);
668#endif /* CONFIG_MAC80211_HT_DEBUG */
Johannes Berg2171abc2009-10-29 08:34:00 +0100669
Johannes Bergb8695a82009-02-10 21:25:46 +0100670 if (le16_to_cpu(mgmt->u.action.u.addba_resp.status)
671 == WLAN_STATUS_SUCCESS) {
Johannes Berg96f5e662009-02-12 00:51:53 +0100672 u8 curstate = *state;
Johannes Bergb8695a82009-02-10 21:25:46 +0100673
Johannes Berg96f5e662009-02-12 00:51:53 +0100674 *state |= HT_ADDBA_RECEIVED_MSK;
675
Johannes Bergb1720232009-03-23 17:28:39 +0100676 if (*state != curstate && *state == HT_AGG_STATE_OPERATIONAL)
677 ieee80211_agg_tx_operational(local, sta, tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100678
Johannes Bergb1720232009-03-23 17:28:39 +0100679 sta->ampdu_mlme.addba_req_num[tid] = 0;
Johannes Bergb8695a82009-02-10 21:25:46 +0100680 } else {
Johannes Berg849b7962009-02-10 21:25:54 +0100681 ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
Johannes Bergb8695a82009-02-10 21:25:46 +0100682 }
Johannes Berg2171abc2009-10-29 08:34:00 +0100683
684 goto out;
685
686 timer_still_needed:
687 add_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
688 out:
Johannes Berg849b7962009-02-10 21:25:54 +0100689 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100690}