agg-tx.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788
  1. /*
  2. * HT handling
  3. *
  4. * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi>
  5. * Copyright 2002-2005, Instant802 Networks, Inc.
  6. * Copyright 2005-2006, Devicescape Software, Inc.
  7. * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
  8. * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
  9. * Copyright 2007-2009, Intel Corporation
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License version 2 as
  13. * published by the Free Software Foundation.
  14. */
  15. #include <linux/ieee80211.h>
  16. #include <linux/slab.h>
  17. #include <net/mac80211.h>
  18. #include "ieee80211_i.h"
  19. #include "driver-ops.h"
  20. #include "wme.h"
  21. /**
  22. * DOC: TX aggregation
  23. *
  24. * Aggregation on the TX side requires setting the hardware flag
  25. * %IEEE80211_HW_AMPDU_AGGREGATION as well as, if present, the @ampdu_queues
  26. * hardware parameter to the number of hardware AMPDU queues. If there are no
  27. * hardware queues then the driver will (currently) have to do all frame
  28. * buffering.
  29. *
  30. * When TX aggregation is started by some subsystem (usually the rate control
  31. * algorithm would be appropriate) by calling the
  32. * ieee80211_start_tx_ba_session() function, the driver will be notified via
  33. * its @ampdu_action function, with the %IEEE80211_AMPDU_TX_START action.
  34. *
  35. * In response to that, the driver is later required to call the
  36. * ieee80211_start_tx_ba_cb() (or ieee80211_start_tx_ba_cb_irqsafe())
  37. * function, which will start the aggregation session.
  38. *
  39. * Similarly, when the aggregation session is stopped by
  40. * ieee80211_stop_tx_ba_session(), the driver's @ampdu_action function will
  41. * be called with the action %IEEE80211_AMPDU_TX_STOP. In this case, the
  42. * call must not fail, and the driver must later call ieee80211_stop_tx_ba_cb()
  43. * (or ieee80211_stop_tx_ba_cb_irqsafe()).
  44. */
  45. static void ieee80211_send_addba_request(struct ieee80211_sub_if_data *sdata,
  46. const u8 *da, u16 tid,
  47. u8 dialog_token, u16 start_seq_num,
  48. u16 agg_size, u16 timeout)
  49. {
  50. struct ieee80211_local *local = sdata->local;
  51. struct sk_buff *skb;
  52. struct ieee80211_mgmt *mgmt;
  53. u16 capab;
  54. skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom);
  55. if (!skb) {
  56. printk(KERN_ERR "%s: failed to allocate buffer "
  57. "for addba request frame\n", sdata->name);
  58. return;
  59. }
  60. skb_reserve(skb, local->hw.extra_tx_headroom);
  61. mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
  62. memset(mgmt, 0, 24);
  63. memcpy(mgmt->da, da, ETH_ALEN);
  64. memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
  65. if (sdata->vif.type == NL80211_IFTYPE_AP ||
  66. sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
  67. memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
  68. else if (sdata->vif.type == NL80211_IFTYPE_STATION)
  69. memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
  70. mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  71. IEEE80211_STYPE_ACTION);
  72. skb_put(skb, 1 + sizeof(mgmt->u.action.u.addba_req));
  73. mgmt->u.action.category = WLAN_CATEGORY_BACK;
  74. mgmt->u.action.u.addba_req.action_code = WLAN_ACTION_ADDBA_REQ;
  75. mgmt->u.action.u.addba_req.dialog_token = dialog_token;
  76. capab = (u16)(1 << 1); /* bit 1 aggregation policy */
  77. capab |= (u16)(tid << 2); /* bit 5:2 TID number */
  78. capab |= (u16)(agg_size << 6); /* bit 15:6 max size of aggergation */
  79. mgmt->u.action.u.addba_req.capab = cpu_to_le16(capab);
  80. mgmt->u.action.u.addba_req.timeout = cpu_to_le16(timeout);
  81. mgmt->u.action.u.addba_req.start_seq_num =
  82. cpu_to_le16(start_seq_num << 4);
  83. ieee80211_tx_skb(sdata, skb);
  84. }
  85. void ieee80211_send_bar(struct ieee80211_sub_if_data *sdata, u8 *ra, u16 tid, u16 ssn)
  86. {
  87. struct ieee80211_local *local = sdata->local;
  88. struct sk_buff *skb;
  89. struct ieee80211_bar *bar;
  90. u16 bar_control = 0;
  91. skb = dev_alloc_skb(sizeof(*bar) + local->hw.extra_tx_headroom);
  92. if (!skb) {
  93. printk(KERN_ERR "%s: failed to allocate buffer for "
  94. "bar frame\n", sdata->name);
  95. return;
  96. }
  97. skb_reserve(skb, local->hw.extra_tx_headroom);
  98. bar = (struct ieee80211_bar *)skb_put(skb, sizeof(*bar));
  99. memset(bar, 0, sizeof(*bar));
  100. bar->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
  101. IEEE80211_STYPE_BACK_REQ);
  102. memcpy(bar->ra, ra, ETH_ALEN);
  103. memcpy(bar->ta, sdata->vif.addr, ETH_ALEN);
  104. bar_control |= (u16)IEEE80211_BAR_CTRL_ACK_POLICY_NORMAL;
  105. bar_control |= (u16)IEEE80211_BAR_CTRL_CBMTID_COMPRESSED_BA;
  106. bar_control |= (u16)(tid << 12);
  107. bar->control = cpu_to_le16(bar_control);
  108. bar->start_seq_num = cpu_to_le16(ssn);
  109. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
  110. ieee80211_tx_skb(sdata, skb);
  111. }
  112. static void kfree_tid_tx(struct rcu_head *rcu_head)
  113. {
  114. struct tid_ampdu_tx *tid_tx =
  115. container_of(rcu_head, struct tid_ampdu_tx, rcu_head);
  116. kfree(tid_tx);
  117. }
  118. static int ___ieee80211_stop_tx_ba_session(
  119. struct sta_info *sta, u16 tid,
  120. enum ieee80211_back_parties initiator)
  121. {
  122. struct ieee80211_local *local = sta->local;
  123. struct tid_ampdu_tx *tid_tx = sta->ampdu_mlme.tid_tx[tid];
  124. int ret;
  125. lockdep_assert_held(&sta->lock);
  126. if (WARN_ON(!tid_tx))
  127. return -ENOENT;
  128. if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
  129. /* not even started yet! */
  130. rcu_assign_pointer(sta->ampdu_mlme.tid_tx[tid], NULL);
  131. call_rcu(&tid_tx->rcu_head, kfree_tid_tx);
  132. return 0;
  133. }
  134. #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. set_bit(HT_AGG_STATE_STOPPING, &tid_tx->state);
  139. /*
  140. * After this packets are no longer handed right through
  141. * to the driver but are put onto tid_tx->pending instead,
  142. * with locking to ensure proper access.
  143. */
  144. clear_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state);
  145. tid_tx->stop_initiator = initiator;
  146. ret = drv_ampdu_action(local, sta->sdata,
  147. IEEE80211_AMPDU_TX_STOP,
  148. &sta->sta, tid, NULL);
  149. /* HW shall not deny going back to legacy */
  150. if (WARN_ON(ret)) {
  151. /*
  152. * We may have pending packets get stuck in this case...
  153. * Not bothering with a workaround for now.
  154. */
  155. }
  156. return ret;
  157. }
  158. /*
  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. */
  163. static 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;
  170. struct sta_info *sta = container_of((void *)data,
  171. struct sta_info, timer_to_tid[tid]);
  172. struct tid_ampdu_tx *tid_tx;
  173. /* check if the TID waits for addBA response */
  174. spin_lock_bh(&sta->lock);
  175. tid_tx = sta->ampdu_mlme.tid_tx[tid];
  176. if (!tid_tx ||
  177. test_bit(HT_AGG_STATE_RESPONSE_RECEIVED, &tid_tx->state)) {
  178. spin_unlock_bh(&sta->lock);
  179. #ifdef CONFIG_MAC80211_HT_DEBUG
  180. printk(KERN_DEBUG "timer expired on tid %d but we are not "
  181. "(or no longer) expecting addBA response there\n",
  182. tid);
  183. #endif
  184. return;
  185. }
  186. #ifdef CONFIG_MAC80211_HT_DEBUG
  187. printk(KERN_DEBUG "addBA response timer expired on tid %d\n", tid);
  188. #endif
  189. ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
  190. spin_unlock_bh(&sta->lock);
  191. }
  192. static inline int ieee80211_ac_from_tid(int tid)
  193. {
  194. return ieee802_1d_to_ac[tid & 7];
  195. }
  196. /*
  197. * When multiple aggregation sessions on multiple stations
  198. * are being created/destroyed simultaneously, we need to
  199. * refcount the global queue stop caused by that in order
  200. * to not get into a situation where one of the aggregation
  201. * setup or teardown re-enables queues before the other is
  202. * ready to handle that.
  203. *
  204. * These two functions take care of this issue by keeping
  205. * a global "agg_queue_stop" refcount.
  206. */
  207. static void __acquires(agg_queue)
  208. ieee80211_stop_queue_agg(struct ieee80211_local *local, int tid)
  209. {
  210. int queue = ieee80211_ac_from_tid(tid);
  211. if (atomic_inc_return(&local->agg_queue_stop[queue]) == 1)
  212. ieee80211_stop_queue_by_reason(
  213. &local->hw, queue,
  214. IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
  215. __acquire(agg_queue);
  216. }
  217. static void __releases(agg_queue)
  218. ieee80211_wake_queue_agg(struct ieee80211_local *local, int tid)
  219. {
  220. int queue = ieee80211_ac_from_tid(tid);
  221. if (atomic_dec_return(&local->agg_queue_stop[queue]) == 0)
  222. ieee80211_wake_queue_by_reason(
  223. &local->hw, queue,
  224. IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
  225. __release(agg_queue);
  226. }
  227. static void ieee80211_tx_ba_session_handle_start(struct sta_info *sta, int tid)
  228. {
  229. struct tid_ampdu_tx *tid_tx = sta->ampdu_mlme.tid_tx[tid];
  230. struct ieee80211_local *local = sta->local;
  231. struct ieee80211_sub_if_data *sdata = sta->sdata;
  232. u16 start_seq_num;
  233. int ret;
  234. /*
  235. * While we're asking the driver about the aggregation,
  236. * stop the AC queue so that we don't have to worry
  237. * about frames that came in while we were doing that,
  238. * which would require us to put them to the AC pending
  239. * afterwards which just makes the code more complex.
  240. */
  241. ieee80211_stop_queue_agg(local, tid);
  242. clear_bit(HT_AGG_STATE_WANT_START, &tid_tx->state);
  243. /*
  244. * This might be off by one due to a race that we can't
  245. * really prevent here without synchronize_net() which
  246. * can't be called now.
  247. */
  248. start_seq_num = sta->tid_seq[tid] >> 4;
  249. ret = drv_ampdu_action(local, sdata, IEEE80211_AMPDU_TX_START,
  250. &sta->sta, tid, &start_seq_num);
  251. if (ret) {
  252. #ifdef CONFIG_MAC80211_HT_DEBUG
  253. printk(KERN_DEBUG "BA request denied - HW unavailable for"
  254. " tid %d\n", tid);
  255. #endif
  256. rcu_assign_pointer(sta->ampdu_mlme.tid_tx[tid], NULL);
  257. ieee80211_wake_queue_agg(local, tid);
  258. call_rcu(&tid_tx->rcu_head, kfree_tid_tx);
  259. return;
  260. }
  261. /* we can take packets again now */
  262. ieee80211_wake_queue_agg(local, tid);
  263. /* activate the timer for the recipient's addBA response */
  264. mod_timer(&tid_tx->addba_resp_timer, jiffies + ADDBA_RESP_INTERVAL);
  265. #ifdef CONFIG_MAC80211_HT_DEBUG
  266. printk(KERN_DEBUG "activated addBA response timer on tid %d\n", tid);
  267. #endif
  268. sta->ampdu_mlme.addba_req_num[tid]++;
  269. /* send AddBA request */
  270. ieee80211_send_addba_request(sdata, sta->sta.addr, tid,
  271. tid_tx->dialog_token, start_seq_num,
  272. 0x40, 5000);
  273. }
  274. void ieee80211_tx_ba_session_work(struct work_struct *work)
  275. {
  276. struct sta_info *sta =
  277. container_of(work, struct sta_info, ampdu_mlme.work);
  278. struct tid_ampdu_tx *tid_tx;
  279. int tid;
  280. /*
  281. * When this flag is set, new sessions should be
  282. * blocked, and existing sessions will be torn
  283. * down by the code that set the flag, so this
  284. * need not run.
  285. */
  286. if (test_sta_flags(sta, WLAN_STA_BLOCK_BA))
  287. return;
  288. spin_lock_bh(&sta->lock);
  289. for (tid = 0; tid < STA_TID_NUM; tid++) {
  290. tid_tx = sta->ampdu_mlme.tid_tx[tid];
  291. if (!tid_tx)
  292. continue;
  293. if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state))
  294. ieee80211_tx_ba_session_handle_start(sta, tid);
  295. else if (test_and_clear_bit(HT_AGG_STATE_WANT_STOP,
  296. &tid_tx->state))
  297. ___ieee80211_stop_tx_ba_session(sta, tid,
  298. WLAN_BACK_INITIATOR);
  299. }
  300. spin_unlock_bh(&sta->lock);
  301. }
  302. int ieee80211_start_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid)
  303. {
  304. struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
  305. struct ieee80211_sub_if_data *sdata = sta->sdata;
  306. struct ieee80211_local *local = sdata->local;
  307. struct tid_ampdu_tx *tid_tx;
  308. int ret = 0;
  309. trace_api_start_tx_ba_session(pubsta, tid);
  310. if (WARN_ON(!local->ops->ampdu_action))
  311. return -EINVAL;
  312. if ((tid >= STA_TID_NUM) ||
  313. !(local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION))
  314. return -EINVAL;
  315. #ifdef CONFIG_MAC80211_HT_DEBUG
  316. printk(KERN_DEBUG "Open BA session requested for %pM tid %u\n",
  317. pubsta->addr, tid);
  318. #endif /* CONFIG_MAC80211_HT_DEBUG */
  319. /*
  320. * The aggregation code is not prepared to handle
  321. * anything but STA/AP due to the BSSID handling.
  322. * IBSS could work in the code but isn't supported
  323. * by drivers or the standard.
  324. */
  325. if (sdata->vif.type != NL80211_IFTYPE_STATION &&
  326. sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
  327. sdata->vif.type != NL80211_IFTYPE_AP)
  328. return -EINVAL;
  329. if (test_sta_flags(sta, WLAN_STA_BLOCK_BA)) {
  330. #ifdef CONFIG_MAC80211_HT_DEBUG
  331. printk(KERN_DEBUG "BA sessions blocked. "
  332. "Denying BA session request\n");
  333. #endif
  334. return -EINVAL;
  335. }
  336. spin_lock_bh(&sta->lock);
  337. /* we have tried too many times, receiver does not want A-MPDU */
  338. if (sta->ampdu_mlme.addba_req_num[tid] > HT_AGG_MAX_RETRIES) {
  339. ret = -EBUSY;
  340. goto err_unlock_sta;
  341. }
  342. tid_tx = sta->ampdu_mlme.tid_tx[tid];
  343. /* check if the TID is not in aggregation flow already */
  344. if (tid_tx) {
  345. #ifdef CONFIG_MAC80211_HT_DEBUG
  346. printk(KERN_DEBUG "BA request denied - session is not "
  347. "idle on tid %u\n", tid);
  348. #endif /* CONFIG_MAC80211_HT_DEBUG */
  349. ret = -EAGAIN;
  350. goto err_unlock_sta;
  351. }
  352. /* prepare A-MPDU MLME for Tx aggregation */
  353. tid_tx = kzalloc(sizeof(struct tid_ampdu_tx), GFP_ATOMIC);
  354. if (!tid_tx) {
  355. #ifdef CONFIG_MAC80211_HT_DEBUG
  356. if (net_ratelimit())
  357. printk(KERN_ERR "allocate tx mlme to tid %d failed\n",
  358. tid);
  359. #endif
  360. ret = -ENOMEM;
  361. goto err_unlock_sta;
  362. }
  363. skb_queue_head_init(&tid_tx->pending);
  364. __set_bit(HT_AGG_STATE_WANT_START, &tid_tx->state);
  365. /* Tx timer */
  366. tid_tx->addba_resp_timer.function = sta_addba_resp_timer_expired;
  367. tid_tx->addba_resp_timer.data = (unsigned long)&sta->timer_to_tid[tid];
  368. init_timer(&tid_tx->addba_resp_timer);
  369. /* assign a dialog token */
  370. sta->ampdu_mlme.dialog_token_allocator++;
  371. tid_tx->dialog_token = sta->ampdu_mlme.dialog_token_allocator;
  372. /* finally, assign it to the array */
  373. rcu_assign_pointer(sta->ampdu_mlme.tid_tx[tid], tid_tx);
  374. ieee80211_queue_work(&local->hw, &sta->ampdu_mlme.work);
  375. /* this flow continues off the work */
  376. err_unlock_sta:
  377. spin_unlock_bh(&sta->lock);
  378. return ret;
  379. }
  380. EXPORT_SYMBOL(ieee80211_start_tx_ba_session);
  381. /*
  382. * splice packets from the STA's pending to the local pending,
  383. * requires a call to ieee80211_agg_splice_finish later
  384. */
  385. static void __acquires(agg_queue)
  386. ieee80211_agg_splice_packets(struct ieee80211_local *local,
  387. struct tid_ampdu_tx *tid_tx, u16 tid)
  388. {
  389. int queue = ieee80211_ac_from_tid(tid);
  390. unsigned long flags;
  391. ieee80211_stop_queue_agg(local, tid);
  392. if (WARN(!tid_tx, "TID %d gone but expected when splicing aggregates"
  393. " from the pending queue\n", tid))
  394. return;
  395. if (!skb_queue_empty(&tid_tx->pending)) {
  396. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  397. /* copy over remaining packets */
  398. skb_queue_splice_tail_init(&tid_tx->pending,
  399. &local->pending[queue]);
  400. spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
  401. }
  402. }
  403. static void __releases(agg_queue)
  404. ieee80211_agg_splice_finish(struct ieee80211_local *local, u16 tid)
  405. {
  406. ieee80211_wake_queue_agg(local, tid);
  407. }
  408. /* caller must hold sta->lock */
  409. static void ieee80211_agg_tx_operational(struct ieee80211_local *local,
  410. struct sta_info *sta, u16 tid)
  411. {
  412. lockdep_assert_held(&sta->lock);
  413. #ifdef CONFIG_MAC80211_HT_DEBUG
  414. printk(KERN_DEBUG "Aggregation is on for tid %d\n", tid);
  415. #endif
  416. ieee80211_agg_splice_packets(local, sta->ampdu_mlme.tid_tx[tid], tid);
  417. /*
  418. * Now mark as operational. This will be visible
  419. * in the TX path, and lets it go lock-free in
  420. * the common case.
  421. */
  422. set_bit(HT_AGG_STATE_OPERATIONAL, &sta->ampdu_mlme.tid_tx[tid]->state);
  423. ieee80211_agg_splice_finish(local, tid);
  424. drv_ampdu_action(local, sta->sdata,
  425. IEEE80211_AMPDU_TX_OPERATIONAL,
  426. &sta->sta, tid, NULL);
  427. }
  428. void ieee80211_start_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u16 tid)
  429. {
  430. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  431. struct ieee80211_local *local = sdata->local;
  432. struct sta_info *sta;
  433. struct tid_ampdu_tx *tid_tx;
  434. trace_api_start_tx_ba_cb(sdata, ra, tid);
  435. if (tid >= STA_TID_NUM) {
  436. #ifdef CONFIG_MAC80211_HT_DEBUG
  437. printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
  438. tid, STA_TID_NUM);
  439. #endif
  440. return;
  441. }
  442. rcu_read_lock();
  443. sta = sta_info_get(sdata, ra);
  444. if (!sta) {
  445. rcu_read_unlock();
  446. #ifdef CONFIG_MAC80211_HT_DEBUG
  447. printk(KERN_DEBUG "Could not find station: %pM\n", ra);
  448. #endif
  449. return;
  450. }
  451. spin_lock_bh(&sta->lock);
  452. tid_tx = sta->ampdu_mlme.tid_tx[tid];
  453. if (WARN_ON(!tid_tx)) {
  454. #ifdef CONFIG_MAC80211_HT_DEBUG
  455. printk(KERN_DEBUG "addBA was not requested!\n");
  456. #endif
  457. spin_unlock_bh(&sta->lock);
  458. rcu_read_unlock();
  459. return;
  460. }
  461. if (WARN_ON(test_and_set_bit(HT_AGG_STATE_DRV_READY, &tid_tx->state)))
  462. goto out;
  463. if (test_bit(HT_AGG_STATE_RESPONSE_RECEIVED, &tid_tx->state))
  464. ieee80211_agg_tx_operational(local, sta, tid);
  465. out:
  466. spin_unlock_bh(&sta->lock);
  467. rcu_read_unlock();
  468. }
  469. void ieee80211_start_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
  470. const u8 *ra, u16 tid)
  471. {
  472. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  473. struct ieee80211_local *local = sdata->local;
  474. struct ieee80211_ra_tid *ra_tid;
  475. struct sk_buff *skb = dev_alloc_skb(0);
  476. if (unlikely(!skb)) {
  477. #ifdef CONFIG_MAC80211_HT_DEBUG
  478. if (net_ratelimit())
  479. printk(KERN_WARNING "%s: Not enough memory, "
  480. "dropping start BA session", sdata->name);
  481. #endif
  482. return;
  483. }
  484. ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
  485. memcpy(&ra_tid->ra, ra, ETH_ALEN);
  486. ra_tid->tid = tid;
  487. skb->pkt_type = IEEE80211_SDATA_QUEUE_AGG_START;
  488. skb_queue_tail(&sdata->skb_queue, skb);
  489. ieee80211_queue_work(&local->hw, &sdata->work);
  490. }
  491. EXPORT_SYMBOL(ieee80211_start_tx_ba_cb_irqsafe);
  492. int __ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
  493. enum ieee80211_back_parties initiator)
  494. {
  495. struct tid_ampdu_tx *tid_tx;
  496. int ret;
  497. spin_lock_bh(&sta->lock);
  498. tid_tx = sta->ampdu_mlme.tid_tx[tid];
  499. if (!tid_tx) {
  500. ret = -ENOENT;
  501. goto unlock;
  502. }
  503. ret = ___ieee80211_stop_tx_ba_session(sta, tid, initiator);
  504. unlock:
  505. spin_unlock_bh(&sta->lock);
  506. return ret;
  507. }
  508. int ieee80211_stop_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid)
  509. {
  510. struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
  511. struct ieee80211_sub_if_data *sdata = sta->sdata;
  512. struct ieee80211_local *local = sdata->local;
  513. struct tid_ampdu_tx *tid_tx;
  514. int ret = 0;
  515. trace_api_stop_tx_ba_session(pubsta, tid);
  516. if (!local->ops->ampdu_action)
  517. return -EINVAL;
  518. if (tid >= STA_TID_NUM)
  519. return -EINVAL;
  520. spin_lock_bh(&sta->lock);
  521. tid_tx = sta->ampdu_mlme.tid_tx[tid];
  522. if (!tid_tx) {
  523. ret = -ENOENT;
  524. goto unlock;
  525. }
  526. if (test_bit(HT_AGG_STATE_STOPPING, &tid_tx->state)) {
  527. /* already in progress stopping it */
  528. ret = 0;
  529. goto unlock;
  530. }
  531. set_bit(HT_AGG_STATE_WANT_STOP, &tid_tx->state);
  532. ieee80211_queue_work(&local->hw, &sta->ampdu_mlme.work);
  533. unlock:
  534. spin_unlock_bh(&sta->lock);
  535. return ret;
  536. }
  537. EXPORT_SYMBOL(ieee80211_stop_tx_ba_session);
  538. void ieee80211_stop_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u8 tid)
  539. {
  540. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  541. struct ieee80211_local *local = sdata->local;
  542. struct sta_info *sta;
  543. struct tid_ampdu_tx *tid_tx;
  544. trace_api_stop_tx_ba_cb(sdata, ra, tid);
  545. if (tid >= STA_TID_NUM) {
  546. #ifdef CONFIG_MAC80211_HT_DEBUG
  547. printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
  548. tid, STA_TID_NUM);
  549. #endif
  550. return;
  551. }
  552. #ifdef CONFIG_MAC80211_HT_DEBUG
  553. printk(KERN_DEBUG "Stopping Tx BA session for %pM tid %d\n",
  554. ra, tid);
  555. #endif /* CONFIG_MAC80211_HT_DEBUG */
  556. rcu_read_lock();
  557. sta = sta_info_get(sdata, ra);
  558. if (!sta) {
  559. #ifdef CONFIG_MAC80211_HT_DEBUG
  560. printk(KERN_DEBUG "Could not find station: %pM\n", ra);
  561. #endif
  562. rcu_read_unlock();
  563. return;
  564. }
  565. spin_lock_bh(&sta->lock);
  566. tid_tx = sta->ampdu_mlme.tid_tx[tid];
  567. if (!tid_tx || !test_bit(HT_AGG_STATE_STOPPING, &tid_tx->state)) {
  568. #ifdef CONFIG_MAC80211_HT_DEBUG
  569. printk(KERN_DEBUG "unexpected callback to A-MPDU stop\n");
  570. #endif
  571. spin_unlock_bh(&sta->lock);
  572. rcu_read_unlock();
  573. return;
  574. }
  575. if (tid_tx->stop_initiator == WLAN_BACK_INITIATOR)
  576. ieee80211_send_delba(sta->sdata, ra, tid,
  577. WLAN_BACK_INITIATOR, WLAN_REASON_QSTA_NOT_USE);
  578. /*
  579. * When we get here, the TX path will not be lockless any more wrt.
  580. * aggregation, since the OPERATIONAL bit has long been cleared.
  581. * Thus it will block on getting the lock, if it occurs. So if we
  582. * stop the queue now, we will not get any more packets, and any
  583. * that might be being processed will wait for us here, thereby
  584. * guaranteeing that no packets go to the tid_tx pending queue any
  585. * more.
  586. */
  587. ieee80211_agg_splice_packets(local, tid_tx, tid);
  588. /* future packets must not find the tid_tx struct any more */
  589. rcu_assign_pointer(sta->ampdu_mlme.tid_tx[tid], NULL);
  590. ieee80211_agg_splice_finish(local, tid);
  591. call_rcu(&tid_tx->rcu_head, kfree_tid_tx);
  592. spin_unlock_bh(&sta->lock);
  593. rcu_read_unlock();
  594. }
  595. void ieee80211_stop_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
  596. const u8 *ra, u16 tid)
  597. {
  598. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  599. struct ieee80211_local *local = sdata->local;
  600. struct ieee80211_ra_tid *ra_tid;
  601. struct sk_buff *skb = dev_alloc_skb(0);
  602. if (unlikely(!skb)) {
  603. #ifdef CONFIG_MAC80211_HT_DEBUG
  604. if (net_ratelimit())
  605. printk(KERN_WARNING "%s: Not enough memory, "
  606. "dropping stop BA session", sdata->name);
  607. #endif
  608. return;
  609. }
  610. ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
  611. memcpy(&ra_tid->ra, ra, ETH_ALEN);
  612. ra_tid->tid = tid;
  613. skb->pkt_type = IEEE80211_SDATA_QUEUE_AGG_STOP;
  614. skb_queue_tail(&sdata->skb_queue, skb);
  615. ieee80211_queue_work(&local->hw, &sdata->work);
  616. }
  617. EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb_irqsafe);
  618. void ieee80211_process_addba_resp(struct ieee80211_local *local,
  619. struct sta_info *sta,
  620. struct ieee80211_mgmt *mgmt,
  621. size_t len)
  622. {
  623. struct tid_ampdu_tx *tid_tx;
  624. u16 capab, tid;
  625. capab = le16_to_cpu(mgmt->u.action.u.addba_resp.capab);
  626. tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
  627. spin_lock_bh(&sta->lock);
  628. tid_tx = sta->ampdu_mlme.tid_tx[tid];
  629. if (!tid_tx)
  630. goto out;
  631. if (mgmt->u.action.u.addba_resp.dialog_token != tid_tx->dialog_token) {
  632. #ifdef CONFIG_MAC80211_HT_DEBUG
  633. printk(KERN_DEBUG "wrong addBA response token, tid %d\n", tid);
  634. #endif
  635. goto out;
  636. }
  637. del_timer(&tid_tx->addba_resp_timer);
  638. #ifdef CONFIG_MAC80211_HT_DEBUG
  639. printk(KERN_DEBUG "switched off addBA timer for tid %d\n", tid);
  640. #endif
  641. if (le16_to_cpu(mgmt->u.action.u.addba_resp.status)
  642. == WLAN_STATUS_SUCCESS) {
  643. if (test_and_set_bit(HT_AGG_STATE_RESPONSE_RECEIVED,
  644. &tid_tx->state)) {
  645. /* ignore duplicate response */
  646. goto out;
  647. }
  648. if (test_bit(HT_AGG_STATE_DRV_READY, &tid_tx->state))
  649. ieee80211_agg_tx_operational(local, sta, tid);
  650. sta->ampdu_mlme.addba_req_num[tid] = 0;
  651. } else {
  652. ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
  653. }
  654. out:
  655. spin_unlock_bh(&sta->lock);
  656. }