agg-tx.c 24 KB

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