agg-tx.c 26 KB

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