Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 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 2007 Johannes Berg <johannes@sipsolutions.net> |
Johannes Berg | d98ad83 | 2014-09-03 15:24:57 +0300 | [diff] [blame] | 6 | * Copyright 2013-2014 Intel Mobile Communications GmbH |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | * |
| 12 | * |
| 13 | * Transmit and frame generation functions. |
| 14 | */ |
| 15 | |
| 16 | #include <linux/kernel.h> |
| 17 | #include <linux/slab.h> |
| 18 | #include <linux/skbuff.h> |
| 19 | #include <linux/etherdevice.h> |
| 20 | #include <linux/bitmap.h> |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 21 | #include <linux/rcupdate.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 22 | #include <linux/export.h> |
Matti Gottlieb | ad38bfc | 2013-11-18 19:06:45 +0200 | [diff] [blame] | 23 | #include <linux/time.h> |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 24 | #include <net/net_namespace.h> |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 25 | #include <net/ieee80211_radiotap.h> |
| 26 | #include <net/cfg80211.h> |
| 27 | #include <net/mac80211.h> |
| 28 | #include <asm/unaligned.h> |
| 29 | |
| 30 | #include "ieee80211_i.h" |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 31 | #include "driver-ops.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 32 | #include "led.h" |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 33 | #include "mesh.h" |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 34 | #include "wep.h" |
| 35 | #include "wpa.h" |
| 36 | #include "wme.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 37 | #include "rate.h" |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 38 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 39 | /* misc utils */ |
| 40 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 41 | static __le16 ieee80211_duration(struct ieee80211_tx_data *tx, |
| 42 | struct sk_buff *skb, int group_addr, |
Johannes Berg | 03f93c3 | 2008-06-25 14:36:27 +0300 | [diff] [blame] | 43 | int next_frag_len) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 44 | { |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 45 | int rate, mrate, erp, dur, i, shift = 0; |
Johannes Berg | 2e92e6f | 2008-05-15 12:55:27 +0200 | [diff] [blame] | 46 | struct ieee80211_rate *txrate; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 47 | struct ieee80211_local *local = tx->local; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 48 | struct ieee80211_supported_band *sband; |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 49 | struct ieee80211_hdr *hdr; |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 50 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 51 | struct ieee80211_chanctx_conf *chanctx_conf; |
| 52 | u32 rate_flags = 0; |
| 53 | |
| 54 | rcu_read_lock(); |
| 55 | chanctx_conf = rcu_dereference(tx->sdata->vif.chanctx_conf); |
| 56 | if (chanctx_conf) { |
| 57 | shift = ieee80211_chandef_get_shift(&chanctx_conf->def); |
| 58 | rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def); |
| 59 | } |
| 60 | rcu_read_unlock(); |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 61 | |
| 62 | /* assume HW handles this */ |
Felix Fietkau | 336004e | 2014-11-21 23:29:14 +0100 | [diff] [blame] | 63 | if (tx->rate.flags & (IEEE80211_TX_RC_MCS | IEEE80211_TX_RC_VHT_MCS)) |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 64 | return 0; |
| 65 | |
| 66 | /* uh huh? */ |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 67 | if (WARN_ON_ONCE(tx->rate.idx < 0)) |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 68 | return 0; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 69 | |
Johannes Berg | 2d56577 | 2012-07-23 15:12:51 +0200 | [diff] [blame] | 70 | sband = local->hw.wiphy->bands[info->band]; |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 71 | txrate = &sband->bitrates[tx->rate.idx]; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 72 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 73 | erp = txrate->flags & IEEE80211_RATE_ERP_G; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 74 | |
| 75 | /* |
| 76 | * data and mgmt (except PS Poll): |
| 77 | * - during CFP: 32768 |
| 78 | * - during contention period: |
| 79 | * if addr1 is group address: 0 |
| 80 | * if more fragments = 0 and addr1 is individual address: time to |
| 81 | * transmit one ACK plus SIFS |
| 82 | * if more fragments = 1 and addr1 is individual address: time to |
| 83 | * transmit next fragment plus 2 x ACK plus 3 x SIFS |
| 84 | * |
| 85 | * IEEE 802.11, 9.6: |
| 86 | * - control response frame (CTS or ACK) shall be transmitted using the |
| 87 | * same rate as the immediately previous frame in the frame exchange |
| 88 | * sequence, if this rate belongs to the PHY mandatory rates, or else |
| 89 | * at the highest possible rate belonging to the PHY rates in the |
| 90 | * BSSBasicRateSet |
| 91 | */ |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 92 | hdr = (struct ieee80211_hdr *)skb->data; |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 93 | if (ieee80211_is_ctl(hdr->frame_control)) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 94 | /* TODO: These control frames are not currently sent by |
Johannes Berg | ccd7b36 | 2008-09-11 00:01:56 +0200 | [diff] [blame] | 95 | * mac80211, but should they be implemented, this function |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 96 | * needs to be updated to support duration field calculation. |
| 97 | * |
| 98 | * RTS: time needed to transmit pending data/mgmt frame plus |
| 99 | * one CTS frame plus one ACK frame plus 3 x SIFS |
| 100 | * CTS: duration of immediately previous RTS minus time |
| 101 | * required to transmit CTS and its SIFS |
| 102 | * ACK: 0 if immediately previous directed data/mgmt had |
| 103 | * more=0, with more=1 duration in ACK frame is duration |
| 104 | * from previous frame minus time needed to transmit ACK |
| 105 | * and its SIFS |
| 106 | * PS Poll: BIT(15) | BIT(14) | aid |
| 107 | */ |
| 108 | return 0; |
| 109 | } |
| 110 | |
| 111 | /* data/mgmt */ |
| 112 | if (0 /* FIX: data/mgmt during CFP */) |
Johannes Berg | 03f93c3 | 2008-06-25 14:36:27 +0300 | [diff] [blame] | 113 | return cpu_to_le16(32768); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 114 | |
| 115 | if (group_addr) /* Group address as the destination - no ACK */ |
| 116 | return 0; |
| 117 | |
| 118 | /* Individual destination address: |
| 119 | * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes) |
| 120 | * CTS and ACK frames shall be transmitted using the highest rate in |
| 121 | * basic rate set that is less than or equal to the rate of the |
| 122 | * immediately previous frame and that is using the same modulation |
| 123 | * (CCK or OFDM). If no basic rate set matches with these requirements, |
| 124 | * the highest mandatory rate of the PHY that is less than or equal to |
| 125 | * the rate of the previous frame is used. |
| 126 | * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps |
| 127 | */ |
| 128 | rate = -1; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 129 | /* use lowest available if everything fails */ |
| 130 | mrate = sband->bitrates[0].bitrate; |
| 131 | for (i = 0; i < sband->n_bitrates; i++) { |
| 132 | struct ieee80211_rate *r = &sband->bitrates[i]; |
| 133 | |
| 134 | if (r->bitrate > txrate->bitrate) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 135 | break; |
| 136 | |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 137 | if ((rate_flags & r->flags) != rate_flags) |
| 138 | continue; |
| 139 | |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 140 | if (tx->sdata->vif.bss_conf.basic_rates & BIT(i)) |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 141 | rate = DIV_ROUND_UP(r->bitrate, 1 << shift); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 142 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 143 | switch (sband->band) { |
| 144 | case IEEE80211_BAND_2GHZ: { |
| 145 | u32 flag; |
| 146 | if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE) |
| 147 | flag = IEEE80211_RATE_MANDATORY_G; |
| 148 | else |
| 149 | flag = IEEE80211_RATE_MANDATORY_B; |
| 150 | if (r->flags & flag) |
| 151 | mrate = r->bitrate; |
| 152 | break; |
| 153 | } |
| 154 | case IEEE80211_BAND_5GHZ: |
| 155 | if (r->flags & IEEE80211_RATE_MANDATORY_A) |
| 156 | mrate = r->bitrate; |
| 157 | break; |
Vladimir Kondratiev | 3a0c52a | 2012-07-02 09:32:32 +0300 | [diff] [blame] | 158 | case IEEE80211_BAND_60GHZ: |
| 159 | /* TODO, for now fall through */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 160 | case IEEE80211_NUM_BANDS: |
| 161 | WARN_ON(1); |
| 162 | break; |
| 163 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 164 | } |
| 165 | if (rate == -1) { |
| 166 | /* No matching basic rate found; use highest suitable mandatory |
| 167 | * PHY rate */ |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 168 | rate = DIV_ROUND_UP(mrate, 1 << shift); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 169 | } |
| 170 | |
Simon Wunderlich | 6674f21 | 2011-11-21 21:34:30 +0100 | [diff] [blame] | 171 | /* Don't calculate ACKs for QoS Frames with NoAck Policy set */ |
| 172 | if (ieee80211_is_data_qos(hdr->frame_control) && |
Claudio Pisa | c26a0e1 | 2012-05-28 13:06:25 +0100 | [diff] [blame] | 173 | *(ieee80211_get_qos_ctl(hdr)) & IEEE80211_QOS_CTL_ACK_POLICY_NOACK) |
Simon Wunderlich | 6674f21 | 2011-11-21 21:34:30 +0100 | [diff] [blame] | 174 | dur = 0; |
| 175 | else |
| 176 | /* Time needed to transmit ACK |
| 177 | * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up |
| 178 | * to closest integer */ |
Michal Kazior | 4ee73f3 | 2012-04-11 08:47:56 +0200 | [diff] [blame] | 179 | dur = ieee80211_frame_duration(sband->band, 10, rate, erp, |
Simon Wunderlich | 438b61b | 2013-07-08 16:55:51 +0200 | [diff] [blame] | 180 | tx->sdata->vif.bss_conf.use_short_preamble, |
| 181 | shift); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 182 | |
| 183 | if (next_frag_len) { |
| 184 | /* Frame is fragmented: duration increases with time needed to |
| 185 | * transmit next fragment plus ACK and 2 x SIFS. */ |
| 186 | dur *= 2; /* ACK + SIFS */ |
| 187 | /* next fragment */ |
Michal Kazior | 4ee73f3 | 2012-04-11 08:47:56 +0200 | [diff] [blame] | 188 | dur += ieee80211_frame_duration(sband->band, next_frag_len, |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 189 | txrate->bitrate, erp, |
Simon Wunderlich | 438b61b | 2013-07-08 16:55:51 +0200 | [diff] [blame] | 190 | tx->sdata->vif.bss_conf.use_short_preamble, |
| 191 | shift); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 192 | } |
| 193 | |
Johannes Berg | 03f93c3 | 2008-06-25 14:36:27 +0300 | [diff] [blame] | 194 | return cpu_to_le16(dur); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 195 | } |
| 196 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 197 | /* tx handlers */ |
Kalle Valo | 5c1b98a | 2010-01-12 10:42:46 +0200 | [diff] [blame] | 198 | static ieee80211_tx_result debug_noinline |
| 199 | ieee80211_tx_h_dynamic_ps(struct ieee80211_tx_data *tx) |
| 200 | { |
| 201 | struct ieee80211_local *local = tx->local; |
Kalle Valo | 0c74211 | 2010-01-12 10:42:53 +0200 | [diff] [blame] | 202 | struct ieee80211_if_managed *ifmgd; |
Kalle Valo | 5c1b98a | 2010-01-12 10:42:46 +0200 | [diff] [blame] | 203 | |
| 204 | /* driver doesn't support power save */ |
| 205 | if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) |
| 206 | return TX_CONTINUE; |
| 207 | |
| 208 | /* hardware does dynamic power save */ |
| 209 | if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS) |
| 210 | return TX_CONTINUE; |
| 211 | |
| 212 | /* dynamic power save disabled */ |
| 213 | if (local->hw.conf.dynamic_ps_timeout <= 0) |
| 214 | return TX_CONTINUE; |
| 215 | |
| 216 | /* we are scanning, don't enable power save */ |
| 217 | if (local->scanning) |
| 218 | return TX_CONTINUE; |
| 219 | |
| 220 | if (!local->ps_sdata) |
| 221 | return TX_CONTINUE; |
| 222 | |
| 223 | /* No point if we're going to suspend */ |
| 224 | if (local->quiescing) |
| 225 | return TX_CONTINUE; |
| 226 | |
Kalle Valo | 0c74211 | 2010-01-12 10:42:53 +0200 | [diff] [blame] | 227 | /* dynamic ps is supported only in managed mode */ |
| 228 | if (tx->sdata->vif.type != NL80211_IFTYPE_STATION) |
| 229 | return TX_CONTINUE; |
| 230 | |
| 231 | ifmgd = &tx->sdata->u.mgd; |
| 232 | |
| 233 | /* |
| 234 | * Don't wakeup from power save if u-apsd is enabled, voip ac has |
| 235 | * u-apsd enabled and the frame is in voip class. This effectively |
| 236 | * means that even if all access categories have u-apsd enabled, in |
| 237 | * practise u-apsd is only used with the voip ac. This is a |
| 238 | * workaround for the case when received voip class packets do not |
| 239 | * have correct qos tag for some reason, due the network or the |
| 240 | * peer application. |
| 241 | * |
Eliad Peller | dc41e4d | 2012-03-14 16:15:03 +0200 | [diff] [blame] | 242 | * Note: ifmgd->uapsd_queues access is racy here. If the value is |
Kalle Valo | 0c74211 | 2010-01-12 10:42:53 +0200 | [diff] [blame] | 243 | * changed via debugfs, user needs to reassociate manually to have |
| 244 | * everything in sync. |
| 245 | */ |
Johannes Berg | 4875d30d | 2012-03-27 14:18:37 +0200 | [diff] [blame] | 246 | if ((ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED) && |
| 247 | (ifmgd->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO) && |
| 248 | skb_get_queue_mapping(tx->skb) == IEEE80211_AC_VO) |
Kalle Valo | 0c74211 | 2010-01-12 10:42:53 +0200 | [diff] [blame] | 249 | return TX_CONTINUE; |
| 250 | |
Kalle Valo | 5c1b98a | 2010-01-12 10:42:46 +0200 | [diff] [blame] | 251 | if (local->hw.conf.flags & IEEE80211_CONF_PS) { |
| 252 | ieee80211_stop_queues_by_reason(&local->hw, |
Johannes Berg | 445ea4e | 2013-02-13 12:25:28 +0100 | [diff] [blame] | 253 | IEEE80211_MAX_QUEUE_MAP, |
Luciano Coelho | cca07b0 | 2014-06-13 16:30:05 +0300 | [diff] [blame] | 254 | IEEE80211_QUEUE_STOP_REASON_PS, |
| 255 | false); |
Vivek Natarajan | db28569 | 2011-02-18 17:18:03 +0530 | [diff] [blame] | 256 | ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED; |
Kalle Valo | 5c1b98a | 2010-01-12 10:42:46 +0200 | [diff] [blame] | 257 | ieee80211_queue_work(&local->hw, |
| 258 | &local->dynamic_ps_disable_work); |
| 259 | } |
| 260 | |
Luciano Coelho | 5db1c07 | 2011-05-03 21:40:08 +0300 | [diff] [blame] | 261 | /* Don't restart the timer if we're not disassociated */ |
| 262 | if (!ifmgd->associated) |
| 263 | return TX_CONTINUE; |
| 264 | |
Kalle Valo | 5c1b98a | 2010-01-12 10:42:46 +0200 | [diff] [blame] | 265 | mod_timer(&local->dynamic_ps_timer, jiffies + |
| 266 | msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout)); |
| 267 | |
| 268 | return TX_CONTINUE; |
| 269 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 270 | |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 271 | static ieee80211_tx_result debug_noinline |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 272 | ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 273 | { |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 274 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 275 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 276 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 277 | bool assoc = false; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 278 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 279 | if (unlikely(info->flags & IEEE80211_TX_CTL_INJECTED)) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 280 | return TX_CONTINUE; |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 281 | |
Ben Greear | b23b025 | 2011-02-04 11:54:17 -0800 | [diff] [blame] | 282 | if (unlikely(test_bit(SCAN_SW_SCANNING, &tx->local->scanning)) && |
| 283 | test_bit(SDATA_STATE_OFFCHANNEL, &tx->sdata->state) && |
Kalle Valo | a9a6fff | 2009-03-18 14:06:44 +0200 | [diff] [blame] | 284 | !ieee80211_is_probe_req(hdr->frame_control) && |
| 285 | !ieee80211_is_nullfunc(hdr->frame_control)) |
| 286 | /* |
| 287 | * When software scanning only nullfunc frames (to notify |
| 288 | * the sleep state to the AP) and probe requests (for the |
| 289 | * active scan) are allowed, all other frames should not be |
| 290 | * sent and we should not get here, but if we do |
| 291 | * nonetheless, drop them to avoid sending them |
| 292 | * off-channel. See the link below and |
| 293 | * ieee80211_start_scan() for more. |
| 294 | * |
| 295 | * http://article.gmane.org/gmane.linux.kernel.wireless.general/30089 |
| 296 | */ |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 297 | return TX_DROP; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 298 | |
Rostislav Lisovy | 239281f | 2014-11-03 10:33:19 +0100 | [diff] [blame] | 299 | if (tx->sdata->vif.type == NL80211_IFTYPE_OCB) |
| 300 | return TX_CONTINUE; |
| 301 | |
Bill Jordan | 1be7fe8 | 2010-10-01 11:20:41 -0400 | [diff] [blame] | 302 | if (tx->sdata->vif.type == NL80211_IFTYPE_WDS) |
| 303 | return TX_CONTINUE; |
| 304 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 305 | if (tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT) |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 306 | return TX_CONTINUE; |
| 307 | |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 308 | if (tx->flags & IEEE80211_TX_PS_BUFFERED) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 309 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 310 | |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 311 | if (tx->sta) |
| 312 | assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 313 | |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 314 | if (likely(tx->flags & IEEE80211_TX_UNICAST)) { |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 315 | if (unlikely(!assoc && |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 316 | ieee80211_is_data(hdr->frame_control))) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 317 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 318 | sdata_info(tx->sdata, |
| 319 | "dropped data frame to not associated station %pM\n", |
| 320 | hdr->addr1); |
| 321 | #endif |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 322 | I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc); |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 323 | return TX_DROP; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 324 | } |
Johannes Berg | 2962389 | 2011-12-14 12:20:31 +0100 | [diff] [blame] | 325 | } else if (unlikely(tx->sdata->vif.type == NL80211_IFTYPE_AP && |
| 326 | ieee80211_is_data(hdr->frame_control) && |
Felix Fietkau | 030ef8f | 2012-04-23 19:49:02 +0200 | [diff] [blame] | 327 | !atomic_read(&tx->sdata->u.ap.num_mcast_sta))) { |
Johannes Berg | 2962389 | 2011-12-14 12:20:31 +0100 | [diff] [blame] | 328 | /* |
| 329 | * No associated STAs - no need to send multicast |
| 330 | * frames. |
| 331 | */ |
| 332 | return TX_DROP; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 333 | } |
| 334 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 335 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 336 | } |
| 337 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 338 | /* This function is called whenever the AP is about to exceed the maximum limit |
| 339 | * of buffered frames for power saving STAs. This situation should not really |
| 340 | * happen often during normal operation, so dropping the oldest buffered packet |
| 341 | * from each queue should be OK to make some room for new frames. */ |
| 342 | static void purge_old_ps_buffers(struct ieee80211_local *local) |
| 343 | { |
| 344 | int total = 0, purged = 0; |
| 345 | struct sk_buff *skb; |
| 346 | struct ieee80211_sub_if_data *sdata; |
| 347 | struct sta_info *sta; |
| 348 | |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 349 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 350 | struct ps_data *ps; |
| 351 | |
| 352 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
| 353 | ps = &sdata->u.ap.ps; |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 354 | else if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 355 | ps = &sdata->u.mesh.ps; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 356 | else |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 357 | continue; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 358 | |
| 359 | skb = skb_dequeue(&ps->bc_buf); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 360 | if (skb) { |
| 361 | purged++; |
| 362 | dev_kfree_skb(skb); |
| 363 | } |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 364 | total += skb_queue_len(&ps->bc_buf); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 365 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 366 | |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 367 | /* |
| 368 | * Drop one frame from each station from the lowest-priority |
| 369 | * AC that has frames at all. |
| 370 | */ |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 371 | list_for_each_entry_rcu(sta, &local->sta_list, list) { |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 372 | int ac; |
| 373 | |
| 374 | for (ac = IEEE80211_AC_BK; ac >= IEEE80211_AC_VO; ac--) { |
| 375 | skb = skb_dequeue(&sta->ps_tx_buf[ac]); |
| 376 | total += skb_queue_len(&sta->ps_tx_buf[ac]); |
| 377 | if (skb) { |
| 378 | purged++; |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 379 | ieee80211_free_txskb(&local->hw, skb); |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 380 | break; |
| 381 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 382 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 383 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 384 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 385 | local->total_ps_buffered = total; |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 386 | ps_dbg_hw(&local->hw, "PS buffers full - purged %d frames\n", purged); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 387 | } |
| 388 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 389 | static ieee80211_tx_result |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 390 | ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 391 | { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 392 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 393 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 394 | struct ps_data *ps; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 395 | |
Johannes Berg | 7d54d0dd | 2007-12-19 01:31:25 +0100 | [diff] [blame] | 396 | /* |
| 397 | * broadcast/multicast frame |
| 398 | * |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 399 | * If any of the associated/peer stations is in power save mode, |
Johannes Berg | 7d54d0dd | 2007-12-19 01:31:25 +0100 | [diff] [blame] | 400 | * the frame is buffered to be sent after DTIM beacon frame. |
| 401 | * This is done either by the hardware or us. |
| 402 | */ |
| 403 | |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 404 | /* powersaving STAs currently only in AP/VLAN/mesh mode */ |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 405 | if (tx->sdata->vif.type == NL80211_IFTYPE_AP || |
| 406 | tx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) { |
| 407 | if (!tx->sdata->bss) |
| 408 | return TX_CONTINUE; |
| 409 | |
| 410 | ps = &tx->sdata->bss->ps; |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 411 | } else if (ieee80211_vif_is_mesh(&tx->sdata->vif)) { |
| 412 | ps = &tx->sdata->u.mesh.ps; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 413 | } else { |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 414 | return TX_CONTINUE; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 415 | } |
| 416 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 417 | |
| 418 | /* no buffering for ordered frames */ |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 419 | if (ieee80211_has_order(hdr->frame_control)) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 420 | return TX_CONTINUE; |
Johannes Berg | 7d54d0dd | 2007-12-19 01:31:25 +0100 | [diff] [blame] | 421 | |
Johannes Berg | 08b9939 | 2014-07-07 12:01:11 +0200 | [diff] [blame] | 422 | if (ieee80211_is_probe_req(hdr->frame_control)) |
| 423 | return TX_CONTINUE; |
| 424 | |
Johannes Berg | f4d5794 | 2013-05-28 17:24:15 +0200 | [diff] [blame] | 425 | if (tx->local->hw.flags & IEEE80211_HW_QUEUE_CONTROL) |
| 426 | info->hw_queue = tx->sdata->vif.cab_queue; |
| 427 | |
Johannes Berg | 7d54d0dd | 2007-12-19 01:31:25 +0100 | [diff] [blame] | 428 | /* no stations in PS mode */ |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 429 | if (!atomic_read(&ps->num_sta_ps)) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 430 | return TX_CONTINUE; |
Johannes Berg | 7d54d0dd | 2007-12-19 01:31:25 +0100 | [diff] [blame] | 431 | |
Johannes Berg | 62b517c | 2009-10-29 12:19:21 +0100 | [diff] [blame] | 432 | info->flags |= IEEE80211_TX_CTL_SEND_AFTER_DTIM; |
Johannes Berg | 62b1208 | 2009-08-10 16:04:15 +0200 | [diff] [blame] | 433 | |
Johannes Berg | 62b517c | 2009-10-29 12:19:21 +0100 | [diff] [blame] | 434 | /* device releases frame after DTIM beacon */ |
| 435 | if (!(tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING)) |
Johannes Berg | 62b1208 | 2009-08-10 16:04:15 +0200 | [diff] [blame] | 436 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 437 | |
Johannes Berg | 62b1208 | 2009-08-10 16:04:15 +0200 | [diff] [blame] | 438 | /* buffered in mac80211 */ |
| 439 | if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER) |
| 440 | purge_old_ps_buffers(tx->local); |
Johannes Berg | 7d54d0dd | 2007-12-19 01:31:25 +0100 | [diff] [blame] | 441 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 442 | if (skb_queue_len(&ps->bc_buf) >= AP_MAX_BC_BUFFER) { |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 443 | ps_dbg(tx->sdata, |
| 444 | "BC TX buffer full - dropping the oldest frame\n"); |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 445 | dev_kfree_skb(skb_dequeue(&ps->bc_buf)); |
Johannes Berg | 62b1208 | 2009-08-10 16:04:15 +0200 | [diff] [blame] | 446 | } else |
| 447 | tx->local->total_ps_buffered++; |
| 448 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 449 | skb_queue_tail(&ps->bc_buf, tx->skb); |
Johannes Berg | 62b1208 | 2009-08-10 16:04:15 +0200 | [diff] [blame] | 450 | |
| 451 | return TX_QUEUED; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 452 | } |
| 453 | |
Jouni Malinen | fb73333 | 2009-01-08 13:32:00 +0200 | [diff] [blame] | 454 | static int ieee80211_use_mfp(__le16 fc, struct sta_info *sta, |
| 455 | struct sk_buff *skb) |
| 456 | { |
| 457 | if (!ieee80211_is_mgmt(fc)) |
| 458 | return 0; |
| 459 | |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 460 | if (sta == NULL || !test_sta_flag(sta, WLAN_STA_MFP)) |
Jouni Malinen | fb73333 | 2009-01-08 13:32:00 +0200 | [diff] [blame] | 461 | return 0; |
| 462 | |
Johannes Berg | d8ca16d | 2014-01-23 16:20:29 +0100 | [diff] [blame] | 463 | if (!ieee80211_is_robust_mgmt_frame(skb)) |
Jouni Malinen | fb73333 | 2009-01-08 13:32:00 +0200 | [diff] [blame] | 464 | return 0; |
| 465 | |
| 466 | return 1; |
| 467 | } |
| 468 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 469 | static ieee80211_tx_result |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 470 | ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 471 | { |
| 472 | struct sta_info *sta = tx->sta; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 473 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
Johannes Berg | 08b9939 | 2014-07-07 12:01:11 +0200 | [diff] [blame] | 474 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data; |
Juuso Oikarinen | 3393a60 | 2010-04-19 10:12:52 +0300 | [diff] [blame] | 475 | struct ieee80211_local *local = tx->local; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 476 | |
Johannes Berg | 02f2f1a | 2012-02-27 12:18:30 +0100 | [diff] [blame] | 477 | if (unlikely(!sta)) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 478 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 479 | |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 480 | if (unlikely((test_sta_flag(sta, WLAN_STA_PS_STA) || |
Johannes Berg | 5ac2e35 | 2014-05-27 16:32:27 +0200 | [diff] [blame] | 481 | test_sta_flag(sta, WLAN_STA_PS_DRIVER) || |
| 482 | test_sta_flag(sta, WLAN_STA_PS_DELIVER)) && |
Johannes Berg | 02f2f1a | 2012-02-27 12:18:30 +0100 | [diff] [blame] | 483 | !(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER))) { |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 484 | int ac = skb_get_queue_mapping(tx->skb); |
| 485 | |
Johannes Berg | 08b9939 | 2014-07-07 12:01:11 +0200 | [diff] [blame] | 486 | if (ieee80211_is_mgmt(hdr->frame_control) && |
| 487 | !ieee80211_is_bufferable_mmpdu(hdr->frame_control)) { |
| 488 | info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER; |
| 489 | return TX_CONTINUE; |
| 490 | } |
| 491 | |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 492 | ps_dbg(sta->sdata, "STA %pM aid %d: PS buffer for AC %d\n", |
| 493 | sta->sta.addr, sta->sta.aid, ac); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 494 | if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER) |
| 495 | purge_old_ps_buffers(tx->local); |
Emmanuel Grumbach | 1d147bf | 2014-02-20 09:22:11 +0200 | [diff] [blame] | 496 | |
| 497 | /* sync with ieee80211_sta_ps_deliver_wakeup */ |
| 498 | spin_lock(&sta->ps_lock); |
| 499 | /* |
| 500 | * STA woke up the meantime and all the frames on ps_tx_buf have |
| 501 | * been queued to pending queue. No reordering can happen, go |
| 502 | * ahead and Tx the packet. |
| 503 | */ |
| 504 | if (!test_sta_flag(sta, WLAN_STA_PS_STA) && |
Johannes Berg | 5ac2e35 | 2014-05-27 16:32:27 +0200 | [diff] [blame] | 505 | !test_sta_flag(sta, WLAN_STA_PS_DRIVER) && |
| 506 | !test_sta_flag(sta, WLAN_STA_PS_DELIVER)) { |
Emmanuel Grumbach | 1d147bf | 2014-02-20 09:22:11 +0200 | [diff] [blame] | 507 | spin_unlock(&sta->ps_lock); |
| 508 | return TX_CONTINUE; |
| 509 | } |
| 510 | |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 511 | if (skb_queue_len(&sta->ps_tx_buf[ac]) >= STA_MAX_TX_BUFFER) { |
| 512 | struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf[ac]); |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 513 | ps_dbg(tx->sdata, |
| 514 | "STA %pM TX buffer for AC %d full - dropping oldest frame\n", |
| 515 | sta->sta.addr, ac); |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 516 | ieee80211_free_txskb(&local->hw, old); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 517 | } else |
| 518 | tx->local->total_ps_buffered++; |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 519 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 520 | info->control.jiffies = jiffies; |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 521 | info->control.vif = &tx->sdata->vif; |
Johannes Berg | 8f77f38 | 2009-06-07 21:58:37 +0200 | [diff] [blame] | 522 | info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING; |
Johannes Berg | 03c8c06 | 2014-01-09 01:45:28 +0100 | [diff] [blame] | 523 | info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS; |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 524 | skb_queue_tail(&sta->ps_tx_buf[ac], tx->skb); |
Emmanuel Grumbach | 1d147bf | 2014-02-20 09:22:11 +0200 | [diff] [blame] | 525 | spin_unlock(&sta->ps_lock); |
Juuso Oikarinen | 3393a60 | 2010-04-19 10:12:52 +0300 | [diff] [blame] | 526 | |
| 527 | if (!timer_pending(&local->sta_cleanup)) |
| 528 | mod_timer(&local->sta_cleanup, |
| 529 | round_jiffies(jiffies + |
| 530 | STA_INFO_CLEANUP_INTERVAL)); |
| 531 | |
Johannes Berg | c868cb35 | 2011-09-29 16:04:27 +0200 | [diff] [blame] | 532 | /* |
| 533 | * We queued up some frames, so the TIM bit might |
| 534 | * need to be set, recalculate it. |
| 535 | */ |
| 536 | sta_info_recalc_tim(sta); |
| 537 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 538 | return TX_QUEUED; |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 539 | } else if (unlikely(test_sta_flag(sta, WLAN_STA_PS_STA))) { |
| 540 | ps_dbg(tx->sdata, |
| 541 | "STA %pM in PS mode, but polling/in SP -> send frame\n", |
| 542 | sta->sta.addr); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 543 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 544 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 545 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 546 | } |
| 547 | |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 548 | static ieee80211_tx_result debug_noinline |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 549 | ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 550 | { |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 551 | if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED)) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 552 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 553 | |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 554 | if (tx->flags & IEEE80211_TX_UNICAST) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 555 | return ieee80211_tx_h_unicast_ps_buf(tx); |
| 556 | else |
| 557 | return ieee80211_tx_h_multicast_ps_buf(tx); |
| 558 | } |
| 559 | |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 560 | static ieee80211_tx_result debug_noinline |
Johannes Berg | a621fa4 | 2010-08-27 14:26:54 +0300 | [diff] [blame] | 561 | ieee80211_tx_h_check_control_port_protocol(struct ieee80211_tx_data *tx) |
| 562 | { |
| 563 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
| 564 | |
Johannes Berg | af61a16 | 2013-07-02 18:09:12 +0200 | [diff] [blame] | 565 | if (unlikely(tx->sdata->control_port_protocol == tx->skb->protocol)) { |
| 566 | if (tx->sdata->control_port_no_encrypt) |
| 567 | info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
| 568 | info->control.flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO; |
Jouni Malinen | 9c1c98a | 2015-02-26 15:50:50 +0200 | [diff] [blame] | 569 | info->flags |= IEEE80211_TX_CTL_USE_MINRATE; |
Johannes Berg | af61a16 | 2013-07-02 18:09:12 +0200 | [diff] [blame] | 570 | } |
Johannes Berg | a621fa4 | 2010-08-27 14:26:54 +0300 | [diff] [blame] | 571 | |
| 572 | return TX_CONTINUE; |
| 573 | } |
| 574 | |
| 575 | static ieee80211_tx_result debug_noinline |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 576 | ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 577 | { |
Johannes Berg | 46e6de1 | 2012-07-04 18:10:07 +0200 | [diff] [blame] | 578 | struct ieee80211_key *key; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 579 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 580 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data; |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 581 | |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 582 | if (unlikely(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT)) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 583 | tx->key = NULL; |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 584 | else if (tx->sta && |
| 585 | (key = rcu_dereference(tx->sta->ptk[tx->sta->ptk_idx]))) |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 586 | tx->key = key; |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 587 | else if (ieee80211_is_mgmt(hdr->frame_control) && |
Jouni Malinen | ecbcd32 | 2010-03-29 23:35:23 -0700 | [diff] [blame] | 588 | is_multicast_ether_addr(hdr->addr1) && |
Johannes Berg | d8ca16d | 2014-01-23 16:20:29 +0100 | [diff] [blame] | 589 | ieee80211_is_robust_mgmt_frame(tx->skb) && |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 590 | (key = rcu_dereference(tx->sdata->default_mgmt_key))) |
| 591 | tx->key = key; |
Johannes Berg | f7e0104 | 2010-12-09 19:49:02 +0100 | [diff] [blame] | 592 | else if (is_multicast_ether_addr(hdr->addr1) && |
| 593 | (key = rcu_dereference(tx->sdata->default_multicast_key))) |
| 594 | tx->key = key; |
| 595 | else if (!is_multicast_ether_addr(hdr->addr1) && |
| 596 | (key = rcu_dereference(tx->sdata->default_unicast_key))) |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 597 | tx->key = key; |
Johannes Berg | 46e6de1 | 2012-07-04 18:10:07 +0200 | [diff] [blame] | 598 | else if (info->flags & IEEE80211_TX_CTL_INJECTED) |
| 599 | tx->key = NULL; |
| 600 | else if (!tx->sdata->drop_unencrypted) |
| 601 | tx->key = NULL; |
| 602 | else if (tx->skb->protocol == tx->sdata->control_port_protocol) |
| 603 | tx->key = NULL; |
Johannes Berg | d8ca16d | 2014-01-23 16:20:29 +0100 | [diff] [blame] | 604 | else if (ieee80211_is_robust_mgmt_frame(tx->skb) && |
Johannes Berg | 46e6de1 | 2012-07-04 18:10:07 +0200 | [diff] [blame] | 605 | !(ieee80211_is_action(hdr->frame_control) && |
| 606 | tx->sta && test_sta_flag(tx->sta, WLAN_STA_MFP))) |
| 607 | tx->key = NULL; |
Nicolas Cavallari | 4922f71 | 2012-07-04 18:10:08 +0200 | [diff] [blame] | 608 | else if (ieee80211_is_mgmt(hdr->frame_control) && |
Johannes Berg | d8ca16d | 2014-01-23 16:20:29 +0100 | [diff] [blame] | 609 | !ieee80211_is_robust_mgmt_frame(tx->skb)) |
Nicolas Cavallari | 4922f71 | 2012-07-04 18:10:08 +0200 | [diff] [blame] | 610 | tx->key = NULL; |
Johannes Berg | 46e6de1 | 2012-07-04 18:10:07 +0200 | [diff] [blame] | 611 | else { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 612 | I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted); |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 613 | return TX_DROP; |
Johannes Berg | 46e6de1 | 2012-07-04 18:10:07 +0200 | [diff] [blame] | 614 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 615 | |
| 616 | if (tx->key) { |
Johannes Berg | 813d766 | 2010-01-17 01:47:58 +0100 | [diff] [blame] | 617 | bool skip_hw = false; |
| 618 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 619 | tx->key->tx_rx_count++; |
Johannes Berg | 011bfcc | 2007-09-17 01:29:25 -0400 | [diff] [blame] | 620 | /* TODO: add threshold stuff again */ |
Johannes Berg | 176e4f8 | 2007-12-18 15:27:47 +0100 | [diff] [blame] | 621 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 622 | switch (tx->key->conf.cipher) { |
| 623 | case WLAN_CIPHER_SUITE_WEP40: |
| 624 | case WLAN_CIPHER_SUITE_WEP104: |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 625 | case WLAN_CIPHER_SUITE_TKIP: |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 626 | if (!ieee80211_is_data_present(hdr->frame_control)) |
Johannes Berg | 176e4f8 | 2007-12-18 15:27:47 +0100 | [diff] [blame] | 627 | tx->key = NULL; |
| 628 | break; |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 629 | case WLAN_CIPHER_SUITE_CCMP: |
Jouni Malinen | 2b2ba0d | 2015-01-24 19:52:07 +0200 | [diff] [blame] | 630 | case WLAN_CIPHER_SUITE_CCMP_256: |
Jouni Malinen | 00b9cfa | 2015-01-24 19:52:06 +0200 | [diff] [blame] | 631 | case WLAN_CIPHER_SUITE_GCMP: |
| 632 | case WLAN_CIPHER_SUITE_GCMP_256: |
Jouni Malinen | fb73333 | 2009-01-08 13:32:00 +0200 | [diff] [blame] | 633 | if (!ieee80211_is_data_present(hdr->frame_control) && |
| 634 | !ieee80211_use_mfp(hdr->frame_control, tx->sta, |
| 635 | tx->skb)) |
| 636 | tx->key = NULL; |
Kalle Valo | 3b43a18 | 2010-01-23 20:27:14 +0200 | [diff] [blame] | 637 | else |
| 638 | skip_hw = (tx->key->conf.flags & |
Johannes Berg | e548c49 | 2012-09-04 17:08:23 +0200 | [diff] [blame] | 639 | IEEE80211_KEY_FLAG_SW_MGMT_TX) && |
Kalle Valo | 3b43a18 | 2010-01-23 20:27:14 +0200 | [diff] [blame] | 640 | ieee80211_is_mgmt(hdr->frame_control); |
Jouni Malinen | fb73333 | 2009-01-08 13:32:00 +0200 | [diff] [blame] | 641 | break; |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 642 | case WLAN_CIPHER_SUITE_AES_CMAC: |
Jouni Malinen | 56c52da | 2015-01-24 19:52:08 +0200 | [diff] [blame] | 643 | case WLAN_CIPHER_SUITE_BIP_CMAC_256: |
Jouni Malinen | 8ade538 | 2015-01-24 19:52:09 +0200 | [diff] [blame] | 644 | case WLAN_CIPHER_SUITE_BIP_GMAC_128: |
| 645 | case WLAN_CIPHER_SUITE_BIP_GMAC_256: |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 646 | if (!ieee80211_is_mgmt(hdr->frame_control)) |
| 647 | tx->key = NULL; |
| 648 | break; |
Johannes Berg | 176e4f8 | 2007-12-18 15:27:47 +0100 | [diff] [blame] | 649 | } |
Johannes Berg | 813d766 | 2010-01-17 01:47:58 +0100 | [diff] [blame] | 650 | |
Johannes Berg | e54faf2 | 2013-01-29 11:41:38 +0100 | [diff] [blame] | 651 | if (unlikely(tx->key && tx->key->flags & KEY_FLAG_TAINTED && |
| 652 | !ieee80211_is_deauth(hdr->frame_control))) |
Johannes Berg | 95acac6 | 2011-07-12 12:30:59 +0200 | [diff] [blame] | 653 | return TX_DROP; |
| 654 | |
Johannes Berg | f12553e | 2010-01-22 22:07:59 +0100 | [diff] [blame] | 655 | if (!skip_hw && tx->key && |
Johannes Berg | 382b165 | 2010-01-25 11:36:16 +0100 | [diff] [blame] | 656 | tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) |
Johannes Berg | 813d766 | 2010-01-17 01:47:58 +0100 | [diff] [blame] | 657 | info->control.hw_key = &tx->key->conf; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 658 | } |
| 659 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 660 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 661 | } |
| 662 | |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 663 | static ieee80211_tx_result debug_noinline |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 664 | ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 665 | { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 666 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 667 | struct ieee80211_hdr *hdr = (void *)tx->skb->data; |
| 668 | struct ieee80211_supported_band *sband; |
Shanyu Zhao | a2c4024 | 2010-04-27 11:15:12 -0700 | [diff] [blame] | 669 | u32 len; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 670 | struct ieee80211_tx_rate_control txrc; |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 671 | struct ieee80211_sta_rates *ratetbl = NULL; |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 672 | bool assoc = false; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 673 | |
| 674 | memset(&txrc, 0, sizeof(txrc)); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 675 | |
Johannes Berg | 2d56577 | 2012-07-23 15:12:51 +0200 | [diff] [blame] | 676 | sband = tx->local->hw.wiphy->bands[info->band]; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 677 | |
Shanyu Zhao | a2c4024 | 2010-04-27 11:15:12 -0700 | [diff] [blame] | 678 | len = min_t(u32, tx->skb->len + FCS_LEN, |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 679 | tx->local->hw.wiphy->frag_threshold); |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 680 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 681 | /* set up the tx rate control struct we give the RC algo */ |
Johannes Berg | 005e472 | 2012-02-26 11:24:35 +0100 | [diff] [blame] | 682 | txrc.hw = &tx->local->hw; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 683 | txrc.sband = sband; |
| 684 | txrc.bss_conf = &tx->sdata->vif.bss_conf; |
| 685 | txrc.skb = tx->skb; |
| 686 | txrc.reported_rate.idx = -1; |
Johannes Berg | 2d56577 | 2012-07-23 15:12:51 +0200 | [diff] [blame] | 687 | txrc.rate_idx_mask = tx->sdata->rc_rateidx_mask[info->band]; |
Jouni Malinen | 37eb0b1 | 2010-01-06 13:09:08 +0200 | [diff] [blame] | 688 | if (txrc.rate_idx_mask == (1 << sband->n_bitrates) - 1) |
| 689 | txrc.max_rate_idx = -1; |
| 690 | else |
| 691 | txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1; |
Felix Fietkau | 2ffbe6d | 2013-04-16 13:38:42 +0200 | [diff] [blame] | 692 | |
| 693 | if (tx->sdata->rc_has_mcs_mask[info->band]) |
| 694 | txrc.rate_idx_mcs_mask = |
| 695 | tx->sdata->rc_rateidx_mcs_mask[info->band]; |
| 696 | |
Felix Fietkau | 8f0729b | 2010-11-11 15:07:23 +0100 | [diff] [blame] | 697 | txrc.bss = (tx->sdata->vif.type == NL80211_IFTYPE_AP || |
Chun-Yeow Yeoh | 4bb6234 | 2011-11-24 17:15:20 -0800 | [diff] [blame] | 698 | tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT || |
Felix Fietkau | 8f0729b | 2010-11-11 15:07:23 +0100 | [diff] [blame] | 699 | tx->sdata->vif.type == NL80211_IFTYPE_ADHOC); |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 700 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 701 | /* set up RTS protection if desired */ |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 702 | if (len > tx->local->hw.wiphy->rts_threshold) { |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 703 | txrc.rts = true; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 704 | } |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 705 | |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 706 | info->control.use_rts = txrc.rts; |
Felix Fietkau | 991fec0 | 2013-04-16 13:38:43 +0200 | [diff] [blame] | 707 | info->control.use_cts_prot = tx->sdata->vif.bss_conf.use_cts_prot; |
| 708 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 709 | /* |
| 710 | * Use short preamble if the BSS can handle it, but not for |
| 711 | * management frames unless we know the receiver can handle |
| 712 | * that -- the management frame might be to a station that |
| 713 | * just wants a probe response. |
| 714 | */ |
| 715 | if (tx->sdata->vif.bss_conf.use_short_preamble && |
| 716 | (ieee80211_is_data(hdr->frame_control) || |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 717 | (tx->sta && test_sta_flag(tx->sta, WLAN_STA_SHORT_PREAMBLE)))) |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 718 | txrc.short_preamble = true; |
| 719 | |
| 720 | info->control.short_preamble = txrc.short_preamble; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 721 | |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 722 | if (tx->sta) |
| 723 | assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC); |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 724 | |
Luis R. Rodriguez | b770b43 | 2009-07-16 10:15:09 -0700 | [diff] [blame] | 725 | /* |
| 726 | * Lets not bother rate control if we're associated and cannot |
| 727 | * talk to the sta. This should not happen. |
| 728 | */ |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 729 | if (WARN(test_bit(SCAN_SW_SCANNING, &tx->local->scanning) && assoc && |
Luis R. Rodriguez | b770b43 | 2009-07-16 10:15:09 -0700 | [diff] [blame] | 730 | !rate_usable_index_exists(sband, &tx->sta->sta), |
| 731 | "%s: Dropped data frame as no usable bitrate found while " |
| 732 | "scanning and associated. Target station: " |
| 733 | "%pM on %d GHz band\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 734 | tx->sdata->name, hdr->addr1, |
Johannes Berg | 2d56577 | 2012-07-23 15:12:51 +0200 | [diff] [blame] | 735 | info->band ? 5 : 2)) |
Luis R. Rodriguez | b770b43 | 2009-07-16 10:15:09 -0700 | [diff] [blame] | 736 | return TX_DROP; |
| 737 | |
| 738 | /* |
| 739 | * If we're associated with the sta at this point we know we can at |
| 740 | * least send the frame at the lowest bit rate. |
| 741 | */ |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 742 | rate_control_get_rate(tx->sdata, tx->sta, &txrc); |
| 743 | |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 744 | if (tx->sta && !info->control.skip_table) |
| 745 | ratetbl = rcu_dereference(tx->sta->sta.rates); |
| 746 | |
| 747 | if (unlikely(info->control.rates[0].idx < 0)) { |
| 748 | if (ratetbl) { |
| 749 | struct ieee80211_tx_rate rate = { |
| 750 | .idx = ratetbl->rate[0].idx, |
| 751 | .flags = ratetbl->rate[0].flags, |
| 752 | .count = ratetbl->rate[0].count |
| 753 | }; |
| 754 | |
| 755 | if (ratetbl->rate[0].idx < 0) |
| 756 | return TX_DROP; |
| 757 | |
| 758 | tx->rate = rate; |
| 759 | } else { |
| 760 | return TX_DROP; |
| 761 | } |
| 762 | } else { |
| 763 | tx->rate = info->control.rates[0]; |
| 764 | } |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 765 | |
Helmut Schaa | c1ce5a7 | 2010-12-01 16:34:45 +0100 | [diff] [blame] | 766 | if (txrc.reported_rate.idx < 0) { |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 767 | txrc.reported_rate = tx->rate; |
Helmut Schaa | c1ce5a7 | 2010-12-01 16:34:45 +0100 | [diff] [blame] | 768 | if (tx->sta && ieee80211_is_data(hdr->frame_control)) |
| 769 | tx->sta->last_tx_rate = txrc.reported_rate; |
| 770 | } else if (tx->sta) |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 771 | tx->sta->last_tx_rate = txrc.reported_rate; |
| 772 | |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 773 | if (ratetbl) |
| 774 | return TX_CONTINUE; |
| 775 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 776 | if (unlikely(!info->control.rates[0].count)) |
| 777 | info->control.rates[0].count = 1; |
| 778 | |
Gábor Stefanik | 9955151 | 2009-04-23 19:36:14 +0200 | [diff] [blame] | 779 | if (WARN_ON_ONCE((info->control.rates[0].count > 1) && |
| 780 | (info->flags & IEEE80211_TX_CTL_NO_ACK))) |
| 781 | info->control.rates[0].count = 1; |
| 782 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 783 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 784 | } |
| 785 | |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 786 | static ieee80211_tx_result debug_noinline |
Johannes Berg | f591fa5 | 2008-07-10 11:21:26 +0200 | [diff] [blame] | 787 | ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx) |
| 788 | { |
| 789 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
| 790 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data; |
| 791 | u16 *seq; |
| 792 | u8 *qc; |
| 793 | int tid; |
| 794 | |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 795 | /* |
| 796 | * Packet injection may want to control the sequence |
| 797 | * number, if we have no matching interface then we |
| 798 | * neither assign one ourselves nor ask the driver to. |
| 799 | */ |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 800 | if (unlikely(info->control.vif->type == NL80211_IFTYPE_MONITOR)) |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 801 | return TX_CONTINUE; |
| 802 | |
Johannes Berg | f591fa5 | 2008-07-10 11:21:26 +0200 | [diff] [blame] | 803 | if (unlikely(ieee80211_is_ctl(hdr->frame_control))) |
| 804 | return TX_CONTINUE; |
| 805 | |
| 806 | if (ieee80211_hdrlen(hdr->frame_control) < 24) |
| 807 | return TX_CONTINUE; |
| 808 | |
Johannes Berg | 49a5954 | 2011-09-29 16:04:41 +0200 | [diff] [blame] | 809 | if (ieee80211_is_qos_nullfunc(hdr->frame_control)) |
| 810 | return TX_CONTINUE; |
| 811 | |
Johannes Berg | 9477828 | 2008-10-10 13:21:59 +0200 | [diff] [blame] | 812 | /* |
| 813 | * Anything but QoS data that has a sequence number field |
| 814 | * (is long enough) gets a sequence number from the global |
Bob Copeland | c4c205f | 2013-08-23 09:35:38 -0400 | [diff] [blame] | 815 | * counter. QoS data frames with a multicast destination |
| 816 | * also use the global counter (802.11-2012 9.3.2.10). |
Johannes Berg | 9477828 | 2008-10-10 13:21:59 +0200 | [diff] [blame] | 817 | */ |
Bob Copeland | c4c205f | 2013-08-23 09:35:38 -0400 | [diff] [blame] | 818 | if (!ieee80211_is_data_qos(hdr->frame_control) || |
| 819 | is_multicast_ether_addr(hdr->addr1)) { |
Johannes Berg | 9477828 | 2008-10-10 13:21:59 +0200 | [diff] [blame] | 820 | /* driver should assign sequence number */ |
Johannes Berg | f591fa5 | 2008-07-10 11:21:26 +0200 | [diff] [blame] | 821 | info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ; |
Johannes Berg | 9477828 | 2008-10-10 13:21:59 +0200 | [diff] [blame] | 822 | /* for pure STA mode without beacons, we can do it */ |
| 823 | hdr->seq_ctrl = cpu_to_le16(tx->sdata->sequence_number); |
| 824 | tx->sdata->sequence_number += 0x10; |
Johannes Berg | 79c892b | 2014-11-21 14:26:31 +0100 | [diff] [blame] | 825 | if (tx->sta) |
| 826 | tx->sta->tx_msdu[IEEE80211_NUM_TIDS]++; |
Johannes Berg | f591fa5 | 2008-07-10 11:21:26 +0200 | [diff] [blame] | 827 | return TX_CONTINUE; |
| 828 | } |
| 829 | |
| 830 | /* |
| 831 | * This should be true for injected/management frames only, for |
| 832 | * management frames we have set the IEEE80211_TX_CTL_ASSIGN_SEQ |
| 833 | * above since they are not QoS-data frames. |
| 834 | */ |
| 835 | if (!tx->sta) |
| 836 | return TX_CONTINUE; |
| 837 | |
| 838 | /* include per-STA, per-TID sequence counter */ |
| 839 | |
| 840 | qc = ieee80211_get_qos_ctl(hdr); |
| 841 | tid = *qc & IEEE80211_QOS_CTL_TID_MASK; |
| 842 | seq = &tx->sta->tid_seq[tid]; |
Johannes Berg | 79c892b | 2014-11-21 14:26:31 +0100 | [diff] [blame] | 843 | tx->sta->tx_msdu[tid]++; |
Johannes Berg | f591fa5 | 2008-07-10 11:21:26 +0200 | [diff] [blame] | 844 | |
| 845 | hdr->seq_ctrl = cpu_to_le16(*seq); |
| 846 | |
| 847 | /* Increase the sequence number. */ |
| 848 | *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ; |
| 849 | |
| 850 | return TX_CONTINUE; |
| 851 | } |
| 852 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 853 | static int ieee80211_fragment(struct ieee80211_tx_data *tx, |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 854 | struct sk_buff *skb, int hdrlen, |
| 855 | int frag_threshold) |
| 856 | { |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 857 | struct ieee80211_local *local = tx->local; |
Johannes Berg | a1a3fce | 2011-11-16 15:28:56 +0100 | [diff] [blame] | 858 | struct ieee80211_tx_info *info; |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 859 | struct sk_buff *tmp; |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 860 | int per_fragm = frag_threshold - hdrlen - FCS_LEN; |
| 861 | int pos = hdrlen + per_fragm; |
| 862 | int rem = skb->len - hdrlen - per_fragm; |
| 863 | |
| 864 | if (WARN_ON(rem < 0)) |
| 865 | return -EINVAL; |
| 866 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 867 | /* first fragment was already added to queue by caller */ |
| 868 | |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 869 | while (rem) { |
| 870 | int fraglen = per_fragm; |
| 871 | |
| 872 | if (fraglen > rem) |
| 873 | fraglen = rem; |
| 874 | rem -= fraglen; |
| 875 | tmp = dev_alloc_skb(local->tx_headroom + |
| 876 | frag_threshold + |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 877 | tx->sdata->encrypt_headroom + |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 878 | IEEE80211_ENCRYPT_TAILROOM); |
| 879 | if (!tmp) |
| 880 | return -ENOMEM; |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 881 | |
| 882 | __skb_queue_tail(&tx->skbs, tmp); |
| 883 | |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 884 | skb_reserve(tmp, |
| 885 | local->tx_headroom + tx->sdata->encrypt_headroom); |
| 886 | |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 887 | /* copy control information */ |
| 888 | memcpy(tmp->cb, skb->cb, sizeof(tmp->cb)); |
Johannes Berg | a1a3fce | 2011-11-16 15:28:56 +0100 | [diff] [blame] | 889 | |
| 890 | info = IEEE80211_SKB_CB(tmp); |
| 891 | info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT | |
| 892 | IEEE80211_TX_CTL_FIRST_FRAGMENT); |
| 893 | |
| 894 | if (rem) |
| 895 | info->flags |= IEEE80211_TX_CTL_MORE_FRAMES; |
| 896 | |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 897 | skb_copy_queue_mapping(tmp, skb); |
| 898 | tmp->priority = skb->priority; |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 899 | tmp->dev = skb->dev; |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 900 | |
| 901 | /* copy header and data */ |
| 902 | memcpy(skb_put(tmp, hdrlen), skb->data, hdrlen); |
| 903 | memcpy(skb_put(tmp, fraglen), skb->data + pos, fraglen); |
| 904 | |
| 905 | pos += fraglen; |
| 906 | } |
| 907 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 908 | /* adjust first fragment's length */ |
Johannes Berg | 338f977 | 2014-02-01 00:16:23 +0100 | [diff] [blame] | 909 | skb_trim(skb, hdrlen + per_fragm); |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 910 | return 0; |
| 911 | } |
| 912 | |
Johannes Berg | f591fa5 | 2008-07-10 11:21:26 +0200 | [diff] [blame] | 913 | static ieee80211_tx_result debug_noinline |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 914 | ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx) |
| 915 | { |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 916 | struct sk_buff *skb = tx->skb; |
| 917 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 918 | struct ieee80211_hdr *hdr = (void *)skb->data; |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 919 | int frag_threshold = tx->local->hw.wiphy->frag_threshold; |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 920 | int hdrlen; |
| 921 | int fragnum; |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 922 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 923 | /* no matter what happens, tx->skb moves to tx->skbs */ |
| 924 | __skb_queue_tail(&tx->skbs, skb); |
| 925 | tx->skb = NULL; |
| 926 | |
Johannes Berg | a26eb27 | 2011-10-07 14:01:25 +0200 | [diff] [blame] | 927 | if (info->flags & IEEE80211_TX_CTL_DONTFRAG) |
| 928 | return TX_CONTINUE; |
| 929 | |
| 930 | if (tx->local->ops->set_frag_threshold) |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 931 | return TX_CONTINUE; |
| 932 | |
Johannes Berg | eefce91 | 2008-05-17 00:57:13 +0200 | [diff] [blame] | 933 | /* |
| 934 | * Warn when submitting a fragmented A-MPDU frame and drop it. |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 935 | * This scenario is handled in ieee80211_tx_prepare but extra |
Ron Rindjunsky | 8d5e0d5 | 2008-06-12 15:42:29 +0300 | [diff] [blame] | 936 | * caution taken here as fragmented ampdu may cause Tx stop. |
Johannes Berg | eefce91 | 2008-05-17 00:57:13 +0200 | [diff] [blame] | 937 | */ |
Sujith | 8b30b1f | 2008-10-24 09:55:27 +0530 | [diff] [blame] | 938 | if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU)) |
Johannes Berg | eefce91 | 2008-05-17 00:57:13 +0200 | [diff] [blame] | 939 | return TX_DROP; |
| 940 | |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 941 | hdrlen = ieee80211_hdrlen(hdr->frame_control); |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 942 | |
Johannes Berg | a26eb27 | 2011-10-07 14:01:25 +0200 | [diff] [blame] | 943 | /* internal error, why isn't DONTFRAG set? */ |
Johannes Berg | 8ccd8f2 | 2009-04-29 23:35:56 +0200 | [diff] [blame] | 944 | if (WARN_ON(skb->len + FCS_LEN <= frag_threshold)) |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 945 | return TX_DROP; |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 946 | |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 947 | /* |
| 948 | * Now fragment the frame. This will allocate all the fragments and |
| 949 | * chain them (using skb as the first fragment) to skb->next. |
| 950 | * During transmission, we will remove the successfully transmitted |
| 951 | * fragments from this list. When the low-level driver rejects one |
| 952 | * of the fragments then we will simply pretend to accept the skb |
| 953 | * but store it away as pending. |
| 954 | */ |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 955 | if (ieee80211_fragment(tx, skb, hdrlen, frag_threshold)) |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 956 | return TX_DROP; |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 957 | |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 958 | /* update duration/seq/flags of fragments */ |
| 959 | fragnum = 0; |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 960 | |
| 961 | skb_queue_walk(&tx->skbs, skb) { |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 962 | const __le16 morefrags = cpu_to_le16(IEEE80211_FCTL_MOREFRAGS); |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 963 | |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 964 | hdr = (void *)skb->data; |
| 965 | info = IEEE80211_SKB_CB(skb); |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 966 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 967 | if (!skb_queue_is_last(&tx->skbs, skb)) { |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 968 | hdr->frame_control |= morefrags; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 969 | /* |
| 970 | * No multi-rate retries for fragmented frames, that |
| 971 | * would completely throw off the NAV at other STAs. |
| 972 | */ |
| 973 | info->control.rates[1].idx = -1; |
| 974 | info->control.rates[2].idx = -1; |
| 975 | info->control.rates[3].idx = -1; |
Thomas Huehn | e3e1a0b | 2012-07-02 19:46:16 +0200 | [diff] [blame] | 976 | BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 4); |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 977 | info->flags &= ~IEEE80211_TX_CTL_RATE_CTRL_PROBE; |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 978 | } else { |
| 979 | hdr->frame_control &= ~morefrags; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 980 | } |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 981 | hdr->seq_ctrl |= cpu_to_le16(fragnum & IEEE80211_SCTL_FRAG); |
| 982 | fragnum++; |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 983 | } |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 984 | |
| 985 | return TX_CONTINUE; |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 986 | } |
| 987 | |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 988 | static ieee80211_tx_result debug_noinline |
Johannes Berg | feff1f2 | 2009-08-10 16:01:54 +0200 | [diff] [blame] | 989 | ieee80211_tx_h_stats(struct ieee80211_tx_data *tx) |
| 990 | { |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 991 | struct sk_buff *skb; |
Johannes Berg | 560d268 | 2013-02-05 10:55:21 +0100 | [diff] [blame] | 992 | int ac = -1; |
Johannes Berg | feff1f2 | 2009-08-10 16:01:54 +0200 | [diff] [blame] | 993 | |
| 994 | if (!tx->sta) |
| 995 | return TX_CONTINUE; |
| 996 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 997 | skb_queue_walk(&tx->skbs, skb) { |
Johannes Berg | 560d268 | 2013-02-05 10:55:21 +0100 | [diff] [blame] | 998 | ac = skb_get_queue_mapping(skb); |
Johannes Berg | feff1f2 | 2009-08-10 16:01:54 +0200 | [diff] [blame] | 999 | tx->sta->tx_fragments++; |
Johannes Berg | 560d268 | 2013-02-05 10:55:21 +0100 | [diff] [blame] | 1000 | tx->sta->tx_bytes[ac] += skb->len; |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1001 | } |
Johannes Berg | 560d268 | 2013-02-05 10:55:21 +0100 | [diff] [blame] | 1002 | if (ac >= 0) |
| 1003 | tx->sta->tx_packets[ac]++; |
Johannes Berg | feff1f2 | 2009-08-10 16:01:54 +0200 | [diff] [blame] | 1004 | |
| 1005 | return TX_CONTINUE; |
| 1006 | } |
| 1007 | |
| 1008 | static ieee80211_tx_result debug_noinline |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 1009 | ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx) |
| 1010 | { |
| 1011 | if (!tx->key) |
| 1012 | return TX_CONTINUE; |
| 1013 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 1014 | switch (tx->key->conf.cipher) { |
| 1015 | case WLAN_CIPHER_SUITE_WEP40: |
| 1016 | case WLAN_CIPHER_SUITE_WEP104: |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 1017 | return ieee80211_crypto_wep_encrypt(tx); |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 1018 | case WLAN_CIPHER_SUITE_TKIP: |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 1019 | return ieee80211_crypto_tkip_encrypt(tx); |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 1020 | case WLAN_CIPHER_SUITE_CCMP: |
Jouni Malinen | 2b2ba0d | 2015-01-24 19:52:07 +0200 | [diff] [blame] | 1021 | return ieee80211_crypto_ccmp_encrypt( |
| 1022 | tx, IEEE80211_CCMP_MIC_LEN); |
| 1023 | case WLAN_CIPHER_SUITE_CCMP_256: |
| 1024 | return ieee80211_crypto_ccmp_encrypt( |
| 1025 | tx, IEEE80211_CCMP_256_MIC_LEN); |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 1026 | case WLAN_CIPHER_SUITE_AES_CMAC: |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 1027 | return ieee80211_crypto_aes_cmac_encrypt(tx); |
Jouni Malinen | 56c52da | 2015-01-24 19:52:08 +0200 | [diff] [blame] | 1028 | case WLAN_CIPHER_SUITE_BIP_CMAC_256: |
| 1029 | return ieee80211_crypto_aes_cmac_256_encrypt(tx); |
Jouni Malinen | 8ade538 | 2015-01-24 19:52:09 +0200 | [diff] [blame] | 1030 | case WLAN_CIPHER_SUITE_BIP_GMAC_128: |
| 1031 | case WLAN_CIPHER_SUITE_BIP_GMAC_256: |
| 1032 | return ieee80211_crypto_aes_gmac_encrypt(tx); |
Jouni Malinen | 00b9cfa | 2015-01-24 19:52:06 +0200 | [diff] [blame] | 1033 | case WLAN_CIPHER_SUITE_GCMP: |
| 1034 | case WLAN_CIPHER_SUITE_GCMP_256: |
| 1035 | return ieee80211_crypto_gcmp_encrypt(tx); |
Johannes Berg | 3ffc2a9 | 2010-08-27 14:26:52 +0300 | [diff] [blame] | 1036 | default: |
Yoni Divinsky | d32a102 | 2012-01-16 15:18:59 +0200 | [diff] [blame] | 1037 | return ieee80211_crypto_hw_encrypt(tx); |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 1038 | } |
| 1039 | |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 1040 | return TX_DROP; |
| 1041 | } |
| 1042 | |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 1043 | static ieee80211_tx_result debug_noinline |
Johannes Berg | 03f93c3 | 2008-06-25 14:36:27 +0300 | [diff] [blame] | 1044 | ieee80211_tx_h_calculate_duration(struct ieee80211_tx_data *tx) |
| 1045 | { |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1046 | struct sk_buff *skb; |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 1047 | struct ieee80211_hdr *hdr; |
| 1048 | int next_len; |
| 1049 | bool group_addr; |
Johannes Berg | 03f93c3 | 2008-06-25 14:36:27 +0300 | [diff] [blame] | 1050 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1051 | skb_queue_walk(&tx->skbs, skb) { |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 1052 | hdr = (void *) skb->data; |
Jouni Malinen | 7e0aae4 | 2009-05-19 19:25:58 +0300 | [diff] [blame] | 1053 | if (unlikely(ieee80211_is_pspoll(hdr->frame_control))) |
| 1054 | break; /* must not overwrite AID */ |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1055 | if (!skb_queue_is_last(&tx->skbs, skb)) { |
| 1056 | struct sk_buff *next = skb_queue_next(&tx->skbs, skb); |
| 1057 | next_len = next->len; |
| 1058 | } else |
| 1059 | next_len = 0; |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 1060 | group_addr = is_multicast_ether_addr(hdr->addr1); |
Johannes Berg | 03f93c3 | 2008-06-25 14:36:27 +0300 | [diff] [blame] | 1061 | |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 1062 | hdr->duration_id = |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1063 | ieee80211_duration(tx, skb, group_addr, next_len); |
| 1064 | } |
Johannes Berg | 03f93c3 | 2008-06-25 14:36:27 +0300 | [diff] [blame] | 1065 | |
| 1066 | return TX_CONTINUE; |
| 1067 | } |
| 1068 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1069 | /* actual transmit path */ |
| 1070 | |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1071 | static bool ieee80211_tx_prep_agg(struct ieee80211_tx_data *tx, |
| 1072 | struct sk_buff *skb, |
| 1073 | struct ieee80211_tx_info *info, |
| 1074 | struct tid_ampdu_tx *tid_tx, |
| 1075 | int tid) |
| 1076 | { |
| 1077 | bool queued = false; |
Nikolay Martynov | 285fa69 | 2011-11-22 21:50:28 -0500 | [diff] [blame] | 1078 | bool reset_agg_timer = false; |
Helmut Schaa | aa45458 | 2012-03-07 17:20:30 +0100 | [diff] [blame] | 1079 | struct sk_buff *purge_skb = NULL; |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1080 | |
| 1081 | if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) { |
| 1082 | info->flags |= IEEE80211_TX_CTL_AMPDU; |
Nikolay Martynov | 285fa69 | 2011-11-22 21:50:28 -0500 | [diff] [blame] | 1083 | reset_agg_timer = true; |
Johannes Berg | 0ab3370 | 2010-06-10 10:21:42 +0200 | [diff] [blame] | 1084 | } else if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) { |
| 1085 | /* |
| 1086 | * nothing -- this aggregation session is being started |
| 1087 | * but that might still fail with the driver |
| 1088 | */ |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1089 | } else { |
| 1090 | spin_lock(&tx->sta->lock); |
| 1091 | /* |
| 1092 | * Need to re-check now, because we may get here |
| 1093 | * |
| 1094 | * 1) in the window during which the setup is actually |
| 1095 | * already done, but not marked yet because not all |
| 1096 | * packets are spliced over to the driver pending |
| 1097 | * queue yet -- if this happened we acquire the lock |
| 1098 | * either before or after the splice happens, but |
| 1099 | * need to recheck which of these cases happened. |
| 1100 | * |
| 1101 | * 2) during session teardown, if the OPERATIONAL bit |
| 1102 | * was cleared due to the teardown but the pointer |
| 1103 | * hasn't been assigned NULL yet (or we loaded it |
| 1104 | * before it was assigned) -- in this case it may |
| 1105 | * now be NULL which means we should just let the |
| 1106 | * packet pass through because splicing the frames |
| 1107 | * back is already done. |
| 1108 | */ |
Johannes Berg | 40b275b | 2011-05-13 14:15:49 +0200 | [diff] [blame] | 1109 | tid_tx = rcu_dereference_protected_tid_tx(tx->sta, tid); |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1110 | |
| 1111 | if (!tid_tx) { |
| 1112 | /* do nothing, let packet pass through */ |
| 1113 | } else if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) { |
| 1114 | info->flags |= IEEE80211_TX_CTL_AMPDU; |
Nikolay Martynov | 285fa69 | 2011-11-22 21:50:28 -0500 | [diff] [blame] | 1115 | reset_agg_timer = true; |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1116 | } else { |
| 1117 | queued = true; |
| 1118 | info->control.vif = &tx->sdata->vif; |
| 1119 | info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING; |
Johannes Berg | 03c8c06 | 2014-01-09 01:45:28 +0100 | [diff] [blame] | 1120 | info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS; |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1121 | __skb_queue_tail(&tid_tx->pending, skb); |
Helmut Schaa | aa45458 | 2012-03-07 17:20:30 +0100 | [diff] [blame] | 1122 | if (skb_queue_len(&tid_tx->pending) > STA_MAX_TX_BUFFER) |
| 1123 | purge_skb = __skb_dequeue(&tid_tx->pending); |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1124 | } |
| 1125 | spin_unlock(&tx->sta->lock); |
Helmut Schaa | aa45458 | 2012-03-07 17:20:30 +0100 | [diff] [blame] | 1126 | |
| 1127 | if (purge_skb) |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 1128 | ieee80211_free_txskb(&tx->local->hw, purge_skb); |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1129 | } |
| 1130 | |
Nikolay Martynov | 285fa69 | 2011-11-22 21:50:28 -0500 | [diff] [blame] | 1131 | /* reset session timer */ |
| 1132 | if (reset_agg_timer && tid_tx->timeout) |
Felix Fietkau | 12d3952f | 2012-03-18 22:58:06 +0100 | [diff] [blame] | 1133 | tid_tx->last_tx = jiffies; |
Nikolay Martynov | 285fa69 | 2011-11-22 21:50:28 -0500 | [diff] [blame] | 1134 | |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1135 | return queued; |
| 1136 | } |
| 1137 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1138 | /* |
| 1139 | * initialises @tx |
| 1140 | */ |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 1141 | static ieee80211_tx_result |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1142 | ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata, |
| 1143 | struct ieee80211_tx_data *tx, |
| 1144 | struct sk_buff *skb) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1145 | { |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1146 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1147 | struct ieee80211_hdr *hdr; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1148 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Johannes Berg | 68f2b51 | 2011-10-07 14:01:24 +0200 | [diff] [blame] | 1149 | int tid; |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1150 | u8 *qc; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1151 | |
| 1152 | memset(tx, 0, sizeof(*tx)); |
| 1153 | tx->skb = skb; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1154 | tx->local = local; |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1155 | tx->sdata = sdata; |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1156 | __skb_queue_head_init(&tx->skbs); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1157 | |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 1158 | /* |
| 1159 | * If this flag is set to true anywhere, and we get here, |
| 1160 | * we are doing the needed processing, so remove the flag |
| 1161 | * now. |
| 1162 | */ |
| 1163 | info->flags &= ~IEEE80211_TX_INTFL_NEED_TXPROCESSING; |
| 1164 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1165 | hdr = (struct ieee80211_hdr *) skb->data; |
| 1166 | |
Felix Fietkau | 3f0e0b2 | 2010-01-08 18:15:13 +0100 | [diff] [blame] | 1167 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) { |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 1168 | tx->sta = rcu_dereference(sdata->u.vlan.sta); |
Felix Fietkau | 3f0e0b2 | 2010-01-08 18:15:13 +0100 | [diff] [blame] | 1169 | if (!tx->sta && sdata->dev->ieee80211_ptr->use_4addr) |
| 1170 | return TX_DROP; |
Felix Fietkau | 03bb7f4 | 2013-09-29 21:39:33 +0200 | [diff] [blame] | 1171 | } else if (info->flags & (IEEE80211_TX_CTL_INJECTED | |
| 1172 | IEEE80211_TX_INTFL_NL80211_FRAME_TX) || |
Felix Fietkau | 66f2c99 | 2012-04-29 15:44:16 +0200 | [diff] [blame] | 1173 | tx->sdata->control_port_protocol == tx->skb->protocol) { |
Felix Fietkau | b4d57ad | 2010-01-31 23:25:24 +0100 | [diff] [blame] | 1174 | tx->sta = sta_info_get_bss(sdata, hdr->addr1); |
Felix Fietkau | 3f0e0b2 | 2010-01-08 18:15:13 +0100 | [diff] [blame] | 1175 | } |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 1176 | if (!tx->sta) |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 1177 | tx->sta = sta_info_get(sdata, hdr->addr1); |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1178 | |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 1179 | if (tx->sta && ieee80211_is_data_qos(hdr->frame_control) && |
Johannes Berg | 49a5954 | 2011-09-29 16:04:41 +0200 | [diff] [blame] | 1180 | !ieee80211_is_qos_nullfunc(hdr->frame_control) && |
Arik Nemtsov | edf6b78 | 2011-08-30 09:32:38 +0300 | [diff] [blame] | 1181 | (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION) && |
| 1182 | !(local->hw.flags & IEEE80211_HW_TX_AMPDU_SETUP_IN_HW)) { |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 1183 | struct tid_ampdu_tx *tid_tx; |
| 1184 | |
Sujith | 8b30b1f | 2008-10-24 09:55:27 +0530 | [diff] [blame] | 1185 | qc = ieee80211_get_qos_ctl(hdr); |
| 1186 | tid = *qc & IEEE80211_QOS_CTL_TID_MASK; |
| 1187 | |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1188 | tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]); |
| 1189 | if (tid_tx) { |
| 1190 | bool queued; |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 1191 | |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1192 | queued = ieee80211_tx_prep_agg(tx, skb, info, |
| 1193 | tid_tx, tid); |
| 1194 | |
| 1195 | if (unlikely(queued)) |
| 1196 | return TX_QUEUED; |
| 1197 | } |
Sujith | 8b30b1f | 2008-10-24 09:55:27 +0530 | [diff] [blame] | 1198 | } |
| 1199 | |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1200 | if (is_multicast_ether_addr(hdr->addr1)) { |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 1201 | tx->flags &= ~IEEE80211_TX_UNICAST; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1202 | info->flags |= IEEE80211_TX_CTL_NO_ACK; |
Simon Wunderlich | 6fd67e9 | 2011-11-18 14:20:42 +0100 | [diff] [blame] | 1203 | } else |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 1204 | tx->flags |= IEEE80211_TX_UNICAST; |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1205 | |
Johannes Berg | a26eb27 | 2011-10-07 14:01:25 +0200 | [diff] [blame] | 1206 | if (!(info->flags & IEEE80211_TX_CTL_DONTFRAG)) { |
| 1207 | if (!(tx->flags & IEEE80211_TX_UNICAST) || |
| 1208 | skb->len + FCS_LEN <= local->hw.wiphy->frag_threshold || |
| 1209 | info->flags & IEEE80211_TX_CTL_AMPDU) |
| 1210 | info->flags |= IEEE80211_TX_CTL_DONTFRAG; |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1211 | } |
| 1212 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1213 | if (!tx->sta) |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1214 | info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT; |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1215 | else if (test_and_clear_sta_flag(tx->sta, WLAN_STA_CLEAR_PS_FILT)) |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1216 | info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT; |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1217 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1218 | info->flags |= IEEE80211_TX_CTL_FIRST_FRAGMENT; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1219 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 1220 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1221 | } |
| 1222 | |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1223 | static bool ieee80211_tx_frags(struct ieee80211_local *local, |
| 1224 | struct ieee80211_vif *vif, |
| 1225 | struct ieee80211_sta *sta, |
| 1226 | struct sk_buff_head *skbs, |
| 1227 | bool txpending) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1228 | { |
Thomas Huehn | 36323f8 | 2012-07-23 21:33:42 +0200 | [diff] [blame] | 1229 | struct ieee80211_tx_control control; |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1230 | struct sk_buff *skb, *tmp; |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1231 | unsigned long flags; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1232 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1233 | skb_queue_walk_safe(skbs, skb, tmp) { |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1234 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 1235 | int q = info->hw_queue; |
| 1236 | |
| 1237 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 1238 | if (WARN_ON_ONCE(q >= local->hw.queues)) { |
| 1239 | __skb_unlink(skb, skbs); |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 1240 | ieee80211_free_txskb(&local->hw, skb); |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1241 | continue; |
| 1242 | } |
| 1243 | #endif |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1244 | |
| 1245 | spin_lock_irqsave(&local->queue_stop_reason_lock, flags); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1246 | if (local->queue_stop_reasons[q] || |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1247 | (!txpending && !skb_queue_empty(&local->pending[q]))) { |
Seth Forshee | 6c17b77 | 2013-02-11 11:21:07 -0600 | [diff] [blame] | 1248 | if (unlikely(info->flags & |
Seth Forshee | a7679ed | 2013-02-25 14:58:05 -0600 | [diff] [blame] | 1249 | IEEE80211_TX_INTFL_OFFCHAN_TX_OK)) { |
| 1250 | if (local->queue_stop_reasons[q] & |
| 1251 | ~BIT(IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL)) { |
| 1252 | /* |
| 1253 | * Drop off-channel frames if queues |
| 1254 | * are stopped for any reason other |
| 1255 | * than off-channel operation. Never |
| 1256 | * queue them. |
| 1257 | */ |
| 1258 | spin_unlock_irqrestore( |
| 1259 | &local->queue_stop_reason_lock, |
| 1260 | flags); |
| 1261 | ieee80211_purge_tx_queue(&local->hw, |
| 1262 | skbs); |
| 1263 | return true; |
| 1264 | } |
| 1265 | } else { |
| 1266 | |
Seth Forshee | 6c17b77 | 2013-02-11 11:21:07 -0600 | [diff] [blame] | 1267 | /* |
Seth Forshee | a7679ed | 2013-02-25 14:58:05 -0600 | [diff] [blame] | 1268 | * Since queue is stopped, queue up frames for |
| 1269 | * later transmission from the tx-pending |
| 1270 | * tasklet when the queue is woken again. |
Seth Forshee | 6c17b77 | 2013-02-11 11:21:07 -0600 | [diff] [blame] | 1271 | */ |
Seth Forshee | a7679ed | 2013-02-25 14:58:05 -0600 | [diff] [blame] | 1272 | if (txpending) |
| 1273 | skb_queue_splice_init(skbs, |
| 1274 | &local->pending[q]); |
| 1275 | else |
| 1276 | skb_queue_splice_tail_init(skbs, |
| 1277 | &local->pending[q]); |
| 1278 | |
| 1279 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, |
| 1280 | flags); |
| 1281 | return false; |
Seth Forshee | 6c17b77 | 2013-02-11 11:21:07 -0600 | [diff] [blame] | 1282 | } |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1283 | } |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1284 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
Tomas Winkler | f8e79dd | 2008-07-24 18:46:44 +0300 | [diff] [blame] | 1285 | |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1286 | info->control.vif = vif; |
Thomas Huehn | 36323f8 | 2012-07-23 21:33:42 +0200 | [diff] [blame] | 1287 | control.sta = sta; |
Johannes Berg | ec25acc | 2010-07-22 17:11:28 +0200 | [diff] [blame] | 1288 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1289 | __skb_unlink(skb, skbs); |
Thomas Huehn | 36323f8 | 2012-07-23 21:33:42 +0200 | [diff] [blame] | 1290 | drv_tx(local, &control, skb); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1291 | } |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 1292 | |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1293 | return true; |
| 1294 | } |
| 1295 | |
| 1296 | /* |
| 1297 | * Returns false if the frame couldn't be transmitted but was queued instead. |
| 1298 | */ |
| 1299 | static bool __ieee80211_tx(struct ieee80211_local *local, |
| 1300 | struct sk_buff_head *skbs, int led_len, |
| 1301 | struct sta_info *sta, bool txpending) |
| 1302 | { |
| 1303 | struct ieee80211_tx_info *info; |
| 1304 | struct ieee80211_sub_if_data *sdata; |
| 1305 | struct ieee80211_vif *vif; |
| 1306 | struct ieee80211_sta *pubsta; |
| 1307 | struct sk_buff *skb; |
| 1308 | bool result = true; |
| 1309 | __le16 fc; |
| 1310 | |
| 1311 | if (WARN_ON(skb_queue_empty(skbs))) |
| 1312 | return true; |
| 1313 | |
| 1314 | skb = skb_peek(skbs); |
| 1315 | fc = ((struct ieee80211_hdr *)skb->data)->frame_control; |
| 1316 | info = IEEE80211_SKB_CB(skb); |
| 1317 | sdata = vif_to_sdata(info->control.vif); |
| 1318 | if (sta && !sta->uploaded) |
| 1319 | sta = NULL; |
| 1320 | |
| 1321 | if (sta) |
| 1322 | pubsta = &sta->sta; |
| 1323 | else |
| 1324 | pubsta = NULL; |
| 1325 | |
| 1326 | switch (sdata->vif.type) { |
| 1327 | case NL80211_IFTYPE_MONITOR: |
Johannes Berg | c82b5a7 | 2013-07-14 23:39:20 +0300 | [diff] [blame] | 1328 | if (sdata->u.mntr_flags & MONITOR_FLAG_ACTIVE) { |
| 1329 | vif = &sdata->vif; |
| 1330 | break; |
| 1331 | } |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 1332 | sdata = rcu_dereference(local->monitor_sdata); |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1333 | if (sdata) { |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 1334 | vif = &sdata->vif; |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1335 | info->hw_queue = |
| 1336 | vif->hw_queue[skb_get_queue_mapping(skb)]; |
| 1337 | } else if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL) { |
| 1338 | dev_kfree_skb(skb); |
| 1339 | return true; |
| 1340 | } else |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 1341 | vif = NULL; |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1342 | break; |
| 1343 | case NL80211_IFTYPE_AP_VLAN: |
| 1344 | sdata = container_of(sdata->bss, |
| 1345 | struct ieee80211_sub_if_data, u.ap); |
| 1346 | /* fall through */ |
| 1347 | default: |
| 1348 | vif = &sdata->vif; |
| 1349 | break; |
| 1350 | } |
| 1351 | |
Johannes Berg | cb831b5 | 2012-07-02 15:40:18 +0200 | [diff] [blame] | 1352 | result = ieee80211_tx_frags(local, vif, pubsta, skbs, |
| 1353 | txpending); |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1354 | |
Johannes Berg | 74e4dbf | 2011-11-16 15:28:57 +0100 | [diff] [blame] | 1355 | ieee80211_tpt_led_trig_tx(local, fc, led_len); |
Johannes Berg | 74e4dbf | 2011-11-16 15:28:57 +0100 | [diff] [blame] | 1356 | |
Johannes Berg | 4db4e0a | 2011-11-24 14:47:36 +0100 | [diff] [blame] | 1357 | WARN_ON_ONCE(!skb_queue_empty(skbs)); |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1358 | |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1359 | return result; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1360 | } |
| 1361 | |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1362 | /* |
| 1363 | * Invoke TX handlers, return 0 on success and non-zero if the |
| 1364 | * frame was dropped or queued. |
| 1365 | */ |
| 1366 | static int invoke_tx_handlers(struct ieee80211_tx_data *tx) |
| 1367 | { |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1368 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1369 | ieee80211_tx_result res = TX_DROP; |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1370 | |
Johannes Berg | 9aa4aee | 2009-10-29 08:43:48 +0100 | [diff] [blame] | 1371 | #define CALL_TXH(txh) \ |
| 1372 | do { \ |
| 1373 | res = txh(tx); \ |
| 1374 | if (res != TX_CONTINUE) \ |
| 1375 | goto txh_done; \ |
| 1376 | } while (0) |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1377 | |
Kalle Valo | 5c1b98a | 2010-01-12 10:42:46 +0200 | [diff] [blame] | 1378 | CALL_TXH(ieee80211_tx_h_dynamic_ps); |
Johannes Berg | 9aa4aee | 2009-10-29 08:43:48 +0100 | [diff] [blame] | 1379 | CALL_TXH(ieee80211_tx_h_check_assoc); |
| 1380 | CALL_TXH(ieee80211_tx_h_ps_buf); |
Johannes Berg | a621fa4 | 2010-08-27 14:26:54 +0300 | [diff] [blame] | 1381 | CALL_TXH(ieee80211_tx_h_check_control_port_protocol); |
Johannes Berg | 9aa4aee | 2009-10-29 08:43:48 +0100 | [diff] [blame] | 1382 | CALL_TXH(ieee80211_tx_h_select_key); |
Johannes Berg | af65cd96 | 2009-11-17 18:18:36 +0100 | [diff] [blame] | 1383 | if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)) |
| 1384 | CALL_TXH(ieee80211_tx_h_rate_ctrl); |
Johannes Berg | c6fcf6b | 2010-01-17 01:47:59 +0100 | [diff] [blame] | 1385 | |
Johannes Berg | aa5b549 | 2011-12-02 22:08:52 +0100 | [diff] [blame] | 1386 | if (unlikely(info->flags & IEEE80211_TX_INTFL_RETRANSMISSION)) { |
| 1387 | __skb_queue_tail(&tx->skbs, tx->skb); |
| 1388 | tx->skb = NULL; |
Johannes Berg | c6fcf6b | 2010-01-17 01:47:59 +0100 | [diff] [blame] | 1389 | goto txh_done; |
Johannes Berg | aa5b549 | 2011-12-02 22:08:52 +0100 | [diff] [blame] | 1390 | } |
Johannes Berg | c6fcf6b | 2010-01-17 01:47:59 +0100 | [diff] [blame] | 1391 | |
| 1392 | CALL_TXH(ieee80211_tx_h_michael_mic_add); |
Johannes Berg | 9aa4aee | 2009-10-29 08:43:48 +0100 | [diff] [blame] | 1393 | CALL_TXH(ieee80211_tx_h_sequence); |
| 1394 | CALL_TXH(ieee80211_tx_h_fragment); |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 1395 | /* handlers after fragment must be aware of tx info fragmentation! */ |
Johannes Berg | 9aa4aee | 2009-10-29 08:43:48 +0100 | [diff] [blame] | 1396 | CALL_TXH(ieee80211_tx_h_stats); |
| 1397 | CALL_TXH(ieee80211_tx_h_encrypt); |
Arik Nemtsov | 8fd369e | 2011-01-31 22:29:12 +0200 | [diff] [blame] | 1398 | if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)) |
| 1399 | CALL_TXH(ieee80211_tx_h_calculate_duration); |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 1400 | #undef CALL_TXH |
| 1401 | |
| 1402 | txh_done: |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1403 | if (unlikely(res == TX_DROP)) { |
Tomas Winkler | 5479d0e | 2008-06-28 03:15:03 +0300 | [diff] [blame] | 1404 | I802_DEBUG_INC(tx->local->tx_handlers_drop); |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1405 | if (tx->skb) |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 1406 | ieee80211_free_txskb(&tx->local->hw, tx->skb); |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1407 | else |
Felix Fietkau | 1f98ab7 | 2012-11-10 03:44:14 +0100 | [diff] [blame] | 1408 | ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs); |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1409 | return -1; |
| 1410 | } else if (unlikely(res == TX_QUEUED)) { |
Tomas Winkler | 5479d0e | 2008-06-28 03:15:03 +0300 | [diff] [blame] | 1411 | I802_DEBUG_INC(tx->local->tx_handlers_queued); |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1412 | return -1; |
| 1413 | } |
| 1414 | |
| 1415 | return 0; |
| 1416 | } |
| 1417 | |
Felix Fietkau | 06be6b1 | 2013-10-14 18:01:00 +0200 | [diff] [blame] | 1418 | bool ieee80211_tx_prepare_skb(struct ieee80211_hw *hw, |
| 1419 | struct ieee80211_vif *vif, struct sk_buff *skb, |
| 1420 | int band, struct ieee80211_sta **sta) |
| 1421 | { |
| 1422 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
| 1423 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 1424 | struct ieee80211_tx_data tx; |
| 1425 | |
| 1426 | if (ieee80211_tx_prepare(sdata, &tx, skb) == TX_DROP) |
| 1427 | return false; |
| 1428 | |
| 1429 | info->band = band; |
| 1430 | info->control.vif = vif; |
| 1431 | info->hw_queue = vif->hw_queue[skb_get_queue_mapping(skb)]; |
| 1432 | |
| 1433 | if (invoke_tx_handlers(&tx)) |
| 1434 | return false; |
| 1435 | |
| 1436 | if (sta) { |
| 1437 | if (tx.sta) |
| 1438 | *sta = &tx.sta->sta; |
| 1439 | else |
| 1440 | *sta = NULL; |
| 1441 | } |
| 1442 | |
| 1443 | return true; |
| 1444 | } |
| 1445 | EXPORT_SYMBOL(ieee80211_tx_prepare_skb); |
| 1446 | |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1447 | /* |
| 1448 | * Returns false if the frame couldn't be transmitted but was queued instead. |
| 1449 | */ |
| 1450 | static bool ieee80211_tx(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 73c4e19 | 2014-11-09 18:50:09 +0200 | [diff] [blame] | 1451 | struct sk_buff *skb, bool txpending) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1452 | { |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1453 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 1454 | struct ieee80211_tx_data tx; |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1455 | ieee80211_tx_result res_prepare; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1456 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1457 | bool result = true; |
Johannes Berg | 74e4dbf | 2011-11-16 15:28:57 +0100 | [diff] [blame] | 1458 | int led_len; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1459 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1460 | if (unlikely(skb->len < 10)) { |
| 1461 | dev_kfree_skb(skb); |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1462 | return true; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1463 | } |
| 1464 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1465 | /* initialises tx */ |
Johannes Berg | 74e4dbf | 2011-11-16 15:28:57 +0100 | [diff] [blame] | 1466 | led_len = skb->len; |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1467 | res_prepare = ieee80211_tx_prepare(sdata, &tx, skb); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1468 | |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 1469 | if (unlikely(res_prepare == TX_DROP)) { |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 1470 | ieee80211_free_txskb(&local->hw, skb); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1471 | return true; |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 1472 | } else if (unlikely(res_prepare == TX_QUEUED)) { |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1473 | return true; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1474 | } |
| 1475 | |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1476 | /* set up hw_queue value early */ |
| 1477 | if (!(info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) || |
| 1478 | !(local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)) |
| 1479 | info->hw_queue = |
| 1480 | sdata->vif.hw_queue[skb_get_queue_mapping(skb)]; |
| 1481 | |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1482 | if (!invoke_tx_handlers(&tx)) |
Johannes Berg | 74e4dbf | 2011-11-16 15:28:57 +0100 | [diff] [blame] | 1483 | result = __ieee80211_tx(local, &tx.skbs, led_len, |
| 1484 | tx.sta, txpending); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1485 | |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1486 | return result; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1487 | } |
| 1488 | |
| 1489 | /* device xmit handlers */ |
| 1490 | |
Yogesh Ashok Powar | 3bff186 | 2011-06-28 18:41:37 +0530 | [diff] [blame] | 1491 | static int ieee80211_skb_resize(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1492 | struct sk_buff *skb, |
| 1493 | int head_need, bool may_encrypt) |
| 1494 | { |
Yogesh Ashok Powar | 3bff186 | 2011-06-28 18:41:37 +0530 | [diff] [blame] | 1495 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1496 | int tail_need = 0; |
| 1497 | |
Yogesh Ashok Powar | 3bff186 | 2011-06-28 18:41:37 +0530 | [diff] [blame] | 1498 | if (may_encrypt && sdata->crypto_tx_tailroom_needed_cnt) { |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1499 | tail_need = IEEE80211_ENCRYPT_TAILROOM; |
| 1500 | tail_need -= skb_tailroom(skb); |
| 1501 | tail_need = max_t(int, tail_need, 0); |
| 1502 | } |
| 1503 | |
Ido Yariv | c70f59a | 2014-07-29 15:39:14 +0300 | [diff] [blame] | 1504 | if (skb_cloned(skb) && |
| 1505 | (!(local->hw.flags & IEEE80211_HW_SUPPORTS_CLONED_SKBS) || |
| 1506 | !skb_clone_writable(skb, ETH_HLEN) || |
| 1507 | sdata->crypto_tx_tailroom_needed_cnt)) |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1508 | I802_DEBUG_INC(local->tx_expand_skb_head_cloned); |
Felix Fietkau | 4cd06a3 | 2010-12-18 19:30:49 +0100 | [diff] [blame] | 1509 | else if (head_need || tail_need) |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1510 | I802_DEBUG_INC(local->tx_expand_skb_head); |
Felix Fietkau | 4cd06a3 | 2010-12-18 19:30:49 +0100 | [diff] [blame] | 1511 | else |
| 1512 | return 0; |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1513 | |
| 1514 | if (pskb_expand_head(skb, head_need, tail_need, GFP_ATOMIC)) { |
Joe Perches | 0fb9a9e | 2010-08-20 16:25:38 -0700 | [diff] [blame] | 1515 | wiphy_debug(local->hw.wiphy, |
| 1516 | "failed to reallocate TX buffer\n"); |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1517 | return -ENOMEM; |
| 1518 | } |
| 1519 | |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1520 | return 0; |
| 1521 | } |
| 1522 | |
Johannes Berg | 73c4e19 | 2014-11-09 18:50:09 +0200 | [diff] [blame] | 1523 | void ieee80211_xmit(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1524 | { |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1525 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1526 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 1527 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1528 | int headroom; |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1529 | bool may_encrypt; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1530 | |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1531 | may_encrypt = !(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT); |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1532 | |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1533 | headroom = local->tx_headroom; |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1534 | if (may_encrypt) |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 1535 | headroom += sdata->encrypt_headroom; |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1536 | headroom -= skb_headroom(skb); |
| 1537 | headroom = max_t(int, 0, headroom); |
| 1538 | |
Yogesh Ashok Powar | 3bff186 | 2011-06-28 18:41:37 +0530 | [diff] [blame] | 1539 | if (ieee80211_skb_resize(sdata, skb, headroom, may_encrypt)) { |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 1540 | ieee80211_free_txskb(&local->hw, skb); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1541 | return; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1542 | } |
| 1543 | |
Steve deRosier | 740c1aa | 2010-09-11 20:01:31 -0700 | [diff] [blame] | 1544 | hdr = (struct ieee80211_hdr *) skb->data; |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 1545 | info->control.vif = &sdata->vif; |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 1546 | |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 1547 | if (ieee80211_vif_is_mesh(&sdata->vif)) { |
| 1548 | if (ieee80211_is_data(hdr->frame_control) && |
| 1549 | is_unicast_ether_addr(hdr->addr1)) { |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 1550 | if (mesh_nexthop_resolve(sdata, skb)) |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 1551 | return; /* skb queued: don't free */ |
| 1552 | } else { |
| 1553 | ieee80211_mps_set_frame_flags(sdata, NULL, hdr); |
| 1554 | } |
Johannes Berg | 98aed9f | 2012-03-27 14:18:36 +0200 | [diff] [blame] | 1555 | } |
Javier Cardona | cca8949 | 2009-08-10 17:29:29 -0700 | [diff] [blame] | 1556 | |
Javier Cardona | 2154c81 | 2011-09-07 17:49:53 -0700 | [diff] [blame] | 1557 | ieee80211_set_qos_hdr(sdata, skb); |
Johannes Berg | 73c4e19 | 2014-11-09 18:50:09 +0200 | [diff] [blame] | 1558 | ieee80211_tx(sdata, skb, false); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1559 | } |
| 1560 | |
Johannes Berg | 73b9f03 | 2011-10-07 14:01:26 +0200 | [diff] [blame] | 1561 | static bool ieee80211_parse_tx_radiotap(struct sk_buff *skb) |
| 1562 | { |
| 1563 | struct ieee80211_radiotap_iterator iterator; |
| 1564 | struct ieee80211_radiotap_header *rthdr = |
| 1565 | (struct ieee80211_radiotap_header *) skb->data; |
| 1566 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 1567 | int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len, |
| 1568 | NULL); |
| 1569 | u16 txflags; |
| 1570 | |
| 1571 | info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT | |
| 1572 | IEEE80211_TX_CTL_DONTFRAG; |
| 1573 | |
| 1574 | /* |
| 1575 | * for every radiotap entry that is present |
| 1576 | * (ieee80211_radiotap_iterator_next returns -ENOENT when no more |
| 1577 | * entries present, or -EINVAL on error) |
| 1578 | */ |
| 1579 | |
| 1580 | while (!ret) { |
| 1581 | ret = ieee80211_radiotap_iterator_next(&iterator); |
| 1582 | |
| 1583 | if (ret) |
| 1584 | continue; |
| 1585 | |
| 1586 | /* see if this argument is something we can use */ |
| 1587 | switch (iterator.this_arg_index) { |
| 1588 | /* |
| 1589 | * You must take care when dereferencing iterator.this_arg |
| 1590 | * for multibyte types... the pointer is not aligned. Use |
| 1591 | * get_unaligned((type *)iterator.this_arg) to dereference |
| 1592 | * iterator.this_arg for type "type" safely on all arches. |
| 1593 | */ |
| 1594 | case IEEE80211_RADIOTAP_FLAGS: |
| 1595 | if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) { |
| 1596 | /* |
| 1597 | * this indicates that the skb we have been |
| 1598 | * handed has the 32-bit FCS CRC at the end... |
| 1599 | * we should react to that by snipping it off |
| 1600 | * because it will be recomputed and added |
| 1601 | * on transmission |
| 1602 | */ |
| 1603 | if (skb->len < (iterator._max_length + FCS_LEN)) |
| 1604 | return false; |
| 1605 | |
| 1606 | skb_trim(skb, skb->len - FCS_LEN); |
| 1607 | } |
| 1608 | if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP) |
| 1609 | info->flags &= ~IEEE80211_TX_INTFL_DONT_ENCRYPT; |
| 1610 | if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG) |
| 1611 | info->flags &= ~IEEE80211_TX_CTL_DONTFRAG; |
| 1612 | break; |
| 1613 | |
| 1614 | case IEEE80211_RADIOTAP_TX_FLAGS: |
| 1615 | txflags = get_unaligned_le16(iterator.this_arg); |
| 1616 | if (txflags & IEEE80211_RADIOTAP_F_TX_NOACK) |
| 1617 | info->flags |= IEEE80211_TX_CTL_NO_ACK; |
| 1618 | break; |
| 1619 | |
| 1620 | /* |
| 1621 | * Please update the file |
| 1622 | * Documentation/networking/mac80211-injection.txt |
| 1623 | * when parsing new fields here. |
| 1624 | */ |
| 1625 | |
| 1626 | default: |
| 1627 | break; |
| 1628 | } |
| 1629 | } |
| 1630 | |
| 1631 | if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */ |
| 1632 | return false; |
| 1633 | |
| 1634 | /* |
| 1635 | * remove the radiotap header |
| 1636 | * iterator->_max_length was sanity-checked against |
| 1637 | * skb->len by iterator init |
| 1638 | */ |
| 1639 | skb_pull(skb, iterator._max_length); |
| 1640 | |
| 1641 | return true; |
| 1642 | } |
| 1643 | |
Stephen Hemminger | d0cf9c0 | 2009-08-31 19:50:57 +0000 | [diff] [blame] | 1644 | netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb, |
| 1645 | struct net_device *dev) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1646 | { |
| 1647 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1648 | struct ieee80211_chanctx_conf *chanctx_conf; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1649 | struct ieee80211_radiotap_header *prthdr = |
| 1650 | (struct ieee80211_radiotap_header *)skb->data; |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1651 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Helmut Schaa | f75f5c6 | 2011-08-01 11:32:52 +0200 | [diff] [blame] | 1652 | struct ieee80211_hdr *hdr; |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 1653 | struct ieee80211_sub_if_data *tmp_sdata, *sdata; |
Janusz Dziedzic | b493283 | 2014-06-05 08:12:57 +0200 | [diff] [blame] | 1654 | struct cfg80211_chan_def *chandef; |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1655 | u16 len_rthdr; |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 1656 | int hdrlen; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1657 | |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1658 | /* check for not even having the fixed radiotap header part */ |
| 1659 | if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header))) |
| 1660 | goto fail; /* too short to be possibly valid */ |
| 1661 | |
| 1662 | /* is it a header version we can trust to find length from? */ |
| 1663 | if (unlikely(prthdr->it_version)) |
| 1664 | goto fail; /* only version 0 is supported */ |
| 1665 | |
| 1666 | /* then there must be a radiotap header with a length we can use */ |
| 1667 | len_rthdr = ieee80211_get_radiotap_len(skb->data); |
| 1668 | |
| 1669 | /* does the skb contain enough to deliver on the alleged length? */ |
| 1670 | if (unlikely(skb->len < len_rthdr)) |
| 1671 | goto fail; /* skb too short for claimed rt header extent */ |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1672 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1673 | /* |
| 1674 | * fix up the pointers accounting for the radiotap |
| 1675 | * header still being in there. We are being given |
| 1676 | * a precooked IEEE80211 header so no need for |
| 1677 | * normal processing |
| 1678 | */ |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1679 | skb_set_mac_header(skb, len_rthdr); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1680 | /* |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1681 | * these are just fixed to the end of the rt area since we |
| 1682 | * don't have any better information and at this point, nobody cares |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1683 | */ |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1684 | skb_set_network_header(skb, len_rthdr); |
| 1685 | skb_set_transport_header(skb, len_rthdr); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1686 | |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 1687 | if (skb->len < len_rthdr + 2) |
| 1688 | goto fail; |
| 1689 | |
| 1690 | hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr); |
| 1691 | hdrlen = ieee80211_hdrlen(hdr->frame_control); |
| 1692 | |
| 1693 | if (skb->len < len_rthdr + hdrlen) |
| 1694 | goto fail; |
| 1695 | |
Helmut Schaa | f75f5c6 | 2011-08-01 11:32:52 +0200 | [diff] [blame] | 1696 | /* |
| 1697 | * Initialize skb->protocol if the injected frame is a data frame |
| 1698 | * carrying a rfc1042 header |
| 1699 | */ |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 1700 | if (ieee80211_is_data(hdr->frame_control) && |
| 1701 | skb->len >= len_rthdr + hdrlen + sizeof(rfc1042_header) + 2) { |
| 1702 | u8 *payload = (u8 *)hdr + hdrlen; |
| 1703 | |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 1704 | if (ether_addr_equal(payload, rfc1042_header)) |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 1705 | skb->protocol = cpu_to_be16((payload[6] << 8) | |
| 1706 | payload[7]); |
Helmut Schaa | f75f5c6 | 2011-08-01 11:32:52 +0200 | [diff] [blame] | 1707 | } |
| 1708 | |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1709 | memset(info, 0, sizeof(*info)); |
| 1710 | |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 1711 | info->flags = IEEE80211_TX_CTL_REQ_TX_STATUS | |
Johannes Berg | 73b9f03 | 2011-10-07 14:01:26 +0200 | [diff] [blame] | 1712 | IEEE80211_TX_CTL_INJECTED; |
| 1713 | |
| 1714 | /* process and remove the injection radiotap header */ |
| 1715 | if (!ieee80211_parse_tx_radiotap(skb)) |
| 1716 | goto fail; |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 1717 | |
| 1718 | rcu_read_lock(); |
| 1719 | |
| 1720 | /* |
| 1721 | * We process outgoing injected frames that have a local address |
| 1722 | * we handle as though they are non-injected frames. |
| 1723 | * This code here isn't entirely correct, the local MAC address |
| 1724 | * isn't always enough to find the interface to use; for proper |
| 1725 | * VLAN/WDS support we will need a different mechanism (which |
| 1726 | * likely isn't going to be monitor interfaces). |
| 1727 | */ |
| 1728 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1729 | |
| 1730 | list_for_each_entry_rcu(tmp_sdata, &local->interfaces, list) { |
| 1731 | if (!ieee80211_sdata_running(tmp_sdata)) |
| 1732 | continue; |
| 1733 | if (tmp_sdata->vif.type == NL80211_IFTYPE_MONITOR || |
| 1734 | tmp_sdata->vif.type == NL80211_IFTYPE_AP_VLAN || |
| 1735 | tmp_sdata->vif.type == NL80211_IFTYPE_WDS) |
| 1736 | continue; |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 1737 | if (ether_addr_equal(tmp_sdata->vif.addr, hdr->addr2)) { |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 1738 | sdata = tmp_sdata; |
| 1739 | break; |
| 1740 | } |
| 1741 | } |
Johannes Berg | 7351c6b | 2009-11-19 01:08:30 +0100 | [diff] [blame] | 1742 | |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1743 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
| 1744 | if (!chanctx_conf) { |
| 1745 | tmp_sdata = rcu_dereference(local->monitor_sdata); |
| 1746 | if (tmp_sdata) |
| 1747 | chanctx_conf = |
| 1748 | rcu_dereference(tmp_sdata->vif.chanctx_conf); |
| 1749 | } |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1750 | |
Felix Fietkau | b4a7ff7 | 2013-01-13 23:10:26 +0100 | [diff] [blame] | 1751 | if (chanctx_conf) |
Janusz Dziedzic | b493283 | 2014-06-05 08:12:57 +0200 | [diff] [blame] | 1752 | chandef = &chanctx_conf->def; |
Felix Fietkau | b4a7ff7 | 2013-01-13 23:10:26 +0100 | [diff] [blame] | 1753 | else if (!local->use_chanctx) |
Janusz Dziedzic | b493283 | 2014-06-05 08:12:57 +0200 | [diff] [blame] | 1754 | chandef = &local->_oper_chandef; |
Felix Fietkau | b4a7ff7 | 2013-01-13 23:10:26 +0100 | [diff] [blame] | 1755 | else |
| 1756 | goto fail_rcu; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1757 | |
| 1758 | /* |
| 1759 | * Frame injection is not allowed if beaconing is not allowed |
| 1760 | * or if we need radar detection. Beaconing is usually not allowed when |
| 1761 | * the mode or operation (Adhoc, AP, Mesh) does not support DFS. |
| 1762 | * Passive scan is also used in world regulatory domains where |
| 1763 | * your country is not known and as such it should be treated as |
| 1764 | * NO TX unless the channel is explicitly allowed in which case |
| 1765 | * your current regulatory domain would not have the passive scan |
| 1766 | * flag. |
| 1767 | * |
| 1768 | * Since AP mode uses monitor interfaces to inject/TX management |
| 1769 | * frames we can make AP mode the exception to this rule once it |
| 1770 | * supports radar detection as its implementation can deal with |
| 1771 | * radar detection by itself. We can do that later by adding a |
| 1772 | * monitor flag interfaces used for AP support. |
| 1773 | */ |
Janusz Dziedzic | b493283 | 2014-06-05 08:12:57 +0200 | [diff] [blame] | 1774 | if (!cfg80211_reg_can_beacon(local->hw.wiphy, chandef, |
| 1775 | sdata->vif.type)) |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1776 | goto fail_rcu; |
| 1777 | |
Johannes Berg | 73c4e19 | 2014-11-09 18:50:09 +0200 | [diff] [blame] | 1778 | info->band = chandef->chan->band; |
| 1779 | ieee80211_xmit(sdata, skb); |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 1780 | rcu_read_unlock(); |
| 1781 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1782 | return NETDEV_TX_OK; |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1783 | |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1784 | fail_rcu: |
| 1785 | rcu_read_unlock(); |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1786 | fail: |
| 1787 | dev_kfree_skb(skb); |
| 1788 | return NETDEV_TX_OK; /* meaning, we dealt with the skb */ |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1789 | } |
| 1790 | |
Matti Gottlieb | ad38bfc | 2013-11-18 19:06:45 +0200 | [diff] [blame] | 1791 | /* |
| 1792 | * Measure Tx frame arrival time for Tx latency statistics calculation |
| 1793 | * A single Tx frame latency should be measured from when it is entering the |
| 1794 | * Kernel until we receive Tx complete confirmation indication and the skb is |
| 1795 | * freed. |
| 1796 | */ |
| 1797 | static void ieee80211_tx_latency_start_msrmnt(struct ieee80211_local *local, |
| 1798 | struct sk_buff *skb) |
| 1799 | { |
Matti Gottlieb | ad38bfc | 2013-11-18 19:06:45 +0200 | [diff] [blame] | 1800 | struct ieee80211_tx_latency_bin_ranges *tx_latency; |
| 1801 | |
| 1802 | tx_latency = rcu_dereference(local->tx_latency); |
| 1803 | if (!tx_latency) |
| 1804 | return; |
Thomas Gleixner | 8d7b70f | 2014-06-11 23:59:18 +0000 | [diff] [blame] | 1805 | skb->tstamp = ktime_get(); |
Matti Gottlieb | ad38bfc | 2013-11-18 19:06:45 +0200 | [diff] [blame] | 1806 | } |
| 1807 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1808 | /** |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 1809 | * ieee80211_build_hdr - build 802.11 header in the given frame |
| 1810 | * @sdata: virtual interface to build the header for |
| 1811 | * @skb: the skb to build the header in |
Liad Kaufman | 24d342c | 2014-11-09 18:50:07 +0200 | [diff] [blame] | 1812 | * @info_flags: skb flags to set |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1813 | * |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 1814 | * This function takes the skb with 802.3 header and reformats the header to |
| 1815 | * the appropriate IEEE 802.11 header based on which interface the packet is |
| 1816 | * being transmitted on. |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1817 | * |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 1818 | * Note that this function also takes care of the TX status request and |
| 1819 | * potential unsharing of the SKB - this needs to be interleaved with the |
| 1820 | * header building. |
| 1821 | * |
| 1822 | * The function requires the read-side RCU lock held |
| 1823 | * |
| 1824 | * Returns: the (possibly reallocated) skb or an ERR_PTR() code |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1825 | */ |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 1826 | static struct sk_buff *ieee80211_build_hdr(struct ieee80211_sub_if_data *sdata, |
| 1827 | struct sk_buff *skb, u32 info_flags) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1828 | { |
Johannes Berg | 133b822 | 2008-09-16 14:18:59 +0200 | [diff] [blame] | 1829 | struct ieee80211_local *local = sdata->local; |
Felix Fietkau | 489ee91 | 2010-12-18 19:30:48 +0100 | [diff] [blame] | 1830 | struct ieee80211_tx_info *info; |
Johannes Berg | dcf3396 | 2012-07-30 15:11:56 +0200 | [diff] [blame] | 1831 | int head_need; |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 1832 | u16 ethertype, hdrlen, meshhdrlen = 0; |
| 1833 | __le16 fc; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1834 | struct ieee80211_hdr hdr; |
Wey-Yi Guy | ff67bb8 | 2010-08-21 07:23:29 -0700 | [diff] [blame] | 1835 | struct ieee80211s_hdr mesh_hdr __maybe_unused; |
Chun-Yeow Yeoh | b8bacc1 | 2012-05-30 09:30:41 +0800 | [diff] [blame] | 1836 | struct mesh_path __maybe_unused *mppath = NULL, *mpath = NULL; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1837 | const u8 *encaps_data; |
| 1838 | int encaps_len, skip_header_bytes; |
Jiri Slaby | e8bf964 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1839 | int nh_pos, h_pos; |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 1840 | struct sta_info *sta = NULL; |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1841 | bool wme_sta = false, authorized = false, tdls_auth = false; |
Arik Nemtsov | 9deba04 | 2014-06-11 17:18:18 +0300 | [diff] [blame] | 1842 | bool tdls_peer = false, tdls_setup_frame = false; |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 1843 | bool multicast; |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 1844 | u16 info_id = 0; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1845 | struct ieee80211_chanctx_conf *chanctx_conf; |
| 1846 | struct ieee80211_sub_if_data *ap_sdata; |
| 1847 | enum ieee80211_band band; |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 1848 | int ret; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1849 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1850 | /* convert Ethernet header to proper 802.11 header (based on |
| 1851 | * operation mode) */ |
| 1852 | ethertype = (skb->data[12] << 8) | skb->data[13]; |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 1853 | fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1854 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 1855 | switch (sdata->vif.type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1856 | case NL80211_IFTYPE_AP_VLAN: |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 1857 | sta = rcu_dereference(sdata->u.vlan.sta); |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 1858 | if (sta) { |
| 1859 | fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS); |
| 1860 | /* RA TA DA SA */ |
| 1861 | memcpy(hdr.addr1, sta->sta.addr, ETH_ALEN); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1862 | memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN); |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 1863 | memcpy(hdr.addr3, skb->data, ETH_ALEN); |
| 1864 | memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN); |
| 1865 | hdrlen = 30; |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1866 | authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED); |
Johannes Berg | a74a8c8 | 2014-07-22 14:50:47 +0200 | [diff] [blame] | 1867 | wme_sta = sta->sta.wme; |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 1868 | } |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1869 | ap_sdata = container_of(sdata->bss, struct ieee80211_sub_if_data, |
| 1870 | u.ap); |
| 1871 | chanctx_conf = rcu_dereference(ap_sdata->vif.chanctx_conf); |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 1872 | if (!chanctx_conf) { |
| 1873 | ret = -ENOTCONN; |
| 1874 | goto free; |
| 1875 | } |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 1876 | band = chanctx_conf->def.chan->band; |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 1877 | if (sta) |
| 1878 | break; |
| 1879 | /* fall through */ |
| 1880 | case NL80211_IFTYPE_AP: |
Arnd Bergmann | fe80123 | 2013-01-25 14:14:33 +0000 | [diff] [blame] | 1881 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
| 1882 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 1883 | if (!chanctx_conf) { |
| 1884 | ret = -ENOTCONN; |
| 1885 | goto free; |
| 1886 | } |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 1887 | fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1888 | /* DA BSSID SA */ |
| 1889 | memcpy(hdr.addr1, skb->data, ETH_ALEN); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1890 | memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1891 | memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN); |
| 1892 | hdrlen = 24; |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 1893 | band = chanctx_conf->def.chan->band; |
Johannes Berg | cf96683 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1894 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1895 | case NL80211_IFTYPE_WDS: |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 1896 | fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1897 | /* RA TA DA SA */ |
| 1898 | memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1899 | memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1900 | memcpy(hdr.addr3, skb->data, ETH_ALEN); |
| 1901 | memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN); |
| 1902 | hdrlen = 30; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1903 | /* |
| 1904 | * This is the exception! WDS style interfaces are prohibited |
| 1905 | * when channel contexts are in used so this must be valid |
| 1906 | */ |
Karl Beldan | 675a0b0 | 2013-03-25 16:26:57 +0100 | [diff] [blame] | 1907 | band = local->hw.conf.chandef.chan->band; |
Johannes Berg | cf96683 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1908 | break; |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 1909 | #ifdef CONFIG_MAC80211_MESH |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1910 | case NL80211_IFTYPE_MESH_POINT: |
Chun-Yeow Yeoh | b8bacc1 | 2012-05-30 09:30:41 +0800 | [diff] [blame] | 1911 | if (!is_multicast_ether_addr(skb->data)) { |
Chun-Yeow Yeoh | 163df6c | 2013-02-19 10:04:50 +0800 | [diff] [blame] | 1912 | struct sta_info *next_hop; |
| 1913 | bool mpp_lookup = true; |
| 1914 | |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 1915 | mpath = mesh_path_lookup(sdata, skb->data); |
Chun-Yeow Yeoh | 163df6c | 2013-02-19 10:04:50 +0800 | [diff] [blame] | 1916 | if (mpath) { |
| 1917 | mpp_lookup = false; |
| 1918 | next_hop = rcu_dereference(mpath->next_hop); |
| 1919 | if (!next_hop || |
| 1920 | !(mpath->flags & (MESH_PATH_ACTIVE | |
| 1921 | MESH_PATH_RESOLVING))) |
| 1922 | mpp_lookup = true; |
| 1923 | } |
| 1924 | |
| 1925 | if (mpp_lookup) |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 1926 | mppath = mpp_path_lookup(sdata, skb->data); |
Chun-Yeow Yeoh | 163df6c | 2013-02-19 10:04:50 +0800 | [diff] [blame] | 1927 | |
| 1928 | if (mppath && mpath) |
| 1929 | mesh_path_del(mpath->sdata, mpath->dst); |
Chun-Yeow Yeoh | b8bacc1 | 2012-05-30 09:30:41 +0800 | [diff] [blame] | 1930 | } |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 1931 | |
Joel A Fernandes | f76b57b | 2010-12-28 19:28:11 -0600 | [diff] [blame] | 1932 | /* |
Joel A Fernandes | 9d52501 | 2011-01-10 00:44:23 -0600 | [diff] [blame] | 1933 | * Use address extension if it is a packet from |
| 1934 | * another interface or if we know the destination |
| 1935 | * is being proxied by a portal (i.e. portal address |
| 1936 | * differs from proxied address) |
Joel A Fernandes | f76b57b | 2010-12-28 19:28:11 -0600 | [diff] [blame] | 1937 | */ |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 1938 | if (ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN) && |
| 1939 | !(mppath && !ether_addr_equal(mppath->mpp, skb->data))) { |
Javier Cardona | 3c5772a | 2009-08-10 12:15:48 -0700 | [diff] [blame] | 1940 | hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc, |
| 1941 | skb->data, skb->data + ETH_ALEN); |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 1942 | meshhdrlen = ieee80211_new_mesh_header(sdata, &mesh_hdr, |
| 1943 | NULL, NULL); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 1944 | } else { |
Thomas Pedersen | 27f0112 | 2012-08-20 11:28:25 -0700 | [diff] [blame] | 1945 | /* DS -> MBSS (802.11-2012 13.11.3.3). |
| 1946 | * For unicast with unknown forwarding information, |
| 1947 | * destination might be in the MBSS or if that fails |
| 1948 | * forwarded to another mesh gate. In either case |
| 1949 | * resolution will be handled in ieee80211_xmit(), so |
| 1950 | * leave the original DA. This also works for mcast */ |
| 1951 | const u8 *mesh_da = skb->data; |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 1952 | |
Thomas Pedersen | 27f0112 | 2012-08-20 11:28:25 -0700 | [diff] [blame] | 1953 | if (mppath) |
| 1954 | mesh_da = mppath->mpp; |
| 1955 | else if (mpath) |
| 1956 | mesh_da = mpath->dst; |
Thomas Pedersen | 27f0112 | 2012-08-20 11:28:25 -0700 | [diff] [blame] | 1957 | |
Javier Cardona | 3c5772a | 2009-08-10 12:15:48 -0700 | [diff] [blame] | 1958 | hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc, |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1959 | mesh_da, sdata->vif.addr); |
Thomas Pedersen | 27f0112 | 2012-08-20 11:28:25 -0700 | [diff] [blame] | 1960 | if (is_multicast_ether_addr(mesh_da)) |
| 1961 | /* DA TA mSA AE:SA */ |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 1962 | meshhdrlen = ieee80211_new_mesh_header( |
| 1963 | sdata, &mesh_hdr, |
| 1964 | skb->data + ETH_ALEN, NULL); |
Javier Cardona | 3c5772a | 2009-08-10 12:15:48 -0700 | [diff] [blame] | 1965 | else |
Thomas Pedersen | 27f0112 | 2012-08-20 11:28:25 -0700 | [diff] [blame] | 1966 | /* RA TA mDA mSA AE:DA SA */ |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 1967 | meshhdrlen = ieee80211_new_mesh_header( |
| 1968 | sdata, &mesh_hdr, skb->data, |
| 1969 | skb->data + ETH_ALEN); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 1970 | |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 1971 | } |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1972 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 1973 | if (!chanctx_conf) { |
| 1974 | ret = -ENOTCONN; |
| 1975 | goto free; |
| 1976 | } |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 1977 | band = chanctx_conf->def.chan->band; |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 1978 | break; |
| 1979 | #endif |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1980 | case NL80211_IFTYPE_STATION: |
Arik Nemtsov | 941c93c | 2011-09-28 14:12:54 +0300 | [diff] [blame] | 1981 | if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) { |
Arik Nemtsov | 941c93c | 2011-09-28 14:12:54 +0300 | [diff] [blame] | 1982 | sta = sta_info_get(sdata, skb->data); |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1983 | if (sta) { |
| 1984 | authorized = test_sta_flag(sta, |
| 1985 | WLAN_STA_AUTHORIZED); |
Johannes Berg | a74a8c8 | 2014-07-22 14:50:47 +0200 | [diff] [blame] | 1986 | wme_sta = sta->sta.wme; |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1987 | tdls_peer = test_sta_flag(sta, |
Arik Nemtsov | 9deba04 | 2014-06-11 17:18:18 +0300 | [diff] [blame] | 1988 | WLAN_STA_TDLS_PEER); |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1989 | tdls_auth = test_sta_flag(sta, |
| 1990 | WLAN_STA_TDLS_PEER_AUTH); |
| 1991 | } |
Arik Nemtsov | 941c93c | 2011-09-28 14:12:54 +0300 | [diff] [blame] | 1992 | |
Arik Nemtsov | 9deba04 | 2014-06-11 17:18:18 +0300 | [diff] [blame] | 1993 | if (tdls_peer) |
| 1994 | tdls_setup_frame = |
| 1995 | ethertype == ETH_P_TDLS && |
| 1996 | skb->len > 14 && |
| 1997 | skb->data[14] == WLAN_TDLS_SNAP_RFTYPE; |
Arik Nemtsov | 941c93c | 2011-09-28 14:12:54 +0300 | [diff] [blame] | 1998 | } |
| 1999 | |
Arik Nemtsov | 9deba04 | 2014-06-11 17:18:18 +0300 | [diff] [blame] | 2000 | /* |
| 2001 | * TDLS link during setup - throw out frames to peer. We allow |
| 2002 | * TDLS-setup frames to unauthorized peers for the special case |
| 2003 | * of a link teardown after a TDLS sta is removed due to being |
| 2004 | * unreachable. |
| 2005 | */ |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2006 | if (tdls_peer && !tdls_auth && !tdls_setup_frame) { |
| 2007 | ret = -EINVAL; |
| 2008 | goto free; |
| 2009 | } |
Arik Nemtsov | 941c93c | 2011-09-28 14:12:54 +0300 | [diff] [blame] | 2010 | |
Arik Nemtsov | 9deba04 | 2014-06-11 17:18:18 +0300 | [diff] [blame] | 2011 | /* send direct packets to authorized TDLS peers */ |
| 2012 | if (tdls_peer && tdls_auth) { |
Arik Nemtsov | 941c93c | 2011-09-28 14:12:54 +0300 | [diff] [blame] | 2013 | /* DA SA BSSID */ |
| 2014 | memcpy(hdr.addr1, skb->data, ETH_ALEN); |
| 2015 | memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN); |
| 2016 | memcpy(hdr.addr3, sdata->u.mgd.bssid, ETH_ALEN); |
| 2017 | hdrlen = 24; |
| 2018 | } else if (sdata->u.mgd.use_4addr && |
| 2019 | cpu_to_be16(ethertype) != sdata->control_port_protocol) { |
| 2020 | fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | |
| 2021 | IEEE80211_FCTL_TODS); |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 2022 | /* RA TA DA SA */ |
Arik Nemtsov | 941c93c | 2011-09-28 14:12:54 +0300 | [diff] [blame] | 2023 | memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 2024 | memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN); |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 2025 | memcpy(hdr.addr3, skb->data, ETH_ALEN); |
| 2026 | memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN); |
| 2027 | hdrlen = 30; |
| 2028 | } else { |
| 2029 | fc |= cpu_to_le16(IEEE80211_FCTL_TODS); |
| 2030 | /* BSSID SA DA */ |
Arik Nemtsov | 941c93c | 2011-09-28 14:12:54 +0300 | [diff] [blame] | 2031 | memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN); |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 2032 | memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN); |
| 2033 | memcpy(hdr.addr3, skb->data, ETH_ALEN); |
| 2034 | hdrlen = 24; |
| 2035 | } |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2036 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2037 | if (!chanctx_conf) { |
| 2038 | ret = -ENOTCONN; |
| 2039 | goto free; |
| 2040 | } |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 2041 | band = chanctx_conf->def.chan->band; |
Johannes Berg | cf96683 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 2042 | break; |
Rostislav Lisovy | 239281f | 2014-11-03 10:33:19 +0100 | [diff] [blame] | 2043 | case NL80211_IFTYPE_OCB: |
| 2044 | /* DA SA BSSID */ |
| 2045 | memcpy(hdr.addr1, skb->data, ETH_ALEN); |
| 2046 | memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN); |
| 2047 | eth_broadcast_addr(hdr.addr3); |
| 2048 | hdrlen = 24; |
| 2049 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2050 | if (!chanctx_conf) { |
| 2051 | ret = -ENOTCONN; |
| 2052 | goto free; |
| 2053 | } |
Rostislav Lisovy | 239281f | 2014-11-03 10:33:19 +0100 | [diff] [blame] | 2054 | band = chanctx_conf->def.chan->band; |
| 2055 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2056 | case NL80211_IFTYPE_ADHOC: |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2057 | /* DA SA BSSID */ |
| 2058 | memcpy(hdr.addr1, skb->data, ETH_ALEN); |
| 2059 | memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2060 | memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2061 | hdrlen = 24; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2062 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2063 | if (!chanctx_conf) { |
| 2064 | ret = -ENOTCONN; |
| 2065 | goto free; |
| 2066 | } |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 2067 | band = chanctx_conf->def.chan->band; |
Johannes Berg | cf96683 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 2068 | break; |
| 2069 | default: |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2070 | ret = -EINVAL; |
| 2071 | goto free; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2072 | } |
| 2073 | |
Johannes Berg | 7d185b8 | 2008-01-28 17:11:43 +0100 | [diff] [blame] | 2074 | /* |
| 2075 | * There's no need to try to look up the destination |
| 2076 | * if it is a multicast address (which can only happen |
| 2077 | * in AP mode) |
| 2078 | */ |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2079 | multicast = is_multicast_ether_addr(hdr.addr1); |
| 2080 | if (!multicast) { |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 2081 | sta = sta_info_get(sdata, hdr.addr1); |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 2082 | if (sta) { |
| 2083 | authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED); |
Johannes Berg | a74a8c8 | 2014-07-22 14:50:47 +0200 | [diff] [blame] | 2084 | wme_sta = sta->sta.wme; |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 2085 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2086 | } |
| 2087 | |
Javier Cardona | 4777be4 | 2011-09-07 17:49:52 -0700 | [diff] [blame] | 2088 | /* For mesh, the use of the QoS header is mandatory */ |
| 2089 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 2090 | wme_sta = true; |
Javier Cardona | 4777be4 | 2011-09-07 17:49:52 -0700 | [diff] [blame] | 2091 | |
Johannes Berg | 3434fbd | 2008-05-03 00:59:37 +0200 | [diff] [blame] | 2092 | /* receiver and we are QoS enabled, use a QoS type frame */ |
Johannes Berg | 32c5057 | 2012-03-28 11:04:29 +0200 | [diff] [blame] | 2093 | if (wme_sta && local->hw.queues >= IEEE80211_NUM_ACS) { |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 2094 | fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA); |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 2095 | hdrlen += 2; |
| 2096 | } |
| 2097 | |
| 2098 | /* |
Johannes Berg | 238814f | 2008-01-28 17:19:37 +0100 | [diff] [blame] | 2099 | * Drop unicast frames to unauthorised stations unless they are |
| 2100 | * EAPOL frames from the local station. |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 2101 | */ |
Johannes Berg | 55182e4 | 2011-10-12 17:28:21 +0200 | [diff] [blame] | 2102 | if (unlikely(!ieee80211_vif_is_mesh(&sdata->vif) && |
Rostislav Lisovy | 239281f | 2014-11-03 10:33:19 +0100 | [diff] [blame] | 2103 | (sdata->vif.type != NL80211_IFTYPE_OCB) && |
Sergey Ryazanov | a6ececf | 2013-08-30 01:35:09 +0400 | [diff] [blame] | 2104 | !multicast && !authorized && |
Johannes Berg | 55182e4 | 2011-10-12 17:28:21 +0200 | [diff] [blame] | 2105 | (cpu_to_be16(ethertype) != sdata->control_port_protocol || |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 2106 | !ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN)))) { |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 2107 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 2108 | net_info_ratelimited("%s: dropped frame to %pM (unauthorized port)\n", |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2109 | sdata->name, hdr.addr1); |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 2110 | #endif |
| 2111 | |
| 2112 | I802_DEBUG_INC(local->tx_handlers_drop_unauth_port); |
| 2113 | |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2114 | ret = -EPERM; |
| 2115 | goto free; |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 2116 | } |
| 2117 | |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2118 | if (unlikely(!multicast && skb->sk && |
| 2119 | skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS)) { |
Alexander Duyck | bf7fa55 | 2014-09-10 18:05:42 -0400 | [diff] [blame] | 2120 | struct sk_buff *ack_skb = skb_clone_sk(skb); |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2121 | |
Alexander Duyck | bf7fa55 | 2014-09-10 18:05:42 -0400 | [diff] [blame] | 2122 | if (ack_skb) { |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2123 | unsigned long flags; |
Tejun Heo | 9475af6 | 2013-02-27 17:04:59 -0800 | [diff] [blame] | 2124 | int id; |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2125 | |
| 2126 | spin_lock_irqsave(&local->ack_status_lock, flags); |
Alexander Duyck | bf7fa55 | 2014-09-10 18:05:42 -0400 | [diff] [blame] | 2127 | id = idr_alloc(&local->ack_status_frames, ack_skb, |
Tejun Heo | 9475af6 | 2013-02-27 17:04:59 -0800 | [diff] [blame] | 2128 | 1, 0x10000, GFP_ATOMIC); |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2129 | spin_unlock_irqrestore(&local->ack_status_lock, flags); |
| 2130 | |
Tejun Heo | 9475af6 | 2013-02-27 17:04:59 -0800 | [diff] [blame] | 2131 | if (id >= 0) { |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2132 | info_id = id; |
| 2133 | info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS; |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2134 | } else { |
Alexander Duyck | bf7fa55 | 2014-09-10 18:05:42 -0400 | [diff] [blame] | 2135 | kfree_skb(ack_skb); |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2136 | } |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2137 | } |
| 2138 | } |
| 2139 | |
Helmut Schaa | 7e24470 | 2010-12-02 18:44:09 +0100 | [diff] [blame] | 2140 | /* |
| 2141 | * If the skb is shared we need to obtain our own copy. |
| 2142 | */ |
| 2143 | if (skb_shared(skb)) { |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2144 | struct sk_buff *tmp_skb = skb; |
| 2145 | |
| 2146 | /* can't happen -- skb is a clone if info_id != 0 */ |
| 2147 | WARN_ON(info_id); |
| 2148 | |
Felix Fietkau | f8a0a78 | 2010-12-18 19:30:50 +0100 | [diff] [blame] | 2149 | skb = skb_clone(skb, GFP_ATOMIC); |
Helmut Schaa | 7e24470 | 2010-12-02 18:44:09 +0100 | [diff] [blame] | 2150 | kfree_skb(tmp_skb); |
| 2151 | |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2152 | if (!skb) { |
| 2153 | ret = -ENOMEM; |
| 2154 | goto free; |
| 2155 | } |
Helmut Schaa | 7e24470 | 2010-12-02 18:44:09 +0100 | [diff] [blame] | 2156 | } |
| 2157 | |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 2158 | hdr.frame_control = fc; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2159 | hdr.duration_id = 0; |
| 2160 | hdr.seq_ctrl = 0; |
| 2161 | |
| 2162 | skip_header_bytes = ETH_HLEN; |
| 2163 | if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) { |
| 2164 | encaps_data = bridge_tunnel_header; |
| 2165 | encaps_len = sizeof(bridge_tunnel_header); |
| 2166 | skip_header_bytes -= 2; |
Simon Horman | e5c5d22 | 2013-03-28 13:38:25 +0900 | [diff] [blame] | 2167 | } else if (ethertype >= ETH_P_802_3_MIN) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2168 | encaps_data = rfc1042_header; |
| 2169 | encaps_len = sizeof(rfc1042_header); |
| 2170 | skip_header_bytes -= 2; |
| 2171 | } else { |
| 2172 | encaps_data = NULL; |
| 2173 | encaps_len = 0; |
| 2174 | } |
| 2175 | |
Helmut Schaa | 7e24470 | 2010-12-02 18:44:09 +0100 | [diff] [blame] | 2176 | nh_pos = skb_network_header(skb) - skb->data; |
| 2177 | h_pos = skb_transport_header(skb) - skb->data; |
| 2178 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2179 | skb_pull(skb, skip_header_bytes); |
| 2180 | nh_pos -= skip_header_bytes; |
| 2181 | h_pos -= skip_header_bytes; |
| 2182 | |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 2183 | head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2184 | |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 2185 | /* |
| 2186 | * So we need to modify the skb header and hence need a copy of |
| 2187 | * that. The head_need variable above doesn't, so far, include |
| 2188 | * the needed header space that we don't need right away. If we |
| 2189 | * can, then we don't reallocate right now but only after the |
| 2190 | * frame arrives at the master device (if it does...) |
| 2191 | * |
| 2192 | * If we cannot, however, then we will reallocate to include all |
| 2193 | * the ever needed space. Also, if we need to reallocate it anyway, |
| 2194 | * make it big enough for everything we may ever need. |
| 2195 | */ |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2196 | |
David S. Miller | 3a5be7d | 2008-06-18 01:19:51 -0700 | [diff] [blame] | 2197 | if (head_need > 0 || skb_cloned(skb)) { |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 2198 | head_need += sdata->encrypt_headroom; |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 2199 | head_need += local->tx_headroom; |
| 2200 | head_need = max_t(int, 0, head_need); |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 2201 | if (ieee80211_skb_resize(sdata, skb, head_need, true)) { |
| 2202 | ieee80211_free_txskb(&local->hw, skb); |
Johannes Berg | 1c963be | 2012-11-07 14:02:30 +0100 | [diff] [blame] | 2203 | skb = NULL; |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2204 | return ERR_PTR(-ENOMEM); |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 2205 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2206 | } |
| 2207 | |
| 2208 | if (encaps_data) { |
| 2209 | memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len); |
| 2210 | nh_pos += encaps_len; |
| 2211 | h_pos += encaps_len; |
| 2212 | } |
Johannes Berg | c29b9b9 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 2213 | |
Yuri Ershov | e4ab7eb | 2010-06-29 15:08:06 +0400 | [diff] [blame] | 2214 | #ifdef CONFIG_MAC80211_MESH |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 2215 | if (meshhdrlen > 0) { |
| 2216 | memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen); |
| 2217 | nh_pos += meshhdrlen; |
| 2218 | h_pos += meshhdrlen; |
| 2219 | } |
Yuri Ershov | e4ab7eb | 2010-06-29 15:08:06 +0400 | [diff] [blame] | 2220 | #endif |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 2221 | |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 2222 | if (ieee80211_is_data_qos(fc)) { |
Johannes Berg | c29b9b9 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 2223 | __le16 *qos_control; |
| 2224 | |
Weilong Chen | f359d3f | 2013-12-18 15:44:16 +0800 | [diff] [blame] | 2225 | qos_control = (__le16 *) skb_push(skb, 2); |
Johannes Berg | c29b9b9 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 2226 | memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2); |
| 2227 | /* |
| 2228 | * Maybe we could actually set some fields here, for now just |
| 2229 | * initialise to zero to indicate no special operation. |
| 2230 | */ |
| 2231 | *qos_control = 0; |
| 2232 | } else |
| 2233 | memcpy(skb_push(skb, hdrlen), &hdr, hdrlen); |
| 2234 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2235 | nh_pos += hdrlen; |
| 2236 | h_pos += hdrlen; |
| 2237 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2238 | /* Update skb pointers to various headers since this modified frame |
| 2239 | * is going to go through Linux networking code that may potentially |
| 2240 | * need things like pointer to IP header. */ |
| 2241 | skb_set_mac_header(skb, 0); |
| 2242 | skb_set_network_header(skb, nh_pos); |
| 2243 | skb_set_transport_header(skb, h_pos); |
| 2244 | |
Felix Fietkau | 489ee91 | 2010-12-18 19:30:48 +0100 | [diff] [blame] | 2245 | info = IEEE80211_SKB_CB(skb); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 2246 | memset(info, 0, sizeof(*info)); |
| 2247 | |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2248 | info->flags = info_flags; |
| 2249 | info->ack_frame_id = info_id; |
Johannes Berg | 73c4e19 | 2014-11-09 18:50:09 +0200 | [diff] [blame] | 2250 | info->band = band; |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2251 | |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2252 | return skb; |
| 2253 | free: |
| 2254 | kfree_skb(skb); |
| 2255 | return ERR_PTR(ret); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2256 | } |
| 2257 | |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2258 | void __ieee80211_subif_start_xmit(struct sk_buff *skb, |
| 2259 | struct net_device *dev, |
| 2260 | u32 info_flags) |
| 2261 | { |
| 2262 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2263 | struct ieee80211_local *local = sdata->local; |
| 2264 | |
| 2265 | if (unlikely(skb->len < ETH_HLEN)) { |
| 2266 | kfree_skb(skb); |
| 2267 | return; |
| 2268 | } |
| 2269 | |
| 2270 | rcu_read_lock(); |
| 2271 | |
| 2272 | /* Measure frame arrival for Tx latency statistics calculation */ |
| 2273 | ieee80211_tx_latency_start_msrmnt(local, skb); |
| 2274 | |
| 2275 | skb = ieee80211_build_hdr(sdata, skb, info_flags); |
| 2276 | if (IS_ERR(skb)) |
| 2277 | goto out; |
| 2278 | |
| 2279 | dev->stats.tx_packets++; |
| 2280 | dev->stats.tx_bytes += skb->len; |
| 2281 | dev->trans_start = jiffies; |
| 2282 | |
| 2283 | ieee80211_xmit(sdata, skb); |
| 2284 | out: |
| 2285 | rcu_read_unlock(); |
| 2286 | } |
| 2287 | |
| 2288 | /** |
| 2289 | * ieee80211_subif_start_xmit - netif start_xmit function for 802.3 vifs |
| 2290 | * @skb: packet to be sent |
| 2291 | * @dev: incoming interface |
| 2292 | * |
| 2293 | * On failure skb will be freed. |
| 2294 | */ |
Liad Kaufman | 24d342c | 2014-11-09 18:50:07 +0200 | [diff] [blame] | 2295 | netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb, |
| 2296 | struct net_device *dev) |
| 2297 | { |
| 2298 | __ieee80211_subif_start_xmit(skb, dev, 0); |
| 2299 | return NETDEV_TX_OK; |
| 2300 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2301 | |
Johannes Berg | 7528ec5 | 2014-11-09 18:50:11 +0200 | [diff] [blame] | 2302 | struct sk_buff * |
| 2303 | ieee80211_build_data_template(struct ieee80211_sub_if_data *sdata, |
| 2304 | struct sk_buff *skb, u32 info_flags) |
| 2305 | { |
| 2306 | struct ieee80211_hdr *hdr; |
| 2307 | struct ieee80211_tx_data tx = { |
| 2308 | .local = sdata->local, |
| 2309 | .sdata = sdata, |
| 2310 | }; |
| 2311 | |
| 2312 | rcu_read_lock(); |
| 2313 | |
| 2314 | skb = ieee80211_build_hdr(sdata, skb, info_flags); |
| 2315 | if (IS_ERR(skb)) |
| 2316 | goto out; |
| 2317 | |
| 2318 | hdr = (void *)skb->data; |
| 2319 | tx.sta = sta_info_get(sdata, hdr->addr1); |
| 2320 | tx.skb = skb; |
| 2321 | |
| 2322 | if (ieee80211_tx_h_select_key(&tx) != TX_CONTINUE) { |
| 2323 | rcu_read_unlock(); |
| 2324 | kfree_skb(skb); |
| 2325 | return ERR_PTR(-EINVAL); |
| 2326 | } |
| 2327 | |
| 2328 | out: |
| 2329 | rcu_read_unlock(); |
| 2330 | return skb; |
| 2331 | } |
| 2332 | |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 2333 | /* |
| 2334 | * ieee80211_clear_tx_pending may not be called in a context where |
| 2335 | * it is possible that it packets could come in again. |
| 2336 | */ |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2337 | void ieee80211_clear_tx_pending(struct ieee80211_local *local) |
| 2338 | { |
Felix Fietkau | 1f98ab7 | 2012-11-10 03:44:14 +0100 | [diff] [blame] | 2339 | struct sk_buff *skb; |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 2340 | int i; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2341 | |
Felix Fietkau | 1f98ab7 | 2012-11-10 03:44:14 +0100 | [diff] [blame] | 2342 | for (i = 0; i < local->hw.queues; i++) { |
| 2343 | while ((skb = skb_dequeue(&local->pending[i])) != NULL) |
| 2344 | ieee80211_free_txskb(&local->hw, skb); |
| 2345 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2346 | } |
| 2347 | |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 2348 | /* |
| 2349 | * Returns false if the frame couldn't be transmitted but was queued instead, |
| 2350 | * which in this case means re-queued -- take as an indication to stop sending |
| 2351 | * more pending frames. |
| 2352 | */ |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 2353 | static bool ieee80211_tx_pending_skb(struct ieee80211_local *local, |
| 2354 | struct sk_buff *skb) |
| 2355 | { |
| 2356 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 2357 | struct ieee80211_sub_if_data *sdata; |
| 2358 | struct sta_info *sta; |
| 2359 | struct ieee80211_hdr *hdr; |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 2360 | bool result; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2361 | struct ieee80211_chanctx_conf *chanctx_conf; |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 2362 | |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 2363 | sdata = vif_to_sdata(info->control.vif); |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 2364 | |
| 2365 | if (info->flags & IEEE80211_TX_INTFL_NEED_TXPROCESSING) { |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2366 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
| 2367 | if (unlikely(!chanctx_conf)) { |
| 2368 | dev_kfree_skb(skb); |
| 2369 | return true; |
| 2370 | } |
Johannes Berg | 73c4e19 | 2014-11-09 18:50:09 +0200 | [diff] [blame] | 2371 | info->band = chanctx_conf->def.chan->band; |
| 2372 | result = ieee80211_tx(sdata, skb, true); |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 2373 | } else { |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 2374 | struct sk_buff_head skbs; |
| 2375 | |
| 2376 | __skb_queue_head_init(&skbs); |
| 2377 | __skb_queue_tail(&skbs, skb); |
| 2378 | |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 2379 | hdr = (struct ieee80211_hdr *)skb->data; |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 2380 | sta = sta_info_get(sdata, hdr->addr1); |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 2381 | |
Johannes Berg | 74e4dbf | 2011-11-16 15:28:57 +0100 | [diff] [blame] | 2382 | result = __ieee80211_tx(local, &skbs, skb->len, sta, true); |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 2383 | } |
| 2384 | |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 2385 | return result; |
| 2386 | } |
| 2387 | |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 2388 | /* |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 2389 | * Transmit all pending packets. Called from tasklet. |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 2390 | */ |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2391 | void ieee80211_tx_pending(unsigned long data) |
| 2392 | { |
| 2393 | struct ieee80211_local *local = (struct ieee80211_local *)data; |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 2394 | unsigned long flags; |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 2395 | int i; |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 2396 | bool txok; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2397 | |
Johannes Berg | f0e7285 | 2009-03-23 17:28:36 +0100 | [diff] [blame] | 2398 | rcu_read_lock(); |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 2399 | |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 2400 | spin_lock_irqsave(&local->queue_stop_reason_lock, flags); |
Johannes Berg | 176be72 | 2009-03-12 23:49:28 +0100 | [diff] [blame] | 2401 | for (i = 0; i < local->hw.queues; i++) { |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 2402 | /* |
| 2403 | * If queue is stopped by something other than due to pending |
| 2404 | * frames, or we have no pending frames, proceed to next queue. |
| 2405 | */ |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 2406 | if (local->queue_stop_reasons[i] || |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 2407 | skb_queue_empty(&local->pending[i])) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2408 | continue; |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 2409 | |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 2410 | while (!skb_queue_empty(&local->pending[i])) { |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 2411 | struct sk_buff *skb = __skb_dequeue(&local->pending[i]); |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 2412 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 2413 | |
Johannes Berg | a7bc376 | 2009-07-27 10:33:31 +0200 | [diff] [blame] | 2414 | if (WARN_ON(!info->control.vif)) { |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 2415 | ieee80211_free_txskb(&local->hw, skb); |
Johannes Berg | a7bc376 | 2009-07-27 10:33:31 +0200 | [diff] [blame] | 2416 | continue; |
| 2417 | } |
| 2418 | |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 2419 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, |
| 2420 | flags); |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 2421 | |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 2422 | txok = ieee80211_tx_pending_skb(local, skb); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 2423 | spin_lock_irqsave(&local->queue_stop_reason_lock, |
| 2424 | flags); |
| 2425 | if (!txok) |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 2426 | break; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2427 | } |
Johannes Berg | 7236fe2 | 2010-03-22 13:42:43 -0700 | [diff] [blame] | 2428 | |
| 2429 | if (skb_queue_empty(&local->pending[i])) |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 2430 | ieee80211_propagate_queue_wake(local, i); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2431 | } |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 2432 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 2433 | |
Johannes Berg | f0e7285 | 2009-03-23 17:28:36 +0100 | [diff] [blame] | 2434 | rcu_read_unlock(); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2435 | } |
| 2436 | |
| 2437 | /* functions for drivers to get certain frames */ |
| 2438 | |
Marco Porsch | eac70c1 | 2013-01-07 16:04:50 +0100 | [diff] [blame] | 2439 | static void __ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata, |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 2440 | struct ps_data *ps, struct sk_buff *skb, |
| 2441 | bool is_template) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2442 | { |
| 2443 | u8 *pos, *tim; |
| 2444 | int aid0 = 0; |
| 2445 | int i, have_bits = 0, n1, n2; |
| 2446 | |
| 2447 | /* Generate bitmap for TIM only if there are any STAs in power save |
| 2448 | * mode. */ |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 2449 | if (atomic_read(&ps->num_sta_ps) > 0) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2450 | /* in the hope that this is faster than |
| 2451 | * checking byte-for-byte */ |
Weilong Chen | f359d3f | 2013-12-18 15:44:16 +0800 | [diff] [blame] | 2452 | have_bits = !bitmap_empty((unsigned long *)ps->tim, |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2453 | IEEE80211_MAX_AID+1); |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 2454 | if (!is_template) { |
| 2455 | if (ps->dtim_count == 0) |
| 2456 | ps->dtim_count = sdata->vif.bss_conf.dtim_period - 1; |
| 2457 | else |
| 2458 | ps->dtim_count--; |
| 2459 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2460 | |
| 2461 | tim = pos = (u8 *) skb_put(skb, 6); |
| 2462 | *pos++ = WLAN_EID_TIM; |
| 2463 | *pos++ = 4; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 2464 | *pos++ = ps->dtim_count; |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2465 | *pos++ = sdata->vif.bss_conf.dtim_period; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2466 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 2467 | if (ps->dtim_count == 0 && !skb_queue_empty(&ps->bc_buf)) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2468 | aid0 = 1; |
| 2469 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 2470 | ps->dtim_bc_mc = aid0 == 1; |
Christian Lamparter | 512119b | 2011-01-31 20:48:44 +0200 | [diff] [blame] | 2471 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2472 | if (have_bits) { |
| 2473 | /* Find largest even number N1 so that bits numbered 1 through |
| 2474 | * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits |
| 2475 | * (N2 + 1) x 8 through 2007 are 0. */ |
| 2476 | n1 = 0; |
| 2477 | for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) { |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 2478 | if (ps->tim[i]) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2479 | n1 = i & 0xfe; |
| 2480 | break; |
| 2481 | } |
| 2482 | } |
| 2483 | n2 = n1; |
| 2484 | for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) { |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 2485 | if (ps->tim[i]) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2486 | n2 = i; |
| 2487 | break; |
| 2488 | } |
| 2489 | } |
| 2490 | |
| 2491 | /* Bitmap control */ |
| 2492 | *pos++ = n1 | aid0; |
| 2493 | /* Part Virt Bitmap */ |
Eliad Peller | 5220da3 | 2011-11-24 16:50:00 +0200 | [diff] [blame] | 2494 | skb_put(skb, n2 - n1); |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 2495 | memcpy(pos, ps->tim + n1, n2 - n1 + 1); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2496 | |
| 2497 | tim[1] = n2 - n1 + 4; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2498 | } else { |
| 2499 | *pos++ = aid0; /* Bitmap control */ |
| 2500 | *pos++ = 0; /* Part Virt Bitmap */ |
| 2501 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2502 | } |
| 2503 | |
Marco Porsch | eac70c1 | 2013-01-07 16:04:50 +0100 | [diff] [blame] | 2504 | static int ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata, |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 2505 | struct ps_data *ps, struct sk_buff *skb, |
| 2506 | bool is_template) |
Marco Porsch | eac70c1 | 2013-01-07 16:04:50 +0100 | [diff] [blame] | 2507 | { |
| 2508 | struct ieee80211_local *local = sdata->local; |
| 2509 | |
| 2510 | /* |
| 2511 | * Not very nice, but we want to allow the driver to call |
| 2512 | * ieee80211_beacon_get() as a response to the set_tim() |
| 2513 | * callback. That, however, is already invoked under the |
| 2514 | * sta_lock to guarantee consistent and race-free update |
| 2515 | * of the tim bitmap in mac80211 and the driver. |
| 2516 | */ |
| 2517 | if (local->tim_in_locked_section) { |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 2518 | __ieee80211_beacon_add_tim(sdata, ps, skb, is_template); |
Marco Porsch | eac70c1 | 2013-01-07 16:04:50 +0100 | [diff] [blame] | 2519 | } else { |
Johannes Berg | 1b91731 | 2013-02-22 12:55:01 +0100 | [diff] [blame] | 2520 | spin_lock_bh(&local->tim_lock); |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 2521 | __ieee80211_beacon_add_tim(sdata, ps, skb, is_template); |
Johannes Berg | 1b91731 | 2013-02-22 12:55:01 +0100 | [diff] [blame] | 2522 | spin_unlock_bh(&local->tim_lock); |
Marco Porsch | eac70c1 | 2013-01-07 16:04:50 +0100 | [diff] [blame] | 2523 | } |
| 2524 | |
| 2525 | return 0; |
| 2526 | } |
| 2527 | |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 2528 | static void ieee80211_set_csa(struct ieee80211_sub_if_data *sdata, |
| 2529 | struct beacon_data *beacon) |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2530 | { |
| 2531 | struct probe_resp *resp; |
Simon Wunderlich | cd7760e | 2013-08-28 13:41:31 +0200 | [diff] [blame] | 2532 | u8 *beacon_data; |
| 2533 | size_t beacon_data_len; |
Andrei Otcheretianski | 0d06d9b | 2014-05-09 14:11:47 +0300 | [diff] [blame] | 2534 | int i; |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2535 | u8 count = beacon->csa_current_counter; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2536 | |
Simon Wunderlich | cd7760e | 2013-08-28 13:41:31 +0200 | [diff] [blame] | 2537 | switch (sdata->vif.type) { |
| 2538 | case NL80211_IFTYPE_AP: |
| 2539 | beacon_data = beacon->tail; |
| 2540 | beacon_data_len = beacon->tail_len; |
| 2541 | break; |
| 2542 | case NL80211_IFTYPE_ADHOC: |
| 2543 | beacon_data = beacon->head; |
| 2544 | beacon_data_len = beacon->head_len; |
| 2545 | break; |
Chun-Yeow Yeoh | b8456a1 | 2013-10-17 15:55:02 -0700 | [diff] [blame] | 2546 | case NL80211_IFTYPE_MESH_POINT: |
| 2547 | beacon_data = beacon->head; |
| 2548 | beacon_data_len = beacon->head_len; |
| 2549 | break; |
Simon Wunderlich | cd7760e | 2013-08-28 13:41:31 +0200 | [diff] [blame] | 2550 | default: |
| 2551 | return; |
| 2552 | } |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2553 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2554 | rcu_read_lock(); |
Andrei Otcheretianski | 0d06d9b | 2014-05-09 14:11:47 +0300 | [diff] [blame] | 2555 | for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; ++i) { |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2556 | resp = rcu_dereference(sdata->u.ap.probe_resp); |
Andrei Otcheretianski | 0d06d9b | 2014-05-09 14:11:47 +0300 | [diff] [blame] | 2557 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2558 | if (beacon->csa_counter_offsets[i]) { |
| 2559 | if (WARN_ON_ONCE(beacon->csa_counter_offsets[i] >= |
| 2560 | beacon_data_len)) { |
Andrei Otcheretianski | 0d06d9b | 2014-05-09 14:11:47 +0300 | [diff] [blame] | 2561 | rcu_read_unlock(); |
| 2562 | return; |
| 2563 | } |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2564 | |
| 2565 | beacon_data[beacon->csa_counter_offsets[i]] = count; |
Andrei Otcheretianski | 0d06d9b | 2014-05-09 14:11:47 +0300 | [diff] [blame] | 2566 | } |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2567 | |
| 2568 | if (sdata->vif.type == NL80211_IFTYPE_AP && resp) |
| 2569 | resp->data[resp->csa_counter_offsets[i]] = count; |
Andrei Otcheretianski | 0d06d9b | 2014-05-09 14:11:47 +0300 | [diff] [blame] | 2570 | } |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2571 | rcu_read_unlock(); |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 2572 | } |
| 2573 | |
| 2574 | u8 ieee80211_csa_update_counter(struct ieee80211_vif *vif) |
| 2575 | { |
| 2576 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2577 | struct beacon_data *beacon = NULL; |
| 2578 | u8 count = 0; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2579 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2580 | rcu_read_lock(); |
| 2581 | |
| 2582 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
| 2583 | beacon = rcu_dereference(sdata->u.ap.beacon); |
| 2584 | else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) |
| 2585 | beacon = rcu_dereference(sdata->u.ibss.presp); |
| 2586 | else if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 2587 | beacon = rcu_dereference(sdata->u.mesh.beacon); |
| 2588 | |
| 2589 | if (!beacon) |
| 2590 | goto unlock; |
| 2591 | |
| 2592 | beacon->csa_current_counter--; |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 2593 | |
| 2594 | /* the counter should never reach 0 */ |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2595 | WARN_ON_ONCE(!beacon->csa_current_counter); |
| 2596 | count = beacon->csa_current_counter; |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 2597 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2598 | unlock: |
| 2599 | rcu_read_unlock(); |
| 2600 | return count; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2601 | } |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 2602 | EXPORT_SYMBOL(ieee80211_csa_update_counter); |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2603 | |
| 2604 | bool ieee80211_csa_is_complete(struct ieee80211_vif *vif) |
| 2605 | { |
| 2606 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
| 2607 | struct beacon_data *beacon = NULL; |
| 2608 | u8 *beacon_data; |
| 2609 | size_t beacon_data_len; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2610 | int ret = false; |
| 2611 | |
| 2612 | if (!ieee80211_sdata_running(sdata)) |
| 2613 | return false; |
| 2614 | |
| 2615 | rcu_read_lock(); |
| 2616 | if (vif->type == NL80211_IFTYPE_AP) { |
| 2617 | struct ieee80211_if_ap *ap = &sdata->u.ap; |
| 2618 | |
| 2619 | beacon = rcu_dereference(ap->beacon); |
| 2620 | if (WARN_ON(!beacon || !beacon->tail)) |
| 2621 | goto out; |
| 2622 | beacon_data = beacon->tail; |
| 2623 | beacon_data_len = beacon->tail_len; |
Simon Wunderlich | cd7760e | 2013-08-28 13:41:31 +0200 | [diff] [blame] | 2624 | } else if (vif->type == NL80211_IFTYPE_ADHOC) { |
| 2625 | struct ieee80211_if_ibss *ifibss = &sdata->u.ibss; |
| 2626 | |
| 2627 | beacon = rcu_dereference(ifibss->presp); |
| 2628 | if (!beacon) |
| 2629 | goto out; |
| 2630 | |
| 2631 | beacon_data = beacon->head; |
| 2632 | beacon_data_len = beacon->head_len; |
Chun-Yeow Yeoh | b8456a1 | 2013-10-17 15:55:02 -0700 | [diff] [blame] | 2633 | } else if (vif->type == NL80211_IFTYPE_MESH_POINT) { |
| 2634 | struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; |
| 2635 | |
| 2636 | beacon = rcu_dereference(ifmsh->beacon); |
| 2637 | if (!beacon) |
| 2638 | goto out; |
| 2639 | |
| 2640 | beacon_data = beacon->head; |
| 2641 | beacon_data_len = beacon->head_len; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2642 | } else { |
| 2643 | WARN_ON(1); |
| 2644 | goto out; |
| 2645 | } |
| 2646 | |
Michal Kazior | 10d78f2 | 2014-06-05 14:21:37 +0200 | [diff] [blame] | 2647 | if (!beacon->csa_counter_offsets[0]) |
| 2648 | goto out; |
| 2649 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2650 | if (WARN_ON_ONCE(beacon->csa_counter_offsets[0] > beacon_data_len)) |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2651 | goto out; |
| 2652 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2653 | if (beacon_data[beacon->csa_counter_offsets[0]] == 1) |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2654 | ret = true; |
| 2655 | out: |
| 2656 | rcu_read_unlock(); |
| 2657 | |
| 2658 | return ret; |
| 2659 | } |
| 2660 | EXPORT_SYMBOL(ieee80211_csa_is_complete); |
| 2661 | |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 2662 | static struct sk_buff * |
| 2663 | __ieee80211_beacon_get(struct ieee80211_hw *hw, |
| 2664 | struct ieee80211_vif *vif, |
| 2665 | struct ieee80211_mutable_offsets *offs, |
| 2666 | bool is_template) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2667 | { |
| 2668 | struct ieee80211_local *local = hw_to_local(hw); |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2669 | struct beacon_data *beacon = NULL; |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 2670 | struct sk_buff *skb = NULL; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2671 | struct ieee80211_tx_info *info; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2672 | struct ieee80211_sub_if_data *sdata = NULL; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2673 | enum ieee80211_band band; |
Jouni Malinen | e00cfce | 2009-12-29 12:59:19 +0200 | [diff] [blame] | 2674 | struct ieee80211_tx_rate_control txrc; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2675 | struct ieee80211_chanctx_conf *chanctx_conf; |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 2676 | int csa_off_base = 0; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2677 | |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 2678 | rcu_read_lock(); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2679 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 2680 | sdata = vif_to_sdata(vif); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2681 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2682 | |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2683 | if (!ieee80211_sdata_running(sdata) || !chanctx_conf) |
Felix Fietkau | eb3e554 | 2011-01-24 19:28:49 +0100 | [diff] [blame] | 2684 | goto out; |
| 2685 | |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 2686 | if (offs) |
| 2687 | memset(offs, 0, sizeof(*offs)); |
Johannes Berg | eddcbb94 | 2009-10-29 08:30:35 +0100 | [diff] [blame] | 2688 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2689 | if (sdata->vif.type == NL80211_IFTYPE_AP) { |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 2690 | struct ieee80211_if_ap *ap = &sdata->u.ap; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 2691 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2692 | beacon = rcu_dereference(ap->beacon); |
Dan Carpenter | 3ad97fb | 2011-02-07 22:03:35 +0300 | [diff] [blame] | 2693 | if (beacon) { |
Michal Kazior | 10d78f2 | 2014-06-05 14:21:37 +0200 | [diff] [blame] | 2694 | if (beacon->csa_counter_offsets[0]) { |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 2695 | if (!is_template) |
| 2696 | ieee80211_csa_update_counter(vif); |
| 2697 | |
| 2698 | ieee80211_set_csa(sdata, beacon); |
| 2699 | } |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2700 | |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 2701 | /* |
| 2702 | * headroom, head length, |
| 2703 | * tail length and maximum TIM length |
| 2704 | */ |
| 2705 | skb = dev_alloc_skb(local->tx_headroom + |
| 2706 | beacon->head_len + |
Felix Fietkau | 70dabeb | 2013-12-14 13:54:53 +0100 | [diff] [blame] | 2707 | beacon->tail_len + 256 + |
| 2708 | local->hw.extra_beacon_tailroom); |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 2709 | if (!skb) |
| 2710 | goto out; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 2711 | |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 2712 | skb_reserve(skb, local->tx_headroom); |
| 2713 | memcpy(skb_put(skb, beacon->head_len), beacon->head, |
| 2714 | beacon->head_len); |
| 2715 | |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 2716 | ieee80211_beacon_add_tim(sdata, &ap->ps, skb, |
| 2717 | is_template); |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 2718 | |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 2719 | if (offs) { |
| 2720 | offs->tim_offset = beacon->head_len; |
| 2721 | offs->tim_length = skb->len - beacon->head_len; |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 2722 | |
| 2723 | /* for AP the csa offsets are from tail */ |
| 2724 | csa_off_base = skb->len; |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 2725 | } |
Johannes Berg | eddcbb94 | 2009-10-29 08:30:35 +0100 | [diff] [blame] | 2726 | |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 2727 | if (beacon->tail) |
| 2728 | memcpy(skb_put(skb, beacon->tail_len), |
| 2729 | beacon->tail, beacon->tail_len); |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 2730 | } else |
| 2731 | goto out; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2732 | } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) { |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2733 | struct ieee80211_if_ibss *ifibss = &sdata->u.ibss; |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 2734 | struct ieee80211_hdr *hdr; |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 2735 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2736 | beacon = rcu_dereference(ifibss->presp); |
| 2737 | if (!beacon) |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 2738 | goto out; |
| 2739 | |
Michal Kazior | 10d78f2 | 2014-06-05 14:21:37 +0200 | [diff] [blame] | 2740 | if (beacon->csa_counter_offsets[0]) { |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 2741 | if (!is_template) |
| 2742 | ieee80211_csa_update_counter(vif); |
Simon Wunderlich | cd7760e | 2013-08-28 13:41:31 +0200 | [diff] [blame] | 2743 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2744 | ieee80211_set_csa(sdata, beacon); |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 2745 | } |
Simon Wunderlich | cd7760e | 2013-08-28 13:41:31 +0200 | [diff] [blame] | 2746 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2747 | skb = dev_alloc_skb(local->tx_headroom + beacon->head_len + |
Felix Fietkau | 70dabeb | 2013-12-14 13:54:53 +0100 | [diff] [blame] | 2748 | local->hw.extra_beacon_tailroom); |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 2749 | if (!skb) |
| 2750 | goto out; |
Johannes Berg | c3ffeab | 2013-03-07 20:54:29 +0100 | [diff] [blame] | 2751 | skb_reserve(skb, local->tx_headroom); |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2752 | memcpy(skb_put(skb, beacon->head_len), beacon->head, |
| 2753 | beacon->head_len); |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 2754 | |
| 2755 | hdr = (struct ieee80211_hdr *) skb->data; |
Harvey Harrison | e7827a7 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 2756 | hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 2757 | IEEE80211_STYPE_BEACON); |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 2758 | } else if (ieee80211_vif_is_mesh(&sdata->vif)) { |
Javier Cardona | dbf498f | 2012-03-31 11:31:32 -0700 | [diff] [blame] | 2759 | struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 2760 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2761 | beacon = rcu_dereference(ifmsh->beacon); |
| 2762 | if (!beacon) |
Johannes Berg | ac1bd84 | 2011-01-18 13:45:32 +0100 | [diff] [blame] | 2763 | goto out; |
Johannes Berg | ac1bd84 | 2011-01-18 13:45:32 +0100 | [diff] [blame] | 2764 | |
Michal Kazior | 10d78f2 | 2014-06-05 14:21:37 +0200 | [diff] [blame] | 2765 | if (beacon->csa_counter_offsets[0]) { |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 2766 | if (!is_template) |
| 2767 | /* TODO: For mesh csa_counter is in TU, so |
| 2768 | * decrementing it by one isn't correct, but |
| 2769 | * for now we leave it consistent with overall |
| 2770 | * mac80211's behavior. |
| 2771 | */ |
| 2772 | ieee80211_csa_update_counter(vif); |
| 2773 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2774 | ieee80211_set_csa(sdata, beacon); |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 2775 | } |
Chun-Yeow Yeoh | b8456a1 | 2013-10-17 15:55:02 -0700 | [diff] [blame] | 2776 | |
Javier Cardona | dbf498f | 2012-03-31 11:31:32 -0700 | [diff] [blame] | 2777 | if (ifmsh->sync_ops) |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2778 | ifmsh->sync_ops->adjust_tbtt(sdata, beacon); |
Javier Cardona | dbf498f | 2012-03-31 11:31:32 -0700 | [diff] [blame] | 2779 | |
Thomas Pedersen | 3b69a9c | 2011-10-26 14:47:25 -0700 | [diff] [blame] | 2780 | skb = dev_alloc_skb(local->tx_headroom + |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2781 | beacon->head_len + |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 2782 | 256 + /* TIM IE */ |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2783 | beacon->tail_len + |
Felix Fietkau | 70dabeb | 2013-12-14 13:54:53 +0100 | [diff] [blame] | 2784 | local->hw.extra_beacon_tailroom); |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 2785 | if (!skb) |
| 2786 | goto out; |
Thomas Pedersen | 2b5e196 | 2013-02-14 11:20:13 -0800 | [diff] [blame] | 2787 | skb_reserve(skb, local->tx_headroom); |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2788 | memcpy(skb_put(skb, beacon->head_len), beacon->head, |
| 2789 | beacon->head_len); |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 2790 | ieee80211_beacon_add_tim(sdata, &ifmsh->ps, skb, is_template); |
| 2791 | |
| 2792 | if (offs) { |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2793 | offs->tim_offset = beacon->head_len; |
| 2794 | offs->tim_length = skb->len - beacon->head_len; |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 2795 | } |
| 2796 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2797 | memcpy(skb_put(skb, beacon->tail_len), beacon->tail, |
| 2798 | beacon->tail_len); |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 2799 | } else { |
| 2800 | WARN_ON(1); |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 2801 | goto out; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2802 | } |
| 2803 | |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 2804 | /* CSA offsets */ |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2805 | if (offs && beacon) { |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 2806 | int i; |
| 2807 | |
| 2808 | for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; i++) { |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2809 | u16 csa_off = beacon->csa_counter_offsets[i]; |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 2810 | |
| 2811 | if (!csa_off) |
| 2812 | continue; |
| 2813 | |
| 2814 | offs->csa_counter_offs[i] = csa_off_base + csa_off; |
| 2815 | } |
| 2816 | } |
| 2817 | |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 2818 | band = chanctx_conf->def.chan->band; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2819 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2820 | info = IEEE80211_SKB_CB(skb); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2821 | |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 2822 | info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
Jouni Malinen | e00cfce | 2009-12-29 12:59:19 +0200 | [diff] [blame] | 2823 | info->flags |= IEEE80211_TX_CTL_NO_ACK; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2824 | info->band = band; |
Jouni Malinen | e00cfce | 2009-12-29 12:59:19 +0200 | [diff] [blame] | 2825 | |
| 2826 | memset(&txrc, 0, sizeof(txrc)); |
| 2827 | txrc.hw = hw; |
Johannes Berg | e31583c | 2012-07-26 14:07:46 +0200 | [diff] [blame] | 2828 | txrc.sband = local->hw.wiphy->bands[band]; |
Jouni Malinen | e00cfce | 2009-12-29 12:59:19 +0200 | [diff] [blame] | 2829 | txrc.bss_conf = &sdata->vif.bss_conf; |
| 2830 | txrc.skb = skb; |
| 2831 | txrc.reported_rate.idx = -1; |
Jouni Malinen | 37eb0b1 | 2010-01-06 13:09:08 +0200 | [diff] [blame] | 2832 | txrc.rate_idx_mask = sdata->rc_rateidx_mask[band]; |
Johannes Berg | e31583c | 2012-07-26 14:07:46 +0200 | [diff] [blame] | 2833 | if (txrc.rate_idx_mask == (1 << txrc.sband->n_bitrates) - 1) |
Jouni Malinen | 37eb0b1 | 2010-01-06 13:09:08 +0200 | [diff] [blame] | 2834 | txrc.max_rate_idx = -1; |
| 2835 | else |
| 2836 | txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1; |
Felix Fietkau | 8f0729b | 2010-11-11 15:07:23 +0100 | [diff] [blame] | 2837 | txrc.bss = true; |
Jouni Malinen | e00cfce | 2009-12-29 12:59:19 +0200 | [diff] [blame] | 2838 | rate_control_get_rate(sdata, NULL, &txrc); |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2839 | |
| 2840 | info->control.vif = vif; |
Johannes Berg | f591fa5 | 2008-07-10 11:21:26 +0200 | [diff] [blame] | 2841 | |
John W. Linville | a472e71 | 2010-05-06 14:45:17 -0400 | [diff] [blame] | 2842 | info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT | |
| 2843 | IEEE80211_TX_CTL_ASSIGN_SEQ | |
| 2844 | IEEE80211_TX_CTL_FIRST_FRAGMENT; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 2845 | out: |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 2846 | rcu_read_unlock(); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2847 | return skb; |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 2848 | |
| 2849 | } |
| 2850 | |
| 2851 | struct sk_buff * |
| 2852 | ieee80211_beacon_get_template(struct ieee80211_hw *hw, |
| 2853 | struct ieee80211_vif *vif, |
| 2854 | struct ieee80211_mutable_offsets *offs) |
| 2855 | { |
| 2856 | return __ieee80211_beacon_get(hw, vif, offs, true); |
| 2857 | } |
| 2858 | EXPORT_SYMBOL(ieee80211_beacon_get_template); |
| 2859 | |
| 2860 | struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw, |
| 2861 | struct ieee80211_vif *vif, |
| 2862 | u16 *tim_offset, u16 *tim_length) |
| 2863 | { |
| 2864 | struct ieee80211_mutable_offsets offs = {}; |
| 2865 | struct sk_buff *bcn = __ieee80211_beacon_get(hw, vif, &offs, false); |
| 2866 | |
| 2867 | if (tim_offset) |
| 2868 | *tim_offset = offs.tim_offset; |
| 2869 | |
| 2870 | if (tim_length) |
| 2871 | *tim_length = offs.tim_length; |
| 2872 | |
| 2873 | return bcn; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2874 | } |
Johannes Berg | eddcbb94 | 2009-10-29 08:30:35 +0100 | [diff] [blame] | 2875 | EXPORT_SYMBOL(ieee80211_beacon_get_tim); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2876 | |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 2877 | struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw, |
| 2878 | struct ieee80211_vif *vif) |
| 2879 | { |
| 2880 | struct ieee80211_if_ap *ap = NULL; |
Eyal Shapira | aa7a008 | 2012-08-06 14:26:16 +0300 | [diff] [blame] | 2881 | struct sk_buff *skb = NULL; |
| 2882 | struct probe_resp *presp = NULL; |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 2883 | struct ieee80211_hdr *hdr; |
| 2884 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
| 2885 | |
| 2886 | if (sdata->vif.type != NL80211_IFTYPE_AP) |
| 2887 | return NULL; |
| 2888 | |
| 2889 | rcu_read_lock(); |
| 2890 | |
| 2891 | ap = &sdata->u.ap; |
| 2892 | presp = rcu_dereference(ap->probe_resp); |
| 2893 | if (!presp) |
| 2894 | goto out; |
| 2895 | |
Eyal Shapira | aa7a008 | 2012-08-06 14:26:16 +0300 | [diff] [blame] | 2896 | skb = dev_alloc_skb(presp->len); |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 2897 | if (!skb) |
| 2898 | goto out; |
| 2899 | |
Eyal Shapira | aa7a008 | 2012-08-06 14:26:16 +0300 | [diff] [blame] | 2900 | memcpy(skb_put(skb, presp->len), presp->data, presp->len); |
| 2901 | |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 2902 | hdr = (struct ieee80211_hdr *) skb->data; |
| 2903 | memset(hdr->addr1, 0, sizeof(hdr->addr1)); |
| 2904 | |
| 2905 | out: |
| 2906 | rcu_read_unlock(); |
| 2907 | return skb; |
| 2908 | } |
| 2909 | EXPORT_SYMBOL(ieee80211_proberesp_get); |
| 2910 | |
Kalle Valo | 7044cc5 | 2010-01-05 20:16:19 +0200 | [diff] [blame] | 2911 | struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw, |
| 2912 | struct ieee80211_vif *vif) |
| 2913 | { |
| 2914 | struct ieee80211_sub_if_data *sdata; |
| 2915 | struct ieee80211_if_managed *ifmgd; |
| 2916 | struct ieee80211_pspoll *pspoll; |
| 2917 | struct ieee80211_local *local; |
| 2918 | struct sk_buff *skb; |
| 2919 | |
| 2920 | if (WARN_ON(vif->type != NL80211_IFTYPE_STATION)) |
| 2921 | return NULL; |
| 2922 | |
| 2923 | sdata = vif_to_sdata(vif); |
| 2924 | ifmgd = &sdata->u.mgd; |
| 2925 | local = sdata->local; |
| 2926 | |
| 2927 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll)); |
Joe Perches | d15b845 | 2011-08-29 14:17:31 -0700 | [diff] [blame] | 2928 | if (!skb) |
Kalle Valo | 7044cc5 | 2010-01-05 20:16:19 +0200 | [diff] [blame] | 2929 | return NULL; |
Joe Perches | d15b845 | 2011-08-29 14:17:31 -0700 | [diff] [blame] | 2930 | |
Kalle Valo | 7044cc5 | 2010-01-05 20:16:19 +0200 | [diff] [blame] | 2931 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 2932 | |
| 2933 | pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll)); |
| 2934 | memset(pspoll, 0, sizeof(*pspoll)); |
| 2935 | pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL | |
| 2936 | IEEE80211_STYPE_PSPOLL); |
| 2937 | pspoll->aid = cpu_to_le16(ifmgd->aid); |
| 2938 | |
| 2939 | /* aid in PS-Poll has its two MSBs each set to 1 */ |
| 2940 | pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14); |
| 2941 | |
| 2942 | memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN); |
| 2943 | memcpy(pspoll->ta, vif->addr, ETH_ALEN); |
| 2944 | |
| 2945 | return skb; |
| 2946 | } |
| 2947 | EXPORT_SYMBOL(ieee80211_pspoll_get); |
| 2948 | |
| 2949 | struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw, |
| 2950 | struct ieee80211_vif *vif) |
| 2951 | { |
| 2952 | struct ieee80211_hdr_3addr *nullfunc; |
| 2953 | struct ieee80211_sub_if_data *sdata; |
| 2954 | struct ieee80211_if_managed *ifmgd; |
| 2955 | struct ieee80211_local *local; |
| 2956 | struct sk_buff *skb; |
| 2957 | |
| 2958 | if (WARN_ON(vif->type != NL80211_IFTYPE_STATION)) |
| 2959 | return NULL; |
| 2960 | |
| 2961 | sdata = vif_to_sdata(vif); |
| 2962 | ifmgd = &sdata->u.mgd; |
| 2963 | local = sdata->local; |
| 2964 | |
| 2965 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*nullfunc)); |
Joe Perches | d15b845 | 2011-08-29 14:17:31 -0700 | [diff] [blame] | 2966 | if (!skb) |
Kalle Valo | 7044cc5 | 2010-01-05 20:16:19 +0200 | [diff] [blame] | 2967 | return NULL; |
Joe Perches | d15b845 | 2011-08-29 14:17:31 -0700 | [diff] [blame] | 2968 | |
Kalle Valo | 7044cc5 | 2010-01-05 20:16:19 +0200 | [diff] [blame] | 2969 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 2970 | |
| 2971 | nullfunc = (struct ieee80211_hdr_3addr *) skb_put(skb, |
| 2972 | sizeof(*nullfunc)); |
| 2973 | memset(nullfunc, 0, sizeof(*nullfunc)); |
| 2974 | nullfunc->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA | |
| 2975 | IEEE80211_STYPE_NULLFUNC | |
| 2976 | IEEE80211_FCTL_TODS); |
| 2977 | memcpy(nullfunc->addr1, ifmgd->bssid, ETH_ALEN); |
| 2978 | memcpy(nullfunc->addr2, vif->addr, ETH_ALEN); |
| 2979 | memcpy(nullfunc->addr3, ifmgd->bssid, ETH_ALEN); |
| 2980 | |
| 2981 | return skb; |
| 2982 | } |
| 2983 | EXPORT_SYMBOL(ieee80211_nullfunc_get); |
| 2984 | |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 2985 | struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw, |
Johannes Berg | a344d67 | 2014-06-12 22:24:31 +0200 | [diff] [blame] | 2986 | const u8 *src_addr, |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 2987 | const u8 *ssid, size_t ssid_len, |
Johannes Berg | b9a9ada | 2012-11-29 13:00:10 +0100 | [diff] [blame] | 2988 | size_t tailroom) |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 2989 | { |
Johannes Berg | a344d67 | 2014-06-12 22:24:31 +0200 | [diff] [blame] | 2990 | struct ieee80211_local *local = hw_to_local(hw); |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 2991 | struct ieee80211_hdr_3addr *hdr; |
| 2992 | struct sk_buff *skb; |
| 2993 | size_t ie_ssid_len; |
| 2994 | u8 *pos; |
| 2995 | |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 2996 | ie_ssid_len = 2 + ssid_len; |
| 2997 | |
| 2998 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*hdr) + |
Johannes Berg | b9a9ada | 2012-11-29 13:00:10 +0100 | [diff] [blame] | 2999 | ie_ssid_len + tailroom); |
Joe Perches | d15b845 | 2011-08-29 14:17:31 -0700 | [diff] [blame] | 3000 | if (!skb) |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 3001 | return NULL; |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 3002 | |
| 3003 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 3004 | |
| 3005 | hdr = (struct ieee80211_hdr_3addr *) skb_put(skb, sizeof(*hdr)); |
| 3006 | memset(hdr, 0, sizeof(*hdr)); |
| 3007 | hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 3008 | IEEE80211_STYPE_PROBE_REQ); |
Johannes Berg | e83e654 | 2012-07-13 16:23:07 +0200 | [diff] [blame] | 3009 | eth_broadcast_addr(hdr->addr1); |
Johannes Berg | a344d67 | 2014-06-12 22:24:31 +0200 | [diff] [blame] | 3010 | memcpy(hdr->addr2, src_addr, ETH_ALEN); |
Johannes Berg | e83e654 | 2012-07-13 16:23:07 +0200 | [diff] [blame] | 3011 | eth_broadcast_addr(hdr->addr3); |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 3012 | |
| 3013 | pos = skb_put(skb, ie_ssid_len); |
| 3014 | *pos++ = WLAN_EID_SSID; |
| 3015 | *pos++ = ssid_len; |
Stanislaw Gruszka | 88c868c | 2012-03-29 16:30:41 +0200 | [diff] [blame] | 3016 | if (ssid_len) |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 3017 | memcpy(pos, ssid, ssid_len); |
| 3018 | pos += ssid_len; |
| 3019 | |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 3020 | return skb; |
| 3021 | } |
| 3022 | EXPORT_SYMBOL(ieee80211_probereq_get); |
| 3023 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 3024 | void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3025 | const void *frame, size_t frame_len, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 3026 | const struct ieee80211_tx_info *frame_txctl, |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3027 | struct ieee80211_rts *rts) |
| 3028 | { |
| 3029 | const struct ieee80211_hdr *hdr = frame; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3030 | |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 3031 | rts->frame_control = |
| 3032 | cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS); |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 3033 | rts->duration = ieee80211_rts_duration(hw, vif, frame_len, |
| 3034 | frame_txctl); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3035 | memcpy(rts->ra, hdr->addr1, sizeof(rts->ra)); |
| 3036 | memcpy(rts->ta, hdr->addr2, sizeof(rts->ta)); |
| 3037 | } |
| 3038 | EXPORT_SYMBOL(ieee80211_rts_get); |
| 3039 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 3040 | void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3041 | const void *frame, size_t frame_len, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 3042 | const struct ieee80211_tx_info *frame_txctl, |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3043 | struct ieee80211_cts *cts) |
| 3044 | { |
| 3045 | const struct ieee80211_hdr *hdr = frame; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3046 | |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 3047 | cts->frame_control = |
| 3048 | cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS); |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 3049 | cts->duration = ieee80211_ctstoself_duration(hw, vif, |
| 3050 | frame_len, frame_txctl); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3051 | memcpy(cts->ra, hdr->addr1, sizeof(cts->ra)); |
| 3052 | } |
| 3053 | EXPORT_SYMBOL(ieee80211_ctstoself_get); |
| 3054 | |
| 3055 | struct sk_buff * |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 3056 | ieee80211_get_buffered_bc(struct ieee80211_hw *hw, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 3057 | struct ieee80211_vif *vif) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3058 | { |
| 3059 | struct ieee80211_local *local = hw_to_local(hw); |
Tomas Winkler | 747cf5e | 2008-05-27 17:50:51 +0300 | [diff] [blame] | 3060 | struct sk_buff *skb = NULL; |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 3061 | struct ieee80211_tx_data tx; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3062 | struct ieee80211_sub_if_data *sdata; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 3063 | struct ps_data *ps; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 3064 | struct ieee80211_tx_info *info; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 3065 | struct ieee80211_chanctx_conf *chanctx_conf; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3066 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 3067 | sdata = vif_to_sdata(vif); |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 3068 | |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 3069 | rcu_read_lock(); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 3070 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 3071 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 3072 | if (!chanctx_conf) |
Tomas Winkler | 747cf5e | 2008-05-27 17:50:51 +0300 | [diff] [blame] | 3073 | goto out; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 3074 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 3075 | if (sdata->vif.type == NL80211_IFTYPE_AP) { |
| 3076 | struct beacon_data *beacon = |
| 3077 | rcu_dereference(sdata->u.ap.beacon); |
| 3078 | |
| 3079 | if (!beacon || !beacon->head) |
| 3080 | goto out; |
| 3081 | |
| 3082 | ps = &sdata->u.ap.ps; |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 3083 | } else if (ieee80211_vif_is_mesh(&sdata->vif)) { |
| 3084 | ps = &sdata->u.mesh.ps; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 3085 | } else { |
| 3086 | goto out; |
| 3087 | } |
| 3088 | |
| 3089 | if (ps->dtim_count != 0 || !ps->dtim_bc_mc) |
Tomas Winkler | 747cf5e | 2008-05-27 17:50:51 +0300 | [diff] [blame] | 3090 | goto out; /* send buffered bc/mc only after DTIM beacon */ |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 3091 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3092 | while (1) { |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 3093 | skb = skb_dequeue(&ps->bc_buf); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3094 | if (!skb) |
Tomas Winkler | 747cf5e | 2008-05-27 17:50:51 +0300 | [diff] [blame] | 3095 | goto out; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3096 | local->total_ps_buffered--; |
| 3097 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 3098 | if (!skb_queue_empty(&ps->bc_buf) && skb->len >= 2) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3099 | struct ieee80211_hdr *hdr = |
| 3100 | (struct ieee80211_hdr *) skb->data; |
| 3101 | /* more buffered multicast/broadcast frames ==> set |
| 3102 | * MoreData flag in IEEE 802.11 header to inform PS |
| 3103 | * STAs */ |
| 3104 | hdr->frame_control |= |
| 3105 | cpu_to_le16(IEEE80211_FCTL_MOREDATA); |
| 3106 | } |
| 3107 | |
Michael Braun | 112c44b | 2014-03-06 15:08:43 +0100 | [diff] [blame] | 3108 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
Marco Porsch | 7cbf9d0 | 2013-03-01 16:01:18 +0100 | [diff] [blame] | 3109 | sdata = IEEE80211_DEV_TO_SUB_IF(skb->dev); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 3110 | if (!ieee80211_tx_prepare(sdata, &tx, skb)) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3111 | break; |
| 3112 | dev_kfree_skb_any(skb); |
| 3113 | } |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 3114 | |
| 3115 | info = IEEE80211_SKB_CB(skb); |
| 3116 | |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 3117 | tx.flags |= IEEE80211_TX_PS_BUFFERED; |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 3118 | info->band = chanctx_conf->def.chan->band; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3119 | |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 3120 | if (invoke_tx_handlers(&tx)) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3121 | skb = NULL; |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 3122 | out: |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 3123 | rcu_read_unlock(); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3124 | |
| 3125 | return skb; |
| 3126 | } |
| 3127 | EXPORT_SYMBOL(ieee80211_get_buffered_bc); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 3128 | |
Liad Kaufman | b6da911 | 2014-11-19 13:47:38 +0200 | [diff] [blame] | 3129 | int ieee80211_reserve_tid(struct ieee80211_sta *pubsta, u8 tid) |
| 3130 | { |
| 3131 | struct sta_info *sta = container_of(pubsta, struct sta_info, sta); |
| 3132 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
| 3133 | struct ieee80211_local *local = sdata->local; |
| 3134 | int ret; |
| 3135 | u32 queues; |
| 3136 | |
| 3137 | lockdep_assert_held(&local->sta_mtx); |
| 3138 | |
| 3139 | /* only some cases are supported right now */ |
| 3140 | switch (sdata->vif.type) { |
| 3141 | case NL80211_IFTYPE_STATION: |
| 3142 | case NL80211_IFTYPE_AP: |
| 3143 | case NL80211_IFTYPE_AP_VLAN: |
| 3144 | break; |
| 3145 | default: |
| 3146 | WARN_ON(1); |
| 3147 | return -EINVAL; |
| 3148 | } |
| 3149 | |
| 3150 | if (WARN_ON(tid >= IEEE80211_NUM_UPS)) |
| 3151 | return -EINVAL; |
| 3152 | |
| 3153 | if (sta->reserved_tid == tid) { |
| 3154 | ret = 0; |
| 3155 | goto out; |
| 3156 | } |
| 3157 | |
| 3158 | if (sta->reserved_tid != IEEE80211_TID_UNRESERVED) { |
| 3159 | sdata_err(sdata, "TID reservation already active\n"); |
| 3160 | ret = -EALREADY; |
| 3161 | goto out; |
| 3162 | } |
| 3163 | |
| 3164 | ieee80211_stop_vif_queues(sdata->local, sdata, |
| 3165 | IEEE80211_QUEUE_STOP_REASON_RESERVE_TID); |
| 3166 | |
| 3167 | synchronize_net(); |
| 3168 | |
| 3169 | /* Tear down BA sessions so we stop aggregating on this TID */ |
| 3170 | if (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION) { |
| 3171 | set_sta_flag(sta, WLAN_STA_BLOCK_BA); |
| 3172 | __ieee80211_stop_tx_ba_session(sta, tid, |
| 3173 | AGG_STOP_LOCAL_REQUEST); |
| 3174 | } |
| 3175 | |
| 3176 | queues = BIT(sdata->vif.hw_queue[ieee802_1d_to_ac[tid]]); |
Emmanuel Grumbach | 3b24f4c | 2015-01-07 15:42:39 +0200 | [diff] [blame] | 3177 | __ieee80211_flush_queues(local, sdata, queues, false); |
Liad Kaufman | b6da911 | 2014-11-19 13:47:38 +0200 | [diff] [blame] | 3178 | |
| 3179 | sta->reserved_tid = tid; |
| 3180 | |
| 3181 | ieee80211_wake_vif_queues(local, sdata, |
| 3182 | IEEE80211_QUEUE_STOP_REASON_RESERVE_TID); |
| 3183 | |
| 3184 | if (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION) |
| 3185 | clear_sta_flag(sta, WLAN_STA_BLOCK_BA); |
| 3186 | |
| 3187 | ret = 0; |
| 3188 | out: |
| 3189 | return ret; |
| 3190 | } |
| 3191 | EXPORT_SYMBOL(ieee80211_reserve_tid); |
| 3192 | |
| 3193 | void ieee80211_unreserve_tid(struct ieee80211_sta *pubsta, u8 tid) |
| 3194 | { |
| 3195 | struct sta_info *sta = container_of(pubsta, struct sta_info, sta); |
| 3196 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
| 3197 | |
| 3198 | lockdep_assert_held(&sdata->local->sta_mtx); |
| 3199 | |
| 3200 | /* only some cases are supported right now */ |
| 3201 | switch (sdata->vif.type) { |
| 3202 | case NL80211_IFTYPE_STATION: |
| 3203 | case NL80211_IFTYPE_AP: |
| 3204 | case NL80211_IFTYPE_AP_VLAN: |
| 3205 | break; |
| 3206 | default: |
| 3207 | WARN_ON(1); |
| 3208 | return; |
| 3209 | } |
| 3210 | |
| 3211 | if (tid != sta->reserved_tid) { |
| 3212 | sdata_err(sdata, "TID to unreserve (%d) isn't reserved\n", tid); |
| 3213 | return; |
| 3214 | } |
| 3215 | |
| 3216 | sta->reserved_tid = IEEE80211_TID_UNRESERVED; |
| 3217 | } |
| 3218 | EXPORT_SYMBOL(ieee80211_unreserve_tid); |
| 3219 | |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 3220 | void __ieee80211_tx_skb_tid_band(struct ieee80211_sub_if_data *sdata, |
| 3221 | struct sk_buff *skb, int tid, |
| 3222 | enum ieee80211_band band) |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 3223 | { |
Christian Lamparter | 353d09c | 2012-07-07 15:07:13 +0200 | [diff] [blame] | 3224 | int ac = ieee802_1d_to_ac[tid & 7]; |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 3225 | |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 3226 | skb_set_mac_header(skb, 0); |
| 3227 | skb_set_network_header(skb, 0); |
| 3228 | skb_set_transport_header(skb, 0); |
| 3229 | |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 3230 | skb_set_queue_mapping(skb, ac); |
Helmut Schaa | cf6bb79 | 2011-12-15 10:18:34 +0100 | [diff] [blame] | 3231 | skb->priority = tid; |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 3232 | |
Johannes Berg | 89afe61 | 2013-02-13 15:39:57 +0100 | [diff] [blame] | 3233 | skb->dev = sdata->dev; |
| 3234 | |
Johannes Berg | 3d34deb | 2009-06-18 17:25:11 +0200 | [diff] [blame] | 3235 | /* |
| 3236 | * The other path calling ieee80211_xmit is from the tasklet, |
| 3237 | * and while we can handle concurrent transmissions locking |
| 3238 | * requirements are that we do not come into tx with bhs on. |
| 3239 | */ |
| 3240 | local_bh_disable(); |
Johannes Berg | 73c4e19 | 2014-11-09 18:50:09 +0200 | [diff] [blame] | 3241 | IEEE80211_SKB_CB(skb)->band = band; |
| 3242 | ieee80211_xmit(sdata, skb); |
Johannes Berg | 3d34deb | 2009-06-18 17:25:11 +0200 | [diff] [blame] | 3243 | local_bh_enable(); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 3244 | } |