agg-tx.c 24 KB

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