agg-tx.c 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995
  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. * Note that the sta can get destroyed before the BA tear down is
  57. * complete.
  58. */
  59. static void ieee80211_send_addba_request(struct ieee80211_sub_if_data *sdata,
  60. const u8 *da, u16 tid,
  61. u8 dialog_token, u16 start_seq_num,
  62. u16 agg_size, u16 timeout)
  63. {
  64. struct ieee80211_local *local = sdata->local;
  65. struct sk_buff *skb;
  66. struct ieee80211_mgmt *mgmt;
  67. u16 capab;
  68. skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom);
  69. if (!skb)
  70. return;
  71. skb_reserve(skb, local->hw.extra_tx_headroom);
  72. mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
  73. memset(mgmt, 0, 24);
  74. memcpy(mgmt->da, da, ETH_ALEN);
  75. memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
  76. if (sdata->vif.type == NL80211_IFTYPE_AP ||
  77. sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
  78. sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
  79. memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
  80. else if (sdata->vif.type == NL80211_IFTYPE_STATION)
  81. memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
  82. else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
  83. memcpy(mgmt->bssid, sdata->u.ibss.bssid, ETH_ALEN);
  84. mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  85. IEEE80211_STYPE_ACTION);
  86. skb_put(skb, 1 + sizeof(mgmt->u.action.u.addba_req));
  87. mgmt->u.action.category = WLAN_CATEGORY_BACK;
  88. mgmt->u.action.u.addba_req.action_code = WLAN_ACTION_ADDBA_REQ;
  89. mgmt->u.action.u.addba_req.dialog_token = dialog_token;
  90. capab = (u16)(1 << 0); /* bit 0 A-MSDU support */
  91. capab |= (u16)(1 << 1); /* bit 1 aggregation policy */
  92. capab |= (u16)(tid << 2); /* bit 5:2 TID number */
  93. capab |= (u16)(agg_size << 6); /* bit 15:6 max size of aggergation */
  94. mgmt->u.action.u.addba_req.capab = cpu_to_le16(capab);
  95. mgmt->u.action.u.addba_req.timeout = cpu_to_le16(timeout);
  96. mgmt->u.action.u.addba_req.start_seq_num =
  97. cpu_to_le16(start_seq_num << 4);
  98. ieee80211_tx_skb(sdata, skb);
  99. }
  100. void ieee80211_send_bar(struct ieee80211_vif *vif, u8 *ra, u16 tid, u16 ssn)
  101. {
  102. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  103. struct ieee80211_local *local = sdata->local;
  104. struct sk_buff *skb;
  105. struct ieee80211_bar *bar;
  106. u16 bar_control = 0;
  107. skb = dev_alloc_skb(sizeof(*bar) + local->hw.extra_tx_headroom);
  108. if (!skb)
  109. return;
  110. skb_reserve(skb, local->hw.extra_tx_headroom);
  111. bar = (struct ieee80211_bar *)skb_put(skb, sizeof(*bar));
  112. memset(bar, 0, sizeof(*bar));
  113. bar->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
  114. IEEE80211_STYPE_BACK_REQ);
  115. memcpy(bar->ra, ra, ETH_ALEN);
  116. memcpy(bar->ta, sdata->vif.addr, ETH_ALEN);
  117. bar_control |= (u16)IEEE80211_BAR_CTRL_ACK_POLICY_NORMAL;
  118. bar_control |= (u16)IEEE80211_BAR_CTRL_CBMTID_COMPRESSED_BA;
  119. bar_control |= (u16)(tid << IEEE80211_BAR_CTRL_TID_INFO_SHIFT);
  120. bar->control = cpu_to_le16(bar_control);
  121. bar->start_seq_num = cpu_to_le16(ssn);
  122. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
  123. IEEE80211_TX_CTL_REQ_TX_STATUS;
  124. ieee80211_tx_skb_tid(sdata, skb, tid);
  125. }
  126. EXPORT_SYMBOL(ieee80211_send_bar);
  127. void ieee80211_assign_tid_tx(struct sta_info *sta, int tid,
  128. struct tid_ampdu_tx *tid_tx)
  129. {
  130. lockdep_assert_held(&sta->ampdu_mlme.mtx);
  131. lockdep_assert_held(&sta->lock);
  132. rcu_assign_pointer(sta->ampdu_mlme.tid_tx[tid], tid_tx);
  133. }
  134. /*
  135. * When multiple aggregation sessions on multiple stations
  136. * are being created/destroyed simultaneously, we need to
  137. * refcount the global queue stop caused by that in order
  138. * to not get into a situation where one of the aggregation
  139. * setup or teardown re-enables queues before the other is
  140. * ready to handle that.
  141. *
  142. * These two functions take care of this issue by keeping
  143. * a global "agg_queue_stop" refcount.
  144. */
  145. static void __acquires(agg_queue)
  146. ieee80211_stop_queue_agg(struct ieee80211_sub_if_data *sdata, int tid)
  147. {
  148. int queue = sdata->vif.hw_queue[ieee80211_ac_from_tid(tid)];
  149. /* we do refcounting here, so don't use the queue reason refcounting */
  150. if (atomic_inc_return(&sdata->local->agg_queue_stop[queue]) == 1)
  151. ieee80211_stop_queue_by_reason(
  152. &sdata->local->hw, queue,
  153. IEEE80211_QUEUE_STOP_REASON_AGGREGATION,
  154. false);
  155. __acquire(agg_queue);
  156. }
  157. static void __releases(agg_queue)
  158. ieee80211_wake_queue_agg(struct ieee80211_sub_if_data *sdata, int tid)
  159. {
  160. int queue = sdata->vif.hw_queue[ieee80211_ac_from_tid(tid)];
  161. if (atomic_dec_return(&sdata->local->agg_queue_stop[queue]) == 0)
  162. ieee80211_wake_queue_by_reason(
  163. &sdata->local->hw, queue,
  164. IEEE80211_QUEUE_STOP_REASON_AGGREGATION,
  165. false);
  166. __release(agg_queue);
  167. }
  168. static void
  169. ieee80211_agg_stop_txq(struct sta_info *sta, int tid)
  170. {
  171. struct ieee80211_txq *txq = sta->sta.txq[tid];
  172. struct txq_info *txqi;
  173. if (!txq)
  174. return;
  175. txqi = to_txq_info(txq);
  176. /* Lock here to protect against further seqno updates on dequeue */
  177. spin_lock_bh(&txqi->queue.lock);
  178. set_bit(IEEE80211_TXQ_STOP, &txqi->flags);
  179. spin_unlock_bh(&txqi->queue.lock);
  180. }
  181. static void
  182. ieee80211_agg_start_txq(struct sta_info *sta, int tid, bool enable)
  183. {
  184. struct ieee80211_txq *txq = sta->sta.txq[tid];
  185. struct txq_info *txqi;
  186. if (!txq)
  187. return;
  188. txqi = to_txq_info(txq);
  189. if (enable)
  190. set_bit(IEEE80211_TXQ_AMPDU, &txqi->flags);
  191. else
  192. clear_bit(IEEE80211_TXQ_AMPDU, &txqi->flags);
  193. clear_bit(IEEE80211_TXQ_STOP, &txqi->flags);
  194. drv_wake_tx_queue(sta->sdata->local, txqi);
  195. }
  196. /*
  197. * splice packets from the STA's pending to the local pending,
  198. * requires a call to ieee80211_agg_splice_finish later
  199. */
  200. static void __acquires(agg_queue)
  201. ieee80211_agg_splice_packets(struct ieee80211_sub_if_data *sdata,
  202. struct tid_ampdu_tx *tid_tx, u16 tid)
  203. {
  204. struct ieee80211_local *local = sdata->local;
  205. int queue = sdata->vif.hw_queue[ieee80211_ac_from_tid(tid)];
  206. unsigned long flags;
  207. ieee80211_stop_queue_agg(sdata, tid);
  208. if (WARN(!tid_tx,
  209. "TID %d gone but expected when splicing aggregates from the pending queue\n",
  210. tid))
  211. return;
  212. if (!skb_queue_empty(&tid_tx->pending)) {
  213. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  214. /* copy over remaining packets */
  215. skb_queue_splice_tail_init(&tid_tx->pending,
  216. &local->pending[queue]);
  217. spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
  218. }
  219. }
  220. static void __releases(agg_queue)
  221. ieee80211_agg_splice_finish(struct ieee80211_sub_if_data *sdata, u16 tid)
  222. {
  223. ieee80211_wake_queue_agg(sdata, tid);
  224. }
  225. static void ieee80211_remove_tid_tx(struct sta_info *sta, int tid)
  226. {
  227. struct tid_ampdu_tx *tid_tx;
  228. lockdep_assert_held(&sta->ampdu_mlme.mtx);
  229. lockdep_assert_held(&sta->lock);
  230. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  231. /*
  232. * When we get here, the TX path will not be lockless any more wrt.
  233. * aggregation, since the OPERATIONAL bit has long been cleared.
  234. * Thus it will block on getting the lock, if it occurs. So if we
  235. * stop the queue now, we will not get any more packets, and any
  236. * that might be being processed will wait for us here, thereby
  237. * guaranteeing that no packets go to the tid_tx pending queue any
  238. * more.
  239. */
  240. ieee80211_agg_splice_packets(sta->sdata, tid_tx, tid);
  241. /* future packets must not find the tid_tx struct any more */
  242. ieee80211_assign_tid_tx(sta, tid, NULL);
  243. ieee80211_agg_splice_finish(sta->sdata, tid);
  244. ieee80211_agg_start_txq(sta, tid, false);
  245. kfree_rcu(tid_tx, rcu_head);
  246. }
  247. int ___ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
  248. enum ieee80211_agg_stop_reason reason)
  249. {
  250. struct ieee80211_local *local = sta->local;
  251. struct tid_ampdu_tx *tid_tx;
  252. enum ieee80211_ampdu_mlme_action action;
  253. int ret;
  254. lockdep_assert_held(&sta->ampdu_mlme.mtx);
  255. switch (reason) {
  256. case AGG_STOP_DECLINED:
  257. case AGG_STOP_LOCAL_REQUEST:
  258. case AGG_STOP_PEER_REQUEST:
  259. action = IEEE80211_AMPDU_TX_STOP_CONT;
  260. break;
  261. case AGG_STOP_DESTROY_STA:
  262. action = IEEE80211_AMPDU_TX_STOP_FLUSH;
  263. break;
  264. default:
  265. WARN_ON_ONCE(1);
  266. return -EINVAL;
  267. }
  268. spin_lock_bh(&sta->lock);
  269. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  270. if (!tid_tx) {
  271. spin_unlock_bh(&sta->lock);
  272. return -ENOENT;
  273. }
  274. /*
  275. * if we're already stopping ignore any new requests to stop
  276. * unless we're destroying it in which case notify the driver
  277. */
  278. if (test_bit(HT_AGG_STATE_STOPPING, &tid_tx->state)) {
  279. spin_unlock_bh(&sta->lock);
  280. if (reason != AGG_STOP_DESTROY_STA)
  281. return -EALREADY;
  282. ret = drv_ampdu_action(local, sta->sdata,
  283. IEEE80211_AMPDU_TX_STOP_FLUSH_CONT,
  284. &sta->sta, tid, NULL, 0, false);
  285. WARN_ON_ONCE(ret);
  286. return 0;
  287. }
  288. if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
  289. /* not even started yet! */
  290. ieee80211_assign_tid_tx(sta, tid, NULL);
  291. spin_unlock_bh(&sta->lock);
  292. kfree_rcu(tid_tx, rcu_head);
  293. return 0;
  294. }
  295. set_bit(HT_AGG_STATE_STOPPING, &tid_tx->state);
  296. spin_unlock_bh(&sta->lock);
  297. ht_dbg(sta->sdata, "Tx BA session stop requested for %pM tid %u\n",
  298. sta->sta.addr, tid);
  299. del_timer_sync(&tid_tx->addba_resp_timer);
  300. del_timer_sync(&tid_tx->session_timer);
  301. /*
  302. * After this packets are no longer handed right through
  303. * to the driver but are put onto tid_tx->pending instead,
  304. * with locking to ensure proper access.
  305. */
  306. clear_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state);
  307. /*
  308. * There might be a few packets being processed right now (on
  309. * another CPU) that have already gotten past the aggregation
  310. * check when it was still OPERATIONAL and consequently have
  311. * IEEE80211_TX_CTL_AMPDU set. In that case, this code might
  312. * call into the driver at the same time or even before the
  313. * TX paths calls into it, which could confuse the driver.
  314. *
  315. * Wait for all currently running TX paths to finish before
  316. * telling the driver. New packets will not go through since
  317. * the aggregation session is no longer OPERATIONAL.
  318. */
  319. synchronize_net();
  320. tid_tx->stop_initiator = reason == AGG_STOP_PEER_REQUEST ?
  321. WLAN_BACK_RECIPIENT :
  322. WLAN_BACK_INITIATOR;
  323. tid_tx->tx_stop = reason == AGG_STOP_LOCAL_REQUEST;
  324. ret = drv_ampdu_action(local, sta->sdata, action,
  325. &sta->sta, tid, NULL, 0, false);
  326. /* HW shall not deny going back to legacy */
  327. if (WARN_ON(ret)) {
  328. /*
  329. * We may have pending packets get stuck in this case...
  330. * Not bothering with a workaround for now.
  331. */
  332. }
  333. /*
  334. * In the case of AGG_STOP_DESTROY_STA, the driver won't
  335. * necessarily call ieee80211_stop_tx_ba_cb(), so this may
  336. * seem like we can leave the tid_tx data pending forever.
  337. * This is true, in a way, but "forever" is only until the
  338. * station struct is actually destroyed. In the meantime,
  339. * leaving it around ensures that we don't transmit packets
  340. * to the driver on this TID which might confuse it.
  341. */
  342. return 0;
  343. }
  344. /*
  345. * After sending add Block Ack request we activated a timer until
  346. * add Block Ack response will arrive from the recipient.
  347. * If this timer expires sta_addba_resp_timer_expired will be executed.
  348. */
  349. static void sta_addba_resp_timer_expired(unsigned long data)
  350. {
  351. /* not an elegant detour, but there is no choice as the timer passes
  352. * only one argument, and both sta_info and TID are needed, so init
  353. * flow in sta_info_create gives the TID as data, while the timer_to_id
  354. * array gives the sta through container_of */
  355. u16 tid = *(u8 *)data;
  356. struct sta_info *sta = container_of((void *)data,
  357. struct sta_info, timer_to_tid[tid]);
  358. struct tid_ampdu_tx *tid_tx;
  359. /* check if the TID waits for addBA response */
  360. rcu_read_lock();
  361. tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]);
  362. if (!tid_tx ||
  363. test_bit(HT_AGG_STATE_RESPONSE_RECEIVED, &tid_tx->state)) {
  364. rcu_read_unlock();
  365. ht_dbg(sta->sdata,
  366. "timer expired on %pM tid %d but we are not (or no longer) expecting addBA response there\n",
  367. sta->sta.addr, tid);
  368. return;
  369. }
  370. ht_dbg(sta->sdata, "addBA response timer expired on %pM tid %d\n",
  371. sta->sta.addr, tid);
  372. ieee80211_stop_tx_ba_session(&sta->sta, tid);
  373. rcu_read_unlock();
  374. }
  375. void ieee80211_tx_ba_session_handle_start(struct sta_info *sta, int tid)
  376. {
  377. struct tid_ampdu_tx *tid_tx;
  378. struct ieee80211_local *local = sta->local;
  379. struct ieee80211_sub_if_data *sdata = sta->sdata;
  380. u16 start_seq_num;
  381. int ret;
  382. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  383. /*
  384. * Start queuing up packets for this aggregation session.
  385. * We're going to release them once the driver is OK with
  386. * that.
  387. */
  388. clear_bit(HT_AGG_STATE_WANT_START, &tid_tx->state);
  389. ieee80211_agg_stop_txq(sta, tid);
  390. /*
  391. * Make sure no packets are being processed. This ensures that
  392. * we have a valid starting sequence number and that in-flight
  393. * packets have been flushed out and no packets for this TID
  394. * will go into the driver during the ampdu_action call.
  395. */
  396. synchronize_net();
  397. start_seq_num = sta->tid_seq[tid] >> 4;
  398. ret = drv_ampdu_action(local, sdata, IEEE80211_AMPDU_TX_START,
  399. &sta->sta, tid, &start_seq_num, 0, false);
  400. if (ret) {
  401. ht_dbg(sdata,
  402. "BA request denied - HW unavailable for %pM tid %d\n",
  403. sta->sta.addr, tid);
  404. spin_lock_bh(&sta->lock);
  405. ieee80211_agg_splice_packets(sdata, tid_tx, tid);
  406. ieee80211_assign_tid_tx(sta, tid, NULL);
  407. ieee80211_agg_splice_finish(sdata, tid);
  408. spin_unlock_bh(&sta->lock);
  409. ieee80211_agg_start_txq(sta, tid, false);
  410. kfree_rcu(tid_tx, rcu_head);
  411. return;
  412. }
  413. /* activate the timer for the recipient's addBA response */
  414. mod_timer(&tid_tx->addba_resp_timer, jiffies + ADDBA_RESP_INTERVAL);
  415. ht_dbg(sdata, "activated addBA response timer on %pM tid %d\n",
  416. sta->sta.addr, tid);
  417. spin_lock_bh(&sta->lock);
  418. sta->ampdu_mlme.last_addba_req_time[tid] = jiffies;
  419. sta->ampdu_mlme.addba_req_num[tid]++;
  420. spin_unlock_bh(&sta->lock);
  421. /* send AddBA request */
  422. ieee80211_send_addba_request(sdata, sta->sta.addr, tid,
  423. tid_tx->dialog_token, start_seq_num,
  424. IEEE80211_MAX_AMPDU_BUF,
  425. tid_tx->timeout);
  426. }
  427. /*
  428. * After accepting the AddBA Response we activated a timer,
  429. * resetting it after each frame that we send.
  430. */
  431. static void sta_tx_agg_session_timer_expired(unsigned long data)
  432. {
  433. /* not an elegant detour, but there is no choice as the timer passes
  434. * only one argument, and various sta_info are needed here, so init
  435. * flow in sta_info_create gives the TID as data, while the timer_to_id
  436. * array gives the sta through container_of */
  437. u8 *ptid = (u8 *)data;
  438. u8 *timer_to_id = ptid - *ptid;
  439. struct sta_info *sta = container_of(timer_to_id, struct sta_info,
  440. timer_to_tid[0]);
  441. struct tid_ampdu_tx *tid_tx;
  442. unsigned long timeout;
  443. rcu_read_lock();
  444. tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[*ptid]);
  445. if (!tid_tx || test_bit(HT_AGG_STATE_STOPPING, &tid_tx->state)) {
  446. rcu_read_unlock();
  447. return;
  448. }
  449. timeout = tid_tx->last_tx + TU_TO_JIFFIES(tid_tx->timeout);
  450. if (time_is_after_jiffies(timeout)) {
  451. mod_timer(&tid_tx->session_timer, timeout);
  452. rcu_read_unlock();
  453. return;
  454. }
  455. rcu_read_unlock();
  456. ht_dbg(sta->sdata, "tx session timer expired on %pM tid %d\n",
  457. sta->sta.addr, (u16)*ptid);
  458. ieee80211_stop_tx_ba_session(&sta->sta, *ptid);
  459. }
  460. int ieee80211_start_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid,
  461. u16 timeout)
  462. {
  463. struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
  464. struct ieee80211_sub_if_data *sdata = sta->sdata;
  465. struct ieee80211_local *local = sdata->local;
  466. struct tid_ampdu_tx *tid_tx;
  467. int ret = 0;
  468. trace_api_start_tx_ba_session(pubsta, tid);
  469. if (WARN(sta->reserved_tid == tid,
  470. "Requested to start BA session on reserved tid=%d", tid))
  471. return -EINVAL;
  472. if (!pubsta->ht_cap.ht_supported)
  473. return -EINVAL;
  474. if (WARN_ON_ONCE(!local->ops->ampdu_action))
  475. return -EINVAL;
  476. if ((tid >= IEEE80211_NUM_TIDS) ||
  477. !ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION) ||
  478. ieee80211_hw_check(&local->hw, TX_AMPDU_SETUP_IN_HW))
  479. return -EINVAL;
  480. ht_dbg(sdata, "Open BA session requested for %pM tid %u\n",
  481. pubsta->addr, tid);
  482. if (sdata->vif.type != NL80211_IFTYPE_STATION &&
  483. sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
  484. sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
  485. sdata->vif.type != NL80211_IFTYPE_AP &&
  486. sdata->vif.type != NL80211_IFTYPE_ADHOC)
  487. return -EINVAL;
  488. if (test_sta_flag(sta, WLAN_STA_BLOCK_BA)) {
  489. ht_dbg(sdata,
  490. "BA sessions blocked - Denying BA session request %pM tid %d\n",
  491. sta->sta.addr, tid);
  492. return -EINVAL;
  493. }
  494. /*
  495. * 802.11n-2009 11.5.1.1: If the initiating STA is an HT STA, is a
  496. * member of an IBSS, and has no other existing Block Ack agreement
  497. * with the recipient STA, then the initiating STA shall transmit a
  498. * Probe Request frame to the recipient STA and shall not transmit an
  499. * ADDBA Request frame unless it receives a Probe Response frame
  500. * from the recipient within dot11ADDBAFailureTimeout.
  501. *
  502. * The probe request mechanism for ADDBA is currently not implemented,
  503. * but we only build up Block Ack session with HT STAs. This information
  504. * is set when we receive a bss info from a probe response or a beacon.
  505. */
  506. if (sta->sdata->vif.type == NL80211_IFTYPE_ADHOC &&
  507. !sta->sta.ht_cap.ht_supported) {
  508. ht_dbg(sdata,
  509. "BA request denied - IBSS STA %pM does not advertise HT support\n",
  510. pubsta->addr);
  511. return -EINVAL;
  512. }
  513. spin_lock_bh(&sta->lock);
  514. /* we have tried too many times, receiver does not want A-MPDU */
  515. if (sta->ampdu_mlme.addba_req_num[tid] > HT_AGG_MAX_RETRIES) {
  516. ret = -EBUSY;
  517. goto err_unlock_sta;
  518. }
  519. /*
  520. * if we have tried more than HT_AGG_BURST_RETRIES times we
  521. * will spread our requests in time to avoid stalling connection
  522. * for too long
  523. */
  524. if (sta->ampdu_mlme.addba_req_num[tid] > HT_AGG_BURST_RETRIES &&
  525. time_before(jiffies, sta->ampdu_mlme.last_addba_req_time[tid] +
  526. HT_AGG_RETRIES_PERIOD)) {
  527. ht_dbg(sdata,
  528. "BA request denied - waiting a grace period after %d failed requests on %pM tid %u\n",
  529. sta->ampdu_mlme.addba_req_num[tid], sta->sta.addr, tid);
  530. ret = -EBUSY;
  531. goto err_unlock_sta;
  532. }
  533. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  534. /* check if the TID is not in aggregation flow already */
  535. if (tid_tx || sta->ampdu_mlme.tid_start_tx[tid]) {
  536. ht_dbg(sdata,
  537. "BA request denied - session is not idle on %pM tid %u\n",
  538. sta->sta.addr, tid);
  539. ret = -EAGAIN;
  540. goto err_unlock_sta;
  541. }
  542. /* prepare A-MPDU MLME for Tx aggregation */
  543. tid_tx = kzalloc(sizeof(struct tid_ampdu_tx), GFP_ATOMIC);
  544. if (!tid_tx) {
  545. ret = -ENOMEM;
  546. goto err_unlock_sta;
  547. }
  548. skb_queue_head_init(&tid_tx->pending);
  549. __set_bit(HT_AGG_STATE_WANT_START, &tid_tx->state);
  550. tid_tx->timeout = timeout;
  551. /* response timer */
  552. tid_tx->addba_resp_timer.function = sta_addba_resp_timer_expired;
  553. tid_tx->addba_resp_timer.data = (unsigned long)&sta->timer_to_tid[tid];
  554. init_timer(&tid_tx->addba_resp_timer);
  555. /* tx timer */
  556. tid_tx->session_timer.function = sta_tx_agg_session_timer_expired;
  557. tid_tx->session_timer.data = (unsigned long)&sta->timer_to_tid[tid];
  558. init_timer_deferrable(&tid_tx->session_timer);
  559. /* assign a dialog token */
  560. sta->ampdu_mlme.dialog_token_allocator++;
  561. tid_tx->dialog_token = sta->ampdu_mlme.dialog_token_allocator;
  562. /*
  563. * Finally, assign it to the start array; the work item will
  564. * collect it and move it to the normal array.
  565. */
  566. sta->ampdu_mlme.tid_start_tx[tid] = tid_tx;
  567. ieee80211_queue_work(&local->hw, &sta->ampdu_mlme.work);
  568. /* this flow continues off the work */
  569. err_unlock_sta:
  570. spin_unlock_bh(&sta->lock);
  571. return ret;
  572. }
  573. EXPORT_SYMBOL(ieee80211_start_tx_ba_session);
  574. static void ieee80211_agg_tx_operational(struct ieee80211_local *local,
  575. struct sta_info *sta, u16 tid)
  576. {
  577. struct tid_ampdu_tx *tid_tx;
  578. lockdep_assert_held(&sta->ampdu_mlme.mtx);
  579. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  580. ht_dbg(sta->sdata, "Aggregation is on for %pM tid %d\n",
  581. sta->sta.addr, tid);
  582. drv_ampdu_action(local, sta->sdata,
  583. IEEE80211_AMPDU_TX_OPERATIONAL,
  584. &sta->sta, tid, NULL, tid_tx->buf_size,
  585. tid_tx->amsdu);
  586. /*
  587. * synchronize with TX path, while splicing the TX path
  588. * should block so it won't put more packets onto pending.
  589. */
  590. spin_lock_bh(&sta->lock);
  591. ieee80211_agg_splice_packets(sta->sdata, tid_tx, tid);
  592. /*
  593. * Now mark as operational. This will be visible
  594. * in the TX path, and lets it go lock-free in
  595. * the common case.
  596. */
  597. set_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state);
  598. ieee80211_agg_splice_finish(sta->sdata, tid);
  599. spin_unlock_bh(&sta->lock);
  600. ieee80211_agg_start_txq(sta, tid, true);
  601. }
  602. void ieee80211_start_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u16 tid)
  603. {
  604. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  605. struct ieee80211_local *local = sdata->local;
  606. struct sta_info *sta;
  607. struct tid_ampdu_tx *tid_tx;
  608. trace_api_start_tx_ba_cb(sdata, ra, tid);
  609. if (tid >= IEEE80211_NUM_TIDS) {
  610. ht_dbg(sdata, "Bad TID value: tid = %d (>= %d)\n",
  611. tid, IEEE80211_NUM_TIDS);
  612. return;
  613. }
  614. mutex_lock(&local->sta_mtx);
  615. sta = sta_info_get_bss(sdata, ra);
  616. if (!sta) {
  617. mutex_unlock(&local->sta_mtx);
  618. ht_dbg(sdata, "Could not find station: %pM\n", ra);
  619. return;
  620. }
  621. mutex_lock(&sta->ampdu_mlme.mtx);
  622. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  623. if (WARN_ON(!tid_tx)) {
  624. ht_dbg(sdata, "addBA was not requested!\n");
  625. goto unlock;
  626. }
  627. if (WARN_ON(test_and_set_bit(HT_AGG_STATE_DRV_READY, &tid_tx->state)))
  628. goto unlock;
  629. if (test_bit(HT_AGG_STATE_RESPONSE_RECEIVED, &tid_tx->state))
  630. ieee80211_agg_tx_operational(local, sta, tid);
  631. unlock:
  632. mutex_unlock(&sta->ampdu_mlme.mtx);
  633. mutex_unlock(&local->sta_mtx);
  634. }
  635. void ieee80211_start_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
  636. const u8 *ra, u16 tid)
  637. {
  638. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  639. struct ieee80211_local *local = sdata->local;
  640. struct ieee80211_ra_tid *ra_tid;
  641. struct sk_buff *skb = dev_alloc_skb(0);
  642. if (unlikely(!skb))
  643. return;
  644. ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
  645. memcpy(&ra_tid->ra, ra, ETH_ALEN);
  646. ra_tid->tid = tid;
  647. skb->pkt_type = IEEE80211_SDATA_QUEUE_AGG_START;
  648. skb_queue_tail(&sdata->skb_queue, skb);
  649. ieee80211_queue_work(&local->hw, &sdata->work);
  650. }
  651. EXPORT_SYMBOL(ieee80211_start_tx_ba_cb_irqsafe);
  652. int __ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
  653. enum ieee80211_agg_stop_reason reason)
  654. {
  655. int ret;
  656. mutex_lock(&sta->ampdu_mlme.mtx);
  657. ret = ___ieee80211_stop_tx_ba_session(sta, tid, reason);
  658. mutex_unlock(&sta->ampdu_mlme.mtx);
  659. return ret;
  660. }
  661. int ieee80211_stop_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid)
  662. {
  663. struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
  664. struct ieee80211_sub_if_data *sdata = sta->sdata;
  665. struct ieee80211_local *local = sdata->local;
  666. struct tid_ampdu_tx *tid_tx;
  667. int ret = 0;
  668. trace_api_stop_tx_ba_session(pubsta, tid);
  669. if (!local->ops->ampdu_action)
  670. return -EINVAL;
  671. if (tid >= IEEE80211_NUM_TIDS)
  672. return -EINVAL;
  673. spin_lock_bh(&sta->lock);
  674. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  675. if (!tid_tx) {
  676. ret = -ENOENT;
  677. goto unlock;
  678. }
  679. WARN(sta->reserved_tid == tid,
  680. "Requested to stop BA session on reserved tid=%d", tid);
  681. if (test_bit(HT_AGG_STATE_STOPPING, &tid_tx->state)) {
  682. /* already in progress stopping it */
  683. ret = 0;
  684. goto unlock;
  685. }
  686. set_bit(HT_AGG_STATE_WANT_STOP, &tid_tx->state);
  687. ieee80211_queue_work(&local->hw, &sta->ampdu_mlme.work);
  688. unlock:
  689. spin_unlock_bh(&sta->lock);
  690. return ret;
  691. }
  692. EXPORT_SYMBOL(ieee80211_stop_tx_ba_session);
  693. void ieee80211_stop_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u8 tid)
  694. {
  695. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  696. struct ieee80211_local *local = sdata->local;
  697. struct sta_info *sta;
  698. struct tid_ampdu_tx *tid_tx;
  699. bool send_delba = false;
  700. trace_api_stop_tx_ba_cb(sdata, ra, tid);
  701. if (tid >= IEEE80211_NUM_TIDS) {
  702. ht_dbg(sdata, "Bad TID value: tid = %d (>= %d)\n",
  703. tid, IEEE80211_NUM_TIDS);
  704. return;
  705. }
  706. ht_dbg(sdata, "Stopping Tx BA session for %pM tid %d\n", ra, tid);
  707. mutex_lock(&local->sta_mtx);
  708. sta = sta_info_get_bss(sdata, ra);
  709. if (!sta) {
  710. ht_dbg(sdata, "Could not find station: %pM\n", ra);
  711. goto unlock;
  712. }
  713. mutex_lock(&sta->ampdu_mlme.mtx);
  714. spin_lock_bh(&sta->lock);
  715. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  716. if (!tid_tx || !test_bit(HT_AGG_STATE_STOPPING, &tid_tx->state)) {
  717. ht_dbg(sdata,
  718. "unexpected callback to A-MPDU stop for %pM tid %d\n",
  719. sta->sta.addr, tid);
  720. goto unlock_sta;
  721. }
  722. if (tid_tx->stop_initiator == WLAN_BACK_INITIATOR && tid_tx->tx_stop)
  723. send_delba = true;
  724. ieee80211_remove_tid_tx(sta, tid);
  725. unlock_sta:
  726. spin_unlock_bh(&sta->lock);
  727. if (send_delba)
  728. ieee80211_send_delba(sdata, ra, tid,
  729. WLAN_BACK_INITIATOR, WLAN_REASON_QSTA_NOT_USE);
  730. mutex_unlock(&sta->ampdu_mlme.mtx);
  731. unlock:
  732. mutex_unlock(&local->sta_mtx);
  733. }
  734. void ieee80211_stop_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
  735. const u8 *ra, u16 tid)
  736. {
  737. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  738. struct ieee80211_local *local = sdata->local;
  739. struct ieee80211_ra_tid *ra_tid;
  740. struct sk_buff *skb = dev_alloc_skb(0);
  741. if (unlikely(!skb))
  742. return;
  743. ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
  744. memcpy(&ra_tid->ra, ra, ETH_ALEN);
  745. ra_tid->tid = tid;
  746. skb->pkt_type = IEEE80211_SDATA_QUEUE_AGG_STOP;
  747. skb_queue_tail(&sdata->skb_queue, skb);
  748. ieee80211_queue_work(&local->hw, &sdata->work);
  749. }
  750. EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb_irqsafe);
  751. void ieee80211_process_addba_resp(struct ieee80211_local *local,
  752. struct sta_info *sta,
  753. struct ieee80211_mgmt *mgmt,
  754. size_t len)
  755. {
  756. struct tid_ampdu_tx *tid_tx;
  757. u16 capab, tid;
  758. u8 buf_size;
  759. bool amsdu;
  760. capab = le16_to_cpu(mgmt->u.action.u.addba_resp.capab);
  761. amsdu = capab & IEEE80211_ADDBA_PARAM_AMSDU_MASK;
  762. tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
  763. buf_size = (capab & IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK) >> 6;
  764. buf_size = min(buf_size, local->hw.max_tx_aggregation_subframes);
  765. mutex_lock(&sta->ampdu_mlme.mtx);
  766. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  767. if (!tid_tx)
  768. goto out;
  769. if (mgmt->u.action.u.addba_resp.dialog_token != tid_tx->dialog_token) {
  770. ht_dbg(sta->sdata, "wrong addBA response token, %pM tid %d\n",
  771. sta->sta.addr, tid);
  772. goto out;
  773. }
  774. del_timer_sync(&tid_tx->addba_resp_timer);
  775. ht_dbg(sta->sdata, "switched off addBA timer for %pM tid %d\n",
  776. sta->sta.addr, tid);
  777. /*
  778. * addba_resp_timer may have fired before we got here, and
  779. * caused WANT_STOP to be set. If the stop then was already
  780. * processed further, STOPPING might be set.
  781. */
  782. if (test_bit(HT_AGG_STATE_WANT_STOP, &tid_tx->state) ||
  783. test_bit(HT_AGG_STATE_STOPPING, &tid_tx->state)) {
  784. ht_dbg(sta->sdata,
  785. "got addBA resp for %pM tid %d but we already gave up\n",
  786. sta->sta.addr, tid);
  787. goto out;
  788. }
  789. /*
  790. * IEEE 802.11-2007 7.3.1.14:
  791. * In an ADDBA Response frame, when the Status Code field
  792. * is set to 0, the Buffer Size subfield is set to a value
  793. * of at least 1.
  794. */
  795. if (le16_to_cpu(mgmt->u.action.u.addba_resp.status)
  796. == WLAN_STATUS_SUCCESS && buf_size) {
  797. if (test_and_set_bit(HT_AGG_STATE_RESPONSE_RECEIVED,
  798. &tid_tx->state)) {
  799. /* ignore duplicate response */
  800. goto out;
  801. }
  802. tid_tx->buf_size = buf_size;
  803. tid_tx->amsdu = amsdu;
  804. if (test_bit(HT_AGG_STATE_DRV_READY, &tid_tx->state))
  805. ieee80211_agg_tx_operational(local, sta, tid);
  806. sta->ampdu_mlme.addba_req_num[tid] = 0;
  807. if (tid_tx->timeout) {
  808. mod_timer(&tid_tx->session_timer,
  809. TU_TO_EXP_TIME(tid_tx->timeout));
  810. tid_tx->last_tx = jiffies;
  811. }
  812. } else {
  813. ___ieee80211_stop_tx_ba_session(sta, tid, AGG_STOP_DECLINED);
  814. }
  815. out:
  816. mutex_unlock(&sta->ampdu_mlme.mtx);
  817. }