status.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  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 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. sta->tx_filtered_count++;
  55. /*
  56. * Clear the TX filter mask for this STA when sending the next
  57. * packet. If the STA went to power save mode, this will happen
  58. * when it wakes up for the next time.
  59. */
  60. set_sta_flags(sta, WLAN_STA_CLEAR_PS_FILT);
  61. /*
  62. * This code races in the following way:
  63. *
  64. * (1) STA sends frame indicating it will go to sleep and does so
  65. * (2) hardware/firmware adds STA to filter list, passes frame up
  66. * (3) hardware/firmware processes TX fifo and suppresses a frame
  67. * (4) we get TX status before having processed the frame and
  68. * knowing that the STA has gone to sleep.
  69. *
  70. * This is actually quite unlikely even when both those events are
  71. * processed from interrupts coming in quickly after one another or
  72. * even at the same time because we queue both TX status events and
  73. * RX frames to be processed by a tasklet and process them in the
  74. * same order that they were received or TX status last. Hence, there
  75. * is no race as long as the frame RX is processed before the next TX
  76. * status, which drivers can ensure, see below.
  77. *
  78. * Note that this can only happen if the hardware or firmware can
  79. * actually add STAs to the filter list, if this is done by the
  80. * driver in response to set_tim() (which will only reduce the race
  81. * this whole filtering tries to solve, not completely solve it)
  82. * this situation cannot happen.
  83. *
  84. * To completely solve this race drivers need to make sure that they
  85. * (a) don't mix the irq-safe/not irq-safe TX status/RX processing
  86. * functions and
  87. * (b) always process RX events before TX status events if ordering
  88. * can be unknown, for example with different interrupt status
  89. * bits.
  90. */
  91. if (test_sta_flags(sta, WLAN_STA_PS_STA) &&
  92. skb_queue_len(&sta->tx_filtered) < STA_MAX_TX_BUFFER) {
  93. skb_queue_tail(&sta->tx_filtered, skb);
  94. return;
  95. }
  96. if (!test_sta_flags(sta, WLAN_STA_PS_STA) &&
  97. !(info->flags & IEEE80211_TX_INTFL_RETRIED)) {
  98. /* Software retry the packet once */
  99. info->flags |= IEEE80211_TX_INTFL_RETRIED;
  100. ieee80211_add_pending_skb(local, skb);
  101. return;
  102. }
  103. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  104. if (net_ratelimit())
  105. printk(KERN_DEBUG "%s: dropped TX filtered frame, "
  106. "queue_len=%d PS=%d @%lu\n",
  107. wiphy_name(local->hw.wiphy),
  108. skb_queue_len(&sta->tx_filtered),
  109. !!test_sta_flags(sta, WLAN_STA_PS_STA), jiffies);
  110. #endif
  111. dev_kfree_skb(skb);
  112. }
  113. static void ieee80211_frame_acked(struct sta_info *sta, struct sk_buff *skb)
  114. {
  115. struct ieee80211_mgmt *mgmt = (void *) skb->data;
  116. struct ieee80211_local *local = sta->local;
  117. struct ieee80211_sub_if_data *sdata = sta->sdata;
  118. if (ieee80211_is_action(mgmt->frame_control) &&
  119. sdata->vif.type == NL80211_IFTYPE_STATION &&
  120. mgmt->u.action.category == WLAN_CATEGORY_HT &&
  121. mgmt->u.action.u.ht_smps.action == WLAN_HT_ACTION_SMPS) {
  122. /*
  123. * This update looks racy, but isn't -- if we come
  124. * here we've definitely got a station that we're
  125. * talking to, and on a managed interface that can
  126. * only be the AP. And the only other place updating
  127. * this variable is before we're associated.
  128. */
  129. switch (mgmt->u.action.u.ht_smps.smps_control) {
  130. case WLAN_HT_SMPS_CONTROL_DYNAMIC:
  131. sta->sdata->u.mgd.ap_smps = IEEE80211_SMPS_DYNAMIC;
  132. break;
  133. case WLAN_HT_SMPS_CONTROL_STATIC:
  134. sta->sdata->u.mgd.ap_smps = IEEE80211_SMPS_STATIC;
  135. break;
  136. case WLAN_HT_SMPS_CONTROL_DISABLED:
  137. default: /* shouldn't happen since we don't send that */
  138. sta->sdata->u.mgd.ap_smps = IEEE80211_SMPS_OFF;
  139. break;
  140. }
  141. ieee80211_queue_work(&local->hw, &local->recalc_smps);
  142. }
  143. }
  144. void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
  145. {
  146. struct sk_buff *skb2;
  147. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
  148. struct ieee80211_local *local = hw_to_local(hw);
  149. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  150. u16 frag, type;
  151. __le16 fc;
  152. struct ieee80211_supported_band *sband;
  153. struct ieee80211_tx_status_rtap_hdr *rthdr;
  154. struct ieee80211_sub_if_data *sdata;
  155. struct net_device *prev_dev = NULL;
  156. struct sta_info *sta, *tmp;
  157. int retry_count = -1, i;
  158. bool injected;
  159. for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
  160. /* the HW cannot have attempted that rate */
  161. if (i >= hw->max_rates) {
  162. info->status.rates[i].idx = -1;
  163. info->status.rates[i].count = 0;
  164. }
  165. retry_count += info->status.rates[i].count;
  166. }
  167. if (retry_count < 0)
  168. retry_count = 0;
  169. rcu_read_lock();
  170. sband = local->hw.wiphy->bands[info->band];
  171. fc = hdr->frame_control;
  172. for_each_sta_info(local, hdr->addr1, sta, tmp) {
  173. /* skip wrong virtual interface */
  174. if (memcmp(hdr->addr2, sta->sdata->vif.addr, ETH_ALEN))
  175. continue;
  176. if (!(info->flags & IEEE80211_TX_STAT_ACK) &&
  177. test_sta_flags(sta, WLAN_STA_PS_STA)) {
  178. /*
  179. * The STA is in power save mode, so assume
  180. * that this TX packet failed because of that.
  181. */
  182. ieee80211_handle_filtered_frame(local, sta, skb);
  183. rcu_read_unlock();
  184. return;
  185. }
  186. if ((info->flags & IEEE80211_TX_STAT_AMPDU_NO_BACK) &&
  187. (ieee80211_is_data_qos(fc))) {
  188. u16 tid, ssn;
  189. u8 *qc;
  190. qc = ieee80211_get_qos_ctl(hdr);
  191. tid = qc[0] & 0xf;
  192. ssn = ((le16_to_cpu(hdr->seq_ctrl) + 0x10)
  193. & IEEE80211_SCTL_SEQ);
  194. ieee80211_send_bar(sta->sdata, hdr->addr1,
  195. tid, ssn);
  196. }
  197. if (info->flags & IEEE80211_TX_STAT_TX_FILTERED) {
  198. ieee80211_handle_filtered_frame(local, sta, skb);
  199. rcu_read_unlock();
  200. return;
  201. } else {
  202. if (!(info->flags & IEEE80211_TX_STAT_ACK))
  203. sta->tx_retry_failed++;
  204. sta->tx_retry_count += retry_count;
  205. }
  206. rate_control_tx_status(local, sband, sta, skb);
  207. if (ieee80211_vif_is_mesh(&sta->sdata->vif))
  208. ieee80211s_update_metric(local, sta, skb);
  209. if (!(info->flags & IEEE80211_TX_CTL_INJECTED) &&
  210. (info->flags & IEEE80211_TX_STAT_ACK))
  211. ieee80211_frame_acked(sta, skb);
  212. }
  213. rcu_read_unlock();
  214. ieee80211_led_tx(local, 0);
  215. /* SNMP counters
  216. * Fragments are passed to low-level drivers as separate skbs, so these
  217. * are actually fragments, not frames. Update frame counters only for
  218. * the first fragment of the frame. */
  219. frag = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG;
  220. type = le16_to_cpu(hdr->frame_control) & IEEE80211_FCTL_FTYPE;
  221. if (info->flags & IEEE80211_TX_STAT_ACK) {
  222. if (frag == 0) {
  223. local->dot11TransmittedFrameCount++;
  224. if (is_multicast_ether_addr(hdr->addr1))
  225. local->dot11MulticastTransmittedFrameCount++;
  226. if (retry_count > 0)
  227. local->dot11RetryCount++;
  228. if (retry_count > 1)
  229. local->dot11MultipleRetryCount++;
  230. }
  231. /* This counter shall be incremented for an acknowledged MPDU
  232. * with an individual address in the address 1 field or an MPDU
  233. * with a multicast address in the address 1 field of type Data
  234. * or Management. */
  235. if (!is_multicast_ether_addr(hdr->addr1) ||
  236. type == IEEE80211_FTYPE_DATA ||
  237. type == IEEE80211_FTYPE_MGMT)
  238. local->dot11TransmittedFragmentCount++;
  239. } else {
  240. if (frag == 0)
  241. local->dot11FailedCount++;
  242. }
  243. if (ieee80211_is_nullfunc(fc) && ieee80211_has_pm(fc) &&
  244. (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
  245. !(info->flags & IEEE80211_TX_CTL_INJECTED) &&
  246. local->ps_sdata && !(local->scanning)) {
  247. if (info->flags & IEEE80211_TX_STAT_ACK) {
  248. local->ps_sdata->u.mgd.flags |=
  249. IEEE80211_STA_NULLFUNC_ACKED;
  250. ieee80211_queue_work(&local->hw,
  251. &local->dynamic_ps_enable_work);
  252. } else
  253. mod_timer(&local->dynamic_ps_timer, jiffies +
  254. msecs_to_jiffies(10));
  255. }
  256. if (info->flags & IEEE80211_TX_INTFL_NL80211_FRAME_TX)
  257. cfg80211_action_tx_status(
  258. skb->dev, (unsigned long) skb, skb->data, skb->len,
  259. !!(info->flags & IEEE80211_TX_STAT_ACK), GFP_ATOMIC);
  260. /* this was a transmitted frame, but now we want to reuse it */
  261. skb_orphan(skb);
  262. /*
  263. * This is a bit racy but we can avoid a lot of work
  264. * with this test...
  265. */
  266. if (!local->monitors && !local->cooked_mntrs) {
  267. dev_kfree_skb(skb);
  268. return;
  269. }
  270. /* send frame to monitor interfaces now */
  271. if (skb_headroom(skb) < sizeof(*rthdr)) {
  272. printk(KERN_ERR "ieee80211_tx_status: headroom too small\n");
  273. dev_kfree_skb(skb);
  274. return;
  275. }
  276. rthdr = (struct ieee80211_tx_status_rtap_hdr *)
  277. skb_push(skb, sizeof(*rthdr));
  278. memset(rthdr, 0, sizeof(*rthdr));
  279. rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
  280. rthdr->hdr.it_present =
  281. cpu_to_le32((1 << IEEE80211_RADIOTAP_TX_FLAGS) |
  282. (1 << IEEE80211_RADIOTAP_DATA_RETRIES) |
  283. (1 << IEEE80211_RADIOTAP_RATE));
  284. if (!(info->flags & IEEE80211_TX_STAT_ACK) &&
  285. !is_multicast_ether_addr(hdr->addr1))
  286. rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_FAIL);
  287. /*
  288. * XXX: Once radiotap gets the bitmap reset thing the vendor
  289. * extensions proposal contains, we can actually report
  290. * the whole set of tries we did.
  291. */
  292. if ((info->status.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) ||
  293. (info->status.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT))
  294. rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_CTS);
  295. else if (info->status.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
  296. rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_RTS);
  297. if (info->status.rates[0].idx >= 0 &&
  298. !(info->status.rates[0].flags & IEEE80211_TX_RC_MCS))
  299. rthdr->rate = sband->bitrates[
  300. info->status.rates[0].idx].bitrate / 5;
  301. /* for now report the total retry_count */
  302. rthdr->data_retries = retry_count;
  303. /* Need to make a copy before skb->cb gets cleared */
  304. injected = !!(info->flags & IEEE80211_TX_CTL_INJECTED);
  305. /* XXX: is this sufficient for BPF? */
  306. skb_set_mac_header(skb, 0);
  307. skb->ip_summed = CHECKSUM_UNNECESSARY;
  308. skb->pkt_type = PACKET_OTHERHOST;
  309. skb->protocol = htons(ETH_P_802_2);
  310. memset(skb->cb, 0, sizeof(skb->cb));
  311. rcu_read_lock();
  312. list_for_each_entry_rcu(sdata, &local->interfaces, list) {
  313. if (sdata->vif.type == NL80211_IFTYPE_MONITOR) {
  314. if (!ieee80211_sdata_running(sdata))
  315. continue;
  316. if ((sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) &&
  317. !injected &&
  318. (type == IEEE80211_FTYPE_DATA))
  319. continue;
  320. if (prev_dev) {
  321. skb2 = skb_clone(skb, GFP_ATOMIC);
  322. if (skb2) {
  323. skb2->dev = prev_dev;
  324. netif_rx(skb2);
  325. }
  326. }
  327. prev_dev = sdata->dev;
  328. }
  329. }
  330. if (prev_dev) {
  331. skb->dev = prev_dev;
  332. netif_rx(skb);
  333. skb = NULL;
  334. }
  335. rcu_read_unlock();
  336. dev_kfree_skb(skb);
  337. }
  338. EXPORT_SYMBOL(ieee80211_tx_status);