agg-tx.c 29 KB

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