status.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509
  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 <net/mac80211.h>
  12. #include "ieee80211_i.h"
  13. #include "rate.h"
  14. #include "mesh.h"
  15. #include "led.h"
  16. void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw,
  17. struct sk_buff *skb)
  18. {
  19. struct ieee80211_local *local = hw_to_local(hw);
  20. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  21. int tmp;
  22. skb->pkt_type = IEEE80211_TX_STATUS_MSG;
  23. skb_queue_tail(info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS ?
  24. &local->skb_queue : &local->skb_queue_unreliable, skb);
  25. tmp = skb_queue_len(&local->skb_queue) +
  26. skb_queue_len(&local->skb_queue_unreliable);
  27. while (tmp > IEEE80211_IRQSAFE_QUEUE_LIMIT &&
  28. (skb = skb_dequeue(&local->skb_queue_unreliable))) {
  29. dev_kfree_skb_irq(skb);
  30. tmp--;
  31. I802_DEBUG_INC(local->tx_status_drop);
  32. }
  33. tasklet_schedule(&local->tasklet);
  34. }
  35. EXPORT_SYMBOL(ieee80211_tx_status_irqsafe);
  36. static void ieee80211_handle_filtered_frame(struct ieee80211_local *local,
  37. struct sta_info *sta,
  38. struct sk_buff *skb)
  39. {
  40. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  41. /*
  42. * This skb 'survived' a round-trip through the driver, and
  43. * hopefully the driver didn't mangle it too badly. However,
  44. * we can definitely not rely on the control information
  45. * being correct. Clear it so we don't get junk there, and
  46. * indicate that it needs new processing, but must not be
  47. * modified/encrypted again.
  48. */
  49. memset(&info->control, 0, sizeof(info->control));
  50. info->control.jiffies = jiffies;
  51. info->control.vif = &sta->sdata->vif;
  52. info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING |
  53. IEEE80211_TX_INTFL_RETRANSMISSION;
  54. info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
  55. sta->tx_filtered_count++;
  56. /*
  57. * Clear the TX filter mask for this STA when sending the next
  58. * packet. If the STA went to power save mode, this will happen
  59. * when it wakes up for the next time.
  60. */
  61. set_sta_flags(sta, WLAN_STA_CLEAR_PS_FILT);
  62. /*
  63. * This code races in the following way:
  64. *
  65. * (1) STA sends frame indicating it will go to sleep and does so
  66. * (2) hardware/firmware adds STA to filter list, passes frame up
  67. * (3) hardware/firmware processes TX fifo and suppresses a frame
  68. * (4) we get TX status before having processed the frame and
  69. * knowing that the STA has gone to sleep.
  70. *
  71. * This is actually quite unlikely even when both those events are
  72. * processed from interrupts coming in quickly after one another or
  73. * even at the same time because we queue both TX status events and
  74. * RX frames to be processed by a tasklet and process them in the
  75. * same order that they were received or TX status last. Hence, there
  76. * is no race as long as the frame RX is processed before the next TX
  77. * status, which drivers can ensure, see below.
  78. *
  79. * Note that this can only happen if the hardware or firmware can
  80. * actually add STAs to the filter list, if this is done by the
  81. * driver in response to set_tim() (which will only reduce the race
  82. * this whole filtering tries to solve, not completely solve it)
  83. * this situation cannot happen.
  84. *
  85. * To completely solve this race drivers need to make sure that they
  86. * (a) don't mix the irq-safe/not irq-safe TX status/RX processing
  87. * functions and
  88. * (b) always process RX events before TX status events if ordering
  89. * can be unknown, for example with different interrupt status
  90. * bits.
  91. * (c) if PS mode transitions are manual (i.e. the flag
  92. * %IEEE80211_HW_AP_LINK_PS is set), always process PS state
  93. * changes before calling TX status events if ordering can be
  94. * unknown.
  95. */
  96. if (test_sta_flags(sta, WLAN_STA_PS_STA) &&
  97. skb_queue_len(&sta->tx_filtered) < STA_MAX_TX_BUFFER) {
  98. skb_queue_tail(&sta->tx_filtered, skb);
  99. sta_info_recalc_tim(sta);
  100. return;
  101. }
  102. if (!test_sta_flags(sta, WLAN_STA_PS_STA) &&
  103. !(info->flags & IEEE80211_TX_INTFL_RETRIED)) {
  104. /* Software retry the packet once */
  105. info->flags |= IEEE80211_TX_INTFL_RETRIED;
  106. ieee80211_add_pending_skb(local, skb);
  107. return;
  108. }
  109. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  110. if (net_ratelimit())
  111. wiphy_debug(local->hw.wiphy,
  112. "dropped TX filtered frame, queue_len=%d PS=%d @%lu\n",
  113. skb_queue_len(&sta->tx_filtered),
  114. !!test_sta_flags(sta, WLAN_STA_PS_STA), jiffies);
  115. #endif
  116. dev_kfree_skb(skb);
  117. }
  118. static void ieee80211_check_pending_bar(struct sta_info *sta, u8 *addr, u8 tid)
  119. {
  120. struct tid_ampdu_tx *tid_tx;
  121. tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]);
  122. if (!tid_tx || !tid_tx->bar_pending)
  123. return;
  124. tid_tx->bar_pending = false;
  125. ieee80211_send_bar(&sta->sdata->vif, addr, tid, tid_tx->failed_bar_ssn);
  126. }
  127. static void ieee80211_frame_acked(struct sta_info *sta, struct sk_buff *skb)
  128. {
  129. struct ieee80211_mgmt *mgmt = (void *) skb->data;
  130. struct ieee80211_local *local = sta->local;
  131. struct ieee80211_sub_if_data *sdata = sta->sdata;
  132. if (ieee80211_is_data_qos(mgmt->frame_control)) {
  133. struct ieee80211_hdr *hdr = (void *) skb->data;
  134. u8 *qc = ieee80211_get_qos_ctl(hdr);
  135. u16 tid = qc[0] & 0xf;
  136. ieee80211_check_pending_bar(sta, hdr->addr1, tid);
  137. }
  138. if (ieee80211_is_action(mgmt->frame_control) &&
  139. sdata->vif.type == NL80211_IFTYPE_STATION &&
  140. mgmt->u.action.category == WLAN_CATEGORY_HT &&
  141. mgmt->u.action.u.ht_smps.action == WLAN_HT_ACTION_SMPS) {
  142. /*
  143. * This update looks racy, but isn't -- if we come
  144. * here we've definitely got a station that we're
  145. * talking to, and on a managed interface that can
  146. * only be the AP. And the only other place updating
  147. * this variable is before we're associated.
  148. */
  149. switch (mgmt->u.action.u.ht_smps.smps_control) {
  150. case WLAN_HT_SMPS_CONTROL_DYNAMIC:
  151. sta->sdata->u.mgd.ap_smps = IEEE80211_SMPS_DYNAMIC;
  152. break;
  153. case WLAN_HT_SMPS_CONTROL_STATIC:
  154. sta->sdata->u.mgd.ap_smps = IEEE80211_SMPS_STATIC;
  155. break;
  156. case WLAN_HT_SMPS_CONTROL_DISABLED:
  157. default: /* shouldn't happen since we don't send that */
  158. sta->sdata->u.mgd.ap_smps = IEEE80211_SMPS_OFF;
  159. break;
  160. }
  161. ieee80211_queue_work(&local->hw, &local->recalc_smps);
  162. }
  163. }
  164. static void ieee80211_set_bar_pending(struct sta_info *sta, u8 tid, u16 ssn)
  165. {
  166. struct tid_ampdu_tx *tid_tx;
  167. tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]);
  168. if (!tid_tx)
  169. return;
  170. tid_tx->failed_bar_ssn = ssn;
  171. tid_tx->bar_pending = true;
  172. }
  173. /*
  174. * Use a static threshold for now, best value to be determined
  175. * by testing ...
  176. * Should it depend on:
  177. * - on # of retransmissions
  178. * - current throughput (higher value for higher tpt)?
  179. */
  180. #define STA_LOST_PKT_THRESHOLD 50
  181. void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
  182. {
  183. struct sk_buff *skb2;
  184. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
  185. struct ieee80211_local *local = hw_to_local(hw);
  186. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  187. u16 frag, type;
  188. __le16 fc;
  189. struct ieee80211_supported_band *sband;
  190. struct ieee80211_tx_status_rtap_hdr *rthdr;
  191. struct ieee80211_sub_if_data *sdata;
  192. struct net_device *prev_dev = NULL;
  193. struct sta_info *sta, *tmp;
  194. int retry_count = -1, i;
  195. int rates_idx = -1;
  196. bool send_to_cooked;
  197. bool acked;
  198. struct ieee80211_bar *bar;
  199. u16 tid;
  200. for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
  201. if (info->status.rates[i].idx < 0) {
  202. break;
  203. } else if (i >= hw->max_report_rates) {
  204. /* the HW cannot have attempted that rate */
  205. info->status.rates[i].idx = -1;
  206. info->status.rates[i].count = 0;
  207. break;
  208. }
  209. retry_count += info->status.rates[i].count;
  210. }
  211. rates_idx = i - 1;
  212. if (retry_count < 0)
  213. retry_count = 0;
  214. rcu_read_lock();
  215. sband = local->hw.wiphy->bands[info->band];
  216. fc = hdr->frame_control;
  217. for_each_sta_info(local, hdr->addr1, sta, tmp) {
  218. /* skip wrong virtual interface */
  219. if (memcmp(hdr->addr2, sta->sdata->vif.addr, ETH_ALEN))
  220. continue;
  221. acked = !!(info->flags & IEEE80211_TX_STAT_ACK);
  222. if (!acked && test_sta_flags(sta, WLAN_STA_PS_STA)) {
  223. /*
  224. * The STA is in power save mode, so assume
  225. * that this TX packet failed because of that.
  226. */
  227. ieee80211_handle_filtered_frame(local, sta, skb);
  228. rcu_read_unlock();
  229. return;
  230. }
  231. if ((local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) &&
  232. (rates_idx != -1))
  233. sta->last_tx_rate = info->status.rates[rates_idx];
  234. if ((info->flags & IEEE80211_TX_STAT_AMPDU_NO_BACK) &&
  235. (ieee80211_is_data_qos(fc))) {
  236. u16 tid, ssn;
  237. u8 *qc;
  238. qc = ieee80211_get_qos_ctl(hdr);
  239. tid = qc[0] & 0xf;
  240. ssn = ((le16_to_cpu(hdr->seq_ctrl) + 0x10)
  241. & IEEE80211_SCTL_SEQ);
  242. ieee80211_send_bar(&sta->sdata->vif, hdr->addr1,
  243. tid, ssn);
  244. }
  245. if (!acked && ieee80211_is_back_req(fc)) {
  246. u16 control;
  247. /*
  248. * BAR failed, store the last SSN and retry sending
  249. * the BAR when the next unicast transmission on the
  250. * same TID succeeds.
  251. */
  252. bar = (struct ieee80211_bar *) skb->data;
  253. control = le16_to_cpu(bar->control);
  254. if (!(control & IEEE80211_BAR_CTRL_MULTI_TID)) {
  255. u16 ssn = le16_to_cpu(bar->start_seq_num);
  256. tid = (control &
  257. IEEE80211_BAR_CTRL_TID_INFO_MASK) >>
  258. IEEE80211_BAR_CTRL_TID_INFO_SHIFT;
  259. ieee80211_set_bar_pending(sta, tid, ssn);
  260. }
  261. }
  262. if (info->flags & IEEE80211_TX_STAT_TX_FILTERED) {
  263. ieee80211_handle_filtered_frame(local, sta, skb);
  264. rcu_read_unlock();
  265. return;
  266. } else {
  267. if (!acked)
  268. sta->tx_retry_failed++;
  269. sta->tx_retry_count += retry_count;
  270. }
  271. rate_control_tx_status(local, sband, sta, skb);
  272. if (ieee80211_vif_is_mesh(&sta->sdata->vif))
  273. ieee80211s_update_metric(local, sta, skb);
  274. if (!(info->flags & IEEE80211_TX_CTL_INJECTED) && acked)
  275. ieee80211_frame_acked(sta, skb);
  276. if ((sta->sdata->vif.type == NL80211_IFTYPE_STATION) &&
  277. (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
  278. ieee80211_sta_tx_notify(sta->sdata, (void *) skb->data, acked);
  279. if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
  280. if (info->flags & IEEE80211_TX_STAT_ACK) {
  281. if (sta->lost_packets)
  282. sta->lost_packets = 0;
  283. } else if (++sta->lost_packets >= STA_LOST_PKT_THRESHOLD) {
  284. cfg80211_cqm_pktloss_notify(sta->sdata->dev,
  285. sta->sta.addr,
  286. sta->lost_packets,
  287. GFP_ATOMIC);
  288. sta->lost_packets = 0;
  289. }
  290. }
  291. }
  292. rcu_read_unlock();
  293. ieee80211_led_tx(local, 0);
  294. /* SNMP counters
  295. * Fragments are passed to low-level drivers as separate skbs, so these
  296. * are actually fragments, not frames. Update frame counters only for
  297. * the first fragment of the frame. */
  298. frag = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG;
  299. type = le16_to_cpu(hdr->frame_control) & IEEE80211_FCTL_FTYPE;
  300. if (info->flags & IEEE80211_TX_STAT_ACK) {
  301. if (frag == 0) {
  302. local->dot11TransmittedFrameCount++;
  303. if (is_multicast_ether_addr(hdr->addr1))
  304. local->dot11MulticastTransmittedFrameCount++;
  305. if (retry_count > 0)
  306. local->dot11RetryCount++;
  307. if (retry_count > 1)
  308. local->dot11MultipleRetryCount++;
  309. }
  310. /* This counter shall be incremented for an acknowledged MPDU
  311. * with an individual address in the address 1 field or an MPDU
  312. * with a multicast address in the address 1 field of type Data
  313. * or Management. */
  314. if (!is_multicast_ether_addr(hdr->addr1) ||
  315. type == IEEE80211_FTYPE_DATA ||
  316. type == IEEE80211_FTYPE_MGMT)
  317. local->dot11TransmittedFragmentCount++;
  318. } else {
  319. if (frag == 0)
  320. local->dot11FailedCount++;
  321. }
  322. if (ieee80211_is_nullfunc(fc) && ieee80211_has_pm(fc) &&
  323. (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
  324. !(info->flags & IEEE80211_TX_CTL_INJECTED) &&
  325. local->ps_sdata && !(local->scanning)) {
  326. if (info->flags & IEEE80211_TX_STAT_ACK) {
  327. local->ps_sdata->u.mgd.flags |=
  328. IEEE80211_STA_NULLFUNC_ACKED;
  329. } else
  330. mod_timer(&local->dynamic_ps_timer, jiffies +
  331. msecs_to_jiffies(10));
  332. }
  333. if (info->flags & IEEE80211_TX_INTFL_NL80211_FRAME_TX) {
  334. struct ieee80211_work *wk;
  335. u64 cookie = (unsigned long)skb;
  336. rcu_read_lock();
  337. list_for_each_entry_rcu(wk, &local->work_list, list) {
  338. if (wk->type != IEEE80211_WORK_OFFCHANNEL_TX)
  339. continue;
  340. if (wk->offchan_tx.frame != skb)
  341. continue;
  342. wk->offchan_tx.frame = NULL;
  343. break;
  344. }
  345. rcu_read_unlock();
  346. if (local->hw_roc_skb_for_status == skb) {
  347. cookie = local->hw_roc_cookie ^ 2;
  348. local->hw_roc_skb_for_status = NULL;
  349. }
  350. cfg80211_mgmt_tx_status(
  351. skb->dev, cookie, skb->data, skb->len,
  352. !!(info->flags & IEEE80211_TX_STAT_ACK), GFP_ATOMIC);
  353. }
  354. /* this was a transmitted frame, but now we want to reuse it */
  355. skb_orphan(skb);
  356. /* Need to make a copy before skb->cb gets cleared */
  357. send_to_cooked = !!(info->flags & IEEE80211_TX_CTL_INJECTED) ||
  358. (type != IEEE80211_FTYPE_DATA);
  359. /*
  360. * This is a bit racy but we can avoid a lot of work
  361. * with this test...
  362. */
  363. if (!local->monitors && (!send_to_cooked || !local->cooked_mntrs)) {
  364. dev_kfree_skb(skb);
  365. return;
  366. }
  367. /* send frame to monitor interfaces now */
  368. if (skb_headroom(skb) < sizeof(*rthdr)) {
  369. printk(KERN_ERR "ieee80211_tx_status: headroom too small\n");
  370. dev_kfree_skb(skb);
  371. return;
  372. }
  373. rthdr = (struct ieee80211_tx_status_rtap_hdr *)
  374. skb_push(skb, sizeof(*rthdr));
  375. memset(rthdr, 0, sizeof(*rthdr));
  376. rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
  377. rthdr->hdr.it_present =
  378. cpu_to_le32((1 << IEEE80211_RADIOTAP_TX_FLAGS) |
  379. (1 << IEEE80211_RADIOTAP_DATA_RETRIES) |
  380. (1 << IEEE80211_RADIOTAP_RATE));
  381. if (!(info->flags & IEEE80211_TX_STAT_ACK) &&
  382. !is_multicast_ether_addr(hdr->addr1))
  383. rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_FAIL);
  384. /*
  385. * XXX: Once radiotap gets the bitmap reset thing the vendor
  386. * extensions proposal contains, we can actually report
  387. * the whole set of tries we did.
  388. */
  389. if ((info->status.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) ||
  390. (info->status.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT))
  391. rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_CTS);
  392. else if (info->status.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
  393. rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_RTS);
  394. if (info->status.rates[0].idx >= 0 &&
  395. !(info->status.rates[0].flags & IEEE80211_TX_RC_MCS))
  396. rthdr->rate = sband->bitrates[
  397. info->status.rates[0].idx].bitrate / 5;
  398. /* for now report the total retry_count */
  399. rthdr->data_retries = retry_count;
  400. /* XXX: is this sufficient for BPF? */
  401. skb_set_mac_header(skb, 0);
  402. skb->ip_summed = CHECKSUM_UNNECESSARY;
  403. skb->pkt_type = PACKET_OTHERHOST;
  404. skb->protocol = htons(ETH_P_802_2);
  405. memset(skb->cb, 0, sizeof(skb->cb));
  406. rcu_read_lock();
  407. list_for_each_entry_rcu(sdata, &local->interfaces, list) {
  408. if (sdata->vif.type == NL80211_IFTYPE_MONITOR) {
  409. if (!ieee80211_sdata_running(sdata))
  410. continue;
  411. if ((sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) &&
  412. !send_to_cooked)
  413. continue;
  414. if (prev_dev) {
  415. skb2 = skb_clone(skb, GFP_ATOMIC);
  416. if (skb2) {
  417. skb2->dev = prev_dev;
  418. netif_rx(skb2);
  419. }
  420. }
  421. prev_dev = sdata->dev;
  422. }
  423. }
  424. if (prev_dev) {
  425. skb->dev = prev_dev;
  426. netif_rx(skb);
  427. skb = NULL;
  428. }
  429. rcu_read_unlock();
  430. dev_kfree_skb(skb);
  431. }
  432. EXPORT_SYMBOL(ieee80211_tx_status);
  433. void ieee80211_report_low_ack(struct ieee80211_sta *pubsta, u32 num_packets)
  434. {
  435. struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
  436. cfg80211_cqm_pktloss_notify(sta->sdata->dev, sta->sta.addr,
  437. num_packets, GFP_ATOMIC);
  438. }
  439. EXPORT_SYMBOL(ieee80211_report_low_ack);