blob: c7b7ac40316a836a6bd561373573aa32a749f2e3 [file] [log] [blame]
Johannes Bergb8695a82009-02-10 21:25:46 +01001/*
2 * HT handling
3 *
4 * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi>
5 * Copyright 2002-2005, Instant802 Networks, Inc.
6 * Copyright 2005-2006, Devicescape Software, Inc.
7 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
8 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
9 * Copyright 2007-2009, Intel Corporation
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
16#include <linux/ieee80211.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Johannes Bergb8695a82009-02-10 21:25:46 +010018#include <net/mac80211.h>
19#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020020#include "driver-ops.h"
Johannes Bergb8695a82009-02-10 21:25:46 +010021#include "wme.h"
22
Johannes Berg86ab6c52009-02-10 21:25:49 +010023/**
24 * DOC: TX aggregation
25 *
26 * Aggregation on the TX side requires setting the hardware flag
27 * %IEEE80211_HW_AMPDU_AGGREGATION as well as, if present, the @ampdu_queues
28 * hardware parameter to the number of hardware AMPDU queues. If there are no
29 * hardware queues then the driver will (currently) have to do all frame
30 * buffering.
31 *
32 * When TX aggregation is started by some subsystem (usually the rate control
33 * algorithm would be appropriate) by calling the
34 * ieee80211_start_tx_ba_session() function, the driver will be notified via
35 * its @ampdu_action function, with the %IEEE80211_AMPDU_TX_START action.
36 *
37 * In response to that, the driver is later required to call the
38 * ieee80211_start_tx_ba_cb() (or ieee80211_start_tx_ba_cb_irqsafe())
39 * function, which will start the aggregation session.
40 *
41 * Similarly, when the aggregation session is stopped by
42 * ieee80211_stop_tx_ba_session(), the driver's @ampdu_action function will
43 * be called with the action %IEEE80211_AMPDU_TX_STOP. In this case, the
44 * call must not fail, and the driver must later call ieee80211_stop_tx_ba_cb()
45 * (or ieee80211_stop_tx_ba_cb_irqsafe()).
46 */
47
Johannes Bergb8695a82009-02-10 21:25:46 +010048static void ieee80211_send_addba_request(struct ieee80211_sub_if_data *sdata,
49 const u8 *da, u16 tid,
50 u8 dialog_token, u16 start_seq_num,
51 u16 agg_size, u16 timeout)
52{
53 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +010054 struct sk_buff *skb;
55 struct ieee80211_mgmt *mgmt;
56 u16 capab;
57
58 skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom);
59
60 if (!skb) {
61 printk(KERN_ERR "%s: failed to allocate buffer "
Johannes Berg47846c92009-11-25 17:46:19 +010062 "for addba request frame\n", sdata->name);
Johannes Bergb8695a82009-02-10 21:25:46 +010063 return;
64 }
65 skb_reserve(skb, local->hw.extra_tx_headroom);
66 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
67 memset(mgmt, 0, 24);
68 memcpy(mgmt->da, da, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +010069 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg8abd3f92009-02-10 21:25:47 +010070 if (sdata->vif.type == NL80211_IFTYPE_AP ||
71 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg47846c92009-11-25 17:46:19 +010072 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +010073 else if (sdata->vif.type == NL80211_IFTYPE_STATION)
74 memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
Johannes Bergb8695a82009-02-10 21:25:46 +010075
76 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
77 IEEE80211_STYPE_ACTION);
78
79 skb_put(skb, 1 + sizeof(mgmt->u.action.u.addba_req));
80
81 mgmt->u.action.category = WLAN_CATEGORY_BACK;
82 mgmt->u.action.u.addba_req.action_code = WLAN_ACTION_ADDBA_REQ;
83
84 mgmt->u.action.u.addba_req.dialog_token = dialog_token;
85 capab = (u16)(1 << 1); /* bit 1 aggregation policy */
86 capab |= (u16)(tid << 2); /* bit 5:2 TID number */
87 capab |= (u16)(agg_size << 6); /* bit 15:6 max size of aggergation */
88
89 mgmt->u.action.u.addba_req.capab = cpu_to_le16(capab);
90
91 mgmt->u.action.u.addba_req.timeout = cpu_to_le16(timeout);
92 mgmt->u.action.u.addba_req.start_seq_num =
93 cpu_to_le16(start_seq_num << 4);
94
Johannes Berg62ae67b2009-11-18 18:42:05 +010095 ieee80211_tx_skb(sdata, skb);
Johannes Bergb8695a82009-02-10 21:25:46 +010096}
97
98void ieee80211_send_bar(struct ieee80211_sub_if_data *sdata, u8 *ra, u16 tid, u16 ssn)
99{
100 struct ieee80211_local *local = sdata->local;
101 struct sk_buff *skb;
102 struct ieee80211_bar *bar;
103 u16 bar_control = 0;
104
105 skb = dev_alloc_skb(sizeof(*bar) + local->hw.extra_tx_headroom);
106 if (!skb) {
107 printk(KERN_ERR "%s: failed to allocate buffer for "
Johannes Berg47846c92009-11-25 17:46:19 +0100108 "bar frame\n", sdata->name);
Johannes Bergb8695a82009-02-10 21:25:46 +0100109 return;
110 }
111 skb_reserve(skb, local->hw.extra_tx_headroom);
112 bar = (struct ieee80211_bar *)skb_put(skb, sizeof(*bar));
113 memset(bar, 0, sizeof(*bar));
114 bar->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
115 IEEE80211_STYPE_BACK_REQ);
116 memcpy(bar->ra, ra, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100117 memcpy(bar->ta, sdata->vif.addr, ETH_ALEN);
Johannes Bergb8695a82009-02-10 21:25:46 +0100118 bar_control |= (u16)IEEE80211_BAR_CTRL_ACK_POLICY_NORMAL;
119 bar_control |= (u16)IEEE80211_BAR_CTRL_CBMTID_COMPRESSED_BA;
120 bar_control |= (u16)(tid << 12);
121 bar->control = cpu_to_le16(bar_control);
122 bar->start_seq_num = cpu_to_le16(ssn);
123
Johannes Berg62ae67b2009-11-18 18:42:05 +0100124 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
125 ieee80211_tx_skb(sdata, skb);
Johannes Bergb8695a82009-02-10 21:25:46 +0100126}
127
Johannes Berg827d42c2009-11-22 12:28:41 +0100128int ___ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
129 enum ieee80211_back_parties initiator)
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100130{
Johannes Berg849b7962009-02-10 21:25:54 +0100131 struct ieee80211_local *local = sta->local;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100132 int ret;
133 u8 *state;
134
Johannes Berg827d42c2009-11-22 12:28:41 +0100135#ifdef CONFIG_MAC80211_HT_DEBUG
136 printk(KERN_DEBUG "Tx BA session stop requested for %pM tid %u\n",
137 sta->sta.addr, tid);
138#endif /* CONFIG_MAC80211_HT_DEBUG */
139
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100140 state = &sta->ampdu_mlme.tid_state_tx[tid];
141
Vasanthakumar Thiagarajan736708b2009-06-09 14:11:46 +0530142 if (*state == HT_AGG_STATE_OPERATIONAL)
143 sta->ampdu_mlme.addba_req_num[tid] = 0;
144
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100145 *state = HT_AGG_STATE_REQ_STOP_BA_MSK |
146 (initiator << HT_AGG_STATE_INITIATOR_SHIFT);
147
Johannes Berg12375ef2009-11-25 20:30:31 +0100148 ret = drv_ampdu_action(local, sta->sdata,
Johannes Bergc951ad32009-11-16 12:00:38 +0100149 IEEE80211_AMPDU_TX_STOP,
Johannes Berg24487982009-04-23 18:52:52 +0200150 &sta->sta, tid, NULL);
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100151
152 /* HW shall not deny going back to legacy */
153 if (WARN_ON(ret)) {
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100154 /*
155 * We may have pending packets get stuck in this case...
156 * Not bothering with a workaround for now.
157 */
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100158 }
159
160 return ret;
161}
162
Johannes Bergb8695a82009-02-10 21:25:46 +0100163/*
164 * After sending add Block Ack request we activated a timer until
165 * add Block Ack response will arrive from the recipient.
166 * If this timer expires sta_addba_resp_timer_expired will be executed.
167 */
168static void sta_addba_resp_timer_expired(unsigned long data)
169{
170 /* not an elegant detour, but there is no choice as the timer passes
171 * only one argument, and both sta_info and TID are needed, so init
172 * flow in sta_info_create gives the TID as data, while the timer_to_id
173 * array gives the sta through container_of */
174 u16 tid = *(u8 *)data;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100175 struct sta_info *sta = container_of((void *)data,
Johannes Bergb8695a82009-02-10 21:25:46 +0100176 struct sta_info, timer_to_tid[tid]);
Johannes Bergb8695a82009-02-10 21:25:46 +0100177 u8 *state;
178
Johannes Bergb8695a82009-02-10 21:25:46 +0100179 state = &sta->ampdu_mlme.tid_state_tx[tid];
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100180
Johannes Bergb8695a82009-02-10 21:25:46 +0100181 /* check if the TID waits for addBA response */
182 spin_lock_bh(&sta->lock);
Zhu Yi3dc1de02009-12-28 16:57:15 +0800183 if ((*state & (HT_ADDBA_REQUESTED_MSK | HT_ADDBA_RECEIVED_MSK |
184 HT_AGG_STATE_REQ_STOP_BA_MSK)) !=
Johannes Berg8ade0082009-11-18 17:15:06 +0100185 HT_ADDBA_REQUESTED_MSK) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100186 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100187#ifdef CONFIG_MAC80211_HT_DEBUG
188 printk(KERN_DEBUG "timer expired on tid %d but we are not "
Johannes Berg67e0f392010-04-19 11:03:13 +0200189 "(or no longer) expecting addBA response there\n",
Johannes Berg8ade0082009-11-18 17:15:06 +0100190 tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100191#endif
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100192 return;
Johannes Bergb8695a82009-02-10 21:25:46 +0100193 }
194
195#ifdef CONFIG_MAC80211_HT_DEBUG
196 printk(KERN_DEBUG "addBA response timer expired on tid %d\n", tid);
197#endif
198
Johannes Berg849b7962009-02-10 21:25:54 +0100199 ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
Johannes Bergb8695a82009-02-10 21:25:46 +0100200 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100201}
202
Johannes Berg96f5e662009-02-12 00:51:53 +0100203static inline int ieee80211_ac_from_tid(int tid)
204{
205 return ieee802_1d_to_ac[tid & 7];
206}
207
Johannes Bergc951ad32009-11-16 12:00:38 +0100208int ieee80211_start_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100209{
Johannes Bergc951ad32009-11-16 12:00:38 +0100210 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
211 struct ieee80211_sub_if_data *sdata = sta->sdata;
212 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100213 u8 *state;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100214 int ret = 0;
Johannes Berg96f5e662009-02-12 00:51:53 +0100215 u16 start_seq_num;
Johannes Bergb8695a82009-02-10 21:25:46 +0100216
Johannes Bergb5878a22010-04-07 16:48:40 +0200217 trace_api_start_tx_ba_session(pubsta, tid);
218
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100219 if (WARN_ON(!local->ops->ampdu_action))
220 return -EINVAL;
221
Johannes Bergc951ad32009-11-16 12:00:38 +0100222 if ((tid >= STA_TID_NUM) ||
223 !(local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION))
Johannes Bergb8695a82009-02-10 21:25:46 +0100224 return -EINVAL;
225
226#ifdef CONFIG_MAC80211_HT_DEBUG
227 printk(KERN_DEBUG "Open BA session requested for %pM tid %u\n",
Johannes Bergc951ad32009-11-16 12:00:38 +0100228 pubsta->addr, tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100229#endif /* CONFIG_MAC80211_HT_DEBUG */
230
Johannes Berg8abd3f92009-02-10 21:25:47 +0100231 /*
232 * The aggregation code is not prepared to handle
233 * anything but STA/AP due to the BSSID handling.
234 * IBSS could work in the code but isn't supported
235 * by drivers or the standard.
236 */
Johannes Bergc951ad32009-11-16 12:00:38 +0100237 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
238 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
239 sdata->vif.type != NL80211_IFTYPE_AP)
240 return -EINVAL;
Johannes Berg8abd3f92009-02-10 21:25:47 +0100241
Johannes Berg618f3562010-04-06 11:18:46 +0200242 if (test_sta_flags(sta, WLAN_STA_BLOCK_BA)) {
Sujith722f0692009-03-17 08:50:06 +0530243#ifdef CONFIG_MAC80211_HT_DEBUG
Johannes Berg2a419052010-06-10 10:21:29 +0200244 printk(KERN_DEBUG "BA sessions blocked. "
Sujith722f0692009-03-17 08:50:06 +0530245 "Denying BA session request\n");
246#endif
Johannes Bergc951ad32009-11-16 12:00:38 +0100247 return -EINVAL;
Sujith722f0692009-03-17 08:50:06 +0530248 }
249
Johannes Bergb8695a82009-02-10 21:25:46 +0100250 spin_lock_bh(&sta->lock);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100251 spin_lock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100252
253 /* we have tried too many times, receiver does not want A-MPDU */
254 if (sta->ampdu_mlme.addba_req_num[tid] > HT_AGG_MAX_RETRIES) {
255 ret = -EBUSY;
256 goto err_unlock_sta;
257 }
258
259 state = &sta->ampdu_mlme.tid_state_tx[tid];
260 /* check if the TID is not in aggregation flow already */
261 if (*state != HT_AGG_STATE_IDLE) {
262#ifdef CONFIG_MAC80211_HT_DEBUG
263 printk(KERN_DEBUG "BA request denied - session is not "
264 "idle on tid %u\n", tid);
265#endif /* CONFIG_MAC80211_HT_DEBUG */
266 ret = -EAGAIN;
267 goto err_unlock_sta;
268 }
269
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100270 /*
271 * While we're asking the driver about the aggregation,
272 * stop the AC queue so that we don't have to worry
273 * about frames that came in while we were doing that,
274 * which would require us to put them to the AC pending
275 * afterwards which just makes the code more complex.
276 */
277 ieee80211_stop_queue_by_reason(
278 &local->hw, ieee80211_ac_from_tid(tid),
279 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
280
Johannes Bergb8695a82009-02-10 21:25:46 +0100281 /* prepare A-MPDU MLME for Tx aggregation */
282 sta->ampdu_mlme.tid_tx[tid] =
283 kmalloc(sizeof(struct tid_ampdu_tx), GFP_ATOMIC);
284 if (!sta->ampdu_mlme.tid_tx[tid]) {
285#ifdef CONFIG_MAC80211_HT_DEBUG
286 if (net_ratelimit())
287 printk(KERN_ERR "allocate tx mlme to tid %d failed\n",
288 tid);
289#endif
290 ret = -ENOMEM;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100291 goto err_wake_queue;
Johannes Bergb8695a82009-02-10 21:25:46 +0100292 }
Johannes Berg96f5e662009-02-12 00:51:53 +0100293
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100294 skb_queue_head_init(&sta->ampdu_mlme.tid_tx[tid]->pending);
295
Johannes Bergb8695a82009-02-10 21:25:46 +0100296 /* Tx timer */
297 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.function =
298 sta_addba_resp_timer_expired;
299 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.data =
300 (unsigned long)&sta->timer_to_tid[tid];
301 init_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
302
Johannes Bergb8695a82009-02-10 21:25:46 +0100303 /* Ok, the Addba frame hasn't been sent yet, but if the driver calls the
304 * call back right away, it must see that the flow has begun */
305 *state |= HT_ADDBA_REQUESTED_MSK;
306
Christian Lamparterf3f66b62010-01-04 00:52:56 +0100307 start_seq_num = sta->tid_seq[tid] >> 4;
Johannes Bergb8695a82009-02-10 21:25:46 +0100308
Johannes Berg12375ef2009-11-25 20:30:31 +0100309 ret = drv_ampdu_action(local, sdata, IEEE80211_AMPDU_TX_START,
Johannes Bergc951ad32009-11-16 12:00:38 +0100310 pubsta, tid, &start_seq_num);
Johannes Bergb8695a82009-02-10 21:25:46 +0100311
312 if (ret) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100313#ifdef CONFIG_MAC80211_HT_DEBUG
314 printk(KERN_DEBUG "BA request denied - HW unavailable for"
315 " tid %d\n", tid);
316#endif /* CONFIG_MAC80211_HT_DEBUG */
317 *state = HT_AGG_STATE_IDLE;
Johannes Berg96f5e662009-02-12 00:51:53 +0100318 goto err_free;
Johannes Bergb8695a82009-02-10 21:25:46 +0100319 }
320
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100321 /* Driver vetoed or OKed, but we can take packets again now */
322 ieee80211_wake_queue_by_reason(
323 &local->hw, ieee80211_ac_from_tid(tid),
324 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
325
326 spin_unlock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100327
Johannes Berg51a0d382010-05-31 12:00:12 +0200328 /* prepare tid data */
Johannes Bergb8695a82009-02-10 21:25:46 +0100329 sta->ampdu_mlme.dialog_token_allocator++;
330 sta->ampdu_mlme.tid_tx[tid]->dialog_token =
331 sta->ampdu_mlme.dialog_token_allocator;
332 sta->ampdu_mlme.tid_tx[tid]->ssn = start_seq_num;
333
Johannes Berg51a0d382010-05-31 12:00:12 +0200334 spin_unlock_bh(&sta->lock);
335
336 /* send AddBA request */
Johannes Bergc951ad32009-11-16 12:00:38 +0100337 ieee80211_send_addba_request(sdata, pubsta->addr, tid,
Johannes Bergb8695a82009-02-10 21:25:46 +0100338 sta->ampdu_mlme.tid_tx[tid]->dialog_token,
339 sta->ampdu_mlme.tid_tx[tid]->ssn,
340 0x40, 5000);
Vasanthakumar Thiagarajan736708b2009-06-09 14:11:46 +0530341 sta->ampdu_mlme.addba_req_num[tid]++;
Johannes Bergb8695a82009-02-10 21:25:46 +0100342 /* activate the timer for the recipient's addBA response */
343 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.expires =
344 jiffies + ADDBA_RESP_INTERVAL;
345 add_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
346#ifdef CONFIG_MAC80211_HT_DEBUG
347 printk(KERN_DEBUG "activated addBA response timer on tid %d\n", tid);
348#endif
Johannes Bergc951ad32009-11-16 12:00:38 +0100349 return 0;
Johannes Bergb8695a82009-02-10 21:25:46 +0100350
Johannes Berg96f5e662009-02-12 00:51:53 +0100351 err_free:
Johannes Bergb8695a82009-02-10 21:25:46 +0100352 kfree(sta->ampdu_mlme.tid_tx[tid]);
353 sta->ampdu_mlme.tid_tx[tid] = NULL;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100354 err_wake_queue:
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100355 ieee80211_wake_queue_by_reason(
356 &local->hw, ieee80211_ac_from_tid(tid),
357 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
Johannes Berg96f5e662009-02-12 00:51:53 +0100358 err_unlock_sta:
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100359 spin_unlock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100360 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100361 return ret;
362}
363EXPORT_SYMBOL(ieee80211_start_tx_ba_session);
364
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100365/*
366 * splice packets from the STA's pending to the local pending,
367 * requires a call to ieee80211_agg_splice_finish and holding
368 * local->ampdu_lock across both calls.
369 */
370static void ieee80211_agg_splice_packets(struct ieee80211_local *local,
371 struct sta_info *sta, u16 tid)
372{
373 unsigned long flags;
374 u16 queue = ieee80211_ac_from_tid(tid);
375
376 ieee80211_stop_queue_by_reason(
377 &local->hw, queue,
378 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
379
Luis R. Rodriguez416fbdf2009-08-11 13:10:33 -0700380 if (!(sta->ampdu_mlme.tid_state_tx[tid] & HT_ADDBA_REQUESTED_MSK))
381 return;
382
383 if (WARN(!sta->ampdu_mlme.tid_tx[tid],
384 "TID %d gone but expected when splicing aggregates from"
385 "the pending queue\n", tid))
386 return;
387
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100388 if (!skb_queue_empty(&sta->ampdu_mlme.tid_tx[tid]->pending)) {
389 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100390 /* copy over remaining packets */
391 skb_queue_splice_tail_init(
392 &sta->ampdu_mlme.tid_tx[tid]->pending,
393 &local->pending[queue]);
394 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
395 }
396}
397
398static void ieee80211_agg_splice_finish(struct ieee80211_local *local,
399 struct sta_info *sta, u16 tid)
400{
401 u16 queue = ieee80211_ac_from_tid(tid);
402
403 ieee80211_wake_queue_by_reason(
404 &local->hw, queue,
405 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
406}
407
408/* caller must hold sta->lock */
Johannes Bergb1720232009-03-23 17:28:39 +0100409static void ieee80211_agg_tx_operational(struct ieee80211_local *local,
410 struct sta_info *sta, u16 tid)
411{
412#ifdef CONFIG_MAC80211_HT_DEBUG
Frans Pop55f98932010-03-24 19:46:29 +0100413 printk(KERN_DEBUG "Aggregation is on for tid %d\n", tid);
Johannes Bergb1720232009-03-23 17:28:39 +0100414#endif
415
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100416 spin_lock(&local->ampdu_lock);
417 ieee80211_agg_splice_packets(local, sta, tid);
418 /*
419 * NB: we rely on sta->lock being taken in the TX
420 * processing here when adding to the pending queue,
421 * otherwise we could only change the state of the
422 * session to OPERATIONAL _here_.
423 */
424 ieee80211_agg_splice_finish(local, sta, tid);
425 spin_unlock(&local->ampdu_lock);
Johannes Bergb1720232009-03-23 17:28:39 +0100426
Johannes Berg12375ef2009-11-25 20:30:31 +0100427 drv_ampdu_action(local, sta->sdata,
Johannes Bergc951ad32009-11-16 12:00:38 +0100428 IEEE80211_AMPDU_TX_OPERATIONAL,
Johannes Berg24487982009-04-23 18:52:52 +0200429 &sta->sta, tid, NULL);
Johannes Bergb1720232009-03-23 17:28:39 +0100430}
431
Johannes Bergc951ad32009-11-16 12:00:38 +0100432void ieee80211_start_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100433{
Johannes Bergc951ad32009-11-16 12:00:38 +0100434 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
435 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100436 struct sta_info *sta;
437 u8 *state;
438
Johannes Bergb5878a22010-04-07 16:48:40 +0200439 trace_api_start_tx_ba_cb(sdata, ra, tid);
440
Johannes Bergb8695a82009-02-10 21:25:46 +0100441 if (tid >= STA_TID_NUM) {
442#ifdef CONFIG_MAC80211_HT_DEBUG
443 printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
444 tid, STA_TID_NUM);
445#endif
446 return;
447 }
448
449 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100450 sta = sta_info_get(sdata, ra);
Johannes Bergb8695a82009-02-10 21:25:46 +0100451 if (!sta) {
452 rcu_read_unlock();
453#ifdef CONFIG_MAC80211_HT_DEBUG
454 printk(KERN_DEBUG "Could not find station: %pM\n", ra);
455#endif
456 return;
457 }
458
459 state = &sta->ampdu_mlme.tid_state_tx[tid];
460 spin_lock_bh(&sta->lock);
461
Johannes Berg96f5e662009-02-12 00:51:53 +0100462 if (WARN_ON(!(*state & HT_ADDBA_REQUESTED_MSK))) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100463#ifdef CONFIG_MAC80211_HT_DEBUG
464 printk(KERN_DEBUG "addBA was not requested yet, state is %d\n",
465 *state);
466#endif
467 spin_unlock_bh(&sta->lock);
468 rcu_read_unlock();
469 return;
470 }
471
Johannes Berg96f5e662009-02-12 00:51:53 +0100472 if (WARN_ON(*state & HT_ADDBA_DRV_READY_MSK))
473 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100474
475 *state |= HT_ADDBA_DRV_READY_MSK;
476
Johannes Bergb1720232009-03-23 17:28:39 +0100477 if (*state == HT_AGG_STATE_OPERATIONAL)
478 ieee80211_agg_tx_operational(local, sta, tid);
Johannes Berg96f5e662009-02-12 00:51:53 +0100479
480 out:
Johannes Bergb8695a82009-02-10 21:25:46 +0100481 spin_unlock_bh(&sta->lock);
482 rcu_read_unlock();
483}
484EXPORT_SYMBOL(ieee80211_start_tx_ba_cb);
485
Johannes Bergc951ad32009-11-16 12:00:38 +0100486void ieee80211_start_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
Johannes Berg86ab6c52009-02-10 21:25:49 +0100487 const u8 *ra, u16 tid)
488{
Johannes Bergc951ad32009-11-16 12:00:38 +0100489 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
490 struct ieee80211_local *local = sdata->local;
Johannes Berg86ab6c52009-02-10 21:25:49 +0100491 struct ieee80211_ra_tid *ra_tid;
492 struct sk_buff *skb = dev_alloc_skb(0);
493
494 if (unlikely(!skb)) {
495#ifdef CONFIG_MAC80211_HT_DEBUG
496 if (net_ratelimit())
497 printk(KERN_WARNING "%s: Not enough memory, "
Johannes Berg47846c92009-11-25 17:46:19 +0100498 "dropping start BA session", sdata->name);
Johannes Berg86ab6c52009-02-10 21:25:49 +0100499#endif
500 return;
501 }
502 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
503 memcpy(&ra_tid->ra, ra, ETH_ALEN);
504 ra_tid->tid = tid;
505
Johannes Bergc1475ca2010-06-10 10:21:37 +0200506 skb->pkt_type = IEEE80211_SDATA_QUEUE_AGG_START;
507 skb_queue_tail(&sdata->skb_queue, skb);
508 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Berg86ab6c52009-02-10 21:25:49 +0100509}
510EXPORT_SYMBOL(ieee80211_start_tx_ba_cb_irqsafe);
511
Johannes Berg849b7962009-02-10 21:25:54 +0100512int __ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
513 enum ieee80211_back_parties initiator)
514{
515 u8 *state;
516 int ret;
517
518 /* check if the TID is in aggregation */
519 state = &sta->ampdu_mlme.tid_state_tx[tid];
520 spin_lock_bh(&sta->lock);
521
522 if (*state != HT_AGG_STATE_OPERATIONAL) {
523 ret = -ENOENT;
524 goto unlock;
525 }
526
Johannes Berg849b7962009-02-10 21:25:54 +0100527 ret = ___ieee80211_stop_tx_ba_session(sta, tid, initiator);
528
529 unlock:
530 spin_unlock_bh(&sta->lock);
531 return ret;
532}
Johannes Bergb8695a82009-02-10 21:25:46 +0100533
Johannes Berg6a8579d2010-05-27 14:41:07 +0200534int ieee80211_stop_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100535{
Johannes Bergc951ad32009-11-16 12:00:38 +0100536 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
537 struct ieee80211_sub_if_data *sdata = sta->sdata;
538 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100539
Johannes Berg6a8579d2010-05-27 14:41:07 +0200540 trace_api_stop_tx_ba_session(pubsta, tid);
Johannes Bergb5878a22010-04-07 16:48:40 +0200541
Johannes Berg42531192009-11-20 09:15:51 +0100542 if (!local->ops->ampdu_action)
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100543 return -EINVAL;
544
Johannes Bergb8695a82009-02-10 21:25:46 +0100545 if (tid >= STA_TID_NUM)
546 return -EINVAL;
547
Johannes Berg6a8579d2010-05-27 14:41:07 +0200548 return __ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
Johannes Bergb8695a82009-02-10 21:25:46 +0100549}
550EXPORT_SYMBOL(ieee80211_stop_tx_ba_session);
551
Johannes Bergc951ad32009-11-16 12:00:38 +0100552void ieee80211_stop_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u8 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100553{
Johannes Bergc951ad32009-11-16 12:00:38 +0100554 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
555 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100556 struct sta_info *sta;
557 u8 *state;
Johannes Bergb8695a82009-02-10 21:25:46 +0100558
Johannes Bergb5878a22010-04-07 16:48:40 +0200559 trace_api_stop_tx_ba_cb(sdata, ra, tid);
560
Johannes Bergb8695a82009-02-10 21:25:46 +0100561 if (tid >= STA_TID_NUM) {
562#ifdef CONFIG_MAC80211_HT_DEBUG
563 printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
564 tid, STA_TID_NUM);
565#endif
566 return;
567 }
568
569#ifdef CONFIG_MAC80211_HT_DEBUG
570 printk(KERN_DEBUG "Stopping Tx BA session for %pM tid %d\n",
571 ra, tid);
572#endif /* CONFIG_MAC80211_HT_DEBUG */
573
574 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100575 sta = sta_info_get(sdata, ra);
Johannes Bergb8695a82009-02-10 21:25:46 +0100576 if (!sta) {
577#ifdef CONFIG_MAC80211_HT_DEBUG
578 printk(KERN_DEBUG "Could not find station: %pM\n", ra);
579#endif
580 rcu_read_unlock();
581 return;
582 }
583 state = &sta->ampdu_mlme.tid_state_tx[tid];
584
585 /* NOTE: no need to use sta->lock in this state check, as
586 * ieee80211_stop_tx_ba_session will let only one stop call to
587 * pass through per sta/tid
588 */
589 if ((*state & HT_AGG_STATE_REQ_STOP_BA_MSK) == 0) {
590#ifdef CONFIG_MAC80211_HT_DEBUG
591 printk(KERN_DEBUG "unexpected callback to A-MPDU stop\n");
592#endif
593 rcu_read_unlock();
594 return;
595 }
596
597 if (*state & HT_AGG_STATE_INITIATOR_MSK)
598 ieee80211_send_delba(sta->sdata, ra, tid,
599 WLAN_BACK_INITIATOR, WLAN_REASON_QSTA_NOT_USE);
600
Johannes Bergb8695a82009-02-10 21:25:46 +0100601 spin_lock_bh(&sta->lock);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100602 spin_lock(&local->ampdu_lock);
Johannes Berg96f5e662009-02-12 00:51:53 +0100603
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100604 ieee80211_agg_splice_packets(local, sta, tid);
Johannes Berg96f5e662009-02-12 00:51:53 +0100605
Johannes Bergb8695a82009-02-10 21:25:46 +0100606 *state = HT_AGG_STATE_IDLE;
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100607 /* from now on packets are no longer put onto sta->pending */
Johannes Bergb8695a82009-02-10 21:25:46 +0100608 kfree(sta->ampdu_mlme.tid_tx[tid]);
609 sta->ampdu_mlme.tid_tx[tid] = NULL;
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100610
611 ieee80211_agg_splice_finish(local, sta, tid);
612
613 spin_unlock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100614 spin_unlock_bh(&sta->lock);
615
616 rcu_read_unlock();
617}
618EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb);
619
Johannes Bergc951ad32009-11-16 12:00:38 +0100620void ieee80211_stop_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
Johannes Bergb8695a82009-02-10 21:25:46 +0100621 const u8 *ra, u16 tid)
622{
Johannes Bergc951ad32009-11-16 12:00:38 +0100623 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
624 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100625 struct ieee80211_ra_tid *ra_tid;
626 struct sk_buff *skb = dev_alloc_skb(0);
627
628 if (unlikely(!skb)) {
629#ifdef CONFIG_MAC80211_HT_DEBUG
630 if (net_ratelimit())
631 printk(KERN_WARNING "%s: Not enough memory, "
Johannes Berg47846c92009-11-25 17:46:19 +0100632 "dropping stop BA session", sdata->name);
Johannes Bergb8695a82009-02-10 21:25:46 +0100633#endif
634 return;
635 }
636 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
637 memcpy(&ra_tid->ra, ra, ETH_ALEN);
638 ra_tid->tid = tid;
639
Johannes Bergc1475ca2010-06-10 10:21:37 +0200640 skb->pkt_type = IEEE80211_SDATA_QUEUE_AGG_STOP;
641 skb_queue_tail(&sdata->skb_queue, skb);
642 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Bergb8695a82009-02-10 21:25:46 +0100643}
644EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb_irqsafe);
645
Johannes Berg86ab6c52009-02-10 21:25:49 +0100646
Johannes Bergb8695a82009-02-10 21:25:46 +0100647void ieee80211_process_addba_resp(struct ieee80211_local *local,
648 struct sta_info *sta,
649 struct ieee80211_mgmt *mgmt,
650 size_t len)
651{
Johannes Bergb1720232009-03-23 17:28:39 +0100652 u16 capab, tid;
Johannes Bergb8695a82009-02-10 21:25:46 +0100653 u8 *state;
654
655 capab = le16_to_cpu(mgmt->u.action.u.addba_resp.capab);
656 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
657
658 state = &sta->ampdu_mlme.tid_state_tx[tid];
659
660 spin_lock_bh(&sta->lock);
661
Johannes Berg2171abc2009-10-29 08:34:00 +0100662 if (!(*state & HT_ADDBA_REQUESTED_MSK))
Johannes Berg8ade0082009-11-18 17:15:06 +0100663 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100664
665 if (mgmt->u.action.u.addba_resp.dialog_token !=
666 sta->ampdu_mlme.tid_tx[tid]->dialog_token) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100667#ifdef CONFIG_MAC80211_HT_DEBUG
668 printk(KERN_DEBUG "wrong addBA response token, tid %d\n", tid);
669#endif /* CONFIG_MAC80211_HT_DEBUG */
Johannes Berg8ade0082009-11-18 17:15:06 +0100670 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100671 }
672
Johannes Berg8ade0082009-11-18 17:15:06 +0100673 del_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
674
Johannes Bergb8695a82009-02-10 21:25:46 +0100675#ifdef CONFIG_MAC80211_HT_DEBUG
Frans Pop55f98932010-03-24 19:46:29 +0100676 printk(KERN_DEBUG "switched off addBA timer for tid %d\n", tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100677#endif /* CONFIG_MAC80211_HT_DEBUG */
Johannes Berg2171abc2009-10-29 08:34:00 +0100678
Johannes Bergb8695a82009-02-10 21:25:46 +0100679 if (le16_to_cpu(mgmt->u.action.u.addba_resp.status)
680 == WLAN_STATUS_SUCCESS) {
Johannes Berg96f5e662009-02-12 00:51:53 +0100681 u8 curstate = *state;
Johannes Bergb8695a82009-02-10 21:25:46 +0100682
Johannes Berg96f5e662009-02-12 00:51:53 +0100683 *state |= HT_ADDBA_RECEIVED_MSK;
684
Johannes Bergb1720232009-03-23 17:28:39 +0100685 if (*state != curstate && *state == HT_AGG_STATE_OPERATIONAL)
686 ieee80211_agg_tx_operational(local, sta, tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100687
Johannes Bergb1720232009-03-23 17:28:39 +0100688 sta->ampdu_mlme.addba_req_num[tid] = 0;
Johannes Bergb8695a82009-02-10 21:25:46 +0100689 } else {
Johannes Berg849b7962009-02-10 21:25:54 +0100690 ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
Johannes Bergb8695a82009-02-10 21:25:46 +0100691 }
Johannes Berg2171abc2009-10-29 08:34:00 +0100692
Johannes Berg2171abc2009-10-29 08:34:00 +0100693 out:
Johannes Berg849b7962009-02-10 21:25:54 +0100694 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100695}