blob: b50b2bc3b8c5ffe72df9bcaa876313b8e8bdff35 [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
Johannes Berg62ae67b2009-11-18 18:42:05 +010094 ieee80211_tx_skb(sdata, skb);
Johannes Bergb8695a82009-02-10 21:25:46 +010095}
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
Johannes Berg62ae67b2009-11-18 18:42:05 +0100123 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
124 ieee80211_tx_skb(sdata, skb);
Johannes Bergb8695a82009-02-10 21:25:46 +0100125}
126
Johannes Berg849b7962009-02-10 21:25:54 +0100127static int ___ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
128 enum ieee80211_back_parties initiator)
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100129{
Johannes Berg849b7962009-02-10 21:25:54 +0100130 struct ieee80211_local *local = sta->local;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100131 int ret;
132 u8 *state;
133
134 state = &sta->ampdu_mlme.tid_state_tx[tid];
135
Vasanthakumar Thiagarajan736708b2009-06-09 14:11:46 +0530136 if (*state == HT_AGG_STATE_OPERATIONAL)
137 sta->ampdu_mlme.addba_req_num[tid] = 0;
138
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100139 *state = HT_AGG_STATE_REQ_STOP_BA_MSK |
140 (initiator << HT_AGG_STATE_INITIATOR_SHIFT);
141
Johannes Bergc951ad32009-11-16 12:00:38 +0100142 ret = drv_ampdu_action(local, &sta->sdata->vif,
143 IEEE80211_AMPDU_TX_STOP,
Johannes Berg24487982009-04-23 18:52:52 +0200144 &sta->sta, tid, NULL);
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100145
146 /* HW shall not deny going back to legacy */
147 if (WARN_ON(ret)) {
148 *state = HT_AGG_STATE_OPERATIONAL;
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100149 /*
150 * We may have pending packets get stuck in this case...
151 * Not bothering with a workaround for now.
152 */
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100153 }
154
155 return ret;
156}
157
Johannes Bergb8695a82009-02-10 21:25:46 +0100158/*
159 * After sending add Block Ack request we activated a timer until
160 * add Block Ack response will arrive from the recipient.
161 * If this timer expires sta_addba_resp_timer_expired will be executed.
162 */
163static void sta_addba_resp_timer_expired(unsigned long data)
164{
165 /* not an elegant detour, but there is no choice as the timer passes
166 * only one argument, and both sta_info and TID are needed, so init
167 * flow in sta_info_create gives the TID as data, while the timer_to_id
168 * array gives the sta through container_of */
169 u16 tid = *(u8 *)data;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100170 struct sta_info *sta = container_of((void *)data,
Johannes Bergb8695a82009-02-10 21:25:46 +0100171 struct sta_info, timer_to_tid[tid]);
Johannes Bergb8695a82009-02-10 21:25:46 +0100172 u8 *state;
173
Johannes Bergb8695a82009-02-10 21:25:46 +0100174 state = &sta->ampdu_mlme.tid_state_tx[tid];
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100175
Johannes Bergb8695a82009-02-10 21:25:46 +0100176 /* check if the TID waits for addBA response */
177 spin_lock_bh(&sta->lock);
178 if (!(*state & HT_ADDBA_REQUESTED_MSK)) {
179 spin_unlock_bh(&sta->lock);
180 *state = HT_AGG_STATE_IDLE;
181#ifdef CONFIG_MAC80211_HT_DEBUG
182 printk(KERN_DEBUG "timer expired on tid %d but we are not "
183 "expecting addBA response there", tid);
184#endif
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100185 return;
Johannes Bergb8695a82009-02-10 21:25:46 +0100186 }
187
188#ifdef CONFIG_MAC80211_HT_DEBUG
189 printk(KERN_DEBUG "addBA response timer expired on tid %d\n", tid);
190#endif
191
Johannes Berg849b7962009-02-10 21:25:54 +0100192 ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
Johannes Bergb8695a82009-02-10 21:25:46 +0100193 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100194}
195
Johannes Berg96f5e662009-02-12 00:51:53 +0100196static inline int ieee80211_ac_from_tid(int tid)
197{
198 return ieee802_1d_to_ac[tid & 7];
199}
200
Johannes Bergc951ad32009-11-16 12:00:38 +0100201int ieee80211_start_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100202{
Johannes Bergc951ad32009-11-16 12:00:38 +0100203 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
204 struct ieee80211_sub_if_data *sdata = sta->sdata;
205 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100206 u8 *state;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100207 int ret = 0;
Johannes Berg96f5e662009-02-12 00:51:53 +0100208 u16 start_seq_num;
Johannes Bergb8695a82009-02-10 21:25:46 +0100209
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100210 if (WARN_ON(!local->ops->ampdu_action))
211 return -EINVAL;
212
Johannes Bergc951ad32009-11-16 12:00:38 +0100213 if ((tid >= STA_TID_NUM) ||
214 !(local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION))
Johannes Bergb8695a82009-02-10 21:25:46 +0100215 return -EINVAL;
216
217#ifdef CONFIG_MAC80211_HT_DEBUG
218 printk(KERN_DEBUG "Open BA session requested for %pM tid %u\n",
Johannes Bergc951ad32009-11-16 12:00:38 +0100219 pubsta->addr, tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100220#endif /* CONFIG_MAC80211_HT_DEBUG */
221
Johannes Berg8abd3f92009-02-10 21:25:47 +0100222 /*
223 * The aggregation code is not prepared to handle
224 * anything but STA/AP due to the BSSID handling.
225 * IBSS could work in the code but isn't supported
226 * by drivers or the standard.
227 */
Johannes Bergc951ad32009-11-16 12:00:38 +0100228 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
229 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
230 sdata->vif.type != NL80211_IFTYPE_AP)
231 return -EINVAL;
Johannes Berg8abd3f92009-02-10 21:25:47 +0100232
Sujith722f0692009-03-17 08:50:06 +0530233 if (test_sta_flags(sta, WLAN_STA_SUSPEND)) {
234#ifdef CONFIG_MAC80211_HT_DEBUG
235 printk(KERN_DEBUG "Suspend in progress. "
236 "Denying BA session request\n");
237#endif
Johannes Bergc951ad32009-11-16 12:00:38 +0100238 return -EINVAL;
Sujith722f0692009-03-17 08:50:06 +0530239 }
240
Johannes Bergb8695a82009-02-10 21:25:46 +0100241 spin_lock_bh(&sta->lock);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100242 spin_lock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100243
244 /* we have tried too many times, receiver does not want A-MPDU */
245 if (sta->ampdu_mlme.addba_req_num[tid] > HT_AGG_MAX_RETRIES) {
246 ret = -EBUSY;
247 goto err_unlock_sta;
248 }
249
250 state = &sta->ampdu_mlme.tid_state_tx[tid];
251 /* check if the TID is not in aggregation flow already */
252 if (*state != HT_AGG_STATE_IDLE) {
253#ifdef CONFIG_MAC80211_HT_DEBUG
254 printk(KERN_DEBUG "BA request denied - session is not "
255 "idle on tid %u\n", tid);
256#endif /* CONFIG_MAC80211_HT_DEBUG */
257 ret = -EAGAIN;
258 goto err_unlock_sta;
259 }
260
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100261 /*
262 * While we're asking the driver about the aggregation,
263 * stop the AC queue so that we don't have to worry
264 * about frames that came in while we were doing that,
265 * which would require us to put them to the AC pending
266 * afterwards which just makes the code more complex.
267 */
268 ieee80211_stop_queue_by_reason(
269 &local->hw, ieee80211_ac_from_tid(tid),
270 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
271
Johannes Bergb8695a82009-02-10 21:25:46 +0100272 /* prepare A-MPDU MLME for Tx aggregation */
273 sta->ampdu_mlme.tid_tx[tid] =
274 kmalloc(sizeof(struct tid_ampdu_tx), GFP_ATOMIC);
275 if (!sta->ampdu_mlme.tid_tx[tid]) {
276#ifdef CONFIG_MAC80211_HT_DEBUG
277 if (net_ratelimit())
278 printk(KERN_ERR "allocate tx mlme to tid %d failed\n",
279 tid);
280#endif
281 ret = -ENOMEM;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100282 goto err_wake_queue;
Johannes Bergb8695a82009-02-10 21:25:46 +0100283 }
Johannes Berg96f5e662009-02-12 00:51:53 +0100284
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100285 skb_queue_head_init(&sta->ampdu_mlme.tid_tx[tid]->pending);
286
Johannes Bergb8695a82009-02-10 21:25:46 +0100287 /* Tx timer */
288 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.function =
289 sta_addba_resp_timer_expired;
290 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.data =
291 (unsigned long)&sta->timer_to_tid[tid];
292 init_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
293
Johannes Bergb8695a82009-02-10 21:25:46 +0100294 /* Ok, the Addba frame hasn't been sent yet, but if the driver calls the
295 * call back right away, it must see that the flow has begun */
296 *state |= HT_ADDBA_REQUESTED_MSK;
297
Johannes Bergb8695a82009-02-10 21:25:46 +0100298 start_seq_num = sta->tid_seq[tid];
299
Johannes Bergc951ad32009-11-16 12:00:38 +0100300 ret = drv_ampdu_action(local, &sdata->vif,
301 IEEE80211_AMPDU_TX_START,
302 pubsta, tid, &start_seq_num);
Johannes Bergb8695a82009-02-10 21:25:46 +0100303
304 if (ret) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100305#ifdef CONFIG_MAC80211_HT_DEBUG
306 printk(KERN_DEBUG "BA request denied - HW unavailable for"
307 " tid %d\n", tid);
308#endif /* CONFIG_MAC80211_HT_DEBUG */
309 *state = HT_AGG_STATE_IDLE;
Johannes Berg96f5e662009-02-12 00:51:53 +0100310 goto err_free;
Johannes Bergb8695a82009-02-10 21:25:46 +0100311 }
312
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100313 /* Driver vetoed or OKed, but we can take packets again now */
314 ieee80211_wake_queue_by_reason(
315 &local->hw, ieee80211_ac_from_tid(tid),
316 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
317
318 spin_unlock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100319 spin_unlock_bh(&sta->lock);
320
321 /* send an addBA request */
322 sta->ampdu_mlme.dialog_token_allocator++;
323 sta->ampdu_mlme.tid_tx[tid]->dialog_token =
324 sta->ampdu_mlme.dialog_token_allocator;
325 sta->ampdu_mlme.tid_tx[tid]->ssn = start_seq_num;
326
Johannes Bergc951ad32009-11-16 12:00:38 +0100327 ieee80211_send_addba_request(sdata, pubsta->addr, tid,
Johannes Bergb8695a82009-02-10 21:25:46 +0100328 sta->ampdu_mlme.tid_tx[tid]->dialog_token,
329 sta->ampdu_mlme.tid_tx[tid]->ssn,
330 0x40, 5000);
Vasanthakumar Thiagarajan736708b2009-06-09 14:11:46 +0530331 sta->ampdu_mlme.addba_req_num[tid]++;
Johannes Bergb8695a82009-02-10 21:25:46 +0100332 /* activate the timer for the recipient's addBA response */
333 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.expires =
334 jiffies + ADDBA_RESP_INTERVAL;
335 add_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
336#ifdef CONFIG_MAC80211_HT_DEBUG
337 printk(KERN_DEBUG "activated addBA response timer on tid %d\n", tid);
338#endif
Johannes Bergc951ad32009-11-16 12:00:38 +0100339 return 0;
Johannes Bergb8695a82009-02-10 21:25:46 +0100340
Johannes Berg96f5e662009-02-12 00:51:53 +0100341 err_free:
Johannes Bergb8695a82009-02-10 21:25:46 +0100342 kfree(sta->ampdu_mlme.tid_tx[tid]);
343 sta->ampdu_mlme.tid_tx[tid] = NULL;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100344 err_wake_queue:
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100345 ieee80211_wake_queue_by_reason(
346 &local->hw, ieee80211_ac_from_tid(tid),
347 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
Johannes Berg96f5e662009-02-12 00:51:53 +0100348 err_unlock_sta:
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100349 spin_unlock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100350 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100351 return ret;
352}
353EXPORT_SYMBOL(ieee80211_start_tx_ba_session);
354
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100355/*
356 * splice packets from the STA's pending to the local pending,
357 * requires a call to ieee80211_agg_splice_finish and holding
358 * local->ampdu_lock across both calls.
359 */
360static void ieee80211_agg_splice_packets(struct ieee80211_local *local,
361 struct sta_info *sta, u16 tid)
362{
363 unsigned long flags;
364 u16 queue = ieee80211_ac_from_tid(tid);
365
366 ieee80211_stop_queue_by_reason(
367 &local->hw, queue,
368 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
369
Luis R. Rodriguez416fbdf2009-08-11 13:10:33 -0700370 if (!(sta->ampdu_mlme.tid_state_tx[tid] & HT_ADDBA_REQUESTED_MSK))
371 return;
372
373 if (WARN(!sta->ampdu_mlme.tid_tx[tid],
374 "TID %d gone but expected when splicing aggregates from"
375 "the pending queue\n", tid))
376 return;
377
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100378 if (!skb_queue_empty(&sta->ampdu_mlme.tid_tx[tid]->pending)) {
379 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100380 /* copy over remaining packets */
381 skb_queue_splice_tail_init(
382 &sta->ampdu_mlme.tid_tx[tid]->pending,
383 &local->pending[queue]);
384 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
385 }
386}
387
388static void ieee80211_agg_splice_finish(struct ieee80211_local *local,
389 struct sta_info *sta, u16 tid)
390{
391 u16 queue = ieee80211_ac_from_tid(tid);
392
393 ieee80211_wake_queue_by_reason(
394 &local->hw, queue,
395 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
396}
397
398/* caller must hold sta->lock */
Johannes Bergb1720232009-03-23 17:28:39 +0100399static void ieee80211_agg_tx_operational(struct ieee80211_local *local,
400 struct sta_info *sta, u16 tid)
401{
402#ifdef CONFIG_MAC80211_HT_DEBUG
403 printk(KERN_DEBUG "Aggregation is on for tid %d \n", tid);
404#endif
405
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100406 spin_lock(&local->ampdu_lock);
407 ieee80211_agg_splice_packets(local, sta, tid);
408 /*
409 * NB: we rely on sta->lock being taken in the TX
410 * processing here when adding to the pending queue,
411 * otherwise we could only change the state of the
412 * session to OPERATIONAL _here_.
413 */
414 ieee80211_agg_splice_finish(local, sta, tid);
415 spin_unlock(&local->ampdu_lock);
Johannes Bergb1720232009-03-23 17:28:39 +0100416
Johannes Bergc951ad32009-11-16 12:00:38 +0100417 drv_ampdu_action(local, &sta->sdata->vif,
418 IEEE80211_AMPDU_TX_OPERATIONAL,
Johannes Berg24487982009-04-23 18:52:52 +0200419 &sta->sta, tid, NULL);
Johannes Bergb1720232009-03-23 17:28:39 +0100420}
421
Johannes Bergc951ad32009-11-16 12:00:38 +0100422void ieee80211_start_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100423{
Johannes Bergc951ad32009-11-16 12:00:38 +0100424 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
425 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100426 struct sta_info *sta;
427 u8 *state;
428
429 if (tid >= STA_TID_NUM) {
430#ifdef CONFIG_MAC80211_HT_DEBUG
431 printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
432 tid, STA_TID_NUM);
433#endif
434 return;
435 }
436
437 rcu_read_lock();
438 sta = sta_info_get(local, ra);
439 if (!sta) {
440 rcu_read_unlock();
441#ifdef CONFIG_MAC80211_HT_DEBUG
442 printk(KERN_DEBUG "Could not find station: %pM\n", ra);
443#endif
444 return;
445 }
446
447 state = &sta->ampdu_mlme.tid_state_tx[tid];
448 spin_lock_bh(&sta->lock);
449
Johannes Berg96f5e662009-02-12 00:51:53 +0100450 if (WARN_ON(!(*state & HT_ADDBA_REQUESTED_MSK))) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100451#ifdef CONFIG_MAC80211_HT_DEBUG
452 printk(KERN_DEBUG "addBA was not requested yet, state is %d\n",
453 *state);
454#endif
455 spin_unlock_bh(&sta->lock);
456 rcu_read_unlock();
457 return;
458 }
459
Johannes Berg96f5e662009-02-12 00:51:53 +0100460 if (WARN_ON(*state & HT_ADDBA_DRV_READY_MSK))
461 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100462
463 *state |= HT_ADDBA_DRV_READY_MSK;
464
Johannes Bergb1720232009-03-23 17:28:39 +0100465 if (*state == HT_AGG_STATE_OPERATIONAL)
466 ieee80211_agg_tx_operational(local, sta, tid);
Johannes Berg96f5e662009-02-12 00:51:53 +0100467
468 out:
Johannes Bergb8695a82009-02-10 21:25:46 +0100469 spin_unlock_bh(&sta->lock);
470 rcu_read_unlock();
471}
472EXPORT_SYMBOL(ieee80211_start_tx_ba_cb);
473
Johannes Bergc951ad32009-11-16 12:00:38 +0100474void ieee80211_start_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
Johannes Berg86ab6c52009-02-10 21:25:49 +0100475 const u8 *ra, u16 tid)
476{
Johannes Bergc951ad32009-11-16 12:00:38 +0100477 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
478 struct ieee80211_local *local = sdata->local;
Johannes Berg86ab6c52009-02-10 21:25:49 +0100479 struct ieee80211_ra_tid *ra_tid;
480 struct sk_buff *skb = dev_alloc_skb(0);
481
482 if (unlikely(!skb)) {
483#ifdef CONFIG_MAC80211_HT_DEBUG
484 if (net_ratelimit())
485 printk(KERN_WARNING "%s: Not enough memory, "
486 "dropping start BA session", skb->dev->name);
487#endif
488 return;
489 }
490 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
491 memcpy(&ra_tid->ra, ra, ETH_ALEN);
492 ra_tid->tid = tid;
Sujith0bc6b182009-11-18 11:42:14 +0530493 ra_tid->vif = vif;
Johannes Berg86ab6c52009-02-10 21:25:49 +0100494
495 skb->pkt_type = IEEE80211_ADDBA_MSG;
496 skb_queue_tail(&local->skb_queue, skb);
497 tasklet_schedule(&local->tasklet);
498}
499EXPORT_SYMBOL(ieee80211_start_tx_ba_cb_irqsafe);
500
Johannes Berg849b7962009-02-10 21:25:54 +0100501int __ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
502 enum ieee80211_back_parties initiator)
503{
504 u8 *state;
505 int ret;
506
507 /* check if the TID is in aggregation */
508 state = &sta->ampdu_mlme.tid_state_tx[tid];
509 spin_lock_bh(&sta->lock);
510
511 if (*state != HT_AGG_STATE_OPERATIONAL) {
512 ret = -ENOENT;
513 goto unlock;
514 }
515
516#ifdef CONFIG_MAC80211_HT_DEBUG
517 printk(KERN_DEBUG "Tx BA session stop requested for %pM tid %u\n",
518 sta->sta.addr, tid);
519#endif /* CONFIG_MAC80211_HT_DEBUG */
520
521 ret = ___ieee80211_stop_tx_ba_session(sta, tid, initiator);
522
523 unlock:
524 spin_unlock_bh(&sta->lock);
525 return ret;
526}
Johannes Bergb8695a82009-02-10 21:25:46 +0100527
Johannes Bergc951ad32009-11-16 12:00:38 +0100528int ieee80211_stop_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid,
Johannes Bergb8695a82009-02-10 21:25:46 +0100529 enum ieee80211_back_parties initiator)
530{
Johannes Bergc951ad32009-11-16 12:00:38 +0100531 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
532 struct ieee80211_sub_if_data *sdata = sta->sdata;
533 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100534
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100535 if (WARN_ON(!local->ops->ampdu_action))
536 return -EINVAL;
537
Johannes Bergb8695a82009-02-10 21:25:46 +0100538 if (tid >= STA_TID_NUM)
539 return -EINVAL;
540
Johannes Bergc951ad32009-11-16 12:00:38 +0100541 return __ieee80211_stop_tx_ba_session(sta, tid, initiator);
Johannes Bergb8695a82009-02-10 21:25:46 +0100542}
543EXPORT_SYMBOL(ieee80211_stop_tx_ba_session);
544
Johannes Bergc951ad32009-11-16 12:00:38 +0100545void ieee80211_stop_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u8 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100546{
Johannes Bergc951ad32009-11-16 12:00:38 +0100547 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
548 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100549 struct sta_info *sta;
550 u8 *state;
Johannes Bergb8695a82009-02-10 21:25:46 +0100551
552 if (tid >= STA_TID_NUM) {
553#ifdef CONFIG_MAC80211_HT_DEBUG
554 printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
555 tid, STA_TID_NUM);
556#endif
557 return;
558 }
559
560#ifdef CONFIG_MAC80211_HT_DEBUG
561 printk(KERN_DEBUG "Stopping Tx BA session for %pM tid %d\n",
562 ra, tid);
563#endif /* CONFIG_MAC80211_HT_DEBUG */
564
565 rcu_read_lock();
566 sta = sta_info_get(local, ra);
567 if (!sta) {
568#ifdef CONFIG_MAC80211_HT_DEBUG
569 printk(KERN_DEBUG "Could not find station: %pM\n", ra);
570#endif
571 rcu_read_unlock();
572 return;
573 }
574 state = &sta->ampdu_mlme.tid_state_tx[tid];
575
576 /* NOTE: no need to use sta->lock in this state check, as
577 * ieee80211_stop_tx_ba_session will let only one stop call to
578 * pass through per sta/tid
579 */
580 if ((*state & HT_AGG_STATE_REQ_STOP_BA_MSK) == 0) {
581#ifdef CONFIG_MAC80211_HT_DEBUG
582 printk(KERN_DEBUG "unexpected callback to A-MPDU stop\n");
583#endif
584 rcu_read_unlock();
585 return;
586 }
587
588 if (*state & HT_AGG_STATE_INITIATOR_MSK)
589 ieee80211_send_delba(sta->sdata, ra, tid,
590 WLAN_BACK_INITIATOR, WLAN_REASON_QSTA_NOT_USE);
591
Johannes Bergb8695a82009-02-10 21:25:46 +0100592 spin_lock_bh(&sta->lock);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100593 spin_lock(&local->ampdu_lock);
Johannes Berg96f5e662009-02-12 00:51:53 +0100594
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100595 ieee80211_agg_splice_packets(local, sta, tid);
Johannes Berg96f5e662009-02-12 00:51:53 +0100596
Johannes Bergb8695a82009-02-10 21:25:46 +0100597 *state = HT_AGG_STATE_IDLE;
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100598 /* from now on packets are no longer put onto sta->pending */
Johannes Bergb8695a82009-02-10 21:25:46 +0100599 kfree(sta->ampdu_mlme.tid_tx[tid]);
600 sta->ampdu_mlme.tid_tx[tid] = NULL;
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100601
602 ieee80211_agg_splice_finish(local, sta, tid);
603
604 spin_unlock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100605 spin_unlock_bh(&sta->lock);
606
607 rcu_read_unlock();
608}
609EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb);
610
Johannes Bergc951ad32009-11-16 12:00:38 +0100611void ieee80211_stop_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
Johannes Bergb8695a82009-02-10 21:25:46 +0100612 const u8 *ra, u16 tid)
613{
Johannes Bergc951ad32009-11-16 12:00:38 +0100614 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
615 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100616 struct ieee80211_ra_tid *ra_tid;
617 struct sk_buff *skb = dev_alloc_skb(0);
618
619 if (unlikely(!skb)) {
620#ifdef CONFIG_MAC80211_HT_DEBUG
621 if (net_ratelimit())
622 printk(KERN_WARNING "%s: Not enough memory, "
623 "dropping stop BA session", skb->dev->name);
624#endif
625 return;
626 }
627 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
628 memcpy(&ra_tid->ra, ra, ETH_ALEN);
629 ra_tid->tid = tid;
Sujith0bc6b182009-11-18 11:42:14 +0530630 ra_tid->vif = vif;
Johannes Bergb8695a82009-02-10 21:25:46 +0100631
632 skb->pkt_type = IEEE80211_DELBA_MSG;
633 skb_queue_tail(&local->skb_queue, skb);
634 tasklet_schedule(&local->tasklet);
635}
636EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb_irqsafe);
637
Johannes Berg86ab6c52009-02-10 21:25:49 +0100638
Johannes Bergb8695a82009-02-10 21:25:46 +0100639void ieee80211_process_addba_resp(struct ieee80211_local *local,
640 struct sta_info *sta,
641 struct ieee80211_mgmt *mgmt,
642 size_t len)
643{
Johannes Bergb1720232009-03-23 17:28:39 +0100644 u16 capab, tid;
Johannes Bergb8695a82009-02-10 21:25:46 +0100645 u8 *state;
646
647 capab = le16_to_cpu(mgmt->u.action.u.addba_resp.capab);
648 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
649
650 state = &sta->ampdu_mlme.tid_state_tx[tid];
651
Johannes Berg2171abc2009-10-29 08:34:00 +0100652 del_timer_sync(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
653
Johannes Bergb8695a82009-02-10 21:25:46 +0100654 spin_lock_bh(&sta->lock);
655
Johannes Berg2171abc2009-10-29 08:34:00 +0100656 if (!(*state & HT_ADDBA_REQUESTED_MSK))
657 goto timer_still_needed;
Johannes Bergb8695a82009-02-10 21:25:46 +0100658
659 if (mgmt->u.action.u.addba_resp.dialog_token !=
660 sta->ampdu_mlme.tid_tx[tid]->dialog_token) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100661#ifdef CONFIG_MAC80211_HT_DEBUG
662 printk(KERN_DEBUG "wrong addBA response token, tid %d\n", tid);
663#endif /* CONFIG_MAC80211_HT_DEBUG */
Johannes Berg2171abc2009-10-29 08:34:00 +0100664 goto timer_still_needed;
Johannes Bergb8695a82009-02-10 21:25:46 +0100665 }
666
Johannes Bergb8695a82009-02-10 21:25:46 +0100667#ifdef CONFIG_MAC80211_HT_DEBUG
668 printk(KERN_DEBUG "switched off addBA timer for tid %d \n", tid);
669#endif /* CONFIG_MAC80211_HT_DEBUG */
Johannes Berg2171abc2009-10-29 08:34:00 +0100670
Johannes Bergb8695a82009-02-10 21:25:46 +0100671 if (le16_to_cpu(mgmt->u.action.u.addba_resp.status)
672 == WLAN_STATUS_SUCCESS) {
Johannes Berg96f5e662009-02-12 00:51:53 +0100673 u8 curstate = *state;
Johannes Bergb8695a82009-02-10 21:25:46 +0100674
Johannes Berg96f5e662009-02-12 00:51:53 +0100675 *state |= HT_ADDBA_RECEIVED_MSK;
676
Johannes Bergb1720232009-03-23 17:28:39 +0100677 if (*state != curstate && *state == HT_AGG_STATE_OPERATIONAL)
678 ieee80211_agg_tx_operational(local, sta, tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100679
Johannes Bergb1720232009-03-23 17:28:39 +0100680 sta->ampdu_mlme.addba_req_num[tid] = 0;
Johannes Bergb8695a82009-02-10 21:25:46 +0100681 } else {
Johannes Berg849b7962009-02-10 21:25:54 +0100682 ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
Johannes Bergb8695a82009-02-10 21:25:46 +0100683 }
Johannes Berg2171abc2009-10-29 08:34:00 +0100684
685 goto out;
686
687 timer_still_needed:
688 add_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
689 out:
Johannes Berg849b7962009-02-10 21:25:54 +0100690 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100691}