agg-tx.c 27 KB

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