agg-tx.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857
  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-2010, 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 <linux/export.h>
  18. #include <net/mac80211.h>
  19. #include "ieee80211_i.h"
  20. #include "driver-ops.h"
  21. #include "wme.h"
  22. /**
  23. * DOC: TX A-MPDU aggregation
  24. *
  25. * Aggregation on the TX side requires setting the hardware flag
  26. * %IEEE80211_HW_AMPDU_AGGREGATION. The driver will then be handed
  27. * packets with a flag indicating A-MPDU aggregation. The driver
  28. * or device is responsible for actually aggregating the frames,
  29. * as well as deciding how many and which to aggregate.
  30. *
  31. * When TX aggregation is started by some subsystem (usually the rate
  32. * control algorithm would be appropriate) by calling the
  33. * ieee80211_start_tx_ba_session() function, the driver will be
  34. * notified via its @ampdu_action function, with the
  35. * %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_irqsafe() function, which will really
  39. * start the aggregation session after the peer has also responded.
  40. * If the peer responds negatively, the session will be stopped
  41. * again right away. Note that it is possible for the aggregation
  42. * session to be stopped before the driver has indicated that it
  43. * is done setting it up, in which case it must not indicate the
  44. * setup completion.
  45. *
  46. * Also note that, since we also need to wait for a response from
  47. * the peer, the driver is notified of the completion of the
  48. * handshake by the %IEEE80211_AMPDU_TX_OPERATIONAL action to the
  49. * @ampdu_action callback.
  50. *
  51. * Similarly, when the aggregation session is stopped by the peer
  52. * or something calling ieee80211_stop_tx_ba_session(), the driver's
  53. * @ampdu_action function will be called with the action
  54. * %IEEE80211_AMPDU_TX_STOP. In this case, the call must not fail,
  55. * and the driver must later call ieee80211_stop_tx_ba_cb_irqsafe().
  56. */
  57. static void ieee80211_send_addba_request(struct ieee80211_sub_if_data *sdata,
  58. const u8 *da, u16 tid,
  59. u8 dialog_token, u16 start_seq_num,
  60. u16 agg_size, u16 timeout)
  61. {
  62. struct ieee80211_local *local = sdata->local;
  63. struct sk_buff *skb;
  64. struct ieee80211_mgmt *mgmt;
  65. u16 capab;
  66. skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom);
  67. if (!skb)
  68. return;
  69. skb_reserve(skb, local->hw.extra_tx_headroom);
  70. mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
  71. memset(mgmt, 0, 24);
  72. memcpy(mgmt->da, da, ETH_ALEN);
  73. memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
  74. if (sdata->vif.type == NL80211_IFTYPE_AP ||
  75. sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
  76. sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
  77. memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
  78. else if (sdata->vif.type == NL80211_IFTYPE_STATION)
  79. memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
  80. mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  81. IEEE80211_STYPE_ACTION);
  82. skb_put(skb, 1 + sizeof(mgmt->u.action.u.addba_req));
  83. mgmt->u.action.category = WLAN_CATEGORY_BACK;
  84. mgmt->u.action.u.addba_req.action_code = WLAN_ACTION_ADDBA_REQ;
  85. mgmt->u.action.u.addba_req.dialog_token = dialog_token;
  86. capab = (u16)(1 << 1); /* bit 1 aggregation policy */
  87. capab |= (u16)(tid << 2); /* bit 5:2 TID number */
  88. capab |= (u16)(agg_size << 6); /* bit 15:6 max size of aggergation */
  89. mgmt->u.action.u.addba_req.capab = cpu_to_le16(capab);
  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. ieee80211_tx_skb(sdata, skb);
  94. }
  95. void ieee80211_send_bar(struct ieee80211_vif *vif, u8 *ra, u16 tid, u16 ssn)
  96. {
  97. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  98. struct ieee80211_local *local = sdata->local;
  99. struct sk_buff *skb;
  100. struct ieee80211_bar *bar;
  101. u16 bar_control = 0;
  102. skb = dev_alloc_skb(sizeof(*bar) + local->hw.extra_tx_headroom);
  103. if (!skb)
  104. return;
  105. skb_reserve(skb, local->hw.extra_tx_headroom);
  106. bar = (struct ieee80211_bar *)skb_put(skb, sizeof(*bar));
  107. memset(bar, 0, sizeof(*bar));
  108. bar->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
  109. IEEE80211_STYPE_BACK_REQ);
  110. memcpy(bar->ra, ra, ETH_ALEN);
  111. memcpy(bar->ta, sdata->vif.addr, ETH_ALEN);
  112. bar_control |= (u16)IEEE80211_BAR_CTRL_ACK_POLICY_NORMAL;
  113. bar_control |= (u16)IEEE80211_BAR_CTRL_CBMTID_COMPRESSED_BA;
  114. bar_control |= (u16)(tid << IEEE80211_BAR_CTRL_TID_INFO_SHIFT);
  115. bar->control = cpu_to_le16(bar_control);
  116. bar->start_seq_num = cpu_to_le16(ssn);
  117. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
  118. ieee80211_tx_skb(sdata, skb);
  119. }
  120. EXPORT_SYMBOL(ieee80211_send_bar);
  121. void ieee80211_assign_tid_tx(struct sta_info *sta, int tid,
  122. struct tid_ampdu_tx *tid_tx)
  123. {
  124. lockdep_assert_held(&sta->ampdu_mlme.mtx);
  125. lockdep_assert_held(&sta->lock);
  126. rcu_assign_pointer(sta->ampdu_mlme.tid_tx[tid], tid_tx);
  127. }
  128. int ___ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
  129. enum ieee80211_back_parties initiator,
  130. bool tx)
  131. {
  132. struct ieee80211_local *local = sta->local;
  133. struct tid_ampdu_tx *tid_tx;
  134. int ret;
  135. lockdep_assert_held(&sta->ampdu_mlme.mtx);
  136. spin_lock_bh(&sta->lock);
  137. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  138. if (!tid_tx) {
  139. spin_unlock_bh(&sta->lock);
  140. return -ENOENT;
  141. }
  142. /* if we're already stopping ignore any new requests to stop */
  143. if (test_bit(HT_AGG_STATE_STOPPING, &tid_tx->state)) {
  144. spin_unlock_bh(&sta->lock);
  145. return -EALREADY;
  146. }
  147. if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
  148. /* not even started yet! */
  149. ieee80211_assign_tid_tx(sta, tid, NULL);
  150. spin_unlock_bh(&sta->lock);
  151. kfree_rcu(tid_tx, rcu_head);
  152. return 0;
  153. }
  154. set_bit(HT_AGG_STATE_STOPPING, &tid_tx->state);
  155. spin_unlock_bh(&sta->lock);
  156. #ifdef CONFIG_MAC80211_HT_DEBUG
  157. printk(KERN_DEBUG "Tx BA session stop requested for %pM tid %u\n",
  158. sta->sta.addr, tid);
  159. #endif /* CONFIG_MAC80211_HT_DEBUG */
  160. del_timer_sync(&tid_tx->addba_resp_timer);
  161. del_timer_sync(&tid_tx->session_timer);
  162. /*
  163. * After this packets are no longer handed right through
  164. * to the driver but are put onto tid_tx->pending instead,
  165. * with locking to ensure proper access.
  166. */
  167. clear_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state);
  168. /*
  169. * There might be a few packets being processed right now (on
  170. * another CPU) that have already gotten past the aggregation
  171. * check when it was still OPERATIONAL and consequently have
  172. * IEEE80211_TX_CTL_AMPDU set. In that case, this code might
  173. * call into the driver at the same time or even before the
  174. * TX paths calls into it, which could confuse the driver.
  175. *
  176. * Wait for all currently running TX paths to finish before
  177. * telling the driver. New packets will not go through since
  178. * the aggregation session is no longer OPERATIONAL.
  179. */
  180. synchronize_net();
  181. tid_tx->stop_initiator = initiator;
  182. tid_tx->tx_stop = tx;
  183. ret = drv_ampdu_action(local, sta->sdata,
  184. IEEE80211_AMPDU_TX_STOP,
  185. &sta->sta, tid, NULL, 0);
  186. /* HW shall not deny going back to legacy */
  187. if (WARN_ON(ret)) {
  188. /*
  189. * We may have pending packets get stuck in this case...
  190. * Not bothering with a workaround for now.
  191. */
  192. }
  193. return ret;
  194. }
  195. /*
  196. * After sending add Block Ack request we activated a timer until
  197. * add Block Ack response will arrive from the recipient.
  198. * If this timer expires sta_addba_resp_timer_expired will be executed.
  199. */
  200. static void sta_addba_resp_timer_expired(unsigned long data)
  201. {
  202. /* not an elegant detour, but there is no choice as the timer passes
  203. * only one argument, and both sta_info and TID are needed, so init
  204. * flow in sta_info_create gives the TID as data, while the timer_to_id
  205. * array gives the sta through container_of */
  206. u16 tid = *(u8 *)data;
  207. struct sta_info *sta = container_of((void *)data,
  208. struct sta_info, timer_to_tid[tid]);
  209. struct tid_ampdu_tx *tid_tx;
  210. /* check if the TID waits for addBA response */
  211. rcu_read_lock();
  212. tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]);
  213. if (!tid_tx ||
  214. test_bit(HT_AGG_STATE_RESPONSE_RECEIVED, &tid_tx->state)) {
  215. rcu_read_unlock();
  216. #ifdef CONFIG_MAC80211_HT_DEBUG
  217. printk(KERN_DEBUG "timer expired on tid %d but we are not "
  218. "(or no longer) expecting addBA response there\n",
  219. tid);
  220. #endif
  221. return;
  222. }
  223. #ifdef CONFIG_MAC80211_HT_DEBUG
  224. printk(KERN_DEBUG "addBA response timer expired on tid %d\n", tid);
  225. #endif
  226. ieee80211_stop_tx_ba_session(&sta->sta, tid);
  227. rcu_read_unlock();
  228. }
  229. static inline int ieee80211_ac_from_tid(int tid)
  230. {
  231. return ieee802_1d_to_ac[tid & 7];
  232. }
  233. /*
  234. * When multiple aggregation sessions on multiple stations
  235. * are being created/destroyed simultaneously, we need to
  236. * refcount the global queue stop caused by that in order
  237. * to not get into a situation where one of the aggregation
  238. * setup or teardown re-enables queues before the other is
  239. * ready to handle that.
  240. *
  241. * These two functions take care of this issue by keeping
  242. * a global "agg_queue_stop" refcount.
  243. */
  244. static void __acquires(agg_queue)
  245. ieee80211_stop_queue_agg(struct ieee80211_local *local, int tid)
  246. {
  247. int queue = ieee80211_ac_from_tid(tid);
  248. if (atomic_inc_return(&local->agg_queue_stop[queue]) == 1)
  249. ieee80211_stop_queue_by_reason(
  250. &local->hw, queue,
  251. IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
  252. __acquire(agg_queue);
  253. }
  254. static void __releases(agg_queue)
  255. ieee80211_wake_queue_agg(struct ieee80211_local *local, int tid)
  256. {
  257. int queue = ieee80211_ac_from_tid(tid);
  258. if (atomic_dec_return(&local->agg_queue_stop[queue]) == 0)
  259. ieee80211_wake_queue_by_reason(
  260. &local->hw, queue,
  261. IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
  262. __release(agg_queue);
  263. }
  264. void ieee80211_tx_ba_session_handle_start(struct sta_info *sta, int tid)
  265. {
  266. struct tid_ampdu_tx *tid_tx;
  267. struct ieee80211_local *local = sta->local;
  268. struct ieee80211_sub_if_data *sdata = sta->sdata;
  269. u16 start_seq_num;
  270. int ret;
  271. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  272. /*
  273. * While we're asking the driver about the aggregation,
  274. * stop the AC queue so that we don't have to worry
  275. * about frames that came in while we were doing that,
  276. * which would require us to put them to the AC pending
  277. * afterwards which just makes the code more complex.
  278. */
  279. ieee80211_stop_queue_agg(local, tid);
  280. clear_bit(HT_AGG_STATE_WANT_START, &tid_tx->state);
  281. /*
  282. * make sure no packets are being processed to get
  283. * valid starting sequence number
  284. */
  285. synchronize_net();
  286. start_seq_num = sta->tid_seq[tid] >> 4;
  287. ret = drv_ampdu_action(local, sdata, IEEE80211_AMPDU_TX_START,
  288. &sta->sta, tid, &start_seq_num, 0);
  289. if (ret) {
  290. #ifdef CONFIG_MAC80211_HT_DEBUG
  291. printk(KERN_DEBUG "BA request denied - HW unavailable for"
  292. " tid %d\n", tid);
  293. #endif
  294. spin_lock_bh(&sta->lock);
  295. ieee80211_assign_tid_tx(sta, tid, NULL);
  296. spin_unlock_bh(&sta->lock);
  297. ieee80211_wake_queue_agg(local, tid);
  298. kfree_rcu(tid_tx, rcu_head);
  299. return;
  300. }
  301. /* we can take packets again now */
  302. ieee80211_wake_queue_agg(local, tid);
  303. /* activate the timer for the recipient's addBA response */
  304. mod_timer(&tid_tx->addba_resp_timer, jiffies + ADDBA_RESP_INTERVAL);
  305. #ifdef CONFIG_MAC80211_HT_DEBUG
  306. printk(KERN_DEBUG "activated addBA response timer on tid %d\n", tid);
  307. #endif
  308. spin_lock_bh(&sta->lock);
  309. sta->ampdu_mlme.addba_req_num[tid]++;
  310. spin_unlock_bh(&sta->lock);
  311. /* send AddBA request */
  312. ieee80211_send_addba_request(sdata, sta->sta.addr, tid,
  313. tid_tx->dialog_token, start_seq_num,
  314. local->hw.max_tx_aggregation_subframes,
  315. tid_tx->timeout);
  316. }
  317. /*
  318. * After accepting the AddBA Response we activated a timer,
  319. * resetting it after each frame that we send.
  320. */
  321. static void sta_tx_agg_session_timer_expired(unsigned long data)
  322. {
  323. /* not an elegant detour, but there is no choice as the timer passes
  324. * only one argument, and various sta_info are needed here, so init
  325. * flow in sta_info_create gives the TID as data, while the timer_to_id
  326. * array gives the sta through container_of */
  327. u8 *ptid = (u8 *)data;
  328. u8 *timer_to_id = ptid - *ptid;
  329. struct sta_info *sta = container_of(timer_to_id, struct sta_info,
  330. timer_to_tid[0]);
  331. #ifdef CONFIG_MAC80211_HT_DEBUG
  332. printk(KERN_DEBUG "tx session timer expired on tid %d\n", (u16)*ptid);
  333. #endif
  334. ieee80211_stop_tx_ba_session(&sta->sta, *ptid);
  335. }
  336. int ieee80211_start_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid,
  337. u16 timeout)
  338. {
  339. struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
  340. struct ieee80211_sub_if_data *sdata = sta->sdata;
  341. struct ieee80211_local *local = sdata->local;
  342. struct tid_ampdu_tx *tid_tx;
  343. int ret = 0;
  344. trace_api_start_tx_ba_session(pubsta, tid);
  345. if (WARN_ON(!local->ops->ampdu_action))
  346. return -EINVAL;
  347. if ((tid >= STA_TID_NUM) ||
  348. !(local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION) ||
  349. (local->hw.flags & IEEE80211_HW_TX_AMPDU_SETUP_IN_HW))
  350. return -EINVAL;
  351. #ifdef CONFIG_MAC80211_HT_DEBUG
  352. printk(KERN_DEBUG "Open BA session requested for %pM tid %u\n",
  353. pubsta->addr, tid);
  354. #endif /* CONFIG_MAC80211_HT_DEBUG */
  355. if (sdata->vif.type != NL80211_IFTYPE_STATION &&
  356. sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
  357. sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
  358. sdata->vif.type != NL80211_IFTYPE_AP)
  359. return -EINVAL;
  360. if (test_sta_flag(sta, WLAN_STA_BLOCK_BA)) {
  361. #ifdef CONFIG_MAC80211_HT_DEBUG
  362. printk(KERN_DEBUG "BA sessions blocked. "
  363. "Denying BA session request\n");
  364. #endif
  365. return -EINVAL;
  366. }
  367. spin_lock_bh(&sta->lock);
  368. /* we have tried too many times, receiver does not want A-MPDU */
  369. if (sta->ampdu_mlme.addba_req_num[tid] > HT_AGG_MAX_RETRIES) {
  370. ret = -EBUSY;
  371. goto err_unlock_sta;
  372. }
  373. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  374. /* check if the TID is not in aggregation flow already */
  375. if (tid_tx || sta->ampdu_mlme.tid_start_tx[tid]) {
  376. #ifdef CONFIG_MAC80211_HT_DEBUG
  377. printk(KERN_DEBUG "BA request denied - session is not "
  378. "idle on tid %u\n", tid);
  379. #endif /* CONFIG_MAC80211_HT_DEBUG */
  380. ret = -EAGAIN;
  381. goto err_unlock_sta;
  382. }
  383. /* prepare A-MPDU MLME for Tx aggregation */
  384. tid_tx = kzalloc(sizeof(struct tid_ampdu_tx), GFP_ATOMIC);
  385. if (!tid_tx) {
  386. ret = -ENOMEM;
  387. goto err_unlock_sta;
  388. }
  389. skb_queue_head_init(&tid_tx->pending);
  390. __set_bit(HT_AGG_STATE_WANT_START, &tid_tx->state);
  391. tid_tx->timeout = timeout;
  392. /* response timer */
  393. tid_tx->addba_resp_timer.function = sta_addba_resp_timer_expired;
  394. tid_tx->addba_resp_timer.data = (unsigned long)&sta->timer_to_tid[tid];
  395. init_timer(&tid_tx->addba_resp_timer);
  396. /* tx timer */
  397. tid_tx->session_timer.function = sta_tx_agg_session_timer_expired;
  398. tid_tx->session_timer.data = (unsigned long)&sta->timer_to_tid[tid];
  399. init_timer(&tid_tx->session_timer);
  400. /* assign a dialog token */
  401. sta->ampdu_mlme.dialog_token_allocator++;
  402. tid_tx->dialog_token = sta->ampdu_mlme.dialog_token_allocator;
  403. /*
  404. * Finally, assign it to the start array; the work item will
  405. * collect it and move it to the normal array.
  406. */
  407. sta->ampdu_mlme.tid_start_tx[tid] = tid_tx;
  408. ieee80211_queue_work(&local->hw, &sta->ampdu_mlme.work);
  409. /* this flow continues off the work */
  410. err_unlock_sta:
  411. spin_unlock_bh(&sta->lock);
  412. return ret;
  413. }
  414. EXPORT_SYMBOL(ieee80211_start_tx_ba_session);
  415. /*
  416. * splice packets from the STA's pending to the local pending,
  417. * requires a call to ieee80211_agg_splice_finish later
  418. */
  419. static void __acquires(agg_queue)
  420. ieee80211_agg_splice_packets(struct ieee80211_local *local,
  421. struct tid_ampdu_tx *tid_tx, u16 tid)
  422. {
  423. int queue = ieee80211_ac_from_tid(tid);
  424. unsigned long flags;
  425. ieee80211_stop_queue_agg(local, tid);
  426. if (WARN(!tid_tx, "TID %d gone but expected when splicing aggregates"
  427. " from the pending queue\n", tid))
  428. return;
  429. if (!skb_queue_empty(&tid_tx->pending)) {
  430. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  431. /* copy over remaining packets */
  432. skb_queue_splice_tail_init(&tid_tx->pending,
  433. &local->pending[queue]);
  434. spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
  435. }
  436. }
  437. static void __releases(agg_queue)
  438. ieee80211_agg_splice_finish(struct ieee80211_local *local, u16 tid)
  439. {
  440. ieee80211_wake_queue_agg(local, tid);
  441. }
  442. static void ieee80211_agg_tx_operational(struct ieee80211_local *local,
  443. struct sta_info *sta, u16 tid)
  444. {
  445. struct tid_ampdu_tx *tid_tx;
  446. lockdep_assert_held(&sta->ampdu_mlme.mtx);
  447. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  448. #ifdef CONFIG_MAC80211_HT_DEBUG
  449. printk(KERN_DEBUG "Aggregation is on for tid %d\n", tid);
  450. #endif
  451. drv_ampdu_action(local, sta->sdata,
  452. IEEE80211_AMPDU_TX_OPERATIONAL,
  453. &sta->sta, tid, NULL, tid_tx->buf_size);
  454. /*
  455. * synchronize with TX path, while splicing the TX path
  456. * should block so it won't put more packets onto pending.
  457. */
  458. spin_lock_bh(&sta->lock);
  459. ieee80211_agg_splice_packets(local, tid_tx, tid);
  460. /*
  461. * Now mark as operational. This will be visible
  462. * in the TX path, and lets it go lock-free in
  463. * the common case.
  464. */
  465. set_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state);
  466. ieee80211_agg_splice_finish(local, tid);
  467. spin_unlock_bh(&sta->lock);
  468. }
  469. void ieee80211_start_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u16 tid)
  470. {
  471. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  472. struct ieee80211_local *local = sdata->local;
  473. struct sta_info *sta;
  474. struct tid_ampdu_tx *tid_tx;
  475. trace_api_start_tx_ba_cb(sdata, ra, tid);
  476. if (tid >= STA_TID_NUM) {
  477. #ifdef CONFIG_MAC80211_HT_DEBUG
  478. printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
  479. tid, STA_TID_NUM);
  480. #endif
  481. return;
  482. }
  483. mutex_lock(&local->sta_mtx);
  484. sta = sta_info_get_bss(sdata, ra);
  485. if (!sta) {
  486. mutex_unlock(&local->sta_mtx);
  487. #ifdef CONFIG_MAC80211_HT_DEBUG
  488. printk(KERN_DEBUG "Could not find station: %pM\n", ra);
  489. #endif
  490. return;
  491. }
  492. mutex_lock(&sta->ampdu_mlme.mtx);
  493. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  494. if (WARN_ON(!tid_tx)) {
  495. #ifdef CONFIG_MAC80211_HT_DEBUG
  496. printk(KERN_DEBUG "addBA was not requested!\n");
  497. #endif
  498. goto unlock;
  499. }
  500. if (WARN_ON(test_and_set_bit(HT_AGG_STATE_DRV_READY, &tid_tx->state)))
  501. goto unlock;
  502. if (test_bit(HT_AGG_STATE_RESPONSE_RECEIVED, &tid_tx->state))
  503. ieee80211_agg_tx_operational(local, sta, tid);
  504. unlock:
  505. mutex_unlock(&sta->ampdu_mlme.mtx);
  506. mutex_unlock(&local->sta_mtx);
  507. }
  508. void ieee80211_start_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
  509. const u8 *ra, u16 tid)
  510. {
  511. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  512. struct ieee80211_local *local = sdata->local;
  513. struct ieee80211_ra_tid *ra_tid;
  514. struct sk_buff *skb = dev_alloc_skb(0);
  515. if (unlikely(!skb))
  516. return;
  517. ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
  518. memcpy(&ra_tid->ra, ra, ETH_ALEN);
  519. ra_tid->tid = tid;
  520. skb->pkt_type = IEEE80211_SDATA_QUEUE_AGG_START;
  521. skb_queue_tail(&sdata->skb_queue, skb);
  522. ieee80211_queue_work(&local->hw, &sdata->work);
  523. }
  524. EXPORT_SYMBOL(ieee80211_start_tx_ba_cb_irqsafe);
  525. int __ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
  526. enum ieee80211_back_parties initiator,
  527. bool tx)
  528. {
  529. int ret;
  530. mutex_lock(&sta->ampdu_mlme.mtx);
  531. ret = ___ieee80211_stop_tx_ba_session(sta, tid, initiator, tx);
  532. mutex_unlock(&sta->ampdu_mlme.mtx);
  533. return ret;
  534. }
  535. int ieee80211_stop_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid)
  536. {
  537. struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
  538. struct ieee80211_sub_if_data *sdata = sta->sdata;
  539. struct ieee80211_local *local = sdata->local;
  540. struct tid_ampdu_tx *tid_tx;
  541. int ret = 0;
  542. trace_api_stop_tx_ba_session(pubsta, tid);
  543. if (!local->ops->ampdu_action)
  544. return -EINVAL;
  545. if (tid >= STA_TID_NUM)
  546. return -EINVAL;
  547. spin_lock_bh(&sta->lock);
  548. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  549. if (!tid_tx) {
  550. ret = -ENOENT;
  551. goto unlock;
  552. }
  553. if (test_bit(HT_AGG_STATE_STOPPING, &tid_tx->state)) {
  554. /* already in progress stopping it */
  555. ret = 0;
  556. goto unlock;
  557. }
  558. set_bit(HT_AGG_STATE_WANT_STOP, &tid_tx->state);
  559. ieee80211_queue_work(&local->hw, &sta->ampdu_mlme.work);
  560. unlock:
  561. spin_unlock_bh(&sta->lock);
  562. return ret;
  563. }
  564. EXPORT_SYMBOL(ieee80211_stop_tx_ba_session);
  565. void ieee80211_stop_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u8 tid)
  566. {
  567. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  568. struct ieee80211_local *local = sdata->local;
  569. struct sta_info *sta;
  570. struct tid_ampdu_tx *tid_tx;
  571. trace_api_stop_tx_ba_cb(sdata, ra, tid);
  572. if (tid >= STA_TID_NUM) {
  573. #ifdef CONFIG_MAC80211_HT_DEBUG
  574. printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
  575. tid, STA_TID_NUM);
  576. #endif
  577. return;
  578. }
  579. #ifdef CONFIG_MAC80211_HT_DEBUG
  580. printk(KERN_DEBUG "Stopping Tx BA session for %pM tid %d\n",
  581. ra, tid);
  582. #endif /* CONFIG_MAC80211_HT_DEBUG */
  583. mutex_lock(&local->sta_mtx);
  584. sta = sta_info_get_bss(sdata, ra);
  585. if (!sta) {
  586. #ifdef CONFIG_MAC80211_HT_DEBUG
  587. printk(KERN_DEBUG "Could not find station: %pM\n", ra);
  588. #endif
  589. goto unlock;
  590. }
  591. mutex_lock(&sta->ampdu_mlme.mtx);
  592. spin_lock_bh(&sta->lock);
  593. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  594. if (!tid_tx || !test_bit(HT_AGG_STATE_STOPPING, &tid_tx->state)) {
  595. #ifdef CONFIG_MAC80211_HT_DEBUG
  596. printk(KERN_DEBUG "unexpected callback to A-MPDU stop\n");
  597. #endif
  598. goto unlock_sta;
  599. }
  600. if (tid_tx->stop_initiator == WLAN_BACK_INITIATOR && tid_tx->tx_stop)
  601. ieee80211_send_delba(sta->sdata, ra, tid,
  602. WLAN_BACK_INITIATOR, WLAN_REASON_QSTA_NOT_USE);
  603. /*
  604. * When we get here, the TX path will not be lockless any more wrt.
  605. * aggregation, since the OPERATIONAL bit has long been cleared.
  606. * Thus it will block on getting the lock, if it occurs. So if we
  607. * stop the queue now, we will not get any more packets, and any
  608. * that might be being processed will wait for us here, thereby
  609. * guaranteeing that no packets go to the tid_tx pending queue any
  610. * more.
  611. */
  612. ieee80211_agg_splice_packets(local, tid_tx, tid);
  613. /* future packets must not find the tid_tx struct any more */
  614. ieee80211_assign_tid_tx(sta, tid, NULL);
  615. ieee80211_agg_splice_finish(local, tid);
  616. kfree_rcu(tid_tx, rcu_head);
  617. unlock_sta:
  618. spin_unlock_bh(&sta->lock);
  619. mutex_unlock(&sta->ampdu_mlme.mtx);
  620. unlock:
  621. mutex_unlock(&local->sta_mtx);
  622. }
  623. void ieee80211_stop_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
  624. const u8 *ra, u16 tid)
  625. {
  626. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  627. struct ieee80211_local *local = sdata->local;
  628. struct ieee80211_ra_tid *ra_tid;
  629. struct sk_buff *skb = dev_alloc_skb(0);
  630. if (unlikely(!skb))
  631. return;
  632. ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
  633. memcpy(&ra_tid->ra, ra, ETH_ALEN);
  634. ra_tid->tid = tid;
  635. skb->pkt_type = IEEE80211_SDATA_QUEUE_AGG_STOP;
  636. skb_queue_tail(&sdata->skb_queue, skb);
  637. ieee80211_queue_work(&local->hw, &sdata->work);
  638. }
  639. EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb_irqsafe);
  640. void ieee80211_process_addba_resp(struct ieee80211_local *local,
  641. struct sta_info *sta,
  642. struct ieee80211_mgmt *mgmt,
  643. size_t len)
  644. {
  645. struct tid_ampdu_tx *tid_tx;
  646. u16 capab, tid;
  647. u8 buf_size;
  648. capab = le16_to_cpu(mgmt->u.action.u.addba_resp.capab);
  649. tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
  650. buf_size = (capab & IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK) >> 6;
  651. mutex_lock(&sta->ampdu_mlme.mtx);
  652. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  653. if (!tid_tx)
  654. goto out;
  655. if (mgmt->u.action.u.addba_resp.dialog_token != tid_tx->dialog_token) {
  656. #ifdef CONFIG_MAC80211_HT_DEBUG
  657. printk(KERN_DEBUG "wrong addBA response token, tid %d\n", tid);
  658. #endif
  659. goto out;
  660. }
  661. del_timer_sync(&tid_tx->addba_resp_timer);
  662. #ifdef CONFIG_MAC80211_HT_DEBUG
  663. printk(KERN_DEBUG "switched off addBA timer for tid %d\n", tid);
  664. #endif
  665. /*
  666. * addba_resp_timer may have fired before we got here, and
  667. * caused WANT_STOP to be set. If the stop then was already
  668. * processed further, STOPPING might be set.
  669. */
  670. if (test_bit(HT_AGG_STATE_WANT_STOP, &tid_tx->state) ||
  671. test_bit(HT_AGG_STATE_STOPPING, &tid_tx->state)) {
  672. #ifdef CONFIG_MAC80211_HT_DEBUG
  673. printk(KERN_DEBUG
  674. "got addBA resp for tid %d but we already gave up\n",
  675. tid);
  676. #endif
  677. goto out;
  678. }
  679. /*
  680. * IEEE 802.11-2007 7.3.1.14:
  681. * In an ADDBA Response frame, when the Status Code field
  682. * is set to 0, the Buffer Size subfield is set to a value
  683. * of at least 1.
  684. */
  685. if (le16_to_cpu(mgmt->u.action.u.addba_resp.status)
  686. == WLAN_STATUS_SUCCESS && buf_size) {
  687. if (test_and_set_bit(HT_AGG_STATE_RESPONSE_RECEIVED,
  688. &tid_tx->state)) {
  689. /* ignore duplicate response */
  690. goto out;
  691. }
  692. tid_tx->buf_size = buf_size;
  693. if (test_bit(HT_AGG_STATE_DRV_READY, &tid_tx->state))
  694. ieee80211_agg_tx_operational(local, sta, tid);
  695. sta->ampdu_mlme.addba_req_num[tid] = 0;
  696. if (tid_tx->timeout)
  697. mod_timer(&tid_tx->session_timer,
  698. TU_TO_EXP_TIME(tid_tx->timeout));
  699. } else {
  700. ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR,
  701. true);
  702. }
  703. out:
  704. mutex_unlock(&sta->ampdu_mlme.mtx);
  705. }