status.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759
  1. /*
  2. * Copyright 2002-2005, Instant802 Networks, Inc.
  3. * Copyright 2005-2006, Devicescape Software, Inc.
  4. * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
  5. * Copyright 2008-2010 Johannes Berg <johannes@sipsolutions.net>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <linux/export.h>
  12. #include <linux/etherdevice.h>
  13. #include <net/mac80211.h>
  14. #include <asm/unaligned.h>
  15. #include "ieee80211_i.h"
  16. #include "rate.h"
  17. #include "mesh.h"
  18. #include "led.h"
  19. #include "wme.h"
  20. void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw,
  21. struct sk_buff *skb)
  22. {
  23. struct ieee80211_local *local = hw_to_local(hw);
  24. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  25. int tmp;
  26. skb->pkt_type = IEEE80211_TX_STATUS_MSG;
  27. skb_queue_tail(info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS ?
  28. &local->skb_queue : &local->skb_queue_unreliable, skb);
  29. tmp = skb_queue_len(&local->skb_queue) +
  30. skb_queue_len(&local->skb_queue_unreliable);
  31. while (tmp > IEEE80211_IRQSAFE_QUEUE_LIMIT &&
  32. (skb = skb_dequeue(&local->skb_queue_unreliable))) {
  33. ieee80211_free_txskb(hw, skb);
  34. tmp--;
  35. I802_DEBUG_INC(local->tx_status_drop);
  36. }
  37. tasklet_schedule(&local->tasklet);
  38. }
  39. EXPORT_SYMBOL(ieee80211_tx_status_irqsafe);
  40. static void ieee80211_handle_filtered_frame(struct ieee80211_local *local,
  41. struct sta_info *sta,
  42. struct sk_buff *skb)
  43. {
  44. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  45. struct ieee80211_hdr *hdr = (void *)skb->data;
  46. int ac;
  47. /*
  48. * This skb 'survived' a round-trip through the driver, and
  49. * hopefully the driver didn't mangle it too badly. However,
  50. * we can definitely not rely on the control information
  51. * being correct. Clear it so we don't get junk there, and
  52. * indicate that it needs new processing, but must not be
  53. * modified/encrypted again.
  54. */
  55. memset(&info->control, 0, sizeof(info->control));
  56. info->control.jiffies = jiffies;
  57. info->control.vif = &sta->sdata->vif;
  58. info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING |
  59. IEEE80211_TX_INTFL_RETRANSMISSION;
  60. info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
  61. sta->tx_filtered_count++;
  62. /*
  63. * Clear more-data bit on filtered frames, it might be set
  64. * but later frames might time out so it might have to be
  65. * clear again ... It's all rather unlikely (this frame
  66. * should time out first, right?) but let's not confuse
  67. * peers unnecessarily.
  68. */
  69. if (hdr->frame_control & cpu_to_le16(IEEE80211_FCTL_MOREDATA))
  70. hdr->frame_control &= ~cpu_to_le16(IEEE80211_FCTL_MOREDATA);
  71. if (ieee80211_is_data_qos(hdr->frame_control)) {
  72. u8 *p = ieee80211_get_qos_ctl(hdr);
  73. int tid = *p & IEEE80211_QOS_CTL_TID_MASK;
  74. /*
  75. * Clear EOSP if set, this could happen e.g.
  76. * if an absence period (us being a P2P GO)
  77. * shortens the SP.
  78. */
  79. if (*p & IEEE80211_QOS_CTL_EOSP)
  80. *p &= ~IEEE80211_QOS_CTL_EOSP;
  81. ac = ieee802_1d_to_ac[tid & 7];
  82. } else {
  83. ac = IEEE80211_AC_BE;
  84. }
  85. /*
  86. * Clear the TX filter mask for this STA when sending the next
  87. * packet. If the STA went to power save mode, this will happen
  88. * when it wakes up for the next time.
  89. */
  90. set_sta_flag(sta, WLAN_STA_CLEAR_PS_FILT);
  91. /*
  92. * This code races in the following way:
  93. *
  94. * (1) STA sends frame indicating it will go to sleep and does so
  95. * (2) hardware/firmware adds STA to filter list, passes frame up
  96. * (3) hardware/firmware processes TX fifo and suppresses a frame
  97. * (4) we get TX status before having processed the frame and
  98. * knowing that the STA has gone to sleep.
  99. *
  100. * This is actually quite unlikely even when both those events are
  101. * processed from interrupts coming in quickly after one another or
  102. * even at the same time because we queue both TX status events and
  103. * RX frames to be processed by a tasklet and process them in the
  104. * same order that they were received or TX status last. Hence, there
  105. * is no race as long as the frame RX is processed before the next TX
  106. * status, which drivers can ensure, see below.
  107. *
  108. * Note that this can only happen if the hardware or firmware can
  109. * actually add STAs to the filter list, if this is done by the
  110. * driver in response to set_tim() (which will only reduce the race
  111. * this whole filtering tries to solve, not completely solve it)
  112. * this situation cannot happen.
  113. *
  114. * To completely solve this race drivers need to make sure that they
  115. * (a) don't mix the irq-safe/not irq-safe TX status/RX processing
  116. * functions and
  117. * (b) always process RX events before TX status events if ordering
  118. * can be unknown, for example with different interrupt status
  119. * bits.
  120. * (c) if PS mode transitions are manual (i.e. the flag
  121. * %IEEE80211_HW_AP_LINK_PS is set), always process PS state
  122. * changes before calling TX status events if ordering can be
  123. * unknown.
  124. */
  125. if (test_sta_flag(sta, WLAN_STA_PS_STA) &&
  126. skb_queue_len(&sta->tx_filtered[ac]) < STA_MAX_TX_BUFFER) {
  127. skb_queue_tail(&sta->tx_filtered[ac], skb);
  128. sta_info_recalc_tim(sta);
  129. if (!timer_pending(&local->sta_cleanup))
  130. mod_timer(&local->sta_cleanup,
  131. round_jiffies(jiffies +
  132. STA_INFO_CLEANUP_INTERVAL));
  133. return;
  134. }
  135. if (!test_sta_flag(sta, WLAN_STA_PS_STA) &&
  136. !(info->flags & IEEE80211_TX_INTFL_RETRIED)) {
  137. /* Software retry the packet once */
  138. info->flags |= IEEE80211_TX_INTFL_RETRIED;
  139. ieee80211_add_pending_skb(local, skb);
  140. return;
  141. }
  142. ps_dbg_ratelimited(sta->sdata,
  143. "dropped TX filtered frame, queue_len=%d PS=%d @%lu\n",
  144. skb_queue_len(&sta->tx_filtered[ac]),
  145. !!test_sta_flag(sta, WLAN_STA_PS_STA), jiffies);
  146. ieee80211_free_txskb(&local->hw, skb);
  147. }
  148. static void ieee80211_check_pending_bar(struct sta_info *sta, u8 *addr, u8 tid)
  149. {
  150. struct tid_ampdu_tx *tid_tx;
  151. tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]);
  152. if (!tid_tx || !tid_tx->bar_pending)
  153. return;
  154. tid_tx->bar_pending = false;
  155. ieee80211_send_bar(&sta->sdata->vif, addr, tid, tid_tx->failed_bar_ssn);
  156. }
  157. static void ieee80211_frame_acked(struct sta_info *sta, struct sk_buff *skb)
  158. {
  159. struct ieee80211_mgmt *mgmt = (void *) skb->data;
  160. struct ieee80211_local *local = sta->local;
  161. struct ieee80211_sub_if_data *sdata = sta->sdata;
  162. if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
  163. sta->last_rx = jiffies;
  164. if (ieee80211_is_data_qos(mgmt->frame_control)) {
  165. struct ieee80211_hdr *hdr = (void *) skb->data;
  166. u8 *qc = ieee80211_get_qos_ctl(hdr);
  167. u16 tid = qc[0] & 0xf;
  168. ieee80211_check_pending_bar(sta, hdr->addr1, tid);
  169. }
  170. if (ieee80211_is_action(mgmt->frame_control) &&
  171. mgmt->u.action.category == WLAN_CATEGORY_HT &&
  172. mgmt->u.action.u.ht_smps.action == WLAN_HT_ACTION_SMPS &&
  173. ieee80211_sdata_running(sdata)) {
  174. enum ieee80211_smps_mode smps_mode;
  175. switch (mgmt->u.action.u.ht_smps.smps_control) {
  176. case WLAN_HT_SMPS_CONTROL_DYNAMIC:
  177. smps_mode = IEEE80211_SMPS_DYNAMIC;
  178. break;
  179. case WLAN_HT_SMPS_CONTROL_STATIC:
  180. smps_mode = IEEE80211_SMPS_STATIC;
  181. break;
  182. case WLAN_HT_SMPS_CONTROL_DISABLED:
  183. default: /* shouldn't happen since we don't send that */
  184. smps_mode = IEEE80211_SMPS_OFF;
  185. break;
  186. }
  187. if (sdata->vif.type == NL80211_IFTYPE_STATION) {
  188. /*
  189. * This update looks racy, but isn't -- if we come
  190. * here we've definitely got a station that we're
  191. * talking to, and on a managed interface that can
  192. * only be the AP. And the only other place updating
  193. * this variable in managed mode is before association.
  194. */
  195. sdata->smps_mode = smps_mode;
  196. ieee80211_queue_work(&local->hw, &sdata->recalc_smps);
  197. } else if (sdata->vif.type == NL80211_IFTYPE_AP ||
  198. sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
  199. sta->known_smps_mode = smps_mode;
  200. }
  201. }
  202. }
  203. static void ieee80211_set_bar_pending(struct sta_info *sta, u8 tid, u16 ssn)
  204. {
  205. struct tid_ampdu_tx *tid_tx;
  206. tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]);
  207. if (!tid_tx)
  208. return;
  209. tid_tx->failed_bar_ssn = ssn;
  210. tid_tx->bar_pending = true;
  211. }
  212. static int ieee80211_tx_radiotap_len(struct ieee80211_tx_info *info)
  213. {
  214. int len = sizeof(struct ieee80211_radiotap_header);
  215. /* IEEE80211_RADIOTAP_RATE rate */
  216. if (info->status.rates[0].idx >= 0 &&
  217. !(info->status.rates[0].flags & (IEEE80211_TX_RC_MCS |
  218. IEEE80211_TX_RC_VHT_MCS)))
  219. len += 2;
  220. /* IEEE80211_RADIOTAP_TX_FLAGS */
  221. len += 2;
  222. /* IEEE80211_RADIOTAP_DATA_RETRIES */
  223. len += 1;
  224. /* IEEE80211_RADIOTAP_MCS
  225. * IEEE80211_RADIOTAP_VHT */
  226. if (info->status.rates[0].idx >= 0) {
  227. if (info->status.rates[0].flags & IEEE80211_TX_RC_MCS)
  228. len += 3;
  229. else if (info->status.rates[0].flags & IEEE80211_TX_RC_VHT_MCS)
  230. len = ALIGN(len, 2) + 12;
  231. }
  232. return len;
  233. }
  234. static void
  235. ieee80211_add_tx_radiotap_header(struct ieee80211_local *local,
  236. struct ieee80211_supported_band *sband,
  237. struct sk_buff *skb, int retry_count,
  238. int rtap_len, int shift)
  239. {
  240. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  241. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
  242. struct ieee80211_radiotap_header *rthdr;
  243. unsigned char *pos;
  244. u16 txflags;
  245. rthdr = (struct ieee80211_radiotap_header *) skb_push(skb, rtap_len);
  246. memset(rthdr, 0, rtap_len);
  247. rthdr->it_len = cpu_to_le16(rtap_len);
  248. rthdr->it_present =
  249. cpu_to_le32((1 << IEEE80211_RADIOTAP_TX_FLAGS) |
  250. (1 << IEEE80211_RADIOTAP_DATA_RETRIES));
  251. pos = (unsigned char *)(rthdr + 1);
  252. /*
  253. * XXX: Once radiotap gets the bitmap reset thing the vendor
  254. * extensions proposal contains, we can actually report
  255. * the whole set of tries we did.
  256. */
  257. /* IEEE80211_RADIOTAP_RATE */
  258. if (info->status.rates[0].idx >= 0 &&
  259. !(info->status.rates[0].flags & (IEEE80211_TX_RC_MCS |
  260. IEEE80211_TX_RC_VHT_MCS))) {
  261. u16 rate;
  262. rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_RATE);
  263. rate = sband->bitrates[info->status.rates[0].idx].bitrate;
  264. *pos = DIV_ROUND_UP(rate, 5 * (1 << shift));
  265. /* padding for tx flags */
  266. pos += 2;
  267. }
  268. /* IEEE80211_RADIOTAP_TX_FLAGS */
  269. txflags = 0;
  270. if (!(info->flags & IEEE80211_TX_STAT_ACK) &&
  271. !is_multicast_ether_addr(hdr->addr1))
  272. txflags |= IEEE80211_RADIOTAP_F_TX_FAIL;
  273. if ((info->status.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) ||
  274. (info->status.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT))
  275. txflags |= IEEE80211_RADIOTAP_F_TX_CTS;
  276. else if (info->status.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
  277. txflags |= IEEE80211_RADIOTAP_F_TX_RTS;
  278. put_unaligned_le16(txflags, pos);
  279. pos += 2;
  280. /* IEEE80211_RADIOTAP_DATA_RETRIES */
  281. /* for now report the total retry_count */
  282. *pos = retry_count;
  283. pos++;
  284. if (info->status.rates[0].idx < 0)
  285. return;
  286. /* IEEE80211_RADIOTAP_MCS
  287. * IEEE80211_RADIOTAP_VHT */
  288. if (info->status.rates[0].flags & IEEE80211_TX_RC_MCS) {
  289. rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_MCS);
  290. pos[0] = IEEE80211_RADIOTAP_MCS_HAVE_MCS |
  291. IEEE80211_RADIOTAP_MCS_HAVE_GI |
  292. IEEE80211_RADIOTAP_MCS_HAVE_BW;
  293. if (info->status.rates[0].flags & IEEE80211_TX_RC_SHORT_GI)
  294. pos[1] |= IEEE80211_RADIOTAP_MCS_SGI;
  295. if (info->status.rates[0].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
  296. pos[1] |= IEEE80211_RADIOTAP_MCS_BW_40;
  297. if (info->status.rates[0].flags & IEEE80211_TX_RC_GREEN_FIELD)
  298. pos[1] |= IEEE80211_RADIOTAP_MCS_FMT_GF;
  299. pos[2] = info->status.rates[0].idx;
  300. pos += 3;
  301. } else if (info->status.rates[0].flags & IEEE80211_TX_RC_VHT_MCS) {
  302. u16 known = local->hw.radiotap_vht_details &
  303. (IEEE80211_RADIOTAP_VHT_KNOWN_GI |
  304. IEEE80211_RADIOTAP_VHT_KNOWN_BANDWIDTH);
  305. rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_VHT);
  306. /* required alignment from rthdr */
  307. pos = (u8 *)rthdr + ALIGN(pos - (u8 *)rthdr, 2);
  308. /* u16 known - IEEE80211_RADIOTAP_VHT_KNOWN_* */
  309. put_unaligned_le16(known, pos);
  310. pos += 2;
  311. /* u8 flags - IEEE80211_RADIOTAP_VHT_FLAG_* */
  312. if (info->status.rates[0].flags & IEEE80211_TX_RC_SHORT_GI)
  313. *pos |= IEEE80211_RADIOTAP_VHT_FLAG_SGI;
  314. pos++;
  315. /* u8 bandwidth */
  316. if (info->status.rates[0].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
  317. *pos = 1;
  318. else if (info->status.rates[0].flags & IEEE80211_TX_RC_80_MHZ_WIDTH)
  319. *pos = 4;
  320. else if (info->status.rates[0].flags & IEEE80211_TX_RC_160_MHZ_WIDTH)
  321. *pos = 11;
  322. else /* IEEE80211_TX_RC_{20_MHZ_WIDTH,FIXME:DUP_DATA} */
  323. *pos = 0;
  324. pos++;
  325. /* u8 mcs_nss[4] */
  326. *pos = (ieee80211_rate_get_vht_mcs(&info->status.rates[0]) << 4) |
  327. ieee80211_rate_get_vht_nss(&info->status.rates[0]);
  328. pos += 4;
  329. /* u8 coding */
  330. pos++;
  331. /* u8 group_id */
  332. pos++;
  333. /* u16 partial_aid */
  334. pos += 2;
  335. }
  336. }
  337. static void ieee80211_report_used_skb(struct ieee80211_local *local,
  338. struct sk_buff *skb, bool dropped)
  339. {
  340. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  341. struct ieee80211_hdr *hdr = (void *)skb->data;
  342. bool acked = info->flags & IEEE80211_TX_STAT_ACK;
  343. if (dropped)
  344. acked = false;
  345. if (info->flags & (IEEE80211_TX_INTFL_NL80211_FRAME_TX |
  346. IEEE80211_TX_INTFL_MLME_CONN_TX)) {
  347. struct ieee80211_sub_if_data *sdata = NULL;
  348. struct ieee80211_sub_if_data *iter_sdata;
  349. u64 cookie = (unsigned long)skb;
  350. rcu_read_lock();
  351. if (skb->dev) {
  352. list_for_each_entry_rcu(iter_sdata, &local->interfaces,
  353. list) {
  354. if (!iter_sdata->dev)
  355. continue;
  356. if (skb->dev == iter_sdata->dev) {
  357. sdata = iter_sdata;
  358. break;
  359. }
  360. }
  361. } else {
  362. sdata = rcu_dereference(local->p2p_sdata);
  363. }
  364. if (!sdata) {
  365. skb->dev = NULL;
  366. } else if (info->flags & IEEE80211_TX_INTFL_MLME_CONN_TX) {
  367. ieee80211_mgd_conn_tx_status(sdata, hdr->frame_control,
  368. acked);
  369. } else if (ieee80211_is_nullfunc(hdr->frame_control) ||
  370. ieee80211_is_qos_nullfunc(hdr->frame_control)) {
  371. cfg80211_probe_status(sdata->dev, hdr->addr1,
  372. cookie, acked, GFP_ATOMIC);
  373. } else {
  374. cfg80211_mgmt_tx_status(&sdata->wdev, cookie, skb->data,
  375. skb->len, acked, GFP_ATOMIC);
  376. }
  377. rcu_read_unlock();
  378. }
  379. if (unlikely(info->ack_frame_id)) {
  380. struct sk_buff *ack_skb;
  381. unsigned long flags;
  382. spin_lock_irqsave(&local->ack_status_lock, flags);
  383. ack_skb = idr_find(&local->ack_status_frames,
  384. info->ack_frame_id);
  385. if (ack_skb)
  386. idr_remove(&local->ack_status_frames,
  387. info->ack_frame_id);
  388. spin_unlock_irqrestore(&local->ack_status_lock, flags);
  389. if (ack_skb) {
  390. if (!dropped) {
  391. /* consumes ack_skb */
  392. skb_complete_wifi_ack(ack_skb, acked);
  393. } else {
  394. dev_kfree_skb_any(ack_skb);
  395. }
  396. }
  397. }
  398. }
  399. /*
  400. * Use a static threshold for now, best value to be determined
  401. * by testing ...
  402. * Should it depend on:
  403. * - on # of retransmissions
  404. * - current throughput (higher value for higher tpt)?
  405. */
  406. #define STA_LOST_PKT_THRESHOLD 50
  407. void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
  408. {
  409. struct sk_buff *skb2;
  410. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
  411. struct ieee80211_local *local = hw_to_local(hw);
  412. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  413. __le16 fc;
  414. struct ieee80211_supported_band *sband;
  415. struct ieee80211_sub_if_data *sdata;
  416. struct net_device *prev_dev = NULL;
  417. struct sta_info *sta, *tmp;
  418. int retry_count = -1, i;
  419. int rates_idx = -1;
  420. bool send_to_cooked;
  421. bool acked;
  422. struct ieee80211_bar *bar;
  423. int rtap_len;
  424. int shift = 0;
  425. for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
  426. if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
  427. !(info->flags & IEEE80211_TX_STAT_AMPDU)) {
  428. /* just the first aggr frame carry status info */
  429. info->status.rates[i].idx = -1;
  430. info->status.rates[i].count = 0;
  431. break;
  432. } else if (info->status.rates[i].idx < 0) {
  433. break;
  434. } else if (i >= hw->max_report_rates) {
  435. /* the HW cannot have attempted that rate */
  436. info->status.rates[i].idx = -1;
  437. info->status.rates[i].count = 0;
  438. break;
  439. }
  440. retry_count += info->status.rates[i].count;
  441. }
  442. rates_idx = i - 1;
  443. if (retry_count < 0)
  444. retry_count = 0;
  445. rcu_read_lock();
  446. sband = local->hw.wiphy->bands[info->band];
  447. fc = hdr->frame_control;
  448. for_each_sta_info(local, hdr->addr1, sta, tmp) {
  449. /* skip wrong virtual interface */
  450. if (!ether_addr_equal(hdr->addr2, sta->sdata->vif.addr))
  451. continue;
  452. shift = ieee80211_vif_get_shift(&sta->sdata->vif);
  453. if (info->flags & IEEE80211_TX_STATUS_EOSP)
  454. clear_sta_flag(sta, WLAN_STA_SP);
  455. acked = !!(info->flags & IEEE80211_TX_STAT_ACK);
  456. if (!acked && test_sta_flag(sta, WLAN_STA_PS_STA)) {
  457. /*
  458. * The STA is in power save mode, so assume
  459. * that this TX packet failed because of that.
  460. */
  461. ieee80211_handle_filtered_frame(local, sta, skb);
  462. rcu_read_unlock();
  463. return;
  464. }
  465. /* mesh Peer Service Period support */
  466. if (ieee80211_vif_is_mesh(&sta->sdata->vif) &&
  467. ieee80211_is_data_qos(fc))
  468. ieee80211_mpsp_trigger_process(
  469. ieee80211_get_qos_ctl(hdr),
  470. sta, true, acked);
  471. if ((local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) &&
  472. (rates_idx != -1))
  473. sta->last_tx_rate = info->status.rates[rates_idx];
  474. if ((info->flags & IEEE80211_TX_STAT_AMPDU_NO_BACK) &&
  475. (ieee80211_is_data_qos(fc))) {
  476. u16 tid, ssn;
  477. u8 *qc;
  478. qc = ieee80211_get_qos_ctl(hdr);
  479. tid = qc[0] & 0xf;
  480. ssn = ((le16_to_cpu(hdr->seq_ctrl) + 0x10)
  481. & IEEE80211_SCTL_SEQ);
  482. ieee80211_send_bar(&sta->sdata->vif, hdr->addr1,
  483. tid, ssn);
  484. }
  485. if (!acked && ieee80211_is_back_req(fc)) {
  486. u16 tid, control;
  487. /*
  488. * BAR failed, store the last SSN and retry sending
  489. * the BAR when the next unicast transmission on the
  490. * same TID succeeds.
  491. */
  492. bar = (struct ieee80211_bar *) skb->data;
  493. control = le16_to_cpu(bar->control);
  494. if (!(control & IEEE80211_BAR_CTRL_MULTI_TID)) {
  495. u16 ssn = le16_to_cpu(bar->start_seq_num);
  496. tid = (control &
  497. IEEE80211_BAR_CTRL_TID_INFO_MASK) >>
  498. IEEE80211_BAR_CTRL_TID_INFO_SHIFT;
  499. ieee80211_set_bar_pending(sta, tid, ssn);
  500. }
  501. }
  502. if (info->flags & IEEE80211_TX_STAT_TX_FILTERED) {
  503. ieee80211_handle_filtered_frame(local, sta, skb);
  504. rcu_read_unlock();
  505. return;
  506. } else {
  507. if (!acked)
  508. sta->tx_retry_failed++;
  509. sta->tx_retry_count += retry_count;
  510. }
  511. rate_control_tx_status(local, sband, sta, skb);
  512. if (ieee80211_vif_is_mesh(&sta->sdata->vif))
  513. ieee80211s_update_metric(local, sta, skb);
  514. if (!(info->flags & IEEE80211_TX_CTL_INJECTED) && acked)
  515. ieee80211_frame_acked(sta, skb);
  516. if ((sta->sdata->vif.type == NL80211_IFTYPE_STATION) &&
  517. (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
  518. ieee80211_sta_tx_notify(sta->sdata, (void *) skb->data, acked);
  519. if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
  520. if (info->flags & IEEE80211_TX_STAT_ACK) {
  521. if (sta->lost_packets)
  522. sta->lost_packets = 0;
  523. } else if (++sta->lost_packets >= STA_LOST_PKT_THRESHOLD) {
  524. cfg80211_cqm_pktloss_notify(sta->sdata->dev,
  525. sta->sta.addr,
  526. sta->lost_packets,
  527. GFP_ATOMIC);
  528. sta->lost_packets = 0;
  529. }
  530. }
  531. if (acked)
  532. sta->last_ack_signal = info->status.ack_signal;
  533. }
  534. rcu_read_unlock();
  535. ieee80211_led_tx(local);
  536. /* SNMP counters
  537. * Fragments are passed to low-level drivers as separate skbs, so these
  538. * are actually fragments, not frames. Update frame counters only for
  539. * the first fragment of the frame. */
  540. if (info->flags & IEEE80211_TX_STAT_ACK) {
  541. if (ieee80211_is_first_frag(hdr->seq_ctrl)) {
  542. local->dot11TransmittedFrameCount++;
  543. if (is_multicast_ether_addr(hdr->addr1))
  544. local->dot11MulticastTransmittedFrameCount++;
  545. if (retry_count > 0)
  546. local->dot11RetryCount++;
  547. if (retry_count > 1)
  548. local->dot11MultipleRetryCount++;
  549. }
  550. /* This counter shall be incremented for an acknowledged MPDU
  551. * with an individual address in the address 1 field or an MPDU
  552. * with a multicast address in the address 1 field of type Data
  553. * or Management. */
  554. if (!is_multicast_ether_addr(hdr->addr1) ||
  555. ieee80211_is_data(fc) ||
  556. ieee80211_is_mgmt(fc))
  557. local->dot11TransmittedFragmentCount++;
  558. } else {
  559. if (ieee80211_is_first_frag(hdr->seq_ctrl))
  560. local->dot11FailedCount++;
  561. }
  562. if (ieee80211_is_nullfunc(fc) && ieee80211_has_pm(fc) &&
  563. (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
  564. !(info->flags & IEEE80211_TX_CTL_INJECTED) &&
  565. local->ps_sdata && !(local->scanning)) {
  566. if (info->flags & IEEE80211_TX_STAT_ACK) {
  567. local->ps_sdata->u.mgd.flags |=
  568. IEEE80211_STA_NULLFUNC_ACKED;
  569. } else
  570. mod_timer(&local->dynamic_ps_timer, jiffies +
  571. msecs_to_jiffies(10));
  572. }
  573. ieee80211_report_used_skb(local, skb, false);
  574. /* this was a transmitted frame, but now we want to reuse it */
  575. skb_orphan(skb);
  576. /* Need to make a copy before skb->cb gets cleared */
  577. send_to_cooked = !!(info->flags & IEEE80211_TX_CTL_INJECTED) ||
  578. !(ieee80211_is_data(fc));
  579. /*
  580. * This is a bit racy but we can avoid a lot of work
  581. * with this test...
  582. */
  583. if (!local->monitors && (!send_to_cooked || !local->cooked_mntrs)) {
  584. dev_kfree_skb(skb);
  585. return;
  586. }
  587. /* send frame to monitor interfaces now */
  588. rtap_len = ieee80211_tx_radiotap_len(info);
  589. if (WARN_ON_ONCE(skb_headroom(skb) < rtap_len)) {
  590. pr_err("ieee80211_tx_status: headroom too small\n");
  591. dev_kfree_skb(skb);
  592. return;
  593. }
  594. ieee80211_add_tx_radiotap_header(local, sband, skb, retry_count,
  595. rtap_len, shift);
  596. /* XXX: is this sufficient for BPF? */
  597. skb_set_mac_header(skb, 0);
  598. skb->ip_summed = CHECKSUM_UNNECESSARY;
  599. skb->pkt_type = PACKET_OTHERHOST;
  600. skb->protocol = htons(ETH_P_802_2);
  601. memset(skb->cb, 0, sizeof(skb->cb));
  602. rcu_read_lock();
  603. list_for_each_entry_rcu(sdata, &local->interfaces, list) {
  604. if (sdata->vif.type == NL80211_IFTYPE_MONITOR) {
  605. if (!ieee80211_sdata_running(sdata))
  606. continue;
  607. if ((sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) &&
  608. !send_to_cooked)
  609. continue;
  610. if (prev_dev) {
  611. skb2 = skb_clone(skb, GFP_ATOMIC);
  612. if (skb2) {
  613. skb2->dev = prev_dev;
  614. netif_rx(skb2);
  615. }
  616. }
  617. prev_dev = sdata->dev;
  618. }
  619. }
  620. if (prev_dev) {
  621. skb->dev = prev_dev;
  622. netif_rx(skb);
  623. skb = NULL;
  624. }
  625. rcu_read_unlock();
  626. dev_kfree_skb(skb);
  627. }
  628. EXPORT_SYMBOL(ieee80211_tx_status);
  629. void ieee80211_report_low_ack(struct ieee80211_sta *pubsta, u32 num_packets)
  630. {
  631. struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
  632. cfg80211_cqm_pktloss_notify(sta->sdata->dev, sta->sta.addr,
  633. num_packets, GFP_ATOMIC);
  634. }
  635. EXPORT_SYMBOL(ieee80211_report_low_ack);
  636. void ieee80211_free_txskb(struct ieee80211_hw *hw, struct sk_buff *skb)
  637. {
  638. struct ieee80211_local *local = hw_to_local(hw);
  639. ieee80211_report_used_skb(local, skb, true);
  640. dev_kfree_skb_any(skb);
  641. }
  642. EXPORT_SYMBOL(ieee80211_free_txskb);
  643. void ieee80211_purge_tx_queue(struct ieee80211_hw *hw,
  644. struct sk_buff_head *skbs)
  645. {
  646. struct sk_buff *skb;
  647. while ((skb = __skb_dequeue(skbs)))
  648. ieee80211_free_txskb(hw, skb);
  649. }