agg-tx.c 23 KB

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