blob: 2b6a0c47ed532d42ae7ab27ad406a938dc9bf515 [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 "
Johannes Berg47846c92009-11-25 17:46:19 +010061 "for addba request frame\n", sdata->name);
Johannes Bergb8695a82009-02-10 21:25:46 +010062 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);
Johannes Berg47846c92009-11-25 17:46:19 +010068 memcpy(mgmt->sa, sdata->vif.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 Berg47846c92009-11-25 17:46:19 +010071 memcpy(mgmt->bssid, sdata->vif.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 "
Johannes Berg47846c92009-11-25 17:46:19 +0100107 "bar frame\n", sdata->name);
Johannes Bergb8695a82009-02-10 21:25:46 +0100108 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);
Johannes Berg47846c92009-11-25 17:46:19 +0100116 memcpy(bar->ta, sdata->vif.addr, ETH_ALEN);
Johannes Bergb8695a82009-02-10 21:25:46 +0100117 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 Berg827d42c2009-11-22 12:28:41 +0100127int ___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
Johannes Berg827d42c2009-11-22 12:28:41 +0100134#ifdef CONFIG_MAC80211_HT_DEBUG
135 printk(KERN_DEBUG "Tx BA session stop requested for %pM tid %u\n",
136 sta->sta.addr, tid);
137#endif /* CONFIG_MAC80211_HT_DEBUG */
138
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100139 state = &sta->ampdu_mlme.tid_state_tx[tid];
140
Vasanthakumar Thiagarajan736708b2009-06-09 14:11:46 +0530141 if (*state == HT_AGG_STATE_OPERATIONAL)
142 sta->ampdu_mlme.addba_req_num[tid] = 0;
143
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100144 *state = HT_AGG_STATE_REQ_STOP_BA_MSK |
145 (initiator << HT_AGG_STATE_INITIATOR_SHIFT);
146
Johannes Berg12375ef2009-11-25 20:30:31 +0100147 ret = drv_ampdu_action(local, sta->sdata,
Johannes Bergc951ad32009-11-16 12:00:38 +0100148 IEEE80211_AMPDU_TX_STOP,
Johannes Berg24487982009-04-23 18:52:52 +0200149 &sta->sta, tid, NULL);
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100150
151 /* HW shall not deny going back to legacy */
152 if (WARN_ON(ret)) {
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100153 /*
154 * We may have pending packets get stuck in this case...
155 * Not bothering with a workaround for now.
156 */
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100157 }
158
159 return ret;
160}
161
Johannes Bergb8695a82009-02-10 21:25:46 +0100162/*
163 * After sending add Block Ack request we activated a timer until
164 * add Block Ack response will arrive from the recipient.
165 * If this timer expires sta_addba_resp_timer_expired will be executed.
166 */
167static void sta_addba_resp_timer_expired(unsigned long data)
168{
169 /* not an elegant detour, but there is no choice as the timer passes
170 * only one argument, and both sta_info and TID are needed, so init
171 * flow in sta_info_create gives the TID as data, while the timer_to_id
172 * array gives the sta through container_of */
173 u16 tid = *(u8 *)data;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100174 struct sta_info *sta = container_of((void *)data,
Johannes Bergb8695a82009-02-10 21:25:46 +0100175 struct sta_info, timer_to_tid[tid]);
Johannes Bergb8695a82009-02-10 21:25:46 +0100176 u8 *state;
177
Johannes Bergb8695a82009-02-10 21:25:46 +0100178 state = &sta->ampdu_mlme.tid_state_tx[tid];
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100179
Johannes Bergb8695a82009-02-10 21:25:46 +0100180 /* check if the TID waits for addBA response */
181 spin_lock_bh(&sta->lock);
Zhu Yi3dc1de02009-12-28 16:57:15 +0800182 if ((*state & (HT_ADDBA_REQUESTED_MSK | HT_ADDBA_RECEIVED_MSK |
183 HT_AGG_STATE_REQ_STOP_BA_MSK)) !=
Johannes Berg8ade0082009-11-18 17:15:06 +0100184 HT_ADDBA_REQUESTED_MSK) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100185 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100186#ifdef CONFIG_MAC80211_HT_DEBUG
187 printk(KERN_DEBUG "timer expired on tid %d but we are not "
Johannes Berg67e0f392010-04-19 11:03:13 +0200188 "(or no longer) expecting addBA response there\n",
Johannes Berg8ade0082009-11-18 17:15:06 +0100189 tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100190#endif
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100191 return;
Johannes Bergb8695a82009-02-10 21:25:46 +0100192 }
193
194#ifdef CONFIG_MAC80211_HT_DEBUG
195 printk(KERN_DEBUG "addBA response timer expired on tid %d\n", tid);
196#endif
197
Johannes Berg849b7962009-02-10 21:25:54 +0100198 ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
Johannes Bergb8695a82009-02-10 21:25:46 +0100199 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100200}
201
Johannes Berg96f5e662009-02-12 00:51:53 +0100202static inline int ieee80211_ac_from_tid(int tid)
203{
204 return ieee802_1d_to_ac[tid & 7];
205}
206
Johannes Bergc951ad32009-11-16 12:00:38 +0100207int ieee80211_start_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100208{
Johannes Bergc951ad32009-11-16 12:00:38 +0100209 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
210 struct ieee80211_sub_if_data *sdata = sta->sdata;
211 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100212 u8 *state;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100213 int ret = 0;
Johannes Berg96f5e662009-02-12 00:51:53 +0100214 u16 start_seq_num;
Johannes Bergb8695a82009-02-10 21:25:46 +0100215
Johannes Bergb5878a22010-04-07 16:48:40 +0200216 trace_api_start_tx_ba_session(pubsta, tid);
217
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100218 if (WARN_ON(!local->ops->ampdu_action))
219 return -EINVAL;
220
Johannes Bergc951ad32009-11-16 12:00:38 +0100221 if ((tid >= STA_TID_NUM) ||
222 !(local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION))
Johannes Bergb8695a82009-02-10 21:25:46 +0100223 return -EINVAL;
224
225#ifdef CONFIG_MAC80211_HT_DEBUG
226 printk(KERN_DEBUG "Open BA session requested for %pM tid %u\n",
Johannes Bergc951ad32009-11-16 12:00:38 +0100227 pubsta->addr, tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100228#endif /* CONFIG_MAC80211_HT_DEBUG */
229
Johannes Berg8abd3f92009-02-10 21:25:47 +0100230 /*
231 * The aggregation code is not prepared to handle
232 * anything but STA/AP due to the BSSID handling.
233 * IBSS could work in the code but isn't supported
234 * by drivers or the standard.
235 */
Johannes Bergc951ad32009-11-16 12:00:38 +0100236 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
237 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
238 sdata->vif.type != NL80211_IFTYPE_AP)
239 return -EINVAL;
Johannes Berg8abd3f92009-02-10 21:25:47 +0100240
Sujith4cad6c72010-02-10 14:52:21 +0530241 if (test_sta_flags(sta, WLAN_STA_DISASSOC)) {
242#ifdef CONFIG_MAC80211_HT_DEBUG
243 printk(KERN_DEBUG "Disassociation is in progress. "
244 "Denying BA session request\n");
245#endif
246 return -EINVAL;
247 }
248
Johannes Berg618f3562010-04-06 11:18:46 +0200249 if (test_sta_flags(sta, WLAN_STA_BLOCK_BA)) {
Sujith722f0692009-03-17 08:50:06 +0530250#ifdef CONFIG_MAC80211_HT_DEBUG
251 printk(KERN_DEBUG "Suspend in progress. "
252 "Denying BA session request\n");
253#endif
Johannes Bergc951ad32009-11-16 12:00:38 +0100254 return -EINVAL;
Sujith722f0692009-03-17 08:50:06 +0530255 }
256
Johannes Bergb8695a82009-02-10 21:25:46 +0100257 spin_lock_bh(&sta->lock);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100258 spin_lock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100259
260 /* we have tried too many times, receiver does not want A-MPDU */
261 if (sta->ampdu_mlme.addba_req_num[tid] > HT_AGG_MAX_RETRIES) {
262 ret = -EBUSY;
263 goto err_unlock_sta;
264 }
265
266 state = &sta->ampdu_mlme.tid_state_tx[tid];
267 /* check if the TID is not in aggregation flow already */
268 if (*state != HT_AGG_STATE_IDLE) {
269#ifdef CONFIG_MAC80211_HT_DEBUG
270 printk(KERN_DEBUG "BA request denied - session is not "
271 "idle on tid %u\n", tid);
272#endif /* CONFIG_MAC80211_HT_DEBUG */
273 ret = -EAGAIN;
274 goto err_unlock_sta;
275 }
276
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100277 /*
278 * While we're asking the driver about the aggregation,
279 * stop the AC queue so that we don't have to worry
280 * about frames that came in while we were doing that,
281 * which would require us to put them to the AC pending
282 * afterwards which just makes the code more complex.
283 */
284 ieee80211_stop_queue_by_reason(
285 &local->hw, ieee80211_ac_from_tid(tid),
286 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
287
Johannes Bergb8695a82009-02-10 21:25:46 +0100288 /* prepare A-MPDU MLME for Tx aggregation */
289 sta->ampdu_mlme.tid_tx[tid] =
290 kmalloc(sizeof(struct tid_ampdu_tx), GFP_ATOMIC);
291 if (!sta->ampdu_mlme.tid_tx[tid]) {
292#ifdef CONFIG_MAC80211_HT_DEBUG
293 if (net_ratelimit())
294 printk(KERN_ERR "allocate tx mlme to tid %d failed\n",
295 tid);
296#endif
297 ret = -ENOMEM;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100298 goto err_wake_queue;
Johannes Bergb8695a82009-02-10 21:25:46 +0100299 }
Johannes Berg96f5e662009-02-12 00:51:53 +0100300
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100301 skb_queue_head_init(&sta->ampdu_mlme.tid_tx[tid]->pending);
302
Johannes Bergb8695a82009-02-10 21:25:46 +0100303 /* Tx timer */
304 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.function =
305 sta_addba_resp_timer_expired;
306 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.data =
307 (unsigned long)&sta->timer_to_tid[tid];
308 init_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
309
Johannes Bergb8695a82009-02-10 21:25:46 +0100310 /* Ok, the Addba frame hasn't been sent yet, but if the driver calls the
311 * call back right away, it must see that the flow has begun */
312 *state |= HT_ADDBA_REQUESTED_MSK;
313
Christian Lamparterf3f66b62010-01-04 00:52:56 +0100314 start_seq_num = sta->tid_seq[tid] >> 4;
Johannes Bergb8695a82009-02-10 21:25:46 +0100315
Johannes Berg12375ef2009-11-25 20:30:31 +0100316 ret = drv_ampdu_action(local, sdata, IEEE80211_AMPDU_TX_START,
Johannes Bergc951ad32009-11-16 12:00:38 +0100317 pubsta, tid, &start_seq_num);
Johannes Bergb8695a82009-02-10 21:25:46 +0100318
319 if (ret) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100320#ifdef CONFIG_MAC80211_HT_DEBUG
321 printk(KERN_DEBUG "BA request denied - HW unavailable for"
322 " tid %d\n", tid);
323#endif /* CONFIG_MAC80211_HT_DEBUG */
324 *state = HT_AGG_STATE_IDLE;
Johannes Berg96f5e662009-02-12 00:51:53 +0100325 goto err_free;
Johannes Bergb8695a82009-02-10 21:25:46 +0100326 }
327
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100328 /* Driver vetoed or OKed, but we can take packets again now */
329 ieee80211_wake_queue_by_reason(
330 &local->hw, ieee80211_ac_from_tid(tid),
331 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
332
333 spin_unlock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100334 spin_unlock_bh(&sta->lock);
335
336 /* send an addBA request */
337 sta->ampdu_mlme.dialog_token_allocator++;
338 sta->ampdu_mlme.tid_tx[tid]->dialog_token =
339 sta->ampdu_mlme.dialog_token_allocator;
340 sta->ampdu_mlme.tid_tx[tid]->ssn = start_seq_num;
341
Johannes Bergc951ad32009-11-16 12:00:38 +0100342 ieee80211_send_addba_request(sdata, pubsta->addr, tid,
Johannes Bergb8695a82009-02-10 21:25:46 +0100343 sta->ampdu_mlme.tid_tx[tid]->dialog_token,
344 sta->ampdu_mlme.tid_tx[tid]->ssn,
345 0x40, 5000);
Vasanthakumar Thiagarajan736708b2009-06-09 14:11:46 +0530346 sta->ampdu_mlme.addba_req_num[tid]++;
Johannes Bergb8695a82009-02-10 21:25:46 +0100347 /* activate the timer for the recipient's addBA response */
348 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.expires =
349 jiffies + ADDBA_RESP_INTERVAL;
350 add_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
351#ifdef CONFIG_MAC80211_HT_DEBUG
352 printk(KERN_DEBUG "activated addBA response timer on tid %d\n", tid);
353#endif
Johannes Bergc951ad32009-11-16 12:00:38 +0100354 return 0;
Johannes Bergb8695a82009-02-10 21:25:46 +0100355
Johannes Berg96f5e662009-02-12 00:51:53 +0100356 err_free:
Johannes Bergb8695a82009-02-10 21:25:46 +0100357 kfree(sta->ampdu_mlme.tid_tx[tid]);
358 sta->ampdu_mlme.tid_tx[tid] = NULL;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100359 err_wake_queue:
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100360 ieee80211_wake_queue_by_reason(
361 &local->hw, ieee80211_ac_from_tid(tid),
362 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
Johannes Berg96f5e662009-02-12 00:51:53 +0100363 err_unlock_sta:
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100364 spin_unlock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100365 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100366 return ret;
367}
368EXPORT_SYMBOL(ieee80211_start_tx_ba_session);
369
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100370/*
371 * splice packets from the STA's pending to the local pending,
372 * requires a call to ieee80211_agg_splice_finish and holding
373 * local->ampdu_lock across both calls.
374 */
375static void ieee80211_agg_splice_packets(struct ieee80211_local *local,
376 struct sta_info *sta, u16 tid)
377{
378 unsigned long flags;
379 u16 queue = ieee80211_ac_from_tid(tid);
380
381 ieee80211_stop_queue_by_reason(
382 &local->hw, queue,
383 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
384
Luis R. Rodriguez416fbdf2009-08-11 13:10:33 -0700385 if (!(sta->ampdu_mlme.tid_state_tx[tid] & HT_ADDBA_REQUESTED_MSK))
386 return;
387
388 if (WARN(!sta->ampdu_mlme.tid_tx[tid],
389 "TID %d gone but expected when splicing aggregates from"
390 "the pending queue\n", tid))
391 return;
392
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100393 if (!skb_queue_empty(&sta->ampdu_mlme.tid_tx[tid]->pending)) {
394 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100395 /* copy over remaining packets */
396 skb_queue_splice_tail_init(
397 &sta->ampdu_mlme.tid_tx[tid]->pending,
398 &local->pending[queue]);
399 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
400 }
401}
402
403static void ieee80211_agg_splice_finish(struct ieee80211_local *local,
404 struct sta_info *sta, u16 tid)
405{
406 u16 queue = ieee80211_ac_from_tid(tid);
407
408 ieee80211_wake_queue_by_reason(
409 &local->hw, queue,
410 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
411}
412
413/* caller must hold sta->lock */
Johannes Bergb1720232009-03-23 17:28:39 +0100414static void ieee80211_agg_tx_operational(struct ieee80211_local *local,
415 struct sta_info *sta, u16 tid)
416{
417#ifdef CONFIG_MAC80211_HT_DEBUG
Frans Pop55f98932010-03-24 19:46:29 +0100418 printk(KERN_DEBUG "Aggregation is on for tid %d\n", tid);
Johannes Bergb1720232009-03-23 17:28:39 +0100419#endif
420
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100421 spin_lock(&local->ampdu_lock);
422 ieee80211_agg_splice_packets(local, sta, tid);
423 /*
424 * NB: we rely on sta->lock being taken in the TX
425 * processing here when adding to the pending queue,
426 * otherwise we could only change the state of the
427 * session to OPERATIONAL _here_.
428 */
429 ieee80211_agg_splice_finish(local, sta, tid);
430 spin_unlock(&local->ampdu_lock);
Johannes Bergb1720232009-03-23 17:28:39 +0100431
Johannes Berg12375ef2009-11-25 20:30:31 +0100432 drv_ampdu_action(local, sta->sdata,
Johannes Bergc951ad32009-11-16 12:00:38 +0100433 IEEE80211_AMPDU_TX_OPERATIONAL,
Johannes Berg24487982009-04-23 18:52:52 +0200434 &sta->sta, tid, NULL);
Johannes Bergb1720232009-03-23 17:28:39 +0100435}
436
Johannes Bergc951ad32009-11-16 12:00:38 +0100437void ieee80211_start_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100438{
Johannes Bergc951ad32009-11-16 12:00:38 +0100439 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
440 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100441 struct sta_info *sta;
442 u8 *state;
443
Johannes Bergb5878a22010-04-07 16:48:40 +0200444 trace_api_start_tx_ba_cb(sdata, ra, tid);
445
Johannes Bergb8695a82009-02-10 21:25:46 +0100446 if (tid >= STA_TID_NUM) {
447#ifdef CONFIG_MAC80211_HT_DEBUG
448 printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
449 tid, STA_TID_NUM);
450#endif
451 return;
452 }
453
454 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100455 sta = sta_info_get(sdata, ra);
Johannes Bergb8695a82009-02-10 21:25:46 +0100456 if (!sta) {
457 rcu_read_unlock();
458#ifdef CONFIG_MAC80211_HT_DEBUG
459 printk(KERN_DEBUG "Could not find station: %pM\n", ra);
460#endif
461 return;
462 }
463
464 state = &sta->ampdu_mlme.tid_state_tx[tid];
465 spin_lock_bh(&sta->lock);
466
Johannes Berg96f5e662009-02-12 00:51:53 +0100467 if (WARN_ON(!(*state & HT_ADDBA_REQUESTED_MSK))) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100468#ifdef CONFIG_MAC80211_HT_DEBUG
469 printk(KERN_DEBUG "addBA was not requested yet, state is %d\n",
470 *state);
471#endif
472 spin_unlock_bh(&sta->lock);
473 rcu_read_unlock();
474 return;
475 }
476
Johannes Berg96f5e662009-02-12 00:51:53 +0100477 if (WARN_ON(*state & HT_ADDBA_DRV_READY_MSK))
478 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100479
480 *state |= HT_ADDBA_DRV_READY_MSK;
481
Johannes Bergb1720232009-03-23 17:28:39 +0100482 if (*state == HT_AGG_STATE_OPERATIONAL)
483 ieee80211_agg_tx_operational(local, sta, tid);
Johannes Berg96f5e662009-02-12 00:51:53 +0100484
485 out:
Johannes Bergb8695a82009-02-10 21:25:46 +0100486 spin_unlock_bh(&sta->lock);
487 rcu_read_unlock();
488}
489EXPORT_SYMBOL(ieee80211_start_tx_ba_cb);
490
Johannes Bergc951ad32009-11-16 12:00:38 +0100491void ieee80211_start_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
Johannes Berg86ab6c52009-02-10 21:25:49 +0100492 const u8 *ra, u16 tid)
493{
Johannes Bergc951ad32009-11-16 12:00:38 +0100494 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
495 struct ieee80211_local *local = sdata->local;
Johannes Berg86ab6c52009-02-10 21:25:49 +0100496 struct ieee80211_ra_tid *ra_tid;
497 struct sk_buff *skb = dev_alloc_skb(0);
498
499 if (unlikely(!skb)) {
500#ifdef CONFIG_MAC80211_HT_DEBUG
501 if (net_ratelimit())
502 printk(KERN_WARNING "%s: Not enough memory, "
Johannes Berg47846c92009-11-25 17:46:19 +0100503 "dropping start BA session", sdata->name);
Johannes Berg86ab6c52009-02-10 21:25:49 +0100504#endif
505 return;
506 }
507 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
508 memcpy(&ra_tid->ra, ra, ETH_ALEN);
509 ra_tid->tid = tid;
Sujith0bc6b182009-11-18 11:42:14 +0530510 ra_tid->vif = vif;
Johannes Berg86ab6c52009-02-10 21:25:49 +0100511
512 skb->pkt_type = IEEE80211_ADDBA_MSG;
513 skb_queue_tail(&local->skb_queue, skb);
514 tasklet_schedule(&local->tasklet);
515}
516EXPORT_SYMBOL(ieee80211_start_tx_ba_cb_irqsafe);
517
Johannes Berg849b7962009-02-10 21:25:54 +0100518int __ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
519 enum ieee80211_back_parties initiator)
520{
521 u8 *state;
522 int ret;
523
524 /* check if the TID is in aggregation */
525 state = &sta->ampdu_mlme.tid_state_tx[tid];
526 spin_lock_bh(&sta->lock);
527
528 if (*state != HT_AGG_STATE_OPERATIONAL) {
529 ret = -ENOENT;
530 goto unlock;
531 }
532
Johannes Berg849b7962009-02-10 21:25:54 +0100533 ret = ___ieee80211_stop_tx_ba_session(sta, tid, initiator);
534
535 unlock:
536 spin_unlock_bh(&sta->lock);
537 return ret;
538}
Johannes Bergb8695a82009-02-10 21:25:46 +0100539
Johannes Bergc951ad32009-11-16 12:00:38 +0100540int ieee80211_stop_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid,
Johannes Bergb8695a82009-02-10 21:25:46 +0100541 enum ieee80211_back_parties initiator)
542{
Johannes Bergc951ad32009-11-16 12:00:38 +0100543 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
544 struct ieee80211_sub_if_data *sdata = sta->sdata;
545 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100546
Johannes Bergb5878a22010-04-07 16:48:40 +0200547 trace_api_stop_tx_ba_session(pubsta, tid, initiator);
548
Johannes Berg42531192009-11-20 09:15:51 +0100549 if (!local->ops->ampdu_action)
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100550 return -EINVAL;
551
Johannes Bergb8695a82009-02-10 21:25:46 +0100552 if (tid >= STA_TID_NUM)
553 return -EINVAL;
554
Johannes Bergc951ad32009-11-16 12:00:38 +0100555 return __ieee80211_stop_tx_ba_session(sta, tid, initiator);
Johannes Bergb8695a82009-02-10 21:25:46 +0100556}
557EXPORT_SYMBOL(ieee80211_stop_tx_ba_session);
558
Johannes Bergc951ad32009-11-16 12:00:38 +0100559void ieee80211_stop_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u8 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100560{
Johannes Bergc951ad32009-11-16 12:00:38 +0100561 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
562 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100563 struct sta_info *sta;
564 u8 *state;
Johannes Bergb8695a82009-02-10 21:25:46 +0100565
Johannes Bergb5878a22010-04-07 16:48:40 +0200566 trace_api_stop_tx_ba_cb(sdata, ra, tid);
567
Johannes Bergb8695a82009-02-10 21:25:46 +0100568 if (tid >= STA_TID_NUM) {
569#ifdef CONFIG_MAC80211_HT_DEBUG
570 printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
571 tid, STA_TID_NUM);
572#endif
573 return;
574 }
575
576#ifdef CONFIG_MAC80211_HT_DEBUG
577 printk(KERN_DEBUG "Stopping Tx BA session for %pM tid %d\n",
578 ra, tid);
579#endif /* CONFIG_MAC80211_HT_DEBUG */
580
581 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100582 sta = sta_info_get(sdata, ra);
Johannes Bergb8695a82009-02-10 21:25:46 +0100583 if (!sta) {
584#ifdef CONFIG_MAC80211_HT_DEBUG
585 printk(KERN_DEBUG "Could not find station: %pM\n", ra);
586#endif
587 rcu_read_unlock();
588 return;
589 }
590 state = &sta->ampdu_mlme.tid_state_tx[tid];
591
592 /* NOTE: no need to use sta->lock in this state check, as
593 * ieee80211_stop_tx_ba_session will let only one stop call to
594 * pass through per sta/tid
595 */
596 if ((*state & HT_AGG_STATE_REQ_STOP_BA_MSK) == 0) {
597#ifdef CONFIG_MAC80211_HT_DEBUG
598 printk(KERN_DEBUG "unexpected callback to A-MPDU stop\n");
599#endif
600 rcu_read_unlock();
601 return;
602 }
603
604 if (*state & HT_AGG_STATE_INITIATOR_MSK)
605 ieee80211_send_delba(sta->sdata, ra, tid,
606 WLAN_BACK_INITIATOR, WLAN_REASON_QSTA_NOT_USE);
607
Johannes Bergb8695a82009-02-10 21:25:46 +0100608 spin_lock_bh(&sta->lock);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100609 spin_lock(&local->ampdu_lock);
Johannes Berg96f5e662009-02-12 00:51:53 +0100610
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100611 ieee80211_agg_splice_packets(local, sta, tid);
Johannes Berg96f5e662009-02-12 00:51:53 +0100612
Johannes Bergb8695a82009-02-10 21:25:46 +0100613 *state = HT_AGG_STATE_IDLE;
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100614 /* from now on packets are no longer put onto sta->pending */
Johannes Bergb8695a82009-02-10 21:25:46 +0100615 kfree(sta->ampdu_mlme.tid_tx[tid]);
616 sta->ampdu_mlme.tid_tx[tid] = NULL;
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100617
618 ieee80211_agg_splice_finish(local, sta, tid);
619
620 spin_unlock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100621 spin_unlock_bh(&sta->lock);
622
623 rcu_read_unlock();
624}
625EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb);
626
Johannes Bergc951ad32009-11-16 12:00:38 +0100627void ieee80211_stop_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
Johannes Bergb8695a82009-02-10 21:25:46 +0100628 const u8 *ra, u16 tid)
629{
Johannes Bergc951ad32009-11-16 12:00:38 +0100630 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
631 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100632 struct ieee80211_ra_tid *ra_tid;
633 struct sk_buff *skb = dev_alloc_skb(0);
634
635 if (unlikely(!skb)) {
636#ifdef CONFIG_MAC80211_HT_DEBUG
637 if (net_ratelimit())
638 printk(KERN_WARNING "%s: Not enough memory, "
Johannes Berg47846c92009-11-25 17:46:19 +0100639 "dropping stop BA session", sdata->name);
Johannes Bergb8695a82009-02-10 21:25:46 +0100640#endif
641 return;
642 }
643 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
644 memcpy(&ra_tid->ra, ra, ETH_ALEN);
645 ra_tid->tid = tid;
Sujith0bc6b182009-11-18 11:42:14 +0530646 ra_tid->vif = vif;
Johannes Bergb8695a82009-02-10 21:25:46 +0100647
648 skb->pkt_type = IEEE80211_DELBA_MSG;
649 skb_queue_tail(&local->skb_queue, skb);
650 tasklet_schedule(&local->tasklet);
651}
652EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb_irqsafe);
653
Johannes Berg86ab6c52009-02-10 21:25:49 +0100654
Johannes Bergb8695a82009-02-10 21:25:46 +0100655void ieee80211_process_addba_resp(struct ieee80211_local *local,
656 struct sta_info *sta,
657 struct ieee80211_mgmt *mgmt,
658 size_t len)
659{
Johannes Bergb1720232009-03-23 17:28:39 +0100660 u16 capab, tid;
Johannes Bergb8695a82009-02-10 21:25:46 +0100661 u8 *state;
662
663 capab = le16_to_cpu(mgmt->u.action.u.addba_resp.capab);
664 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
665
666 state = &sta->ampdu_mlme.tid_state_tx[tid];
667
668 spin_lock_bh(&sta->lock);
669
Johannes Berg2171abc2009-10-29 08:34:00 +0100670 if (!(*state & HT_ADDBA_REQUESTED_MSK))
Johannes Berg8ade0082009-11-18 17:15:06 +0100671 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100672
673 if (mgmt->u.action.u.addba_resp.dialog_token !=
674 sta->ampdu_mlme.tid_tx[tid]->dialog_token) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100675#ifdef CONFIG_MAC80211_HT_DEBUG
676 printk(KERN_DEBUG "wrong addBA response token, tid %d\n", tid);
677#endif /* CONFIG_MAC80211_HT_DEBUG */
Johannes Berg8ade0082009-11-18 17:15:06 +0100678 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100679 }
680
Johannes Berg8ade0082009-11-18 17:15:06 +0100681 del_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
682
Johannes Bergb8695a82009-02-10 21:25:46 +0100683#ifdef CONFIG_MAC80211_HT_DEBUG
Frans Pop55f98932010-03-24 19:46:29 +0100684 printk(KERN_DEBUG "switched off addBA timer for tid %d\n", tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100685#endif /* CONFIG_MAC80211_HT_DEBUG */
Johannes Berg2171abc2009-10-29 08:34:00 +0100686
Johannes Bergb8695a82009-02-10 21:25:46 +0100687 if (le16_to_cpu(mgmt->u.action.u.addba_resp.status)
688 == WLAN_STATUS_SUCCESS) {
Johannes Berg96f5e662009-02-12 00:51:53 +0100689 u8 curstate = *state;
Johannes Bergb8695a82009-02-10 21:25:46 +0100690
Johannes Berg96f5e662009-02-12 00:51:53 +0100691 *state |= HT_ADDBA_RECEIVED_MSK;
692
Johannes Bergb1720232009-03-23 17:28:39 +0100693 if (*state != curstate && *state == HT_AGG_STATE_OPERATIONAL)
694 ieee80211_agg_tx_operational(local, sta, tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100695
Johannes Bergb1720232009-03-23 17:28:39 +0100696 sta->ampdu_mlme.addba_req_num[tid] = 0;
Johannes Bergb8695a82009-02-10 21:25:46 +0100697 } else {
Johannes Berg849b7962009-02-10 21:25:54 +0100698 ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
Johannes Bergb8695a82009-02-10 21:25:46 +0100699 }
Johannes Berg2171abc2009-10-29 08:34:00 +0100700
Johannes Berg2171abc2009-10-29 08:34:00 +0100701 out:
Johannes Berg849b7962009-02-10 21:25:54 +0100702 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100703}