Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2002-2005, Instant802 Networks, Inc. |
| 4 | * Copyright 2005-2006, Devicescape Software, Inc. |
| 5 | * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz> |
| 6 | * Copyright 2007 Johannes Berg <johannes@sipsolutions.net> |
Johannes Berg | d98ad83 | 2014-09-03 15:24:57 +0300 | [diff] [blame] | 7 | * Copyright 2013-2014 Intel Mobile Communications GmbH |
Johannes Berg | 73bc9e0 | 2021-03-19 23:28:01 +0100 | [diff] [blame] | 8 | * Copyright (C) 2018-2021 Intel Corporation |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 9 | * |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 10 | * Transmit and frame generation functions. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/slab.h> |
| 15 | #include <linux/skbuff.h> |
Michael Braun | ebceec8 | 2016-11-22 11:52:18 +0100 | [diff] [blame] | 16 | #include <linux/if_vlan.h> |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 17 | #include <linux/etherdevice.h> |
| 18 | #include <linux/bitmap.h> |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 19 | #include <linux/rcupdate.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 20 | #include <linux/export.h> |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 21 | #include <linux/timekeeping.h> |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 22 | #include <net/net_namespace.h> |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 23 | #include <net/ieee80211_radiotap.h> |
| 24 | #include <net/cfg80211.h> |
| 25 | #include <net/mac80211.h> |
Michal Kazior | 5caa328 | 2016-05-19 10:37:51 +0200 | [diff] [blame] | 26 | #include <net/codel.h> |
| 27 | #include <net/codel_impl.h> |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 28 | #include <asm/unaligned.h> |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 29 | #include <net/fq_impl.h> |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 30 | |
| 31 | #include "ieee80211_i.h" |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 32 | #include "driver-ops.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 33 | #include "led.h" |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 34 | #include "mesh.h" |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 35 | #include "wep.h" |
| 36 | #include "wpa.h" |
| 37 | #include "wme.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 38 | #include "rate.h" |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 39 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 40 | /* misc utils */ |
| 41 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 42 | static __le16 ieee80211_duration(struct ieee80211_tx_data *tx, |
| 43 | struct sk_buff *skb, int group_addr, |
Johannes Berg | 03f93c3 | 2008-06-25 14:36:27 +0300 | [diff] [blame] | 44 | int next_frag_len) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 45 | { |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 46 | int rate, mrate, erp, dur, i, shift = 0; |
Johannes Berg | 2e92e6f | 2008-05-15 12:55:27 +0200 | [diff] [blame] | 47 | struct ieee80211_rate *txrate; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 48 | struct ieee80211_local *local = tx->local; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 49 | struct ieee80211_supported_band *sband; |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 50 | struct ieee80211_hdr *hdr; |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 51 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 52 | struct ieee80211_chanctx_conf *chanctx_conf; |
| 53 | u32 rate_flags = 0; |
| 54 | |
Felix Fietkau | 95cd470 | 2016-12-14 20:46:57 +0100 | [diff] [blame] | 55 | /* assume HW handles this */ |
| 56 | if (tx->rate.flags & (IEEE80211_TX_RC_MCS | IEEE80211_TX_RC_VHT_MCS)) |
| 57 | return 0; |
| 58 | |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 59 | rcu_read_lock(); |
| 60 | chanctx_conf = rcu_dereference(tx->sdata->vif.chanctx_conf); |
| 61 | if (chanctx_conf) { |
| 62 | shift = ieee80211_chandef_get_shift(&chanctx_conf->def); |
| 63 | rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def); |
| 64 | } |
| 65 | rcu_read_unlock(); |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 66 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 67 | /* uh huh? */ |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 68 | if (WARN_ON_ONCE(tx->rate.idx < 0)) |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 69 | return 0; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 70 | |
Johannes Berg | 2d56577 | 2012-07-23 15:12:51 +0200 | [diff] [blame] | 71 | sband = local->hw.wiphy->bands[info->band]; |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 72 | txrate = &sband->bitrates[tx->rate.idx]; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 73 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 74 | erp = txrate->flags & IEEE80211_RATE_ERP_G; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 75 | |
Thomas Pedersen | 89b8c02 | 2020-09-21 19:28:11 -0700 | [diff] [blame] | 76 | /* device is expected to do this */ |
| 77 | if (sband->band == NL80211_BAND_S1GHZ) |
| 78 | return 0; |
| 79 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 80 | /* |
| 81 | * data and mgmt (except PS Poll): |
| 82 | * - during CFP: 32768 |
| 83 | * - during contention period: |
| 84 | * if addr1 is group address: 0 |
| 85 | * if more fragments = 0 and addr1 is individual address: time to |
| 86 | * transmit one ACK plus SIFS |
| 87 | * if more fragments = 1 and addr1 is individual address: time to |
| 88 | * transmit next fragment plus 2 x ACK plus 3 x SIFS |
| 89 | * |
| 90 | * IEEE 802.11, 9.6: |
| 91 | * - control response frame (CTS or ACK) shall be transmitted using the |
| 92 | * same rate as the immediately previous frame in the frame exchange |
| 93 | * sequence, if this rate belongs to the PHY mandatory rates, or else |
| 94 | * at the highest possible rate belonging to the PHY rates in the |
| 95 | * BSSBasicRateSet |
| 96 | */ |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 97 | hdr = (struct ieee80211_hdr *)skb->data; |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 98 | if (ieee80211_is_ctl(hdr->frame_control)) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 99 | /* TODO: These control frames are not currently sent by |
Johannes Berg | ccd7b36 | 2008-09-11 00:01:56 +0200 | [diff] [blame] | 100 | * mac80211, but should they be implemented, this function |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 101 | * needs to be updated to support duration field calculation. |
| 102 | * |
| 103 | * RTS: time needed to transmit pending data/mgmt frame plus |
| 104 | * one CTS frame plus one ACK frame plus 3 x SIFS |
| 105 | * CTS: duration of immediately previous RTS minus time |
| 106 | * required to transmit CTS and its SIFS |
| 107 | * ACK: 0 if immediately previous directed data/mgmt had |
| 108 | * more=0, with more=1 duration in ACK frame is duration |
| 109 | * from previous frame minus time needed to transmit ACK |
| 110 | * and its SIFS |
| 111 | * PS Poll: BIT(15) | BIT(14) | aid |
| 112 | */ |
| 113 | return 0; |
| 114 | } |
| 115 | |
| 116 | /* data/mgmt */ |
| 117 | if (0 /* FIX: data/mgmt during CFP */) |
Johannes Berg | 03f93c3 | 2008-06-25 14:36:27 +0300 | [diff] [blame] | 118 | return cpu_to_le16(32768); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 119 | |
| 120 | if (group_addr) /* Group address as the destination - no ACK */ |
| 121 | return 0; |
| 122 | |
| 123 | /* Individual destination address: |
| 124 | * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes) |
| 125 | * CTS and ACK frames shall be transmitted using the highest rate in |
| 126 | * basic rate set that is less than or equal to the rate of the |
| 127 | * immediately previous frame and that is using the same modulation |
| 128 | * (CCK or OFDM). If no basic rate set matches with these requirements, |
| 129 | * the highest mandatory rate of the PHY that is less than or equal to |
| 130 | * the rate of the previous frame is used. |
| 131 | * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps |
| 132 | */ |
| 133 | rate = -1; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 134 | /* use lowest available if everything fails */ |
| 135 | mrate = sband->bitrates[0].bitrate; |
| 136 | for (i = 0; i < sband->n_bitrates; i++) { |
| 137 | struct ieee80211_rate *r = &sband->bitrates[i]; |
| 138 | |
| 139 | if (r->bitrate > txrate->bitrate) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 140 | break; |
| 141 | |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 142 | if ((rate_flags & r->flags) != rate_flags) |
| 143 | continue; |
| 144 | |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 145 | if (tx->sdata->vif.bss_conf.basic_rates & BIT(i)) |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 146 | rate = DIV_ROUND_UP(r->bitrate, 1 << shift); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 147 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 148 | switch (sband->band) { |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 149 | case NL80211_BAND_2GHZ: { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 150 | u32 flag; |
| 151 | if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE) |
| 152 | flag = IEEE80211_RATE_MANDATORY_G; |
| 153 | else |
| 154 | flag = IEEE80211_RATE_MANDATORY_B; |
| 155 | if (r->flags & flag) |
| 156 | mrate = r->bitrate; |
| 157 | break; |
| 158 | } |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 159 | case NL80211_BAND_5GHZ: |
Arend van Spriel | c5b9a7f | 2019-08-02 13:30:58 +0200 | [diff] [blame] | 160 | case NL80211_BAND_6GHZ: |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 161 | if (r->flags & IEEE80211_RATE_MANDATORY_A) |
| 162 | mrate = r->bitrate; |
| 163 | break; |
Thomas Pedersen | df78a0c | 2020-06-01 23:22:47 -0700 | [diff] [blame] | 164 | case NL80211_BAND_S1GHZ: |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 165 | case NL80211_BAND_60GHZ: |
Vladimir Kondratiev | 3a0c52a | 2012-07-02 09:32:32 +0300 | [diff] [blame] | 166 | /* TODO, for now fall through */ |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 167 | case NUM_NL80211_BANDS: |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 168 | WARN_ON(1); |
| 169 | break; |
| 170 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 171 | } |
| 172 | if (rate == -1) { |
| 173 | /* No matching basic rate found; use highest suitable mandatory |
| 174 | * PHY rate */ |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 175 | rate = DIV_ROUND_UP(mrate, 1 << shift); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 176 | } |
| 177 | |
Simon Wunderlich | 6674f21 | 2011-11-21 21:34:30 +0100 | [diff] [blame] | 178 | /* Don't calculate ACKs for QoS Frames with NoAck Policy set */ |
| 179 | if (ieee80211_is_data_qos(hdr->frame_control) && |
Claudio Pisa | c26a0e1 | 2012-05-28 13:06:25 +0100 | [diff] [blame] | 180 | *(ieee80211_get_qos_ctl(hdr)) & IEEE80211_QOS_CTL_ACK_POLICY_NOACK) |
Simon Wunderlich | 6674f21 | 2011-11-21 21:34:30 +0100 | [diff] [blame] | 181 | dur = 0; |
| 182 | else |
| 183 | /* Time needed to transmit ACK |
| 184 | * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up |
| 185 | * to closest integer */ |
Michal Kazior | 4ee73f3 | 2012-04-11 08:47:56 +0200 | [diff] [blame] | 186 | dur = ieee80211_frame_duration(sband->band, 10, rate, erp, |
Simon Wunderlich | 438b61b | 2013-07-08 16:55:51 +0200 | [diff] [blame] | 187 | tx->sdata->vif.bss_conf.use_short_preamble, |
| 188 | shift); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 189 | |
| 190 | if (next_frag_len) { |
| 191 | /* Frame is fragmented: duration increases with time needed to |
| 192 | * transmit next fragment plus ACK and 2 x SIFS. */ |
| 193 | dur *= 2; /* ACK + SIFS */ |
| 194 | /* next fragment */ |
Michal Kazior | 4ee73f3 | 2012-04-11 08:47:56 +0200 | [diff] [blame] | 195 | dur += ieee80211_frame_duration(sband->band, next_frag_len, |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 196 | txrate->bitrate, erp, |
Simon Wunderlich | 438b61b | 2013-07-08 16:55:51 +0200 | [diff] [blame] | 197 | tx->sdata->vif.bss_conf.use_short_preamble, |
| 198 | shift); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 199 | } |
| 200 | |
Johannes Berg | 03f93c3 | 2008-06-25 14:36:27 +0300 | [diff] [blame] | 201 | return cpu_to_le16(dur); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 202 | } |
| 203 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 204 | /* tx handlers */ |
Kalle Valo | 5c1b98a | 2010-01-12 10:42:46 +0200 | [diff] [blame] | 205 | static ieee80211_tx_result debug_noinline |
| 206 | ieee80211_tx_h_dynamic_ps(struct ieee80211_tx_data *tx) |
| 207 | { |
| 208 | struct ieee80211_local *local = tx->local; |
Kalle Valo | 0c74211 | 2010-01-12 10:42:53 +0200 | [diff] [blame] | 209 | struct ieee80211_if_managed *ifmgd; |
Andrei Otcheretianski | 94a5b3a | 2018-09-05 08:06:14 +0300 | [diff] [blame] | 210 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
Kalle Valo | 5c1b98a | 2010-01-12 10:42:46 +0200 | [diff] [blame] | 211 | |
| 212 | /* driver doesn't support power save */ |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 213 | if (!ieee80211_hw_check(&local->hw, SUPPORTS_PS)) |
Kalle Valo | 5c1b98a | 2010-01-12 10:42:46 +0200 | [diff] [blame] | 214 | return TX_CONTINUE; |
| 215 | |
| 216 | /* hardware does dynamic power save */ |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 217 | if (ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS)) |
Kalle Valo | 5c1b98a | 2010-01-12 10:42:46 +0200 | [diff] [blame] | 218 | return TX_CONTINUE; |
| 219 | |
| 220 | /* dynamic power save disabled */ |
| 221 | if (local->hw.conf.dynamic_ps_timeout <= 0) |
| 222 | return TX_CONTINUE; |
| 223 | |
| 224 | /* we are scanning, don't enable power save */ |
| 225 | if (local->scanning) |
| 226 | return TX_CONTINUE; |
| 227 | |
| 228 | if (!local->ps_sdata) |
| 229 | return TX_CONTINUE; |
| 230 | |
| 231 | /* No point if we're going to suspend */ |
| 232 | if (local->quiescing) |
| 233 | return TX_CONTINUE; |
| 234 | |
Kalle Valo | 0c74211 | 2010-01-12 10:42:53 +0200 | [diff] [blame] | 235 | /* dynamic ps is supported only in managed mode */ |
| 236 | if (tx->sdata->vif.type != NL80211_IFTYPE_STATION) |
| 237 | return TX_CONTINUE; |
| 238 | |
Andrei Otcheretianski | 94a5b3a | 2018-09-05 08:06:14 +0300 | [diff] [blame] | 239 | if (unlikely(info->flags & IEEE80211_TX_INTFL_OFFCHAN_TX_OK)) |
| 240 | return TX_CONTINUE; |
| 241 | |
Kalle Valo | 0c74211 | 2010-01-12 10:42:53 +0200 | [diff] [blame] | 242 | ifmgd = &tx->sdata->u.mgd; |
| 243 | |
| 244 | /* |
| 245 | * Don't wakeup from power save if u-apsd is enabled, voip ac has |
| 246 | * u-apsd enabled and the frame is in voip class. This effectively |
| 247 | * means that even if all access categories have u-apsd enabled, in |
| 248 | * practise u-apsd is only used with the voip ac. This is a |
| 249 | * workaround for the case when received voip class packets do not |
| 250 | * have correct qos tag for some reason, due the network or the |
| 251 | * peer application. |
| 252 | * |
Eliad Peller | dc41e4d | 2012-03-14 16:15:03 +0200 | [diff] [blame] | 253 | * Note: ifmgd->uapsd_queues access is racy here. If the value is |
Kalle Valo | 0c74211 | 2010-01-12 10:42:53 +0200 | [diff] [blame] | 254 | * changed via debugfs, user needs to reassociate manually to have |
| 255 | * everything in sync. |
| 256 | */ |
Johannes Berg | 4875d30d | 2012-03-27 14:18:37 +0200 | [diff] [blame] | 257 | if ((ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED) && |
| 258 | (ifmgd->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO) && |
| 259 | skb_get_queue_mapping(tx->skb) == IEEE80211_AC_VO) |
Kalle Valo | 0c74211 | 2010-01-12 10:42:53 +0200 | [diff] [blame] | 260 | return TX_CONTINUE; |
| 261 | |
Kalle Valo | 5c1b98a | 2010-01-12 10:42:46 +0200 | [diff] [blame] | 262 | if (local->hw.conf.flags & IEEE80211_CONF_PS) { |
| 263 | ieee80211_stop_queues_by_reason(&local->hw, |
Johannes Berg | 445ea4e | 2013-02-13 12:25:28 +0100 | [diff] [blame] | 264 | IEEE80211_MAX_QUEUE_MAP, |
Luciano Coelho | cca07b0 | 2014-06-13 16:30:05 +0300 | [diff] [blame] | 265 | IEEE80211_QUEUE_STOP_REASON_PS, |
| 266 | false); |
Vivek Natarajan | db28569 | 2011-02-18 17:18:03 +0530 | [diff] [blame] | 267 | ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED; |
Kalle Valo | 5c1b98a | 2010-01-12 10:42:46 +0200 | [diff] [blame] | 268 | ieee80211_queue_work(&local->hw, |
| 269 | &local->dynamic_ps_disable_work); |
| 270 | } |
| 271 | |
Luciano Coelho | 5db1c07 | 2011-05-03 21:40:08 +0300 | [diff] [blame] | 272 | /* Don't restart the timer if we're not disassociated */ |
| 273 | if (!ifmgd->associated) |
| 274 | return TX_CONTINUE; |
| 275 | |
Kalle Valo | 5c1b98a | 2010-01-12 10:42:46 +0200 | [diff] [blame] | 276 | mod_timer(&local->dynamic_ps_timer, jiffies + |
| 277 | msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout)); |
| 278 | |
| 279 | return TX_CONTINUE; |
| 280 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 281 | |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 282 | static ieee80211_tx_result debug_noinline |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 283 | ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 284 | { |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 285 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 286 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 287 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 288 | bool assoc = false; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 289 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 290 | if (unlikely(info->flags & IEEE80211_TX_CTL_INJECTED)) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 291 | return TX_CONTINUE; |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 292 | |
Ben Greear | b23b025 | 2011-02-04 11:54:17 -0800 | [diff] [blame] | 293 | if (unlikely(test_bit(SCAN_SW_SCANNING, &tx->local->scanning)) && |
| 294 | test_bit(SDATA_STATE_OFFCHANNEL, &tx->sdata->state) && |
Kalle Valo | a9a6fff | 2009-03-18 14:06:44 +0200 | [diff] [blame] | 295 | !ieee80211_is_probe_req(hdr->frame_control) && |
Thomas Pedersen | 30b2f0b | 2020-01-13 21:59:40 -0800 | [diff] [blame] | 296 | !ieee80211_is_any_nullfunc(hdr->frame_control)) |
Kalle Valo | a9a6fff | 2009-03-18 14:06:44 +0200 | [diff] [blame] | 297 | /* |
| 298 | * When software scanning only nullfunc frames (to notify |
| 299 | * the sleep state to the AP) and probe requests (for the |
| 300 | * active scan) are allowed, all other frames should not be |
| 301 | * sent and we should not get here, but if we do |
| 302 | * nonetheless, drop them to avoid sending them |
| 303 | * off-channel. See the link below and |
| 304 | * ieee80211_start_scan() for more. |
| 305 | * |
| 306 | * http://article.gmane.org/gmane.linux.kernel.wireless.general/30089 |
| 307 | */ |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 308 | return TX_DROP; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 309 | |
Rostislav Lisovy | 239281f | 2014-11-03 10:33:19 +0100 | [diff] [blame] | 310 | if (tx->sdata->vif.type == NL80211_IFTYPE_OCB) |
| 311 | return TX_CONTINUE; |
| 312 | |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 313 | if (tx->flags & IEEE80211_TX_PS_BUFFERED) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 314 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 315 | |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 316 | if (tx->sta) |
| 317 | assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 318 | |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 319 | if (likely(tx->flags & IEEE80211_TX_UNICAST)) { |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 320 | if (unlikely(!assoc && |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 321 | ieee80211_is_data(hdr->frame_control))) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 322 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 323 | sdata_info(tx->sdata, |
| 324 | "dropped data frame to not associated station %pM\n", |
| 325 | hdr->addr1); |
| 326 | #endif |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 327 | I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc); |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 328 | return TX_DROP; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 329 | } |
Michael Braun | 72f15d5 | 2016-10-10 19:12:21 +0200 | [diff] [blame] | 330 | } else if (unlikely(ieee80211_is_data(hdr->frame_control) && |
| 331 | ieee80211_vif_get_num_mcast_if(tx->sdata) == 0)) { |
Johannes Berg | 2962389 | 2011-12-14 12:20:31 +0100 | [diff] [blame] | 332 | /* |
| 333 | * No associated STAs - no need to send multicast |
| 334 | * frames. |
| 335 | */ |
| 336 | return TX_DROP; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 337 | } |
| 338 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 339 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 340 | } |
| 341 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 342 | /* This function is called whenever the AP is about to exceed the maximum limit |
| 343 | * of buffered frames for power saving STAs. This situation should not really |
| 344 | * happen often during normal operation, so dropping the oldest buffered packet |
| 345 | * from each queue should be OK to make some room for new frames. */ |
| 346 | static void purge_old_ps_buffers(struct ieee80211_local *local) |
| 347 | { |
| 348 | int total = 0, purged = 0; |
| 349 | struct sk_buff *skb; |
| 350 | struct ieee80211_sub_if_data *sdata; |
| 351 | struct sta_info *sta; |
| 352 | |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 353 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 354 | struct ps_data *ps; |
| 355 | |
| 356 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
| 357 | ps = &sdata->u.ap.ps; |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 358 | else if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 359 | ps = &sdata->u.mesh.ps; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 360 | else |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 361 | continue; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 362 | |
| 363 | skb = skb_dequeue(&ps->bc_buf); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 364 | if (skb) { |
| 365 | purged++; |
Felix Fietkau | 6b07d9c | 2016-08-02 11:13:41 +0200 | [diff] [blame] | 366 | ieee80211_free_txskb(&local->hw, skb); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 367 | } |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 368 | total += skb_queue_len(&ps->bc_buf); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 369 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 370 | |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 371 | /* |
| 372 | * Drop one frame from each station from the lowest-priority |
| 373 | * AC that has frames at all. |
| 374 | */ |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 375 | list_for_each_entry_rcu(sta, &local->sta_list, list) { |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 376 | int ac; |
| 377 | |
| 378 | for (ac = IEEE80211_AC_BK; ac >= IEEE80211_AC_VO; ac--) { |
| 379 | skb = skb_dequeue(&sta->ps_tx_buf[ac]); |
| 380 | total += skb_queue_len(&sta->ps_tx_buf[ac]); |
| 381 | if (skb) { |
| 382 | purged++; |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 383 | ieee80211_free_txskb(&local->hw, skb); |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 384 | break; |
| 385 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 386 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 387 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 388 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 389 | local->total_ps_buffered = total; |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 390 | 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] | 391 | } |
| 392 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 393 | static ieee80211_tx_result |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 394 | ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 395 | { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 396 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 397 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 398 | struct ps_data *ps; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 399 | |
Johannes Berg | 7d54d0dd | 2007-12-19 01:31:25 +0100 | [diff] [blame] | 400 | /* |
| 401 | * broadcast/multicast frame |
| 402 | * |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 403 | * If any of the associated/peer stations is in power save mode, |
Johannes Berg | 7d54d0dd | 2007-12-19 01:31:25 +0100 | [diff] [blame] | 404 | * the frame is buffered to be sent after DTIM beacon frame. |
| 405 | * This is done either by the hardware or us. |
| 406 | */ |
| 407 | |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 408 | /* powersaving STAs currently only in AP/VLAN/mesh mode */ |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 409 | if (tx->sdata->vif.type == NL80211_IFTYPE_AP || |
| 410 | tx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) { |
| 411 | if (!tx->sdata->bss) |
| 412 | return TX_CONTINUE; |
| 413 | |
| 414 | ps = &tx->sdata->bss->ps; |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 415 | } else if (ieee80211_vif_is_mesh(&tx->sdata->vif)) { |
| 416 | ps = &tx->sdata->u.mesh.ps; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 417 | } else { |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 418 | return TX_CONTINUE; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 419 | } |
| 420 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 421 | |
| 422 | /* no buffering for ordered frames */ |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 423 | if (ieee80211_has_order(hdr->frame_control)) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 424 | return TX_CONTINUE; |
Johannes Berg | 7d54d0dd | 2007-12-19 01:31:25 +0100 | [diff] [blame] | 425 | |
Johannes Berg | 08b9939 | 2014-07-07 12:01:11 +0200 | [diff] [blame] | 426 | if (ieee80211_is_probe_req(hdr->frame_control)) |
| 427 | return TX_CONTINUE; |
| 428 | |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 429 | if (ieee80211_hw_check(&tx->local->hw, QUEUE_CONTROL)) |
Johannes Berg | f4d5794 | 2013-05-28 17:24:15 +0200 | [diff] [blame] | 430 | info->hw_queue = tx->sdata->vif.cab_queue; |
| 431 | |
Felix Fietkau | 9ec1190 | 2018-11-28 22:39:16 +0100 | [diff] [blame] | 432 | /* no stations in PS mode and no buffered packets */ |
| 433 | if (!atomic_read(&ps->num_sta_ps) && skb_queue_empty(&ps->bc_buf)) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 434 | return TX_CONTINUE; |
Johannes Berg | 7d54d0dd | 2007-12-19 01:31:25 +0100 | [diff] [blame] | 435 | |
Johannes Berg | 62b517c | 2009-10-29 12:19:21 +0100 | [diff] [blame] | 436 | info->flags |= IEEE80211_TX_CTL_SEND_AFTER_DTIM; |
Johannes Berg | 62b1208 | 2009-08-10 16:04:15 +0200 | [diff] [blame] | 437 | |
Johannes Berg | 62b517c | 2009-10-29 12:19:21 +0100 | [diff] [blame] | 438 | /* device releases frame after DTIM beacon */ |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 439 | if (!ieee80211_hw_check(&tx->local->hw, HOST_BROADCAST_PS_BUFFERING)) |
Johannes Berg | 62b1208 | 2009-08-10 16:04:15 +0200 | [diff] [blame] | 440 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 441 | |
Johannes Berg | 62b1208 | 2009-08-10 16:04:15 +0200 | [diff] [blame] | 442 | /* buffered in mac80211 */ |
| 443 | if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER) |
| 444 | purge_old_ps_buffers(tx->local); |
Johannes Berg | 7d54d0dd | 2007-12-19 01:31:25 +0100 | [diff] [blame] | 445 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 446 | if (skb_queue_len(&ps->bc_buf) >= AP_MAX_BC_BUFFER) { |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 447 | ps_dbg(tx->sdata, |
| 448 | "BC TX buffer full - dropping the oldest frame\n"); |
Felix Fietkau | 6b07d9c | 2016-08-02 11:13:41 +0200 | [diff] [blame] | 449 | ieee80211_free_txskb(&tx->local->hw, skb_dequeue(&ps->bc_buf)); |
Johannes Berg | 62b1208 | 2009-08-10 16:04:15 +0200 | [diff] [blame] | 450 | } else |
| 451 | tx->local->total_ps_buffered++; |
| 452 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 453 | skb_queue_tail(&ps->bc_buf, tx->skb); |
Johannes Berg | 62b1208 | 2009-08-10 16:04:15 +0200 | [diff] [blame] | 454 | |
| 455 | return TX_QUEUED; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 456 | } |
| 457 | |
Jouni Malinen | fb73333 | 2009-01-08 13:32:00 +0200 | [diff] [blame] | 458 | static int ieee80211_use_mfp(__le16 fc, struct sta_info *sta, |
| 459 | struct sk_buff *skb) |
| 460 | { |
| 461 | if (!ieee80211_is_mgmt(fc)) |
| 462 | return 0; |
| 463 | |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 464 | if (sta == NULL || !test_sta_flag(sta, WLAN_STA_MFP)) |
Jouni Malinen | fb73333 | 2009-01-08 13:32:00 +0200 | [diff] [blame] | 465 | return 0; |
| 466 | |
Johannes Berg | d8ca16d | 2014-01-23 16:20:29 +0100 | [diff] [blame] | 467 | if (!ieee80211_is_robust_mgmt_frame(skb)) |
Jouni Malinen | fb73333 | 2009-01-08 13:32:00 +0200 | [diff] [blame] | 468 | return 0; |
| 469 | |
| 470 | return 1; |
| 471 | } |
| 472 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 473 | static ieee80211_tx_result |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 474 | ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 475 | { |
| 476 | struct sta_info *sta = tx->sta; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 477 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
Johannes Berg | 08b9939 | 2014-07-07 12:01:11 +0200 | [diff] [blame] | 478 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data; |
Juuso Oikarinen | 3393a60 | 2010-04-19 10:12:52 +0300 | [diff] [blame] | 479 | struct ieee80211_local *local = tx->local; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 480 | |
Johannes Berg | 02f2f1a | 2012-02-27 12:18:30 +0100 | [diff] [blame] | 481 | if (unlikely(!sta)) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 482 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 483 | |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 484 | if (unlikely((test_sta_flag(sta, WLAN_STA_PS_STA) || |
Johannes Berg | 5ac2e35 | 2014-05-27 16:32:27 +0200 | [diff] [blame] | 485 | test_sta_flag(sta, WLAN_STA_PS_DRIVER) || |
| 486 | test_sta_flag(sta, WLAN_STA_PS_DELIVER)) && |
Johannes Berg | 02f2f1a | 2012-02-27 12:18:30 +0100 | [diff] [blame] | 487 | !(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER))) { |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 488 | int ac = skb_get_queue_mapping(tx->skb); |
| 489 | |
Johannes Berg | 08b9939 | 2014-07-07 12:01:11 +0200 | [diff] [blame] | 490 | if (ieee80211_is_mgmt(hdr->frame_control) && |
| 491 | !ieee80211_is_bufferable_mmpdu(hdr->frame_control)) { |
| 492 | info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER; |
| 493 | return TX_CONTINUE; |
| 494 | } |
| 495 | |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 496 | ps_dbg(sta->sdata, "STA %pM aid %d: PS buffer for AC %d\n", |
| 497 | sta->sta.addr, sta->sta.aid, ac); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 498 | if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER) |
| 499 | purge_old_ps_buffers(tx->local); |
Emmanuel Grumbach | 1d147bf | 2014-02-20 09:22:11 +0200 | [diff] [blame] | 500 | |
| 501 | /* sync with ieee80211_sta_ps_deliver_wakeup */ |
| 502 | spin_lock(&sta->ps_lock); |
| 503 | /* |
| 504 | * STA woke up the meantime and all the frames on ps_tx_buf have |
| 505 | * been queued to pending queue. No reordering can happen, go |
| 506 | * ahead and Tx the packet. |
| 507 | */ |
| 508 | if (!test_sta_flag(sta, WLAN_STA_PS_STA) && |
Johannes Berg | 5ac2e35 | 2014-05-27 16:32:27 +0200 | [diff] [blame] | 509 | !test_sta_flag(sta, WLAN_STA_PS_DRIVER) && |
| 510 | !test_sta_flag(sta, WLAN_STA_PS_DELIVER)) { |
Emmanuel Grumbach | 1d147bf | 2014-02-20 09:22:11 +0200 | [diff] [blame] | 511 | spin_unlock(&sta->ps_lock); |
| 512 | return TX_CONTINUE; |
| 513 | } |
| 514 | |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 515 | if (skb_queue_len(&sta->ps_tx_buf[ac]) >= STA_MAX_TX_BUFFER) { |
| 516 | struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf[ac]); |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 517 | ps_dbg(tx->sdata, |
| 518 | "STA %pM TX buffer for AC %d full - dropping oldest frame\n", |
| 519 | sta->sta.addr, ac); |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 520 | ieee80211_free_txskb(&local->hw, old); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 521 | } else |
| 522 | tx->local->total_ps_buffered++; |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 523 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 524 | info->control.jiffies = jiffies; |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 525 | info->control.vif = &tx->sdata->vif; |
Felix Fietkau | cc20ff2 | 2020-09-08 14:36:57 +0200 | [diff] [blame] | 526 | info->control.flags |= IEEE80211_TX_INTCFL_NEED_TXPROCESSING; |
Johannes Berg | 03c8c06 | 2014-01-09 01:45:28 +0100 | [diff] [blame] | 527 | info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS; |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 528 | skb_queue_tail(&sta->ps_tx_buf[ac], tx->skb); |
Emmanuel Grumbach | 1d147bf | 2014-02-20 09:22:11 +0200 | [diff] [blame] | 529 | spin_unlock(&sta->ps_lock); |
Juuso Oikarinen | 3393a60 | 2010-04-19 10:12:52 +0300 | [diff] [blame] | 530 | |
| 531 | if (!timer_pending(&local->sta_cleanup)) |
| 532 | mod_timer(&local->sta_cleanup, |
| 533 | round_jiffies(jiffies + |
| 534 | STA_INFO_CLEANUP_INTERVAL)); |
| 535 | |
Johannes Berg | c868cb35 | 2011-09-29 16:04:27 +0200 | [diff] [blame] | 536 | /* |
| 537 | * We queued up some frames, so the TIM bit might |
| 538 | * need to be set, recalculate it. |
| 539 | */ |
| 540 | sta_info_recalc_tim(sta); |
| 541 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 542 | return TX_QUEUED; |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 543 | } else if (unlikely(test_sta_flag(sta, WLAN_STA_PS_STA))) { |
| 544 | ps_dbg(tx->sdata, |
| 545 | "STA %pM in PS mode, but polling/in SP -> send frame\n", |
| 546 | sta->sta.addr); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 547 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 548 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 549 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 550 | } |
| 551 | |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 552 | static ieee80211_tx_result debug_noinline |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 553 | ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 554 | { |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 555 | if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED)) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 556 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 557 | |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 558 | if (tx->flags & IEEE80211_TX_UNICAST) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 559 | return ieee80211_tx_h_unicast_ps_buf(tx); |
| 560 | else |
| 561 | return ieee80211_tx_h_multicast_ps_buf(tx); |
| 562 | } |
| 563 | |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 564 | static ieee80211_tx_result debug_noinline |
Johannes Berg | a621fa4 | 2010-08-27 14:26:54 +0300 | [diff] [blame] | 565 | ieee80211_tx_h_check_control_port_protocol(struct ieee80211_tx_data *tx) |
| 566 | { |
| 567 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
| 568 | |
Johannes Berg | af61a16 | 2013-07-02 18:09:12 +0200 | [diff] [blame] | 569 | if (unlikely(tx->sdata->control_port_protocol == tx->skb->protocol)) { |
| 570 | if (tx->sdata->control_port_no_encrypt) |
| 571 | info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
| 572 | info->control.flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO; |
Jouni Malinen | 9c1c98a | 2015-02-26 15:50:50 +0200 | [diff] [blame] | 573 | info->flags |= IEEE80211_TX_CTL_USE_MINRATE; |
Johannes Berg | af61a16 | 2013-07-02 18:09:12 +0200 | [diff] [blame] | 574 | } |
Johannes Berg | a621fa4 | 2010-08-27 14:26:54 +0300 | [diff] [blame] | 575 | |
| 576 | return TX_CONTINUE; |
| 577 | } |
| 578 | |
| 579 | static ieee80211_tx_result debug_noinline |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 580 | ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 581 | { |
Johannes Berg | 46e6de1 | 2012-07-04 18:10:07 +0200 | [diff] [blame] | 582 | struct ieee80211_key *key; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 583 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 584 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data; |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 585 | |
Johannes Berg | a0761a3 | 2020-03-26 15:09:42 +0200 | [diff] [blame] | 586 | if (unlikely(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT)) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 587 | tx->key = NULL; |
Johannes Berg | a0761a3 | 2020-03-26 15:09:42 +0200 | [diff] [blame] | 588 | return TX_CONTINUE; |
| 589 | } |
| 590 | |
| 591 | if (tx->sta && |
| 592 | (key = rcu_dereference(tx->sta->ptk[tx->sta->ptk_idx]))) |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 593 | tx->key = key; |
Masashi Honma | 46f6b06 | 2016-06-22 19:55:20 +0900 | [diff] [blame] | 594 | else if (ieee80211_is_group_privacy_action(tx->skb) && |
| 595 | (key = rcu_dereference(tx->sdata->default_multicast_key))) |
| 596 | tx->key = key; |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 597 | else if (ieee80211_is_mgmt(hdr->frame_control) && |
Jouni Malinen | ecbcd32 | 2010-03-29 23:35:23 -0700 | [diff] [blame] | 598 | is_multicast_ether_addr(hdr->addr1) && |
Johannes Berg | d8ca16d | 2014-01-23 16:20:29 +0100 | [diff] [blame] | 599 | ieee80211_is_robust_mgmt_frame(tx->skb) && |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 600 | (key = rcu_dereference(tx->sdata->default_mgmt_key))) |
| 601 | tx->key = key; |
Johannes Berg | f7e0104 | 2010-12-09 19:49:02 +0100 | [diff] [blame] | 602 | else if (is_multicast_ether_addr(hdr->addr1) && |
| 603 | (key = rcu_dereference(tx->sdata->default_multicast_key))) |
| 604 | tx->key = key; |
| 605 | else if (!is_multicast_ether_addr(hdr->addr1) && |
| 606 | (key = rcu_dereference(tx->sdata->default_unicast_key))) |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 607 | tx->key = key; |
Johannes Berg | e8f4fb7 | 2015-03-20 11:37:36 +0100 | [diff] [blame] | 608 | else |
Johannes Berg | 46e6de1 | 2012-07-04 18:10:07 +0200 | [diff] [blame] | 609 | tx->key = NULL; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 610 | |
| 611 | if (tx->key) { |
Johannes Berg | 813d766 | 2010-01-17 01:47:58 +0100 | [diff] [blame] | 612 | bool skip_hw = false; |
| 613 | |
Johannes Berg | 011bfcc | 2007-09-17 01:29:25 -0400 | [diff] [blame] | 614 | /* TODO: add threshold stuff again */ |
Johannes Berg | 176e4f8 | 2007-12-18 15:27:47 +0100 | [diff] [blame] | 615 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 616 | switch (tx->key->conf.cipher) { |
| 617 | case WLAN_CIPHER_SUITE_WEP40: |
| 618 | case WLAN_CIPHER_SUITE_WEP104: |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 619 | case WLAN_CIPHER_SUITE_TKIP: |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 620 | if (!ieee80211_is_data_present(hdr->frame_control)) |
Johannes Berg | 176e4f8 | 2007-12-18 15:27:47 +0100 | [diff] [blame] | 621 | tx->key = NULL; |
| 622 | break; |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 623 | case WLAN_CIPHER_SUITE_CCMP: |
Jouni Malinen | 2b2ba0d | 2015-01-24 19:52:07 +0200 | [diff] [blame] | 624 | case WLAN_CIPHER_SUITE_CCMP_256: |
Jouni Malinen | 00b9cfa | 2015-01-24 19:52:06 +0200 | [diff] [blame] | 625 | case WLAN_CIPHER_SUITE_GCMP: |
| 626 | case WLAN_CIPHER_SUITE_GCMP_256: |
Jouni Malinen | fb73333 | 2009-01-08 13:32:00 +0200 | [diff] [blame] | 627 | if (!ieee80211_is_data_present(hdr->frame_control) && |
| 628 | !ieee80211_use_mfp(hdr->frame_control, tx->sta, |
Masashi Honma | 46f6b06 | 2016-06-22 19:55:20 +0900 | [diff] [blame] | 629 | tx->skb) && |
| 630 | !ieee80211_is_group_privacy_action(tx->skb)) |
Jouni Malinen | fb73333 | 2009-01-08 13:32:00 +0200 | [diff] [blame] | 631 | tx->key = NULL; |
Kalle Valo | 3b43a18 | 2010-01-23 20:27:14 +0200 | [diff] [blame] | 632 | else |
| 633 | skip_hw = (tx->key->conf.flags & |
Johannes Berg | e548c49 | 2012-09-04 17:08:23 +0200 | [diff] [blame] | 634 | IEEE80211_KEY_FLAG_SW_MGMT_TX) && |
Kalle Valo | 3b43a18 | 2010-01-23 20:27:14 +0200 | [diff] [blame] | 635 | ieee80211_is_mgmt(hdr->frame_control); |
Jouni Malinen | fb73333 | 2009-01-08 13:32:00 +0200 | [diff] [blame] | 636 | break; |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 637 | case WLAN_CIPHER_SUITE_AES_CMAC: |
Jouni Malinen | 56c52da | 2015-01-24 19:52:08 +0200 | [diff] [blame] | 638 | case WLAN_CIPHER_SUITE_BIP_CMAC_256: |
Jouni Malinen | 8ade538 | 2015-01-24 19:52:09 +0200 | [diff] [blame] | 639 | case WLAN_CIPHER_SUITE_BIP_GMAC_128: |
| 640 | case WLAN_CIPHER_SUITE_BIP_GMAC_256: |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 641 | if (!ieee80211_is_mgmt(hdr->frame_control)) |
| 642 | tx->key = NULL; |
| 643 | break; |
Johannes Berg | 176e4f8 | 2007-12-18 15:27:47 +0100 | [diff] [blame] | 644 | } |
Johannes Berg | 813d766 | 2010-01-17 01:47:58 +0100 | [diff] [blame] | 645 | |
Johannes Berg | e54faf2 | 2013-01-29 11:41:38 +0100 | [diff] [blame] | 646 | if (unlikely(tx->key && tx->key->flags & KEY_FLAG_TAINTED && |
| 647 | !ieee80211_is_deauth(hdr->frame_control))) |
Johannes Berg | 95acac6 | 2011-07-12 12:30:59 +0200 | [diff] [blame] | 648 | return TX_DROP; |
| 649 | |
Johannes Berg | f12553e | 2010-01-22 22:07:59 +0100 | [diff] [blame] | 650 | if (!skip_hw && tx->key && |
Johannes Berg | 382b165 | 2010-01-25 11:36:16 +0100 | [diff] [blame] | 651 | tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) |
Johannes Berg | 813d766 | 2010-01-17 01:47:58 +0100 | [diff] [blame] | 652 | info->control.hw_key = &tx->key->conf; |
Felix Fietkau | 2463ec8 | 2020-12-18 20:15:25 +0100 | [diff] [blame] | 653 | } else if (ieee80211_is_data_present(hdr->frame_control) && tx->sta && |
Johannes Berg | a0761a3 | 2020-03-26 15:09:42 +0200 | [diff] [blame] | 654 | test_sta_flag(tx->sta, WLAN_STA_USES_ENCRYPTION)) { |
| 655 | return TX_DROP; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 656 | } |
| 657 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 658 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 659 | } |
| 660 | |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 661 | static ieee80211_tx_result debug_noinline |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 662 | ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 663 | { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 664 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 665 | struct ieee80211_hdr *hdr = (void *)tx->skb->data; |
| 666 | struct ieee80211_supported_band *sband; |
Shanyu Zhao | a2c4024 | 2010-04-27 11:15:12 -0700 | [diff] [blame] | 667 | u32 len; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 668 | struct ieee80211_tx_rate_control txrc; |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 669 | struct ieee80211_sta_rates *ratetbl = NULL; |
Ryder Lee | 3187ba0 | 2021-06-17 18:31:13 +0200 | [diff] [blame] | 670 | bool encap = info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP; |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 671 | bool assoc = false; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 672 | |
| 673 | memset(&txrc, 0, sizeof(txrc)); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 674 | |
Johannes Berg | 2d56577 | 2012-07-23 15:12:51 +0200 | [diff] [blame] | 675 | sband = tx->local->hw.wiphy->bands[info->band]; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 676 | |
Shanyu Zhao | a2c4024 | 2010-04-27 11:15:12 -0700 | [diff] [blame] | 677 | len = min_t(u32, tx->skb->len + FCS_LEN, |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 678 | tx->local->hw.wiphy->frag_threshold); |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 679 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 680 | /* set up the tx rate control struct we give the RC algo */ |
Johannes Berg | 005e472 | 2012-02-26 11:24:35 +0100 | [diff] [blame] | 681 | txrc.hw = &tx->local->hw; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 682 | txrc.sband = sband; |
| 683 | txrc.bss_conf = &tx->sdata->vif.bss_conf; |
| 684 | txrc.skb = tx->skb; |
| 685 | txrc.reported_rate.idx = -1; |
Johannes Berg | 2d56577 | 2012-07-23 15:12:51 +0200 | [diff] [blame] | 686 | txrc.rate_idx_mask = tx->sdata->rc_rateidx_mask[info->band]; |
Felix Fietkau | 2ffbe6d | 2013-04-16 13:38:42 +0200 | [diff] [blame] | 687 | |
| 688 | if (tx->sdata->rc_has_mcs_mask[info->band]) |
| 689 | txrc.rate_idx_mcs_mask = |
| 690 | tx->sdata->rc_rateidx_mcs_mask[info->band]; |
| 691 | |
Felix Fietkau | 8f0729b | 2010-11-11 15:07:23 +0100 | [diff] [blame] | 692 | txrc.bss = (tx->sdata->vif.type == NL80211_IFTYPE_AP || |
Chun-Yeow Yeoh | 4bb6234 | 2011-11-24 17:15:20 -0800 | [diff] [blame] | 693 | tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT || |
Bertold Van den Bergh | 5765f9f | 2015-08-05 16:02:28 +0200 | [diff] [blame] | 694 | tx->sdata->vif.type == NL80211_IFTYPE_ADHOC || |
| 695 | tx->sdata->vif.type == NL80211_IFTYPE_OCB); |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 696 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 697 | /* set up RTS protection if desired */ |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 698 | if (len > tx->local->hw.wiphy->rts_threshold) { |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 699 | txrc.rts = true; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 700 | } |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 701 | |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 702 | info->control.use_rts = txrc.rts; |
Felix Fietkau | 991fec0 | 2013-04-16 13:38:43 +0200 | [diff] [blame] | 703 | info->control.use_cts_prot = tx->sdata->vif.bss_conf.use_cts_prot; |
| 704 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 705 | /* |
| 706 | * Use short preamble if the BSS can handle it, but not for |
| 707 | * management frames unless we know the receiver can handle |
| 708 | * that -- the management frame might be to a station that |
| 709 | * just wants a probe response. |
| 710 | */ |
| 711 | if (tx->sdata->vif.bss_conf.use_short_preamble && |
Ryder Lee | 3187ba0 | 2021-06-17 18:31:13 +0200 | [diff] [blame] | 712 | (ieee80211_is_tx_data(tx->skb) || |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 713 | (tx->sta && test_sta_flag(tx->sta, WLAN_STA_SHORT_PREAMBLE)))) |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 714 | txrc.short_preamble = true; |
| 715 | |
| 716 | info->control.short_preamble = txrc.short_preamble; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 717 | |
Sven Eckelmann | dfdfc2b | 2016-01-26 17:11:13 +0100 | [diff] [blame] | 718 | /* don't ask rate control when rate already injected via radiotap */ |
| 719 | if (info->control.flags & IEEE80211_TX_CTRL_RATE_INJECT) |
| 720 | return TX_CONTINUE; |
| 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", |
Ryder Lee | 3187ba0 | 2021-06-17 18:31:13 +0200 | [diff] [blame] | 734 | tx->sdata->name, |
| 735 | encap ? ((struct ethhdr *)hdr)->h_dest : hdr->addr1, |
Johannes Berg | 2d56577 | 2012-07-23 15:12:51 +0200 | [diff] [blame] | 736 | info->band ? 5 : 2)) |
Luis R. Rodriguez | b770b43 | 2009-07-16 10:15:09 -0700 | [diff] [blame] | 737 | return TX_DROP; |
| 738 | |
| 739 | /* |
| 740 | * If we're associated with the sta at this point we know we can at |
| 741 | * least send the frame at the lowest bit rate. |
| 742 | */ |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 743 | rate_control_get_rate(tx->sdata, tx->sta, &txrc); |
| 744 | |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 745 | if (tx->sta && !info->control.skip_table) |
| 746 | ratetbl = rcu_dereference(tx->sta->sta.rates); |
| 747 | |
| 748 | if (unlikely(info->control.rates[0].idx < 0)) { |
| 749 | if (ratetbl) { |
| 750 | struct ieee80211_tx_rate rate = { |
| 751 | .idx = ratetbl->rate[0].idx, |
| 752 | .flags = ratetbl->rate[0].flags, |
| 753 | .count = ratetbl->rate[0].count |
| 754 | }; |
| 755 | |
| 756 | if (ratetbl->rate[0].idx < 0) |
| 757 | return TX_DROP; |
| 758 | |
| 759 | tx->rate = rate; |
| 760 | } else { |
| 761 | return TX_DROP; |
| 762 | } |
| 763 | } else { |
| 764 | tx->rate = info->control.rates[0]; |
| 765 | } |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 766 | |
Helmut Schaa | c1ce5a7 | 2010-12-01 16:34:45 +0100 | [diff] [blame] | 767 | if (txrc.reported_rate.idx < 0) { |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 768 | txrc.reported_rate = tx->rate; |
Ryder Lee | 3187ba0 | 2021-06-17 18:31:13 +0200 | [diff] [blame] | 769 | if (tx->sta && ieee80211_is_tx_data(tx->skb)) |
Johannes Berg | e5a9f8d | 2015-10-16 17:54:47 +0200 | [diff] [blame] | 770 | tx->sta->tx_stats.last_rate = txrc.reported_rate; |
Helmut Schaa | c1ce5a7 | 2010-12-01 16:34:45 +0100 | [diff] [blame] | 771 | } else if (tx->sta) |
Johannes Berg | e5a9f8d | 2015-10-16 17:54:47 +0200 | [diff] [blame] | 772 | tx->sta->tx_stats.last_rate = txrc.reported_rate; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 773 | |
Felix Fietkau | 0d528d8 | 2013-04-22 16:14:41 +0200 | [diff] [blame] | 774 | if (ratetbl) |
| 775 | return TX_CONTINUE; |
| 776 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 777 | if (unlikely(!info->control.rates[0].count)) |
| 778 | info->control.rates[0].count = 1; |
| 779 | |
Gábor Stefanik | 9955151 | 2009-04-23 19:36:14 +0200 | [diff] [blame] | 780 | if (WARN_ON_ONCE((info->control.rates[0].count > 1) && |
| 781 | (info->flags & IEEE80211_TX_CTL_NO_ACK))) |
| 782 | info->control.rates[0].count = 1; |
| 783 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 784 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 785 | } |
| 786 | |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 787 | static __le16 ieee80211_tx_next_seq(struct sta_info *sta, int tid) |
| 788 | { |
| 789 | u16 *seq = &sta->tid_seq[tid]; |
| 790 | __le16 ret = cpu_to_le16(*seq); |
| 791 | |
| 792 | /* Increase the sequence number. */ |
| 793 | *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ; |
| 794 | |
| 795 | return ret; |
| 796 | } |
| 797 | |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 798 | static ieee80211_tx_result debug_noinline |
Johannes Berg | f591fa5 | 2008-07-10 11:21:26 +0200 | [diff] [blame] | 799 | ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx) |
| 800 | { |
| 801 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
| 802 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data; |
Johannes Berg | f591fa5 | 2008-07-10 11:21:26 +0200 | [diff] [blame] | 803 | int tid; |
| 804 | |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 805 | /* |
| 806 | * Packet injection may want to control the sequence |
| 807 | * number, if we have no matching interface then we |
| 808 | * neither assign one ourselves nor ask the driver to. |
| 809 | */ |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 810 | if (unlikely(info->control.vif->type == NL80211_IFTYPE_MONITOR)) |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 811 | return TX_CONTINUE; |
| 812 | |
Johannes Berg | f591fa5 | 2008-07-10 11:21:26 +0200 | [diff] [blame] | 813 | if (unlikely(ieee80211_is_ctl(hdr->frame_control))) |
| 814 | return TX_CONTINUE; |
| 815 | |
| 816 | if (ieee80211_hdrlen(hdr->frame_control) < 24) |
| 817 | return TX_CONTINUE; |
| 818 | |
Johannes Berg | 49a5954 | 2011-09-29 16:04:41 +0200 | [diff] [blame] | 819 | if (ieee80211_is_qos_nullfunc(hdr->frame_control)) |
| 820 | return TX_CONTINUE; |
| 821 | |
Mathy Vanhoef | 29c3e95 | 2020-07-23 14:01:50 +0400 | [diff] [blame] | 822 | if (info->control.flags & IEEE80211_TX_CTRL_NO_SEQNO) |
| 823 | return TX_CONTINUE; |
| 824 | |
Johannes Berg | 9477828 | 2008-10-10 13:21:59 +0200 | [diff] [blame] | 825 | /* |
| 826 | * Anything but QoS data that has a sequence number field |
| 827 | * (is long enough) gets a sequence number from the global |
Bob Copeland | c4c205f | 2013-08-23 09:35:38 -0400 | [diff] [blame] | 828 | * counter. QoS data frames with a multicast destination |
| 829 | * also use the global counter (802.11-2012 9.3.2.10). |
Johannes Berg | 9477828 | 2008-10-10 13:21:59 +0200 | [diff] [blame] | 830 | */ |
Bob Copeland | c4c205f | 2013-08-23 09:35:38 -0400 | [diff] [blame] | 831 | if (!ieee80211_is_data_qos(hdr->frame_control) || |
| 832 | is_multicast_ether_addr(hdr->addr1)) { |
Johannes Berg | 9477828 | 2008-10-10 13:21:59 +0200 | [diff] [blame] | 833 | /* driver should assign sequence number */ |
Johannes Berg | f591fa5 | 2008-07-10 11:21:26 +0200 | [diff] [blame] | 834 | info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ; |
Johannes Berg | 9477828 | 2008-10-10 13:21:59 +0200 | [diff] [blame] | 835 | /* for pure STA mode without beacons, we can do it */ |
| 836 | hdr->seq_ctrl = cpu_to_le16(tx->sdata->sequence_number); |
| 837 | tx->sdata->sequence_number += 0x10; |
Johannes Berg | 79c892b | 2014-11-21 14:26:31 +0100 | [diff] [blame] | 838 | if (tx->sta) |
Johannes Berg | e5a9f8d | 2015-10-16 17:54:47 +0200 | [diff] [blame] | 839 | tx->sta->tx_stats.msdu[IEEE80211_NUM_TIDS]++; |
Johannes Berg | f591fa5 | 2008-07-10 11:21:26 +0200 | [diff] [blame] | 840 | return TX_CONTINUE; |
| 841 | } |
| 842 | |
| 843 | /* |
| 844 | * This should be true for injected/management frames only, for |
| 845 | * management frames we have set the IEEE80211_TX_CTL_ASSIGN_SEQ |
| 846 | * above since they are not QoS-data frames. |
| 847 | */ |
| 848 | if (!tx->sta) |
| 849 | return TX_CONTINUE; |
| 850 | |
| 851 | /* include per-STA, per-TID sequence counter */ |
Sara Sharon | a1f2ba04c | 2018-02-19 14:48:40 +0200 | [diff] [blame] | 852 | tid = ieee80211_get_tid(hdr); |
Johannes Berg | e5a9f8d | 2015-10-16 17:54:47 +0200 | [diff] [blame] | 853 | tx->sta->tx_stats.msdu[tid]++; |
Johannes Berg | f591fa5 | 2008-07-10 11:21:26 +0200 | [diff] [blame] | 854 | |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 855 | hdr->seq_ctrl = ieee80211_tx_next_seq(tx->sta, tid); |
Johannes Berg | f591fa5 | 2008-07-10 11:21:26 +0200 | [diff] [blame] | 856 | |
| 857 | return TX_CONTINUE; |
| 858 | } |
| 859 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 860 | static int ieee80211_fragment(struct ieee80211_tx_data *tx, |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 861 | struct sk_buff *skb, int hdrlen, |
| 862 | int frag_threshold) |
| 863 | { |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 864 | struct ieee80211_local *local = tx->local; |
Johannes Berg | a1a3fce | 2011-11-16 15:28:56 +0100 | [diff] [blame] | 865 | struct ieee80211_tx_info *info; |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 866 | struct sk_buff *tmp; |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 867 | int per_fragm = frag_threshold - hdrlen - FCS_LEN; |
| 868 | int pos = hdrlen + per_fragm; |
| 869 | int rem = skb->len - hdrlen - per_fragm; |
| 870 | |
| 871 | if (WARN_ON(rem < 0)) |
| 872 | return -EINVAL; |
| 873 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 874 | /* first fragment was already added to queue by caller */ |
| 875 | |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 876 | while (rem) { |
| 877 | int fraglen = per_fragm; |
| 878 | |
| 879 | if (fraglen > rem) |
| 880 | fraglen = rem; |
| 881 | rem -= fraglen; |
| 882 | tmp = dev_alloc_skb(local->tx_headroom + |
| 883 | frag_threshold + |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 884 | tx->sdata->encrypt_headroom + |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 885 | IEEE80211_ENCRYPT_TAILROOM); |
| 886 | if (!tmp) |
| 887 | return -ENOMEM; |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 888 | |
| 889 | __skb_queue_tail(&tx->skbs, tmp); |
| 890 | |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 891 | skb_reserve(tmp, |
| 892 | local->tx_headroom + tx->sdata->encrypt_headroom); |
| 893 | |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 894 | /* copy control information */ |
| 895 | memcpy(tmp->cb, skb->cb, sizeof(tmp->cb)); |
Johannes Berg | a1a3fce | 2011-11-16 15:28:56 +0100 | [diff] [blame] | 896 | |
| 897 | info = IEEE80211_SKB_CB(tmp); |
| 898 | info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT | |
| 899 | IEEE80211_TX_CTL_FIRST_FRAGMENT); |
| 900 | |
| 901 | if (rem) |
| 902 | info->flags |= IEEE80211_TX_CTL_MORE_FRAMES; |
| 903 | |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 904 | skb_copy_queue_mapping(tmp, skb); |
| 905 | tmp->priority = skb->priority; |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 906 | tmp->dev = skb->dev; |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 907 | |
| 908 | /* copy header and data */ |
Johannes Berg | 59ae1d1 | 2017-06-16 14:29:20 +0200 | [diff] [blame] | 909 | skb_put_data(tmp, skb->data, hdrlen); |
| 910 | skb_put_data(tmp, skb->data + pos, fraglen); |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 911 | |
| 912 | pos += fraglen; |
| 913 | } |
| 914 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 915 | /* adjust first fragment's length */ |
Johannes Berg | 338f977 | 2014-02-01 00:16:23 +0100 | [diff] [blame] | 916 | skb_trim(skb, hdrlen + per_fragm); |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 917 | return 0; |
| 918 | } |
| 919 | |
Johannes Berg | f591fa5 | 2008-07-10 11:21:26 +0200 | [diff] [blame] | 920 | static ieee80211_tx_result debug_noinline |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 921 | ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx) |
| 922 | { |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 923 | struct sk_buff *skb = tx->skb; |
| 924 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 925 | struct ieee80211_hdr *hdr = (void *)skb->data; |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 926 | int frag_threshold = tx->local->hw.wiphy->frag_threshold; |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 927 | int hdrlen; |
| 928 | int fragnum; |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 929 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 930 | /* no matter what happens, tx->skb moves to tx->skbs */ |
| 931 | __skb_queue_tail(&tx->skbs, skb); |
| 932 | tx->skb = NULL; |
| 933 | |
Johannes Berg | a26eb27 | 2011-10-07 14:01:25 +0200 | [diff] [blame] | 934 | if (info->flags & IEEE80211_TX_CTL_DONTFRAG) |
| 935 | return TX_CONTINUE; |
| 936 | |
Sara Sharon | f3fe4e9 | 2016-10-18 23:12:11 +0300 | [diff] [blame] | 937 | if (ieee80211_hw_check(&tx->local->hw, SUPPORTS_TX_FRAG)) |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 938 | return TX_CONTINUE; |
| 939 | |
Johannes Berg | eefce91 | 2008-05-17 00:57:13 +0200 | [diff] [blame] | 940 | /* |
| 941 | * Warn when submitting a fragmented A-MPDU frame and drop it. |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 942 | * This scenario is handled in ieee80211_tx_prepare but extra |
Ron Rindjunsky | 8d5e0d5 | 2008-06-12 15:42:29 +0300 | [diff] [blame] | 943 | * caution taken here as fragmented ampdu may cause Tx stop. |
Johannes Berg | eefce91 | 2008-05-17 00:57:13 +0200 | [diff] [blame] | 944 | */ |
Sujith | 8b30b1f | 2008-10-24 09:55:27 +0530 | [diff] [blame] | 945 | if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU)) |
Johannes Berg | eefce91 | 2008-05-17 00:57:13 +0200 | [diff] [blame] | 946 | return TX_DROP; |
| 947 | |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 948 | hdrlen = ieee80211_hdrlen(hdr->frame_control); |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 949 | |
Johannes Berg | a26eb27 | 2011-10-07 14:01:25 +0200 | [diff] [blame] | 950 | /* internal error, why isn't DONTFRAG set? */ |
Johannes Berg | 8ccd8f2 | 2009-04-29 23:35:56 +0200 | [diff] [blame] | 951 | if (WARN_ON(skb->len + FCS_LEN <= frag_threshold)) |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 952 | return TX_DROP; |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 953 | |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 954 | /* |
| 955 | * Now fragment the frame. This will allocate all the fragments and |
| 956 | * chain them (using skb as the first fragment) to skb->next. |
| 957 | * During transmission, we will remove the successfully transmitted |
| 958 | * fragments from this list. When the low-level driver rejects one |
| 959 | * of the fragments then we will simply pretend to accept the skb |
| 960 | * but store it away as pending. |
| 961 | */ |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 962 | if (ieee80211_fragment(tx, skb, hdrlen, frag_threshold)) |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 963 | return TX_DROP; |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 964 | |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 965 | /* update duration/seq/flags of fragments */ |
| 966 | fragnum = 0; |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 967 | |
| 968 | skb_queue_walk(&tx->skbs, skb) { |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 969 | const __le16 morefrags = cpu_to_le16(IEEE80211_FCTL_MOREFRAGS); |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 970 | |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 971 | hdr = (void *)skb->data; |
| 972 | info = IEEE80211_SKB_CB(skb); |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 973 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 974 | if (!skb_queue_is_last(&tx->skbs, skb)) { |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 975 | hdr->frame_control |= morefrags; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 976 | /* |
| 977 | * No multi-rate retries for fragmented frames, that |
| 978 | * would completely throw off the NAV at other STAs. |
| 979 | */ |
| 980 | info->control.rates[1].idx = -1; |
| 981 | info->control.rates[2].idx = -1; |
| 982 | info->control.rates[3].idx = -1; |
Thomas Huehn | e3e1a0b | 2012-07-02 19:46:16 +0200 | [diff] [blame] | 983 | BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 4); |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 984 | info->flags &= ~IEEE80211_TX_CTL_RATE_CTRL_PROBE; |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 985 | } else { |
| 986 | hdr->frame_control &= ~morefrags; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 987 | } |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 988 | hdr->seq_ctrl |= cpu_to_le16(fragnum & IEEE80211_SCTL_FRAG); |
| 989 | fragnum++; |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 990 | } |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 991 | |
| 992 | return TX_CONTINUE; |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 993 | } |
| 994 | |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 995 | static ieee80211_tx_result debug_noinline |
Johannes Berg | feff1f2 | 2009-08-10 16:01:54 +0200 | [diff] [blame] | 996 | ieee80211_tx_h_stats(struct ieee80211_tx_data *tx) |
| 997 | { |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 998 | struct sk_buff *skb; |
Johannes Berg | 560d268 | 2013-02-05 10:55:21 +0100 | [diff] [blame] | 999 | int ac = -1; |
Johannes Berg | feff1f2 | 2009-08-10 16:01:54 +0200 | [diff] [blame] | 1000 | |
| 1001 | if (!tx->sta) |
| 1002 | return TX_CONTINUE; |
| 1003 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1004 | skb_queue_walk(&tx->skbs, skb) { |
Johannes Berg | 560d268 | 2013-02-05 10:55:21 +0100 | [diff] [blame] | 1005 | ac = skb_get_queue_mapping(skb); |
Johannes Berg | e5a9f8d | 2015-10-16 17:54:47 +0200 | [diff] [blame] | 1006 | tx->sta->tx_stats.bytes[ac] += skb->len; |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1007 | } |
Johannes Berg | 560d268 | 2013-02-05 10:55:21 +0100 | [diff] [blame] | 1008 | if (ac >= 0) |
Johannes Berg | e5a9f8d | 2015-10-16 17:54:47 +0200 | [diff] [blame] | 1009 | tx->sta->tx_stats.packets[ac]++; |
Johannes Berg | feff1f2 | 2009-08-10 16:01:54 +0200 | [diff] [blame] | 1010 | |
| 1011 | return TX_CONTINUE; |
| 1012 | } |
| 1013 | |
| 1014 | static ieee80211_tx_result debug_noinline |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 1015 | ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx) |
| 1016 | { |
| 1017 | if (!tx->key) |
| 1018 | return TX_CONTINUE; |
| 1019 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 1020 | switch (tx->key->conf.cipher) { |
| 1021 | case WLAN_CIPHER_SUITE_WEP40: |
| 1022 | case WLAN_CIPHER_SUITE_WEP104: |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 1023 | return ieee80211_crypto_wep_encrypt(tx); |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 1024 | case WLAN_CIPHER_SUITE_TKIP: |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 1025 | return ieee80211_crypto_tkip_encrypt(tx); |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 1026 | case WLAN_CIPHER_SUITE_CCMP: |
Jouni Malinen | 2b2ba0d | 2015-01-24 19:52:07 +0200 | [diff] [blame] | 1027 | return ieee80211_crypto_ccmp_encrypt( |
| 1028 | tx, IEEE80211_CCMP_MIC_LEN); |
| 1029 | case WLAN_CIPHER_SUITE_CCMP_256: |
| 1030 | return ieee80211_crypto_ccmp_encrypt( |
| 1031 | tx, IEEE80211_CCMP_256_MIC_LEN); |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 1032 | case WLAN_CIPHER_SUITE_AES_CMAC: |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 1033 | return ieee80211_crypto_aes_cmac_encrypt(tx); |
Jouni Malinen | 56c52da | 2015-01-24 19:52:08 +0200 | [diff] [blame] | 1034 | case WLAN_CIPHER_SUITE_BIP_CMAC_256: |
| 1035 | return ieee80211_crypto_aes_cmac_256_encrypt(tx); |
Jouni Malinen | 8ade538 | 2015-01-24 19:52:09 +0200 | [diff] [blame] | 1036 | case WLAN_CIPHER_SUITE_BIP_GMAC_128: |
| 1037 | case WLAN_CIPHER_SUITE_BIP_GMAC_256: |
| 1038 | return ieee80211_crypto_aes_gmac_encrypt(tx); |
Jouni Malinen | 00b9cfa | 2015-01-24 19:52:06 +0200 | [diff] [blame] | 1039 | case WLAN_CIPHER_SUITE_GCMP: |
| 1040 | case WLAN_CIPHER_SUITE_GCMP_256: |
| 1041 | return ieee80211_crypto_gcmp_encrypt(tx); |
Johannes Berg | 3ffc2a9 | 2010-08-27 14:26:52 +0300 | [diff] [blame] | 1042 | default: |
Yoni Divinsky | d32a102 | 2012-01-16 15:18:59 +0200 | [diff] [blame] | 1043 | return ieee80211_crypto_hw_encrypt(tx); |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 1044 | } |
| 1045 | |
Johannes Berg | e245494 | 2008-05-15 12:55:28 +0200 | [diff] [blame] | 1046 | return TX_DROP; |
| 1047 | } |
| 1048 | |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 1049 | static ieee80211_tx_result debug_noinline |
Johannes Berg | 03f93c3 | 2008-06-25 14:36:27 +0300 | [diff] [blame] | 1050 | ieee80211_tx_h_calculate_duration(struct ieee80211_tx_data *tx) |
| 1051 | { |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1052 | struct sk_buff *skb; |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 1053 | struct ieee80211_hdr *hdr; |
| 1054 | int next_len; |
| 1055 | bool group_addr; |
Johannes Berg | 03f93c3 | 2008-06-25 14:36:27 +0300 | [diff] [blame] | 1056 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1057 | skb_queue_walk(&tx->skbs, skb) { |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 1058 | hdr = (void *) skb->data; |
Jouni Malinen | 7e0aae4 | 2009-05-19 19:25:58 +0300 | [diff] [blame] | 1059 | if (unlikely(ieee80211_is_pspoll(hdr->frame_control))) |
| 1060 | break; /* must not overwrite AID */ |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1061 | if (!skb_queue_is_last(&tx->skbs, skb)) { |
| 1062 | struct sk_buff *next = skb_queue_next(&tx->skbs, skb); |
| 1063 | next_len = next->len; |
| 1064 | } else |
| 1065 | next_len = 0; |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 1066 | group_addr = is_multicast_ether_addr(hdr->addr1); |
Johannes Berg | 03f93c3 | 2008-06-25 14:36:27 +0300 | [diff] [blame] | 1067 | |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 1068 | hdr->duration_id = |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1069 | ieee80211_duration(tx, skb, group_addr, next_len); |
| 1070 | } |
Johannes Berg | 03f93c3 | 2008-06-25 14:36:27 +0300 | [diff] [blame] | 1071 | |
| 1072 | return TX_CONTINUE; |
| 1073 | } |
| 1074 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1075 | /* actual transmit path */ |
| 1076 | |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1077 | static bool ieee80211_tx_prep_agg(struct ieee80211_tx_data *tx, |
| 1078 | struct sk_buff *skb, |
| 1079 | struct ieee80211_tx_info *info, |
| 1080 | struct tid_ampdu_tx *tid_tx, |
| 1081 | int tid) |
| 1082 | { |
| 1083 | bool queued = false; |
Nikolay Martynov | 285fa69 | 2011-11-22 21:50:28 -0500 | [diff] [blame] | 1084 | bool reset_agg_timer = false; |
Helmut Schaa | aa45458 | 2012-03-07 17:20:30 +0100 | [diff] [blame] | 1085 | struct sk_buff *purge_skb = NULL; |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1086 | |
| 1087 | if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) { |
| 1088 | info->flags |= IEEE80211_TX_CTL_AMPDU; |
Nikolay Martynov | 285fa69 | 2011-11-22 21:50:28 -0500 | [diff] [blame] | 1089 | reset_agg_timer = true; |
Johannes Berg | 0ab3370 | 2010-06-10 10:21:42 +0200 | [diff] [blame] | 1090 | } else if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) { |
| 1091 | /* |
| 1092 | * nothing -- this aggregation session is being started |
| 1093 | * but that might still fail with the driver |
| 1094 | */ |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1095 | } else if (!tx->sta->sta.txq[tid]) { |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1096 | spin_lock(&tx->sta->lock); |
| 1097 | /* |
| 1098 | * Need to re-check now, because we may get here |
| 1099 | * |
| 1100 | * 1) in the window during which the setup is actually |
| 1101 | * already done, but not marked yet because not all |
| 1102 | * packets are spliced over to the driver pending |
| 1103 | * queue yet -- if this happened we acquire the lock |
| 1104 | * either before or after the splice happens, but |
| 1105 | * need to recheck which of these cases happened. |
| 1106 | * |
| 1107 | * 2) during session teardown, if the OPERATIONAL bit |
| 1108 | * was cleared due to the teardown but the pointer |
| 1109 | * hasn't been assigned NULL yet (or we loaded it |
| 1110 | * before it was assigned) -- in this case it may |
| 1111 | * now be NULL which means we should just let the |
| 1112 | * packet pass through because splicing the frames |
| 1113 | * back is already done. |
| 1114 | */ |
Johannes Berg | 40b275b | 2011-05-13 14:15:49 +0200 | [diff] [blame] | 1115 | tid_tx = rcu_dereference_protected_tid_tx(tx->sta, tid); |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1116 | |
| 1117 | if (!tid_tx) { |
| 1118 | /* do nothing, let packet pass through */ |
| 1119 | } else if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) { |
| 1120 | info->flags |= IEEE80211_TX_CTL_AMPDU; |
Nikolay Martynov | 285fa69 | 2011-11-22 21:50:28 -0500 | [diff] [blame] | 1121 | reset_agg_timer = true; |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1122 | } else { |
| 1123 | queued = true; |
Emmanuel Grumbach | f6d4671 | 2016-03-17 16:51:42 +0200 | [diff] [blame] | 1124 | if (info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER) { |
| 1125 | clear_sta_flag(tx->sta, WLAN_STA_SP); |
| 1126 | ps_dbg(tx->sta->sdata, |
| 1127 | "STA %pM aid %d: SP frame queued, close the SP w/o telling the peer\n", |
| 1128 | tx->sta->sta.addr, tx->sta->sta.aid); |
| 1129 | } |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1130 | info->control.vif = &tx->sdata->vif; |
Felix Fietkau | cc20ff2 | 2020-09-08 14:36:57 +0200 | [diff] [blame] | 1131 | info->control.flags |= IEEE80211_TX_INTCFL_NEED_TXPROCESSING; |
Emmanuel Grumbach | facde7f | 2016-03-17 16:51:41 +0200 | [diff] [blame] | 1132 | info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS; |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1133 | __skb_queue_tail(&tid_tx->pending, skb); |
Helmut Schaa | aa45458 | 2012-03-07 17:20:30 +0100 | [diff] [blame] | 1134 | if (skb_queue_len(&tid_tx->pending) > STA_MAX_TX_BUFFER) |
| 1135 | purge_skb = __skb_dequeue(&tid_tx->pending); |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1136 | } |
| 1137 | spin_unlock(&tx->sta->lock); |
Helmut Schaa | aa45458 | 2012-03-07 17:20:30 +0100 | [diff] [blame] | 1138 | |
| 1139 | if (purge_skb) |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 1140 | ieee80211_free_txskb(&tx->local->hw, purge_skb); |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1141 | } |
| 1142 | |
Nikolay Martynov | 285fa69 | 2011-11-22 21:50:28 -0500 | [diff] [blame] | 1143 | /* reset session timer */ |
Sara Sharon | 914eac2 | 2018-04-20 13:49:19 +0300 | [diff] [blame] | 1144 | if (reset_agg_timer) |
Felix Fietkau | 12d3952f | 2012-03-18 22:58:06 +0100 | [diff] [blame] | 1145 | tid_tx->last_tx = jiffies; |
Nikolay Martynov | 285fa69 | 2011-11-22 21:50:28 -0500 | [diff] [blame] | 1146 | |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1147 | return queued; |
| 1148 | } |
| 1149 | |
Felix Fietkau | 1a79155 | 2021-06-29 13:28:53 +0200 | [diff] [blame] | 1150 | static void |
| 1151 | ieee80211_aggr_check(struct ieee80211_sub_if_data *sdata, |
| 1152 | struct sta_info *sta, |
| 1153 | struct sk_buff *skb) |
| 1154 | { |
| 1155 | struct rate_control_ref *ref = sdata->local->rate_ctrl; |
| 1156 | u16 tid; |
| 1157 | |
| 1158 | if (!ref || !(ref->ops->capa & RATE_CTRL_CAPA_AMPDU_TRIGGER)) |
| 1159 | return; |
| 1160 | |
| 1161 | if (!sta || !sta->sta.ht_cap.ht_supported || |
| 1162 | !sta->sta.wme || skb_get_queue_mapping(skb) == IEEE80211_AC_VO || |
| 1163 | skb->protocol == sdata->control_port_protocol) |
| 1164 | return; |
| 1165 | |
| 1166 | tid = skb->priority & IEEE80211_QOS_CTL_TID_MASK; |
| 1167 | if (likely(sta->ampdu_mlme.tid_tx[tid])) |
| 1168 | return; |
| 1169 | |
| 1170 | ieee80211_start_tx_ba_session(&sta->sta, tid, 0); |
| 1171 | } |
| 1172 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1173 | /* |
| 1174 | * initialises @tx |
Johannes Berg | 7c10770 | 2015-03-20 14:18:27 +0100 | [diff] [blame] | 1175 | * pass %NULL for the station if unknown, a valid pointer if known |
| 1176 | * or an ERR_PTR() if the station is known not to exist |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1177 | */ |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 1178 | static ieee80211_tx_result |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1179 | ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata, |
| 1180 | struct ieee80211_tx_data *tx, |
Johannes Berg | 7c10770 | 2015-03-20 14:18:27 +0100 | [diff] [blame] | 1181 | struct sta_info *sta, struct sk_buff *skb) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1182 | { |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1183 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1184 | struct ieee80211_hdr *hdr; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1185 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Felix Fietkau | 1a79155 | 2021-06-29 13:28:53 +0200 | [diff] [blame] | 1186 | bool aggr_check = false; |
Johannes Berg | 68f2b51 | 2011-10-07 14:01:24 +0200 | [diff] [blame] | 1187 | int tid; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1188 | |
| 1189 | memset(tx, 0, sizeof(*tx)); |
| 1190 | tx->skb = skb; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1191 | tx->local = local; |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1192 | tx->sdata = sdata; |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1193 | __skb_queue_head_init(&tx->skbs); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1194 | |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 1195 | /* |
| 1196 | * If this flag is set to true anywhere, and we get here, |
| 1197 | * we are doing the needed processing, so remove the flag |
| 1198 | * now. |
| 1199 | */ |
Felix Fietkau | cc20ff2 | 2020-09-08 14:36:57 +0200 | [diff] [blame] | 1200 | info->control.flags &= ~IEEE80211_TX_INTCFL_NEED_TXPROCESSING; |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 1201 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1202 | hdr = (struct ieee80211_hdr *) skb->data; |
| 1203 | |
Johannes Berg | 7c10770 | 2015-03-20 14:18:27 +0100 | [diff] [blame] | 1204 | if (likely(sta)) { |
| 1205 | if (!IS_ERR(sta)) |
| 1206 | tx->sta = sta; |
| 1207 | } else { |
| 1208 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) { |
| 1209 | tx->sta = rcu_dereference(sdata->u.vlan.sta); |
| 1210 | if (!tx->sta && sdata->wdev.use_4addr) |
| 1211 | return TX_DROP; |
Markus Theil | 10cb8e6 | 2021-02-06 12:51:12 +0100 | [diff] [blame] | 1212 | } else if (tx->sdata->control_port_protocol == tx->skb->protocol) { |
Johannes Berg | 7c10770 | 2015-03-20 14:18:27 +0100 | [diff] [blame] | 1213 | tx->sta = sta_info_get_bss(sdata, hdr->addr1); |
| 1214 | } |
Felix Fietkau | 1a79155 | 2021-06-29 13:28:53 +0200 | [diff] [blame] | 1215 | if (!tx->sta && !is_multicast_ether_addr(hdr->addr1)) { |
Johannes Berg | 7c10770 | 2015-03-20 14:18:27 +0100 | [diff] [blame] | 1216 | tx->sta = sta_info_get(sdata, hdr->addr1); |
Felix Fietkau | 1a79155 | 2021-06-29 13:28:53 +0200 | [diff] [blame] | 1217 | aggr_check = true; |
| 1218 | } |
Felix Fietkau | 3f0e0b2 | 2010-01-08 18:15:13 +0100 | [diff] [blame] | 1219 | } |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1220 | |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 1221 | if (tx->sta && ieee80211_is_data_qos(hdr->frame_control) && |
Johannes Berg | 49a5954 | 2011-09-29 16:04:41 +0200 | [diff] [blame] | 1222 | !ieee80211_is_qos_nullfunc(hdr->frame_control) && |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 1223 | ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION) && |
| 1224 | !ieee80211_hw_check(&local->hw, TX_AMPDU_SETUP_IN_HW)) { |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 1225 | struct tid_ampdu_tx *tid_tx; |
| 1226 | |
Sara Sharon | a1f2ba04c | 2018-02-19 14:48:40 +0200 | [diff] [blame] | 1227 | tid = ieee80211_get_tid(hdr); |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1228 | tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]); |
Felix Fietkau | 1a79155 | 2021-06-29 13:28:53 +0200 | [diff] [blame] | 1229 | if (!tid_tx && aggr_check) { |
| 1230 | ieee80211_aggr_check(sdata, tx->sta, skb); |
| 1231 | tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]); |
| 1232 | } |
| 1233 | |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1234 | if (tid_tx) { |
| 1235 | bool queued; |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 1236 | |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 1237 | queued = ieee80211_tx_prep_agg(tx, skb, info, |
| 1238 | tid_tx, tid); |
| 1239 | |
| 1240 | if (unlikely(queued)) |
| 1241 | return TX_QUEUED; |
| 1242 | } |
Sujith | 8b30b1f | 2008-10-24 09:55:27 +0530 | [diff] [blame] | 1243 | } |
| 1244 | |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1245 | if (is_multicast_ether_addr(hdr->addr1)) { |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 1246 | tx->flags &= ~IEEE80211_TX_UNICAST; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1247 | info->flags |= IEEE80211_TX_CTL_NO_ACK; |
Simon Wunderlich | 6fd67e9 | 2011-11-18 14:20:42 +0100 | [diff] [blame] | 1248 | } else |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 1249 | tx->flags |= IEEE80211_TX_UNICAST; |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1250 | |
Johannes Berg | a26eb27 | 2011-10-07 14:01:25 +0200 | [diff] [blame] | 1251 | if (!(info->flags & IEEE80211_TX_CTL_DONTFRAG)) { |
| 1252 | if (!(tx->flags & IEEE80211_TX_UNICAST) || |
| 1253 | skb->len + FCS_LEN <= local->hw.wiphy->frag_threshold || |
| 1254 | info->flags & IEEE80211_TX_CTL_AMPDU) |
| 1255 | info->flags |= IEEE80211_TX_CTL_DONTFRAG; |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1256 | } |
| 1257 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1258 | if (!tx->sta) |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1259 | info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT; |
Felix Fietkau | f7418bc | 2015-09-24 14:59:49 +0200 | [diff] [blame] | 1260 | 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] | 1261 | info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT; |
Felix Fietkau | f7418bc | 2015-09-24 14:59:49 +0200 | [diff] [blame] | 1262 | ieee80211_check_fast_xmit(tx->sta); |
| 1263 | } |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1264 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1265 | info->flags |= IEEE80211_TX_CTL_FIRST_FRAGMENT; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1266 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 1267 | return TX_CONTINUE; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1268 | } |
| 1269 | |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1270 | static struct txq_info *ieee80211_get_txq(struct ieee80211_local *local, |
| 1271 | struct ieee80211_vif *vif, |
Michal Kazior | dbef536 | 2017-01-13 13:32:51 +0100 | [diff] [blame] | 1272 | struct sta_info *sta, |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1273 | struct sk_buff *skb) |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1274 | { |
| 1275 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1276 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1277 | struct ieee80211_txq *txq = NULL; |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1278 | |
Felix Fietkau | c3732a7 | 2016-02-28 15:19:53 +0100 | [diff] [blame] | 1279 | if ((info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) || |
| 1280 | (info->control.flags & IEEE80211_TX_CTRL_PS_RESPONSE)) |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1281 | return NULL; |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1282 | |
Felix Fietkau | cc20ff2 | 2020-09-08 14:36:57 +0200 | [diff] [blame] | 1283 | if (!(info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP) && |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 1284 | unlikely(!ieee80211_is_data_present(hdr->frame_control))) { |
Johannes Berg | adf8ed0 | 2018-08-31 11:31:08 +0300 | [diff] [blame] | 1285 | if ((!ieee80211_is_mgmt(hdr->frame_control) || |
Sara Sharon | 0eeb2b6 | 2018-09-05 08:06:09 +0300 | [diff] [blame] | 1286 | ieee80211_is_bufferable_mmpdu(hdr->frame_control) || |
| 1287 | vif->type == NL80211_IFTYPE_STATION) && |
Johannes Berg | adf8ed0 | 2018-08-31 11:31:08 +0300 | [diff] [blame] | 1288 | sta && sta->uploaded) { |
| 1289 | /* |
| 1290 | * This will be NULL if the driver didn't set the |
| 1291 | * opt-in hardware flag. |
| 1292 | */ |
| 1293 | txq = sta->sta.txq[IEEE80211_NUM_TIDS]; |
| 1294 | } |
| 1295 | } else if (sta) { |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1296 | u8 tid = skb->priority & IEEE80211_QOS_CTL_TID_MASK; |
| 1297 | |
Michal Kazior | dbef536 | 2017-01-13 13:32:51 +0100 | [diff] [blame] | 1298 | if (!sta->uploaded) |
| 1299 | return NULL; |
| 1300 | |
| 1301 | txq = sta->sta.txq[tid]; |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1302 | } else if (vif) { |
| 1303 | txq = vif->txq; |
| 1304 | } |
| 1305 | |
| 1306 | if (!txq) |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1307 | return NULL; |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1308 | |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1309 | return to_txq_info(txq); |
| 1310 | } |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1311 | |
Michal Kazior | 5caa328 | 2016-05-19 10:37:51 +0200 | [diff] [blame] | 1312 | static void ieee80211_set_skb_enqueue_time(struct sk_buff *skb) |
| 1313 | { |
| 1314 | IEEE80211_SKB_CB(skb)->control.enqueue_time = codel_get_time(); |
| 1315 | } |
| 1316 | |
Michal Kazior | 5caa328 | 2016-05-19 10:37:51 +0200 | [diff] [blame] | 1317 | static u32 codel_skb_len_func(const struct sk_buff *skb) |
| 1318 | { |
| 1319 | return skb->len; |
| 1320 | } |
| 1321 | |
| 1322 | static codel_time_t codel_skb_time_func(const struct sk_buff *skb) |
| 1323 | { |
| 1324 | const struct ieee80211_tx_info *info; |
| 1325 | |
| 1326 | info = (const struct ieee80211_tx_info *)skb->cb; |
| 1327 | return info->control.enqueue_time; |
| 1328 | } |
| 1329 | |
| 1330 | static struct sk_buff *codel_dequeue_func(struct codel_vars *cvars, |
| 1331 | void *ctx) |
| 1332 | { |
| 1333 | struct ieee80211_local *local; |
| 1334 | struct txq_info *txqi; |
| 1335 | struct fq *fq; |
| 1336 | struct fq_flow *flow; |
| 1337 | |
| 1338 | txqi = ctx; |
| 1339 | local = vif_to_sdata(txqi->txq.vif)->local; |
| 1340 | fq = &local->fq; |
| 1341 | |
| 1342 | if (cvars == &txqi->def_cvars) |
Felix Fietkau | bf9009b | 2020-12-18 19:47:14 +0100 | [diff] [blame] | 1343 | flow = &txqi->tin.default_flow; |
Michal Kazior | 5caa328 | 2016-05-19 10:37:51 +0200 | [diff] [blame] | 1344 | else |
| 1345 | flow = &fq->flows[cvars - local->cvars]; |
| 1346 | |
| 1347 | return fq_flow_dequeue(fq, flow); |
| 1348 | } |
| 1349 | |
| 1350 | static void codel_drop_func(struct sk_buff *skb, |
| 1351 | void *ctx) |
| 1352 | { |
| 1353 | struct ieee80211_local *local; |
| 1354 | struct ieee80211_hw *hw; |
| 1355 | struct txq_info *txqi; |
| 1356 | |
| 1357 | txqi = ctx; |
| 1358 | local = vif_to_sdata(txqi->txq.vif)->local; |
| 1359 | hw = &local->hw; |
| 1360 | |
| 1361 | ieee80211_free_txskb(hw, skb); |
| 1362 | } |
| 1363 | |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1364 | static struct sk_buff *fq_tin_dequeue_func(struct fq *fq, |
| 1365 | struct fq_tin *tin, |
| 1366 | struct fq_flow *flow) |
| 1367 | { |
Michal Kazior | 5caa328 | 2016-05-19 10:37:51 +0200 | [diff] [blame] | 1368 | struct ieee80211_local *local; |
| 1369 | struct txq_info *txqi; |
| 1370 | struct codel_vars *cvars; |
| 1371 | struct codel_params *cparams; |
| 1372 | struct codel_stats *cstats; |
| 1373 | |
| 1374 | local = container_of(fq, struct ieee80211_local, fq); |
| 1375 | txqi = container_of(tin, struct txq_info, tin); |
Toke Høiland-Jørgensen | 8d51dbb | 2016-09-12 15:55:43 +0200 | [diff] [blame] | 1376 | cstats = &txqi->cstats; |
Michal Kazior | 5caa328 | 2016-05-19 10:37:51 +0200 | [diff] [blame] | 1377 | |
Toke Høiland-Jørgensen | 484a54c | 2017-04-06 11:38:26 +0200 | [diff] [blame] | 1378 | if (txqi->txq.sta) { |
| 1379 | struct sta_info *sta = container_of(txqi->txq.sta, |
| 1380 | struct sta_info, sta); |
| 1381 | cparams = &sta->cparams; |
| 1382 | } else { |
| 1383 | cparams = &local->cparams; |
| 1384 | } |
| 1385 | |
Felix Fietkau | bf9009b | 2020-12-18 19:47:14 +0100 | [diff] [blame] | 1386 | if (flow == &tin->default_flow) |
Michal Kazior | 5caa328 | 2016-05-19 10:37:51 +0200 | [diff] [blame] | 1387 | cvars = &txqi->def_cvars; |
| 1388 | else |
| 1389 | cvars = &local->cvars[flow - fq->flows]; |
| 1390 | |
| 1391 | return codel_dequeue(txqi, |
| 1392 | &flow->backlog, |
| 1393 | cparams, |
| 1394 | cvars, |
| 1395 | cstats, |
| 1396 | codel_skb_len_func, |
| 1397 | codel_skb_time_func, |
| 1398 | codel_drop_func, |
| 1399 | codel_dequeue_func); |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1400 | } |
| 1401 | |
| 1402 | static void fq_skb_free_func(struct fq *fq, |
| 1403 | struct fq_tin *tin, |
| 1404 | struct fq_flow *flow, |
| 1405 | struct sk_buff *skb) |
| 1406 | { |
| 1407 | struct ieee80211_local *local; |
| 1408 | |
| 1409 | local = container_of(fq, struct ieee80211_local, fq); |
| 1410 | ieee80211_free_txskb(&local->hw, skb); |
| 1411 | } |
| 1412 | |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1413 | static void ieee80211_txq_enqueue(struct ieee80211_local *local, |
| 1414 | struct txq_info *txqi, |
| 1415 | struct sk_buff *skb) |
| 1416 | { |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1417 | struct fq *fq = &local->fq; |
| 1418 | struct fq_tin *tin = &txqi->tin; |
Felix Fietkau | f2af2df | 2019-03-16 18:06:32 +0100 | [diff] [blame] | 1419 | u32 flow_idx = fq_flow_idx(fq, skb); |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1420 | |
Michal Kazior | 5caa328 | 2016-05-19 10:37:51 +0200 | [diff] [blame] | 1421 | ieee80211_set_skb_enqueue_time(skb); |
Felix Fietkau | f2af2df | 2019-03-16 18:06:32 +0100 | [diff] [blame] | 1422 | |
| 1423 | spin_lock_bh(&fq->lock); |
Johannes Berg | 73bc9e0 | 2021-03-19 23:28:01 +0100 | [diff] [blame] | 1424 | /* |
| 1425 | * For management frames, don't really apply codel etc., |
| 1426 | * we don't want to apply any shaping or anything we just |
| 1427 | * want to simplify the driver API by having them on the |
| 1428 | * txqi. |
| 1429 | */ |
Johannes Berg | ca47b46 | 2021-04-16 13:47:04 +0200 | [diff] [blame] | 1430 | if (unlikely(txqi->txq.tid == IEEE80211_NUM_TIDS)) { |
| 1431 | IEEE80211_SKB_CB(skb)->control.flags |= |
| 1432 | IEEE80211_TX_INTCFL_NEED_TXPROCESSING; |
Johannes Berg | 73bc9e0 | 2021-03-19 23:28:01 +0100 | [diff] [blame] | 1433 | __skb_queue_tail(&txqi->frags, skb); |
Johannes Berg | ca47b46 | 2021-04-16 13:47:04 +0200 | [diff] [blame] | 1434 | } else { |
Johannes Berg | 73bc9e0 | 2021-03-19 23:28:01 +0100 | [diff] [blame] | 1435 | fq_tin_enqueue(fq, tin, flow_idx, skb, |
| 1436 | fq_skb_free_func); |
Johannes Berg | ca47b46 | 2021-04-16 13:47:04 +0200 | [diff] [blame] | 1437 | } |
Felix Fietkau | f2af2df | 2019-03-16 18:06:32 +0100 | [diff] [blame] | 1438 | spin_unlock_bh(&fq->lock); |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1439 | } |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1440 | |
Johannes Berg | 2a9e257 | 2017-10-06 11:53:33 +0200 | [diff] [blame] | 1441 | static bool fq_vlan_filter_func(struct fq *fq, struct fq_tin *tin, |
| 1442 | struct fq_flow *flow, struct sk_buff *skb, |
| 1443 | void *data) |
| 1444 | { |
| 1445 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 1446 | |
| 1447 | return info->control.vif == data; |
| 1448 | } |
| 1449 | |
| 1450 | void ieee80211_txq_remove_vlan(struct ieee80211_local *local, |
| 1451 | struct ieee80211_sub_if_data *sdata) |
| 1452 | { |
| 1453 | struct fq *fq = &local->fq; |
| 1454 | struct txq_info *txqi; |
| 1455 | struct fq_tin *tin; |
| 1456 | struct ieee80211_sub_if_data *ap; |
| 1457 | |
| 1458 | if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_AP_VLAN)) |
| 1459 | return; |
| 1460 | |
| 1461 | ap = container_of(sdata->bss, struct ieee80211_sub_if_data, u.ap); |
| 1462 | |
| 1463 | if (!ap->vif.txq) |
| 1464 | return; |
| 1465 | |
| 1466 | txqi = to_txq_info(ap->vif.txq); |
| 1467 | tin = &txqi->tin; |
| 1468 | |
| 1469 | spin_lock_bh(&fq->lock); |
| 1470 | fq_tin_filter(fq, tin, fq_vlan_filter_func, &sdata->vif, |
| 1471 | fq_skb_free_func); |
| 1472 | spin_unlock_bh(&fq->lock); |
| 1473 | } |
| 1474 | |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1475 | void ieee80211_txq_init(struct ieee80211_sub_if_data *sdata, |
| 1476 | struct sta_info *sta, |
| 1477 | struct txq_info *txqi, int tid) |
| 1478 | { |
| 1479 | fq_tin_init(&txqi->tin); |
Michal Kazior | 5caa328 | 2016-05-19 10:37:51 +0200 | [diff] [blame] | 1480 | codel_vars_init(&txqi->def_cvars); |
Toke Høiland-Jørgensen | 8d51dbb | 2016-09-12 15:55:43 +0200 | [diff] [blame] | 1481 | codel_stats_init(&txqi->cstats); |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 1482 | __skb_queue_head_init(&txqi->frags); |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 1483 | RB_CLEAR_NODE(&txqi->schedule_order); |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1484 | |
| 1485 | txqi->txq.vif = &sdata->vif; |
| 1486 | |
Johannes Berg | adf8ed0 | 2018-08-31 11:31:08 +0300 | [diff] [blame] | 1487 | if (!sta) { |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1488 | sdata->vif.txq = &txqi->txq; |
| 1489 | txqi->txq.tid = 0; |
| 1490 | txqi->txq.ac = IEEE80211_AC_BE; |
Johannes Berg | adf8ed0 | 2018-08-31 11:31:08 +0300 | [diff] [blame] | 1491 | |
| 1492 | return; |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1493 | } |
Johannes Berg | adf8ed0 | 2018-08-31 11:31:08 +0300 | [diff] [blame] | 1494 | |
| 1495 | if (tid == IEEE80211_NUM_TIDS) { |
Sara Sharon | 0eeb2b6 | 2018-09-05 08:06:09 +0300 | [diff] [blame] | 1496 | if (sdata->vif.type == NL80211_IFTYPE_STATION) { |
| 1497 | /* Drivers need to opt in to the management MPDU TXQ */ |
| 1498 | if (!ieee80211_hw_check(&sdata->local->hw, |
| 1499 | STA_MMPDU_TXQ)) |
| 1500 | return; |
| 1501 | } else if (!ieee80211_hw_check(&sdata->local->hw, |
| 1502 | BUFF_MMPDU_TXQ)) { |
| 1503 | /* Drivers need to opt in to the bufferable MMPDU TXQ */ |
Johannes Berg | adf8ed0 | 2018-08-31 11:31:08 +0300 | [diff] [blame] | 1504 | return; |
Sara Sharon | 0eeb2b6 | 2018-09-05 08:06:09 +0300 | [diff] [blame] | 1505 | } |
Johannes Berg | adf8ed0 | 2018-08-31 11:31:08 +0300 | [diff] [blame] | 1506 | txqi->txq.ac = IEEE80211_AC_VO; |
| 1507 | } else { |
| 1508 | txqi->txq.ac = ieee80211_ac_from_tid(tid); |
| 1509 | } |
| 1510 | |
| 1511 | txqi->txq.sta = &sta->sta; |
| 1512 | txqi->txq.tid = tid; |
| 1513 | sta->sta.txq[tid] = &txqi->txq; |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1514 | } |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1515 | |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1516 | void ieee80211_txq_purge(struct ieee80211_local *local, |
| 1517 | struct txq_info *txqi) |
| 1518 | { |
| 1519 | struct fq *fq = &local->fq; |
| 1520 | struct fq_tin *tin = &txqi->tin; |
| 1521 | |
Toke Høiland-Jørgensen | b4809e9 | 2018-12-18 17:02:08 -0800 | [diff] [blame] | 1522 | spin_lock_bh(&fq->lock); |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1523 | fq_tin_reset(fq, tin, fq_skb_free_func); |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 1524 | ieee80211_purge_tx_queue(&local->hw, &txqi->frags); |
Toke Høiland-Jørgensen | b4809e9 | 2018-12-18 17:02:08 -0800 | [diff] [blame] | 1525 | spin_unlock_bh(&fq->lock); |
| 1526 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 1527 | ieee80211_unschedule_txq(&local->hw, &txqi->txq, true); |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1528 | } |
| 1529 | |
Toke Høiland-Jørgensen | 2fe4a29 | 2018-05-08 13:03:50 +0200 | [diff] [blame] | 1530 | void ieee80211_txq_set_params(struct ieee80211_local *local) |
| 1531 | { |
| 1532 | if (local->hw.wiphy->txq_limit) |
| 1533 | local->fq.limit = local->hw.wiphy->txq_limit; |
| 1534 | else |
| 1535 | local->hw.wiphy->txq_limit = local->fq.limit; |
| 1536 | |
| 1537 | if (local->hw.wiphy->txq_memory_limit) |
| 1538 | local->fq.memory_limit = local->hw.wiphy->txq_memory_limit; |
| 1539 | else |
| 1540 | local->hw.wiphy->txq_memory_limit = local->fq.memory_limit; |
| 1541 | |
| 1542 | if (local->hw.wiphy->txq_quantum) |
| 1543 | local->fq.quantum = local->hw.wiphy->txq_quantum; |
| 1544 | else |
| 1545 | local->hw.wiphy->txq_quantum = local->fq.quantum; |
| 1546 | } |
| 1547 | |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1548 | int ieee80211_txq_setup_flows(struct ieee80211_local *local) |
| 1549 | { |
| 1550 | struct fq *fq = &local->fq; |
| 1551 | int ret; |
Michal Kazior | 5caa328 | 2016-05-19 10:37:51 +0200 | [diff] [blame] | 1552 | int i; |
Toke Høiland-Jørgensen | 3ff23cd | 2016-09-23 21:59:11 +0200 | [diff] [blame] | 1553 | bool supp_vht = false; |
| 1554 | enum nl80211_band band; |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1555 | |
| 1556 | if (!local->ops->wake_tx_queue) |
| 1557 | return 0; |
| 1558 | |
| 1559 | ret = fq_init(fq, 4096); |
| 1560 | if (ret) |
| 1561 | return ret; |
| 1562 | |
Toke Høiland-Jørgensen | 3ff23cd | 2016-09-23 21:59:11 +0200 | [diff] [blame] | 1563 | /* |
| 1564 | * If the hardware doesn't support VHT, it is safe to limit the maximum |
| 1565 | * queue size. 4 Mbytes is 64 max-size aggregates in 802.11n. |
| 1566 | */ |
| 1567 | for (band = 0; band < NUM_NL80211_BANDS; band++) { |
| 1568 | struct ieee80211_supported_band *sband; |
| 1569 | |
| 1570 | sband = local->hw.wiphy->bands[band]; |
| 1571 | if (!sband) |
| 1572 | continue; |
| 1573 | |
| 1574 | supp_vht = supp_vht || sband->vht_cap.vht_supported; |
| 1575 | } |
| 1576 | |
| 1577 | if (!supp_vht) |
| 1578 | fq->memory_limit = 4 << 20; /* 4 Mbytes */ |
| 1579 | |
Michal Kazior | 5caa328 | 2016-05-19 10:37:51 +0200 | [diff] [blame] | 1580 | codel_params_init(&local->cparams); |
Michal Kazior | 5caa328 | 2016-05-19 10:37:51 +0200 | [diff] [blame] | 1581 | local->cparams.interval = MS2TIME(100); |
| 1582 | local->cparams.target = MS2TIME(20); |
| 1583 | local->cparams.ecn = true; |
| 1584 | |
| 1585 | local->cvars = kcalloc(fq->flows_cnt, sizeof(local->cvars[0]), |
| 1586 | GFP_KERNEL); |
| 1587 | if (!local->cvars) { |
Michal Kazior | 59a7c82 | 2016-06-29 14:00:34 +0200 | [diff] [blame] | 1588 | spin_lock_bh(&fq->lock); |
Michal Kazior | 5caa328 | 2016-05-19 10:37:51 +0200 | [diff] [blame] | 1589 | fq_reset(fq, fq_skb_free_func); |
Michal Kazior | 59a7c82 | 2016-06-29 14:00:34 +0200 | [diff] [blame] | 1590 | spin_unlock_bh(&fq->lock); |
Michal Kazior | 5caa328 | 2016-05-19 10:37:51 +0200 | [diff] [blame] | 1591 | return -ENOMEM; |
| 1592 | } |
| 1593 | |
| 1594 | for (i = 0; i < fq->flows_cnt; i++) |
| 1595 | codel_vars_init(&local->cvars[i]); |
| 1596 | |
Toke Høiland-Jørgensen | 2fe4a29 | 2018-05-08 13:03:50 +0200 | [diff] [blame] | 1597 | ieee80211_txq_set_params(local); |
| 1598 | |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1599 | return 0; |
| 1600 | } |
| 1601 | |
| 1602 | void ieee80211_txq_teardown_flows(struct ieee80211_local *local) |
| 1603 | { |
| 1604 | struct fq *fq = &local->fq; |
| 1605 | |
| 1606 | if (!local->ops->wake_tx_queue) |
| 1607 | return; |
| 1608 | |
Michal Kazior | 5caa328 | 2016-05-19 10:37:51 +0200 | [diff] [blame] | 1609 | kfree(local->cvars); |
| 1610 | local->cvars = NULL; |
| 1611 | |
Michal Kazior | 59a7c82 | 2016-06-29 14:00:34 +0200 | [diff] [blame] | 1612 | spin_lock_bh(&fq->lock); |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1613 | fq_reset(fq, fq_skb_free_func); |
Michal Kazior | 59a7c82 | 2016-06-29 14:00:34 +0200 | [diff] [blame] | 1614 | spin_unlock_bh(&fq->lock); |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1615 | } |
| 1616 | |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 1617 | static bool ieee80211_queue_skb(struct ieee80211_local *local, |
| 1618 | struct ieee80211_sub_if_data *sdata, |
| 1619 | struct sta_info *sta, |
| 1620 | struct sk_buff *skb) |
| 1621 | { |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 1622 | struct ieee80211_vif *vif; |
| 1623 | struct txq_info *txqi; |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 1624 | |
| 1625 | if (!local->ops->wake_tx_queue || |
| 1626 | sdata->vif.type == NL80211_IFTYPE_MONITOR) |
| 1627 | return false; |
| 1628 | |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 1629 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
| 1630 | sdata = container_of(sdata->bss, |
| 1631 | struct ieee80211_sub_if_data, u.ap); |
| 1632 | |
| 1633 | vif = &sdata->vif; |
Michal Kazior | dbef536 | 2017-01-13 13:32:51 +0100 | [diff] [blame] | 1634 | txqi = ieee80211_get_txq(local, vif, sta, skb); |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 1635 | |
| 1636 | if (!txqi) |
| 1637 | return false; |
| 1638 | |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 1639 | ieee80211_txq_enqueue(local, txqi, skb); |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 1640 | |
Toke Høiland-Jørgensen | 1866760 | 2018-12-18 17:02:06 -0800 | [diff] [blame] | 1641 | schedule_and_wake_txq(local, txqi); |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 1642 | |
| 1643 | return true; |
| 1644 | } |
| 1645 | |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1646 | static bool ieee80211_tx_frags(struct ieee80211_local *local, |
| 1647 | struct ieee80211_vif *vif, |
Johannes Berg | 4fd0328 | 2019-10-01 23:26:35 +0200 | [diff] [blame] | 1648 | struct sta_info *sta, |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1649 | struct sk_buff_head *skbs, |
| 1650 | bool txpending) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1651 | { |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1652 | struct ieee80211_tx_control control = {}; |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1653 | struct sk_buff *skb, *tmp; |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1654 | unsigned long flags; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1655 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1656 | skb_queue_walk_safe(skbs, skb, tmp) { |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1657 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 1658 | int q = info->hw_queue; |
| 1659 | |
| 1660 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 1661 | if (WARN_ON_ONCE(q >= local->hw.queues)) { |
| 1662 | __skb_unlink(skb, skbs); |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 1663 | ieee80211_free_txskb(&local->hw, skb); |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1664 | continue; |
| 1665 | } |
| 1666 | #endif |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1667 | |
| 1668 | spin_lock_irqsave(&local->queue_stop_reason_lock, flags); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1669 | if (local->queue_stop_reasons[q] || |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1670 | (!txpending && !skb_queue_empty(&local->pending[q]))) { |
Seth Forshee | 6c17b77 | 2013-02-11 11:21:07 -0600 | [diff] [blame] | 1671 | if (unlikely(info->flags & |
Seth Forshee | a7679ed | 2013-02-25 14:58:05 -0600 | [diff] [blame] | 1672 | IEEE80211_TX_INTFL_OFFCHAN_TX_OK)) { |
| 1673 | if (local->queue_stop_reasons[q] & |
| 1674 | ~BIT(IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL)) { |
| 1675 | /* |
| 1676 | * Drop off-channel frames if queues |
| 1677 | * are stopped for any reason other |
| 1678 | * than off-channel operation. Never |
| 1679 | * queue them. |
| 1680 | */ |
| 1681 | spin_unlock_irqrestore( |
| 1682 | &local->queue_stop_reason_lock, |
| 1683 | flags); |
| 1684 | ieee80211_purge_tx_queue(&local->hw, |
| 1685 | skbs); |
| 1686 | return true; |
| 1687 | } |
| 1688 | } else { |
| 1689 | |
Seth Forshee | 6c17b77 | 2013-02-11 11:21:07 -0600 | [diff] [blame] | 1690 | /* |
Seth Forshee | a7679ed | 2013-02-25 14:58:05 -0600 | [diff] [blame] | 1691 | * Since queue is stopped, queue up frames for |
| 1692 | * later transmission from the tx-pending |
| 1693 | * tasklet when the queue is woken again. |
Seth Forshee | 6c17b77 | 2013-02-11 11:21:07 -0600 | [diff] [blame] | 1694 | */ |
Seth Forshee | a7679ed | 2013-02-25 14:58:05 -0600 | [diff] [blame] | 1695 | if (txpending) |
| 1696 | skb_queue_splice_init(skbs, |
| 1697 | &local->pending[q]); |
| 1698 | else |
| 1699 | skb_queue_splice_tail_init(skbs, |
| 1700 | &local->pending[q]); |
| 1701 | |
| 1702 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, |
| 1703 | flags); |
| 1704 | return false; |
Seth Forshee | 6c17b77 | 2013-02-11 11:21:07 -0600 | [diff] [blame] | 1705 | } |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1706 | } |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1707 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
Tomas Winkler | f8e79dd | 2008-07-24 18:46:44 +0300 | [diff] [blame] | 1708 | |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1709 | info->control.vif = vif; |
Johannes Berg | 4fd0328 | 2019-10-01 23:26:35 +0200 | [diff] [blame] | 1710 | control.sta = sta ? &sta->sta : NULL; |
Johannes Berg | ec25acc | 2010-07-22 17:11:28 +0200 | [diff] [blame] | 1711 | |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1712 | __skb_unlink(skb, skbs); |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1713 | drv_tx(local, &control, skb); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1714 | } |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 1715 | |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1716 | return true; |
| 1717 | } |
| 1718 | |
| 1719 | /* |
| 1720 | * Returns false if the frame couldn't be transmitted but was queued instead. |
| 1721 | */ |
| 1722 | static bool __ieee80211_tx(struct ieee80211_local *local, |
| 1723 | struct sk_buff_head *skbs, int led_len, |
| 1724 | struct sta_info *sta, bool txpending) |
| 1725 | { |
| 1726 | struct ieee80211_tx_info *info; |
| 1727 | struct ieee80211_sub_if_data *sdata; |
| 1728 | struct ieee80211_vif *vif; |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1729 | struct sk_buff *skb; |
Colin Ian King | 958574c | 2021-03-28 22:37:29 +0100 | [diff] [blame] | 1730 | bool result; |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1731 | __le16 fc; |
| 1732 | |
| 1733 | if (WARN_ON(skb_queue_empty(skbs))) |
| 1734 | return true; |
| 1735 | |
| 1736 | skb = skb_peek(skbs); |
| 1737 | fc = ((struct ieee80211_hdr *)skb->data)->frame_control; |
| 1738 | info = IEEE80211_SKB_CB(skb); |
| 1739 | sdata = vif_to_sdata(info->control.vif); |
| 1740 | if (sta && !sta->uploaded) |
| 1741 | sta = NULL; |
| 1742 | |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1743 | switch (sdata->vif.type) { |
| 1744 | case NL80211_IFTYPE_MONITOR: |
Aviya Erenfeld | d821218 | 2016-08-29 23:25:15 +0300 | [diff] [blame] | 1745 | if (sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE) { |
Johannes Berg | c82b5a7 | 2013-07-14 23:39:20 +0300 | [diff] [blame] | 1746 | vif = &sdata->vif; |
| 1747 | break; |
| 1748 | } |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 1749 | sdata = rcu_dereference(local->monitor_sdata); |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1750 | if (sdata) { |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 1751 | vif = &sdata->vif; |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1752 | info->hw_queue = |
| 1753 | vif->hw_queue[skb_get_queue_mapping(skb)]; |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 1754 | } else if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL)) { |
Johannes Berg | 63b4d8b | 2015-11-24 15:41:50 +0100 | [diff] [blame] | 1755 | ieee80211_purge_tx_queue(&local->hw, skbs); |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1756 | return true; |
| 1757 | } else |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 1758 | vif = NULL; |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1759 | break; |
| 1760 | case NL80211_IFTYPE_AP_VLAN: |
| 1761 | sdata = container_of(sdata->bss, |
| 1762 | struct ieee80211_sub_if_data, u.ap); |
Gustavo A. R. Silva | fc0561d | 2020-07-07 15:45:48 -0500 | [diff] [blame] | 1763 | fallthrough; |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1764 | default: |
| 1765 | vif = &sdata->vif; |
| 1766 | break; |
| 1767 | } |
| 1768 | |
Johannes Berg | 4fd0328 | 2019-10-01 23:26:35 +0200 | [diff] [blame] | 1769 | result = ieee80211_tx_frags(local, vif, sta, skbs, txpending); |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1770 | |
Johannes Berg | 74e4dbf | 2011-11-16 15:28:57 +0100 | [diff] [blame] | 1771 | ieee80211_tpt_led_trig_tx(local, fc, led_len); |
Johannes Berg | 74e4dbf | 2011-11-16 15:28:57 +0100 | [diff] [blame] | 1772 | |
Johannes Berg | 4db4e0a | 2011-11-24 14:47:36 +0100 | [diff] [blame] | 1773 | WARN_ON_ONCE(!skb_queue_empty(skbs)); |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1774 | |
Johannes Berg | 11127e9 | 2011-11-16 16:02:47 +0100 | [diff] [blame] | 1775 | return result; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1776 | } |
| 1777 | |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1778 | /* |
| 1779 | * Invoke TX handlers, return 0 on success and non-zero if the |
| 1780 | * frame was dropped or queued. |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 1781 | * |
| 1782 | * The handlers are split into an early and late part. The latter is everything |
| 1783 | * that can be sensitive to reordering, and will be deferred to after packets |
| 1784 | * are dequeued from the intermediate queues (when they are enabled). |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1785 | */ |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 1786 | static int invoke_tx_handlers_early(struct ieee80211_tx_data *tx) |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1787 | { |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1788 | ieee80211_tx_result res = TX_DROP; |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1789 | |
Johannes Berg | 9aa4aee | 2009-10-29 08:43:48 +0100 | [diff] [blame] | 1790 | #define CALL_TXH(txh) \ |
| 1791 | do { \ |
| 1792 | res = txh(tx); \ |
| 1793 | if (res != TX_CONTINUE) \ |
| 1794 | goto txh_done; \ |
| 1795 | } while (0) |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1796 | |
Kalle Valo | 5c1b98a | 2010-01-12 10:42:46 +0200 | [diff] [blame] | 1797 | CALL_TXH(ieee80211_tx_h_dynamic_ps); |
Johannes Berg | 9aa4aee | 2009-10-29 08:43:48 +0100 | [diff] [blame] | 1798 | CALL_TXH(ieee80211_tx_h_check_assoc); |
| 1799 | CALL_TXH(ieee80211_tx_h_ps_buf); |
Johannes Berg | a621fa4 | 2010-08-27 14:26:54 +0300 | [diff] [blame] | 1800 | CALL_TXH(ieee80211_tx_h_check_control_port_protocol); |
Johannes Berg | 9aa4aee | 2009-10-29 08:43:48 +0100 | [diff] [blame] | 1801 | CALL_TXH(ieee80211_tx_h_select_key); |
Johannes Berg | c6fcf6b | 2010-01-17 01:47:59 +0100 | [diff] [blame] | 1802 | |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 1803 | txh_done: |
| 1804 | if (unlikely(res == TX_DROP)) { |
| 1805 | I802_DEBUG_INC(tx->local->tx_handlers_drop); |
| 1806 | if (tx->skb) |
| 1807 | ieee80211_free_txskb(&tx->local->hw, tx->skb); |
| 1808 | else |
| 1809 | ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs); |
| 1810 | return -1; |
| 1811 | } else if (unlikely(res == TX_QUEUED)) { |
| 1812 | I802_DEBUG_INC(tx->local->tx_handlers_queued); |
| 1813 | return -1; |
| 1814 | } |
| 1815 | |
| 1816 | return 0; |
| 1817 | } |
| 1818 | |
| 1819 | /* |
| 1820 | * Late handlers can be called while the sta lock is held. Handlers that can |
| 1821 | * cause packets to be generated will cause deadlock! |
| 1822 | */ |
| 1823 | static int invoke_tx_handlers_late(struct ieee80211_tx_data *tx) |
| 1824 | { |
| 1825 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb); |
| 1826 | ieee80211_tx_result res = TX_CONTINUE; |
| 1827 | |
Johannes Berg | aa5b549 | 2011-12-02 22:08:52 +0100 | [diff] [blame] | 1828 | if (unlikely(info->flags & IEEE80211_TX_INTFL_RETRANSMISSION)) { |
| 1829 | __skb_queue_tail(&tx->skbs, tx->skb); |
| 1830 | tx->skb = NULL; |
Johannes Berg | c6fcf6b | 2010-01-17 01:47:59 +0100 | [diff] [blame] | 1831 | goto txh_done; |
Johannes Berg | aa5b549 | 2011-12-02 22:08:52 +0100 | [diff] [blame] | 1832 | } |
Johannes Berg | c6fcf6b | 2010-01-17 01:47:59 +0100 | [diff] [blame] | 1833 | |
Ryder Lee | 03c3911 | 2021-06-17 18:31:12 +0200 | [diff] [blame] | 1834 | if (!ieee80211_hw_check(&tx->local->hw, HAS_RATE_CONTROL)) |
| 1835 | CALL_TXH(ieee80211_tx_h_rate_ctrl); |
| 1836 | |
Johannes Berg | c6fcf6b | 2010-01-17 01:47:59 +0100 | [diff] [blame] | 1837 | CALL_TXH(ieee80211_tx_h_michael_mic_add); |
Johannes Berg | 9aa4aee | 2009-10-29 08:43:48 +0100 | [diff] [blame] | 1838 | CALL_TXH(ieee80211_tx_h_sequence); |
| 1839 | CALL_TXH(ieee80211_tx_h_fragment); |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 1840 | /* handlers after fragment must be aware of tx info fragmentation! */ |
Johannes Berg | 9aa4aee | 2009-10-29 08:43:48 +0100 | [diff] [blame] | 1841 | CALL_TXH(ieee80211_tx_h_stats); |
| 1842 | CALL_TXH(ieee80211_tx_h_encrypt); |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 1843 | if (!ieee80211_hw_check(&tx->local->hw, HAS_RATE_CONTROL)) |
Arik Nemtsov | 8fd369e | 2011-01-31 22:29:12 +0200 | [diff] [blame] | 1844 | CALL_TXH(ieee80211_tx_h_calculate_duration); |
Johannes Berg | d9e8a70 | 2008-06-30 15:10:44 +0200 | [diff] [blame] | 1845 | #undef CALL_TXH |
| 1846 | |
| 1847 | txh_done: |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1848 | if (unlikely(res == TX_DROP)) { |
Tomas Winkler | 5479d0e | 2008-06-28 03:15:03 +0300 | [diff] [blame] | 1849 | I802_DEBUG_INC(tx->local->tx_handlers_drop); |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1850 | if (tx->skb) |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 1851 | ieee80211_free_txskb(&tx->local->hw, tx->skb); |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 1852 | else |
Felix Fietkau | 1f98ab7 | 2012-11-10 03:44:14 +0100 | [diff] [blame] | 1853 | ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs); |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1854 | return -1; |
| 1855 | } else if (unlikely(res == TX_QUEUED)) { |
Tomas Winkler | 5479d0e | 2008-06-28 03:15:03 +0300 | [diff] [blame] | 1856 | I802_DEBUG_INC(tx->local->tx_handlers_queued); |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1857 | return -1; |
| 1858 | } |
| 1859 | |
| 1860 | return 0; |
| 1861 | } |
| 1862 | |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 1863 | static int invoke_tx_handlers(struct ieee80211_tx_data *tx) |
| 1864 | { |
| 1865 | int r = invoke_tx_handlers_early(tx); |
| 1866 | |
| 1867 | if (r) |
| 1868 | return r; |
| 1869 | return invoke_tx_handlers_late(tx); |
| 1870 | } |
| 1871 | |
Felix Fietkau | 06be6b1 | 2013-10-14 18:01:00 +0200 | [diff] [blame] | 1872 | bool ieee80211_tx_prepare_skb(struct ieee80211_hw *hw, |
| 1873 | struct ieee80211_vif *vif, struct sk_buff *skb, |
| 1874 | int band, struct ieee80211_sta **sta) |
| 1875 | { |
| 1876 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
| 1877 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 1878 | struct ieee80211_tx_data tx; |
Johannes Berg | 88724a8 | 2015-03-01 09:10:12 +0200 | [diff] [blame] | 1879 | struct sk_buff *skb2; |
Felix Fietkau | 06be6b1 | 2013-10-14 18:01:00 +0200 | [diff] [blame] | 1880 | |
Johannes Berg | 7c10770 | 2015-03-20 14:18:27 +0100 | [diff] [blame] | 1881 | if (ieee80211_tx_prepare(sdata, &tx, NULL, skb) == TX_DROP) |
Felix Fietkau | 06be6b1 | 2013-10-14 18:01:00 +0200 | [diff] [blame] | 1882 | return false; |
| 1883 | |
| 1884 | info->band = band; |
| 1885 | info->control.vif = vif; |
| 1886 | info->hw_queue = vif->hw_queue[skb_get_queue_mapping(skb)]; |
| 1887 | |
| 1888 | if (invoke_tx_handlers(&tx)) |
| 1889 | return false; |
| 1890 | |
| 1891 | if (sta) { |
| 1892 | if (tx.sta) |
| 1893 | *sta = &tx.sta->sta; |
| 1894 | else |
| 1895 | *sta = NULL; |
| 1896 | } |
| 1897 | |
Johannes Berg | 88724a8 | 2015-03-01 09:10:12 +0200 | [diff] [blame] | 1898 | /* this function isn't suitable for fragmented data frames */ |
| 1899 | skb2 = __skb_dequeue(&tx.skbs); |
| 1900 | if (WARN_ON(skb2 != skb || !skb_queue_empty(&tx.skbs))) { |
| 1901 | ieee80211_free_txskb(hw, skb2); |
| 1902 | ieee80211_purge_tx_queue(hw, &tx.skbs); |
| 1903 | return false; |
| 1904 | } |
| 1905 | |
Felix Fietkau | 06be6b1 | 2013-10-14 18:01:00 +0200 | [diff] [blame] | 1906 | return true; |
| 1907 | } |
| 1908 | EXPORT_SYMBOL(ieee80211_tx_prepare_skb); |
| 1909 | |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1910 | /* |
| 1911 | * Returns false if the frame couldn't be transmitted but was queued instead. |
| 1912 | */ |
| 1913 | static bool ieee80211_tx(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 7c10770 | 2015-03-20 14:18:27 +0100 | [diff] [blame] | 1914 | struct sta_info *sta, struct sk_buff *skb, |
Mathy Vanhoef | 08aca29 | 2020-07-23 14:01:52 +0400 | [diff] [blame] | 1915 | bool txpending) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1916 | { |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1917 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 1918 | struct ieee80211_tx_data tx; |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 1919 | ieee80211_tx_result res_prepare; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1920 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1921 | bool result = true; |
Johannes Berg | 74e4dbf | 2011-11-16 15:28:57 +0100 | [diff] [blame] | 1922 | int led_len; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1923 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1924 | if (unlikely(skb->len < 10)) { |
| 1925 | dev_kfree_skb(skb); |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1926 | return true; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1927 | } |
| 1928 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1929 | /* initialises tx */ |
Johannes Berg | 74e4dbf | 2011-11-16 15:28:57 +0100 | [diff] [blame] | 1930 | led_len = skb->len; |
Johannes Berg | 7c10770 | 2015-03-20 14:18:27 +0100 | [diff] [blame] | 1931 | res_prepare = ieee80211_tx_prepare(sdata, &tx, sta, skb); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1932 | |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 1933 | if (unlikely(res_prepare == TX_DROP)) { |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 1934 | ieee80211_free_txskb(&local->hw, skb); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1935 | return true; |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 1936 | } else if (unlikely(res_prepare == TX_QUEUED)) { |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1937 | return true; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1938 | } |
| 1939 | |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1940 | /* set up hw_queue value early */ |
| 1941 | if (!(info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) || |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 1942 | !ieee80211_hw_check(&local->hw, QUEUE_CONTROL)) |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1943 | info->hw_queue = |
| 1944 | sdata->vif.hw_queue[skb_get_queue_mapping(skb)]; |
| 1945 | |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 1946 | if (invoke_tx_handlers_early(&tx)) |
Bob Copeland | 6eae4a6 | 2018-09-05 06:22:59 -0400 | [diff] [blame] | 1947 | return true; |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 1948 | |
| 1949 | if (ieee80211_queue_skb(local, sdata, tx.sta, tx.skb)) |
| 1950 | return true; |
| 1951 | |
| 1952 | if (!invoke_tx_handlers_late(&tx)) |
Johannes Berg | 74e4dbf | 2011-11-16 15:28:57 +0100 | [diff] [blame] | 1953 | result = __ieee80211_tx(local, &tx.skbs, led_len, |
| 1954 | tx.sta, txpending); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1955 | |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1956 | return result; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1957 | } |
| 1958 | |
| 1959 | /* device xmit handlers */ |
| 1960 | |
Johannes Berg | 14f46c1 | 2020-10-09 13:25:41 +0200 | [diff] [blame] | 1961 | enum ieee80211_encrypt { |
| 1962 | ENCRYPT_NO, |
| 1963 | ENCRYPT_MGMT, |
| 1964 | ENCRYPT_DATA, |
| 1965 | }; |
| 1966 | |
Yogesh Ashok Powar | 3bff186 | 2011-06-28 18:41:37 +0530 | [diff] [blame] | 1967 | static int ieee80211_skb_resize(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1968 | struct sk_buff *skb, |
Johannes Berg | 14f46c1 | 2020-10-09 13:25:41 +0200 | [diff] [blame] | 1969 | int head_need, |
| 1970 | enum ieee80211_encrypt encrypt) |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1971 | { |
Yogesh Ashok Powar | 3bff186 | 2011-06-28 18:41:37 +0530 | [diff] [blame] | 1972 | struct ieee80211_local *local = sdata->local; |
Felix Fietkau | 9d0f50b | 2019-01-29 11:10:57 +0100 | [diff] [blame] | 1973 | bool enc_tailroom; |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1974 | int tail_need = 0; |
| 1975 | |
Johannes Berg | 14f46c1 | 2020-10-09 13:25:41 +0200 | [diff] [blame] | 1976 | enc_tailroom = encrypt == ENCRYPT_MGMT || |
| 1977 | (encrypt == ENCRYPT_DATA && |
| 1978 | sdata->crypto_tx_tailroom_needed_cnt); |
Felix Fietkau | 9d0f50b | 2019-01-29 11:10:57 +0100 | [diff] [blame] | 1979 | |
| 1980 | if (enc_tailroom) { |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1981 | tail_need = IEEE80211_ENCRYPT_TAILROOM; |
| 1982 | tail_need -= skb_tailroom(skb); |
| 1983 | tail_need = max_t(int, tail_need, 0); |
| 1984 | } |
| 1985 | |
Ido Yariv | c70f59a | 2014-07-29 15:39:14 +0300 | [diff] [blame] | 1986 | if (skb_cloned(skb) && |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 1987 | (!ieee80211_hw_check(&local->hw, SUPPORTS_CLONED_SKBS) || |
Felix Fietkau | 9d0f50b | 2019-01-29 11:10:57 +0100 | [diff] [blame] | 1988 | !skb_clone_writable(skb, ETH_HLEN) || enc_tailroom)) |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1989 | I802_DEBUG_INC(local->tx_expand_skb_head_cloned); |
Felix Fietkau | 4cd06a3 | 2010-12-18 19:30:49 +0100 | [diff] [blame] | 1990 | else if (head_need || tail_need) |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1991 | I802_DEBUG_INC(local->tx_expand_skb_head); |
Felix Fietkau | 4cd06a3 | 2010-12-18 19:30:49 +0100 | [diff] [blame] | 1992 | else |
| 1993 | return 0; |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1994 | |
| 1995 | if (pskb_expand_head(skb, head_need, tail_need, GFP_ATOMIC)) { |
Joe Perches | 0fb9a9e | 2010-08-20 16:25:38 -0700 | [diff] [blame] | 1996 | wiphy_debug(local->hw.wiphy, |
| 1997 | "failed to reallocate TX buffer\n"); |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 1998 | return -ENOMEM; |
| 1999 | } |
| 2000 | |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 2001 | return 0; |
| 2002 | } |
| 2003 | |
Johannes Berg | 7c10770 | 2015-03-20 14:18:27 +0100 | [diff] [blame] | 2004 | void ieee80211_xmit(struct ieee80211_sub_if_data *sdata, |
Mathy Vanhoef | 08aca29 | 2020-07-23 14:01:52 +0400 | [diff] [blame] | 2005 | struct sta_info *sta, struct sk_buff *skb) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2006 | { |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 2007 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2008 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Johannes Berg | 14f46c1 | 2020-10-09 13:25:41 +0200 | [diff] [blame] | 2009 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2010 | int headroom; |
Johannes Berg | 14f46c1 | 2020-10-09 13:25:41 +0200 | [diff] [blame] | 2011 | enum ieee80211_encrypt encrypt; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2012 | |
Johannes Berg | 14f46c1 | 2020-10-09 13:25:41 +0200 | [diff] [blame] | 2013 | if (info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT) |
| 2014 | encrypt = ENCRYPT_NO; |
| 2015 | else if (ieee80211_is_mgmt(hdr->frame_control)) |
| 2016 | encrypt = ENCRYPT_MGMT; |
| 2017 | else |
| 2018 | encrypt = ENCRYPT_DATA; |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 2019 | |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 2020 | headroom = local->tx_headroom; |
Johannes Berg | 14f46c1 | 2020-10-09 13:25:41 +0200 | [diff] [blame] | 2021 | if (encrypt != ENCRYPT_NO) |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 2022 | headroom += sdata->encrypt_headroom; |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 2023 | headroom -= skb_headroom(skb); |
| 2024 | headroom = max_t(int, 0, headroom); |
| 2025 | |
Johannes Berg | 14f46c1 | 2020-10-09 13:25:41 +0200 | [diff] [blame] | 2026 | if (ieee80211_skb_resize(sdata, skb, headroom, encrypt)) { |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 2027 | ieee80211_free_txskb(&local->hw, skb); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 2028 | return; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2029 | } |
| 2030 | |
Johannes Berg | 14f46c1 | 2020-10-09 13:25:41 +0200 | [diff] [blame] | 2031 | /* reload after potential resize */ |
Steve deRosier | 740c1aa | 2010-09-11 20:01:31 -0700 | [diff] [blame] | 2032 | hdr = (struct ieee80211_hdr *) skb->data; |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 2033 | info->control.vif = &sdata->vif; |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 2034 | |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 2035 | if (ieee80211_vif_is_mesh(&sdata->vif)) { |
| 2036 | if (ieee80211_is_data(hdr->frame_control) && |
| 2037 | is_unicast_ether_addr(hdr->addr1)) { |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 2038 | if (mesh_nexthop_resolve(sdata, skb)) |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 2039 | return; /* skb queued: don't free */ |
| 2040 | } else { |
| 2041 | ieee80211_mps_set_frame_flags(sdata, NULL, hdr); |
| 2042 | } |
Johannes Berg | 98aed9f | 2012-03-27 14:18:36 +0200 | [diff] [blame] | 2043 | } |
Javier Cardona | cca8949 | 2009-08-10 17:29:29 -0700 | [diff] [blame] | 2044 | |
Javier Cardona | 2154c81c | 2011-09-07 17:49:53 -0700 | [diff] [blame] | 2045 | ieee80211_set_qos_hdr(sdata, skb); |
Mathy Vanhoef | 08aca29 | 2020-07-23 14:01:52 +0400 | [diff] [blame] | 2046 | ieee80211_tx(sdata, sta, skb, false); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2047 | } |
| 2048 | |
Mathy Vanhoef | bddc0c4 | 2021-05-30 15:32:26 +0200 | [diff] [blame] | 2049 | static bool ieee80211_validate_radiotap_len(struct sk_buff *skb) |
Johannes Berg | 73b9f03 | 2011-10-07 14:01:26 +0200 | [diff] [blame] | 2050 | { |
Johannes Berg | 73b9f03 | 2011-10-07 14:01:26 +0200 | [diff] [blame] | 2051 | struct ieee80211_radiotap_header *rthdr = |
Mathy Vanhoef | bddc0c4 | 2021-05-30 15:32:26 +0200 | [diff] [blame] | 2052 | (struct ieee80211_radiotap_header *)skb->data; |
Johannes Berg | 73b9f03 | 2011-10-07 14:01:26 +0200 | [diff] [blame] | 2053 | |
Mathy Vanhoef | cb17ed2 | 2020-07-23 14:01:53 +0400 | [diff] [blame] | 2054 | /* check for not even having the fixed radiotap header part */ |
| 2055 | if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header))) |
| 2056 | return false; /* too short to be possibly valid */ |
| 2057 | |
| 2058 | /* is it a header version we can trust to find length from? */ |
| 2059 | if (unlikely(rthdr->it_version)) |
| 2060 | return false; /* only version 0 is supported */ |
| 2061 | |
| 2062 | /* does the skb contain enough to deliver on the alleged length? */ |
| 2063 | if (unlikely(skb->len < ieee80211_get_radiotap_len(skb->data))) |
| 2064 | return false; /* skb too short for claimed rt header extent */ |
| 2065 | |
Mathy Vanhoef | bddc0c4 | 2021-05-30 15:32:26 +0200 | [diff] [blame] | 2066 | return true; |
| 2067 | } |
| 2068 | |
| 2069 | bool ieee80211_parse_tx_radiotap(struct sk_buff *skb, |
| 2070 | struct net_device *dev) |
| 2071 | { |
| 2072 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 2073 | struct ieee80211_radiotap_iterator iterator; |
| 2074 | struct ieee80211_radiotap_header *rthdr = |
| 2075 | (struct ieee80211_radiotap_header *) skb->data; |
| 2076 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 2077 | int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len, |
| 2078 | NULL); |
| 2079 | u16 txflags; |
| 2080 | u16 rate = 0; |
| 2081 | bool rate_found = false; |
| 2082 | u8 rate_retries = 0; |
| 2083 | u16 rate_flags = 0; |
| 2084 | u8 mcs_known, mcs_flags, mcs_bw; |
| 2085 | u16 vht_known; |
| 2086 | u8 vht_mcs = 0, vht_nss = 0; |
| 2087 | int i; |
| 2088 | |
| 2089 | if (!ieee80211_validate_radiotap_len(skb)) |
| 2090 | return false; |
| 2091 | |
Johannes Berg | 73b9f03 | 2011-10-07 14:01:26 +0200 | [diff] [blame] | 2092 | info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT | |
| 2093 | IEEE80211_TX_CTL_DONTFRAG; |
| 2094 | |
| 2095 | /* |
| 2096 | * for every radiotap entry that is present |
| 2097 | * (ieee80211_radiotap_iterator_next returns -ENOENT when no more |
| 2098 | * entries present, or -EINVAL on error) |
| 2099 | */ |
| 2100 | |
| 2101 | while (!ret) { |
| 2102 | ret = ieee80211_radiotap_iterator_next(&iterator); |
| 2103 | |
| 2104 | if (ret) |
| 2105 | continue; |
| 2106 | |
| 2107 | /* see if this argument is something we can use */ |
| 2108 | switch (iterator.this_arg_index) { |
| 2109 | /* |
| 2110 | * You must take care when dereferencing iterator.this_arg |
| 2111 | * for multibyte types... the pointer is not aligned. Use |
| 2112 | * get_unaligned((type *)iterator.this_arg) to dereference |
| 2113 | * iterator.this_arg for type "type" safely on all arches. |
| 2114 | */ |
| 2115 | case IEEE80211_RADIOTAP_FLAGS: |
| 2116 | if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) { |
| 2117 | /* |
| 2118 | * this indicates that the skb we have been |
| 2119 | * handed has the 32-bit FCS CRC at the end... |
| 2120 | * we should react to that by snipping it off |
| 2121 | * because it will be recomputed and added |
| 2122 | * on transmission |
| 2123 | */ |
| 2124 | if (skb->len < (iterator._max_length + FCS_LEN)) |
| 2125 | return false; |
| 2126 | |
| 2127 | skb_trim(skb, skb->len - FCS_LEN); |
| 2128 | } |
| 2129 | if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP) |
| 2130 | info->flags &= ~IEEE80211_TX_INTFL_DONT_ENCRYPT; |
| 2131 | if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG) |
| 2132 | info->flags &= ~IEEE80211_TX_CTL_DONTFRAG; |
| 2133 | break; |
| 2134 | |
| 2135 | case IEEE80211_RADIOTAP_TX_FLAGS: |
| 2136 | txflags = get_unaligned_le16(iterator.this_arg); |
| 2137 | if (txflags & IEEE80211_RADIOTAP_F_TX_NOACK) |
| 2138 | info->flags |= IEEE80211_TX_CTL_NO_ACK; |
Mathy Vanhoef | e02281e | 2020-07-23 14:01:49 +0400 | [diff] [blame] | 2139 | if (txflags & IEEE80211_RADIOTAP_F_TX_NOSEQNO) |
| 2140 | info->control.flags |= IEEE80211_TX_CTRL_NO_SEQNO; |
Mathy Vanhoef | 30df813 | 2020-11-04 10:18:19 +0400 | [diff] [blame] | 2141 | if (txflags & IEEE80211_RADIOTAP_F_TX_ORDER) |
| 2142 | info->control.flags |= |
| 2143 | IEEE80211_TX_CTRL_DONT_REORDER; |
Johannes Berg | 73b9f03 | 2011-10-07 14:01:26 +0200 | [diff] [blame] | 2144 | break; |
| 2145 | |
Sven Eckelmann | dfdfc2b | 2016-01-26 17:11:13 +0100 | [diff] [blame] | 2146 | case IEEE80211_RADIOTAP_RATE: |
| 2147 | rate = *iterator.this_arg; |
| 2148 | rate_flags = 0; |
| 2149 | rate_found = true; |
| 2150 | break; |
| 2151 | |
| 2152 | case IEEE80211_RADIOTAP_DATA_RETRIES: |
| 2153 | rate_retries = *iterator.this_arg; |
| 2154 | break; |
| 2155 | |
| 2156 | case IEEE80211_RADIOTAP_MCS: |
| 2157 | mcs_known = iterator.this_arg[0]; |
| 2158 | mcs_flags = iterator.this_arg[1]; |
| 2159 | if (!(mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_MCS)) |
| 2160 | break; |
| 2161 | |
| 2162 | rate_found = true; |
| 2163 | rate = iterator.this_arg[2]; |
| 2164 | rate_flags = IEEE80211_TX_RC_MCS; |
| 2165 | |
| 2166 | if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_GI && |
| 2167 | mcs_flags & IEEE80211_RADIOTAP_MCS_SGI) |
| 2168 | rate_flags |= IEEE80211_TX_RC_SHORT_GI; |
| 2169 | |
Sven Eckelmann | f66b60f | 2016-02-24 16:25:49 +0100 | [diff] [blame] | 2170 | mcs_bw = mcs_flags & IEEE80211_RADIOTAP_MCS_BW_MASK; |
Sven Eckelmann | dfdfc2b | 2016-01-26 17:11:13 +0100 | [diff] [blame] | 2171 | if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_BW && |
Sven Eckelmann | f66b60f | 2016-02-24 16:25:49 +0100 | [diff] [blame] | 2172 | mcs_bw == IEEE80211_RADIOTAP_MCS_BW_40) |
Sven Eckelmann | dfdfc2b | 2016-01-26 17:11:13 +0100 | [diff] [blame] | 2173 | rate_flags |= IEEE80211_TX_RC_40_MHZ_WIDTH; |
Philipp Borgers | f1864e1 | 2020-12-19 18:07:10 +0100 | [diff] [blame] | 2174 | |
| 2175 | if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_FEC && |
| 2176 | mcs_flags & IEEE80211_RADIOTAP_MCS_FEC_LDPC) |
| 2177 | info->flags |= IEEE80211_TX_CTL_LDPC; |
Philipp Borgers | 549fdd3 | 2021-01-25 16:07:44 +0100 | [diff] [blame] | 2178 | |
| 2179 | if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_STBC) { |
| 2180 | u8 stbc = u8_get_bits(mcs_flags, |
| 2181 | IEEE80211_RADIOTAP_MCS_STBC_MASK); |
| 2182 | |
| 2183 | info->flags |= |
| 2184 | u32_encode_bits(stbc, |
| 2185 | IEEE80211_TX_CTL_STBC); |
| 2186 | } |
Sven Eckelmann | dfdfc2b | 2016-01-26 17:11:13 +0100 | [diff] [blame] | 2187 | break; |
| 2188 | |
Lorenzo Bianconi | 646e76b | 2016-02-23 15:43:35 +0100 | [diff] [blame] | 2189 | case IEEE80211_RADIOTAP_VHT: |
| 2190 | vht_known = get_unaligned_le16(iterator.this_arg); |
| 2191 | rate_found = true; |
| 2192 | |
| 2193 | rate_flags = IEEE80211_TX_RC_VHT_MCS; |
| 2194 | if ((vht_known & IEEE80211_RADIOTAP_VHT_KNOWN_GI) && |
| 2195 | (iterator.this_arg[2] & |
| 2196 | IEEE80211_RADIOTAP_VHT_FLAG_SGI)) |
| 2197 | rate_flags |= IEEE80211_TX_RC_SHORT_GI; |
| 2198 | if (vht_known & |
| 2199 | IEEE80211_RADIOTAP_VHT_KNOWN_BANDWIDTH) { |
| 2200 | if (iterator.this_arg[3] == 1) |
| 2201 | rate_flags |= |
| 2202 | IEEE80211_TX_RC_40_MHZ_WIDTH; |
| 2203 | else if (iterator.this_arg[3] == 4) |
| 2204 | rate_flags |= |
| 2205 | IEEE80211_TX_RC_80_MHZ_WIDTH; |
| 2206 | else if (iterator.this_arg[3] == 11) |
| 2207 | rate_flags |= |
| 2208 | IEEE80211_TX_RC_160_MHZ_WIDTH; |
| 2209 | } |
| 2210 | |
| 2211 | vht_mcs = iterator.this_arg[4] >> 4; |
Lorenzo Bianconi | 13cb6d8 | 2021-09-20 14:45:22 +0200 | [diff] [blame^] | 2212 | if (vht_mcs > 11) |
| 2213 | vht_mcs = 0; |
Lorenzo Bianconi | 646e76b | 2016-02-23 15:43:35 +0100 | [diff] [blame] | 2214 | vht_nss = iterator.this_arg[4] & 0xF; |
Lorenzo Bianconi | 13cb6d8 | 2021-09-20 14:45:22 +0200 | [diff] [blame^] | 2215 | if (!vht_nss || vht_nss > 8) |
| 2216 | vht_nss = 1; |
Lorenzo Bianconi | 646e76b | 2016-02-23 15:43:35 +0100 | [diff] [blame] | 2217 | break; |
| 2218 | |
Johannes Berg | 73b9f03 | 2011-10-07 14:01:26 +0200 | [diff] [blame] | 2219 | /* |
| 2220 | * Please update the file |
Mauro Carvalho Chehab | 429ff87 | 2020-04-30 18:03:59 +0200 | [diff] [blame] | 2221 | * Documentation/networking/mac80211-injection.rst |
Johannes Berg | 73b9f03 | 2011-10-07 14:01:26 +0200 | [diff] [blame] | 2222 | * when parsing new fields here. |
| 2223 | */ |
| 2224 | |
| 2225 | default: |
| 2226 | break; |
| 2227 | } |
| 2228 | } |
| 2229 | |
| 2230 | if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */ |
| 2231 | return false; |
| 2232 | |
Sven Eckelmann | dfdfc2b | 2016-01-26 17:11:13 +0100 | [diff] [blame] | 2233 | if (rate_found) { |
Mathy Vanhoef | bddc0c4 | 2021-05-30 15:32:26 +0200 | [diff] [blame] | 2234 | struct ieee80211_supported_band *sband = |
| 2235 | local->hw.wiphy->bands[info->band]; |
| 2236 | |
Sven Eckelmann | dfdfc2b | 2016-01-26 17:11:13 +0100 | [diff] [blame] | 2237 | info->control.flags |= IEEE80211_TX_CTRL_RATE_INJECT; |
| 2238 | |
| 2239 | for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) { |
| 2240 | info->control.rates[i].idx = -1; |
| 2241 | info->control.rates[i].flags = 0; |
| 2242 | info->control.rates[i].count = 0; |
| 2243 | } |
| 2244 | |
| 2245 | if (rate_flags & IEEE80211_TX_RC_MCS) { |
| 2246 | info->control.rates[0].idx = rate; |
Lorenzo Bianconi | 646e76b | 2016-02-23 15:43:35 +0100 | [diff] [blame] | 2247 | } else if (rate_flags & IEEE80211_TX_RC_VHT_MCS) { |
| 2248 | ieee80211_rate_set_vht(info->control.rates, vht_mcs, |
| 2249 | vht_nss); |
Mathy Vanhoef | bddc0c4 | 2021-05-30 15:32:26 +0200 | [diff] [blame] | 2250 | } else if (sband) { |
Sven Eckelmann | dfdfc2b | 2016-01-26 17:11:13 +0100 | [diff] [blame] | 2251 | for (i = 0; i < sband->n_bitrates; i++) { |
| 2252 | if (rate * 5 != sband->bitrates[i].bitrate) |
| 2253 | continue; |
| 2254 | |
| 2255 | info->control.rates[0].idx = i; |
| 2256 | break; |
| 2257 | } |
| 2258 | } |
| 2259 | |
Felix Fietkau | 07310a6 | 2016-03-02 15:54:51 +0100 | [diff] [blame] | 2260 | if (info->control.rates[0].idx < 0) |
| 2261 | info->control.flags &= ~IEEE80211_TX_CTRL_RATE_INJECT; |
| 2262 | |
Sven Eckelmann | dfdfc2b | 2016-01-26 17:11:13 +0100 | [diff] [blame] | 2263 | info->control.rates[0].flags = rate_flags; |
| 2264 | info->control.rates[0].count = min_t(u8, rate_retries + 1, |
| 2265 | local->hw.max_rate_tries); |
| 2266 | } |
| 2267 | |
Johannes Berg | 73b9f03 | 2011-10-07 14:01:26 +0200 | [diff] [blame] | 2268 | return true; |
| 2269 | } |
| 2270 | |
Stephen Hemminger | d0cf9c0 | 2009-08-31 19:50:57 +0000 | [diff] [blame] | 2271 | netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb, |
| 2272 | struct net_device *dev) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2273 | { |
| 2274 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2275 | struct ieee80211_chanctx_conf *chanctx_conf; |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 2276 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Helmut Schaa | f75f5c6 | 2011-08-01 11:32:52 +0200 | [diff] [blame] | 2277 | struct ieee80211_hdr *hdr; |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 2278 | struct ieee80211_sub_if_data *tmp_sdata, *sdata; |
Janusz Dziedzic | b493283 | 2014-06-05 08:12:57 +0200 | [diff] [blame] | 2279 | struct cfg80211_chan_def *chandef; |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 2280 | u16 len_rthdr; |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 2281 | int hdrlen; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2282 | |
Mathy Vanhoef | cb17ed2 | 2020-07-23 14:01:53 +0400 | [diff] [blame] | 2283 | memset(info, 0, sizeof(*info)); |
| 2284 | info->flags = IEEE80211_TX_CTL_REQ_TX_STATUS | |
| 2285 | IEEE80211_TX_CTL_INJECTED; |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 2286 | |
Mathy Vanhoef | bddc0c4 | 2021-05-30 15:32:26 +0200 | [diff] [blame] | 2287 | /* Sanity-check the length of the radiotap header */ |
| 2288 | if (!ieee80211_validate_radiotap_len(skb)) |
Mathy Vanhoef | cb17ed2 | 2020-07-23 14:01:53 +0400 | [diff] [blame] | 2289 | goto fail; |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 2290 | |
Mathy Vanhoef | cb17ed2 | 2020-07-23 14:01:53 +0400 | [diff] [blame] | 2291 | /* we now know there is a radiotap header with a length we can use */ |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 2292 | len_rthdr = ieee80211_get_radiotap_len(skb->data); |
| 2293 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2294 | /* |
| 2295 | * fix up the pointers accounting for the radiotap |
| 2296 | * header still being in there. We are being given |
| 2297 | * a precooked IEEE80211 header so no need for |
| 2298 | * normal processing |
| 2299 | */ |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 2300 | skb_set_mac_header(skb, len_rthdr); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2301 | /* |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 2302 | * these are just fixed to the end of the rt area since we |
| 2303 | * don't have any better information and at this point, nobody cares |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2304 | */ |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 2305 | skb_set_network_header(skb, len_rthdr); |
| 2306 | skb_set_transport_header(skb, len_rthdr); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2307 | |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 2308 | if (skb->len < len_rthdr + 2) |
| 2309 | goto fail; |
| 2310 | |
| 2311 | hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr); |
| 2312 | hdrlen = ieee80211_hdrlen(hdr->frame_control); |
| 2313 | |
| 2314 | if (skb->len < len_rthdr + hdrlen) |
| 2315 | goto fail; |
| 2316 | |
Helmut Schaa | f75f5c6 | 2011-08-01 11:32:52 +0200 | [diff] [blame] | 2317 | /* |
| 2318 | * Initialize skb->protocol if the injected frame is a data frame |
| 2319 | * carrying a rfc1042 header |
| 2320 | */ |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 2321 | if (ieee80211_is_data(hdr->frame_control) && |
| 2322 | skb->len >= len_rthdr + hdrlen + sizeof(rfc1042_header) + 2) { |
| 2323 | u8 *payload = (u8 *)hdr + hdrlen; |
| 2324 | |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 2325 | if (ether_addr_equal(payload, rfc1042_header)) |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 2326 | skb->protocol = cpu_to_be16((payload[6] << 8) | |
| 2327 | payload[7]); |
Helmut Schaa | f75f5c6 | 2011-08-01 11:32:52 +0200 | [diff] [blame] | 2328 | } |
| 2329 | |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 2330 | rcu_read_lock(); |
| 2331 | |
| 2332 | /* |
| 2333 | * We process outgoing injected frames that have a local address |
| 2334 | * we handle as though they are non-injected frames. |
| 2335 | * This code here isn't entirely correct, the local MAC address |
| 2336 | * isn't always enough to find the interface to use; for proper |
Johannes Berg | 70d9c59 | 2020-11-09 10:57:46 +0100 | [diff] [blame] | 2337 | * VLAN support we have an nl80211-based mechanism. |
Johannes Berg | b226a82 | 2019-11-22 12:42:42 +0100 | [diff] [blame] | 2338 | * |
| 2339 | * This is necessary, for example, for old hostapd versions that |
| 2340 | * don't use nl80211-based management TX/RX. |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 2341 | */ |
| 2342 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2343 | |
| 2344 | list_for_each_entry_rcu(tmp_sdata, &local->interfaces, list) { |
| 2345 | if (!ieee80211_sdata_running(tmp_sdata)) |
| 2346 | continue; |
| 2347 | if (tmp_sdata->vif.type == NL80211_IFTYPE_MONITOR || |
Johannes Berg | 70d9c59 | 2020-11-09 10:57:46 +0100 | [diff] [blame] | 2348 | tmp_sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 2349 | continue; |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 2350 | if (ether_addr_equal(tmp_sdata->vif.addr, hdr->addr2)) { |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 2351 | sdata = tmp_sdata; |
| 2352 | break; |
| 2353 | } |
| 2354 | } |
Johannes Berg | 7351c6b | 2009-11-19 01:08:30 +0100 | [diff] [blame] | 2355 | |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2356 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
| 2357 | if (!chanctx_conf) { |
| 2358 | tmp_sdata = rcu_dereference(local->monitor_sdata); |
| 2359 | if (tmp_sdata) |
| 2360 | chanctx_conf = |
| 2361 | rcu_dereference(tmp_sdata->vif.chanctx_conf); |
| 2362 | } |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2363 | |
Felix Fietkau | b4a7ff7 | 2013-01-13 23:10:26 +0100 | [diff] [blame] | 2364 | if (chanctx_conf) |
Janusz Dziedzic | b493283 | 2014-06-05 08:12:57 +0200 | [diff] [blame] | 2365 | chandef = &chanctx_conf->def; |
Felix Fietkau | b4a7ff7 | 2013-01-13 23:10:26 +0100 | [diff] [blame] | 2366 | else if (!local->use_chanctx) |
Janusz Dziedzic | b493283 | 2014-06-05 08:12:57 +0200 | [diff] [blame] | 2367 | chandef = &local->_oper_chandef; |
Felix Fietkau | b4a7ff7 | 2013-01-13 23:10:26 +0100 | [diff] [blame] | 2368 | else |
| 2369 | goto fail_rcu; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2370 | |
| 2371 | /* |
| 2372 | * Frame injection is not allowed if beaconing is not allowed |
| 2373 | * or if we need radar detection. Beaconing is usually not allowed when |
| 2374 | * the mode or operation (Adhoc, AP, Mesh) does not support DFS. |
| 2375 | * Passive scan is also used in world regulatory domains where |
| 2376 | * your country is not known and as such it should be treated as |
| 2377 | * NO TX unless the channel is explicitly allowed in which case |
| 2378 | * your current regulatory domain would not have the passive scan |
| 2379 | * flag. |
| 2380 | * |
| 2381 | * Since AP mode uses monitor interfaces to inject/TX management |
| 2382 | * frames we can make AP mode the exception to this rule once it |
| 2383 | * supports radar detection as its implementation can deal with |
| 2384 | * radar detection by itself. We can do that later by adding a |
| 2385 | * monitor flag interfaces used for AP support. |
| 2386 | */ |
Janusz Dziedzic | b493283 | 2014-06-05 08:12:57 +0200 | [diff] [blame] | 2387 | if (!cfg80211_reg_can_beacon(local->hw.wiphy, chandef, |
| 2388 | sdata->vif.type)) |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2389 | goto fail_rcu; |
| 2390 | |
Johannes Berg | 73c4e19 | 2014-11-09 18:50:09 +0200 | [diff] [blame] | 2391 | info->band = chandef->chan->band; |
Lorenzo Bianconi | 109843b0 | 2016-02-19 12:18:01 +0100 | [diff] [blame] | 2392 | |
Johan Almbladh | 96a7109 | 2021-04-01 18:44:55 +0200 | [diff] [blame] | 2393 | /* Initialize skb->priority according to frame type and TID class, |
| 2394 | * with respect to the sub interface that the frame will actually |
| 2395 | * be transmitted on. If the DONT_REORDER flag is set, the original |
| 2396 | * skb-priority is preserved to assure frames injected with this |
| 2397 | * flag are not reordered relative to each other. |
| 2398 | */ |
| 2399 | ieee80211_select_queue_80211(sdata, skb, hdr); |
| 2400 | skb_set_queue_mapping(skb, ieee80211_ac_from_tid(skb->priority)); |
| 2401 | |
Mathy Vanhoef | bddc0c4 | 2021-05-30 15:32:26 +0200 | [diff] [blame] | 2402 | /* |
| 2403 | * Process the radiotap header. This will now take into account the |
| 2404 | * selected chandef above to accurately set injection rates and |
| 2405 | * retransmissions. |
| 2406 | */ |
| 2407 | if (!ieee80211_parse_tx_radiotap(skb, dev)) |
| 2408 | goto fail_rcu; |
| 2409 | |
Mathy Vanhoef | cb17ed2 | 2020-07-23 14:01:53 +0400 | [diff] [blame] | 2410 | /* remove the injection radiotap header */ |
| 2411 | skb_pull(skb, len_rthdr); |
Lorenzo Bianconi | 109843b0 | 2016-02-19 12:18:01 +0100 | [diff] [blame] | 2412 | |
Mathy Vanhoef | 08aca29 | 2020-07-23 14:01:52 +0400 | [diff] [blame] | 2413 | ieee80211_xmit(sdata, NULL, skb); |
Johannes Berg | 5d9cf4a | 2011-10-07 14:01:23 +0200 | [diff] [blame] | 2414 | rcu_read_unlock(); |
| 2415 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2416 | return NETDEV_TX_OK; |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 2417 | |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2418 | fail_rcu: |
| 2419 | rcu_read_unlock(); |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 2420 | fail: |
| 2421 | dev_kfree_skb(skb); |
| 2422 | return NETDEV_TX_OK; /* meaning, we dealt with the skb */ |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2423 | } |
| 2424 | |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 2425 | static inline bool ieee80211_is_tdls_setup(struct sk_buff *skb) |
Matti Gottlieb | ad38bfc | 2013-11-18 19:06:45 +0200 | [diff] [blame] | 2426 | { |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 2427 | u16 ethertype = (skb->data[12] << 8) | skb->data[13]; |
Matti Gottlieb | ad38bfc | 2013-11-18 19:06:45 +0200 | [diff] [blame] | 2428 | |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 2429 | return ethertype == ETH_P_TDLS && |
| 2430 | skb->len > 14 && |
| 2431 | skb->data[14] == WLAN_TDLS_SNAP_RFTYPE; |
| 2432 | } |
| 2433 | |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 2434 | int ieee80211_lookup_ra_sta(struct ieee80211_sub_if_data *sdata, |
| 2435 | struct sk_buff *skb, |
| 2436 | struct sta_info **sta_out) |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 2437 | { |
| 2438 | struct sta_info *sta; |
| 2439 | |
| 2440 | switch (sdata->vif.type) { |
| 2441 | case NL80211_IFTYPE_AP_VLAN: |
| 2442 | sta = rcu_dereference(sdata->u.vlan.sta); |
| 2443 | if (sta) { |
| 2444 | *sta_out = sta; |
| 2445 | return 0; |
| 2446 | } else if (sdata->wdev.use_4addr) { |
| 2447 | return -ENOLINK; |
| 2448 | } |
Gustavo A. R. Silva | fc0561d | 2020-07-07 15:45:48 -0500 | [diff] [blame] | 2449 | fallthrough; |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 2450 | case NL80211_IFTYPE_AP: |
| 2451 | case NL80211_IFTYPE_OCB: |
| 2452 | case NL80211_IFTYPE_ADHOC: |
| 2453 | if (is_multicast_ether_addr(skb->data)) { |
| 2454 | *sta_out = ERR_PTR(-ENOENT); |
| 2455 | return 0; |
| 2456 | } |
| 2457 | sta = sta_info_get_bss(sdata, skb->data); |
| 2458 | break; |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 2459 | #ifdef CONFIG_MAC80211_MESH |
| 2460 | case NL80211_IFTYPE_MESH_POINT: |
| 2461 | /* determined much later */ |
| 2462 | *sta_out = NULL; |
| 2463 | return 0; |
| 2464 | #endif |
| 2465 | case NL80211_IFTYPE_STATION: |
| 2466 | if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) { |
| 2467 | sta = sta_info_get(sdata, skb->data); |
Johannes Berg | 11d62ca | 2016-09-13 08:28:22 +0200 | [diff] [blame] | 2468 | if (sta && test_sta_flag(sta, WLAN_STA_TDLS_PEER)) { |
| 2469 | if (test_sta_flag(sta, |
| 2470 | WLAN_STA_TDLS_PEER_AUTH)) { |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 2471 | *sta_out = sta; |
| 2472 | return 0; |
| 2473 | } |
| 2474 | |
| 2475 | /* |
| 2476 | * TDLS link during setup - throw out frames to |
| 2477 | * peer. Allow TDLS-setup frames to unauthorized |
| 2478 | * peers for the special case of a link teardown |
| 2479 | * after a TDLS sta is removed due to being |
| 2480 | * unreachable. |
| 2481 | */ |
Johannes Berg | 11d62ca | 2016-09-13 08:28:22 +0200 | [diff] [blame] | 2482 | if (!ieee80211_is_tdls_setup(skb)) |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 2483 | return -EINVAL; |
| 2484 | } |
| 2485 | |
| 2486 | } |
| 2487 | |
| 2488 | sta = sta_info_get(sdata, sdata->u.mgd.bssid); |
| 2489 | if (!sta) |
| 2490 | return -ENOLINK; |
| 2491 | break; |
| 2492 | default: |
| 2493 | return -EINVAL; |
| 2494 | } |
| 2495 | |
| 2496 | *sta_out = sta ?: ERR_PTR(-ENOENT); |
| 2497 | return 0; |
Matti Gottlieb | ad38bfc | 2013-11-18 19:06:45 +0200 | [diff] [blame] | 2498 | } |
| 2499 | |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 2500 | static u16 ieee80211_store_ack_skb(struct ieee80211_local *local, |
John Crispin | 5d8983c | 2019-10-29 10:13:02 +0100 | [diff] [blame] | 2501 | struct sk_buff *skb, |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 2502 | u32 *info_flags, |
| 2503 | u64 *cookie) |
John Crispin | 5d8983c | 2019-10-29 10:13:02 +0100 | [diff] [blame] | 2504 | { |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 2505 | struct sk_buff *ack_skb; |
John Crispin | 5d8983c | 2019-10-29 10:13:02 +0100 | [diff] [blame] | 2506 | u16 info_id = 0; |
| 2507 | |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 2508 | if (skb->sk) |
| 2509 | ack_skb = skb_clone_sk(skb); |
| 2510 | else |
| 2511 | ack_skb = skb_clone(skb, GFP_ATOMIC); |
| 2512 | |
John Crispin | 5d8983c | 2019-10-29 10:13:02 +0100 | [diff] [blame] | 2513 | if (ack_skb) { |
| 2514 | unsigned long flags; |
| 2515 | int id; |
| 2516 | |
| 2517 | spin_lock_irqsave(&local->ack_status_lock, flags); |
| 2518 | id = idr_alloc(&local->ack_status_frames, ack_skb, |
Johannes Berg | f2b18ba | 2020-01-15 12:25:50 +0100 | [diff] [blame] | 2519 | 1, 0x2000, GFP_ATOMIC); |
John Crispin | 5d8983c | 2019-10-29 10:13:02 +0100 | [diff] [blame] | 2520 | spin_unlock_irqrestore(&local->ack_status_lock, flags); |
| 2521 | |
| 2522 | if (id >= 0) { |
| 2523 | info_id = id; |
| 2524 | *info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS; |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 2525 | if (cookie) { |
| 2526 | *cookie = ieee80211_mgmt_tx_cookie(local); |
| 2527 | IEEE80211_SKB_CB(ack_skb)->ack.cookie = *cookie; |
| 2528 | } |
John Crispin | 5d8983c | 2019-10-29 10:13:02 +0100 | [diff] [blame] | 2529 | } else { |
| 2530 | kfree_skb(ack_skb); |
| 2531 | } |
| 2532 | } |
| 2533 | |
| 2534 | return info_id; |
| 2535 | } |
| 2536 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2537 | /** |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2538 | * ieee80211_build_hdr - build 802.11 header in the given frame |
| 2539 | * @sdata: virtual interface to build the header for |
| 2540 | * @skb: the skb to build the header in |
Liad Kaufman | 24d342c | 2014-11-09 18:50:07 +0200 | [diff] [blame] | 2541 | * @info_flags: skb flags to set |
Johannes Berg | f0daf54 | 2020-09-24 19:25:11 +0200 | [diff] [blame] | 2542 | * @sta: the station pointer |
Rajkumar Manoharan | 0601677 | 2019-04-11 13:47:25 -0700 | [diff] [blame] | 2543 | * @ctrl_flags: info control flags to set |
Johannes Berg | f0daf54 | 2020-09-24 19:25:11 +0200 | [diff] [blame] | 2544 | * @cookie: cookie pointer to fill (if not %NULL) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2545 | * |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2546 | * This function takes the skb with 802.3 header and reformats the header to |
| 2547 | * the appropriate IEEE 802.11 header based on which interface the packet is |
| 2548 | * being transmitted on. |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2549 | * |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2550 | * Note that this function also takes care of the TX status request and |
| 2551 | * potential unsharing of the SKB - this needs to be interleaved with the |
| 2552 | * header building. |
| 2553 | * |
| 2554 | * The function requires the read-side RCU lock held |
| 2555 | * |
| 2556 | * Returns: the (possibly reallocated) skb or an ERR_PTR() code |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2557 | */ |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2558 | static struct sk_buff *ieee80211_build_hdr(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 7c10770 | 2015-03-20 14:18:27 +0100 | [diff] [blame] | 2559 | struct sk_buff *skb, u32 info_flags, |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 2560 | struct sta_info *sta, u32 ctrl_flags, |
| 2561 | u64 *cookie) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2562 | { |
Johannes Berg | 133b822 | 2008-09-16 14:18:59 +0200 | [diff] [blame] | 2563 | struct ieee80211_local *local = sdata->local; |
Felix Fietkau | 489ee91 | 2010-12-18 19:30:48 +0100 | [diff] [blame] | 2564 | struct ieee80211_tx_info *info; |
Johannes Berg | dcf3396 | 2012-07-30 15:11:56 +0200 | [diff] [blame] | 2565 | int head_need; |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 2566 | u16 ethertype, hdrlen, meshhdrlen = 0; |
| 2567 | __le16 fc; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2568 | struct ieee80211_hdr hdr; |
Wey-Yi Guy | ff67bb8 | 2010-08-21 07:23:29 -0700 | [diff] [blame] | 2569 | struct ieee80211s_hdr mesh_hdr __maybe_unused; |
Chun-Yeow Yeoh | b8bacc1 | 2012-05-30 09:30:41 +0800 | [diff] [blame] | 2570 | struct mesh_path __maybe_unused *mppath = NULL, *mpath = NULL; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2571 | const u8 *encaps_data; |
| 2572 | int encaps_len, skip_header_bytes; |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 2573 | bool wme_sta = false, authorized = false; |
| 2574 | bool tdls_peer; |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2575 | bool multicast; |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2576 | u16 info_id = 0; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2577 | struct ieee80211_chanctx_conf *chanctx_conf; |
| 2578 | struct ieee80211_sub_if_data *ap_sdata; |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 2579 | enum nl80211_band band; |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2580 | int ret; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2581 | |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 2582 | if (IS_ERR(sta)) |
| 2583 | sta = NULL; |
| 2584 | |
Julius Niedworok | 276d9e8 | 2019-03-28 21:01:06 +0100 | [diff] [blame] | 2585 | #ifdef CONFIG_MAC80211_DEBUGFS |
| 2586 | if (local->force_tx_status) |
| 2587 | info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS; |
| 2588 | #endif |
| 2589 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2590 | /* convert Ethernet header to proper 802.11 header (based on |
| 2591 | * operation mode) */ |
| 2592 | ethertype = (skb->data[12] << 8) | skb->data[13]; |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 2593 | fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2594 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 2595 | switch (sdata->vif.type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2596 | case NL80211_IFTYPE_AP_VLAN: |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 2597 | if (sdata->wdev.use_4addr) { |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 2598 | fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS); |
| 2599 | /* RA TA DA SA */ |
| 2600 | memcpy(hdr.addr1, sta->sta.addr, ETH_ALEN); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 2601 | memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN); |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 2602 | memcpy(hdr.addr3, skb->data, ETH_ALEN); |
| 2603 | memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN); |
| 2604 | hdrlen = 30; |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 2605 | authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED); |
Johannes Berg | a74a8c8 | 2014-07-22 14:50:47 +0200 | [diff] [blame] | 2606 | wme_sta = sta->sta.wme; |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 2607 | } |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2608 | ap_sdata = container_of(sdata->bss, struct ieee80211_sub_if_data, |
| 2609 | u.ap); |
| 2610 | chanctx_conf = rcu_dereference(ap_sdata->vif.chanctx_conf); |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2611 | if (!chanctx_conf) { |
| 2612 | ret = -ENOTCONN; |
| 2613 | goto free; |
| 2614 | } |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 2615 | band = chanctx_conf->def.chan->band; |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 2616 | if (sdata->wdev.use_4addr) |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 2617 | break; |
Gustavo A. R. Silva | fc0561d | 2020-07-07 15:45:48 -0500 | [diff] [blame] | 2618 | fallthrough; |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 2619 | case NL80211_IFTYPE_AP: |
Arnd Bergmann | fe80123 | 2013-01-25 14:14:33 +0000 | [diff] [blame] | 2620 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
| 2621 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2622 | if (!chanctx_conf) { |
| 2623 | ret = -ENOTCONN; |
| 2624 | goto free; |
| 2625 | } |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 2626 | fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2627 | /* DA BSSID SA */ |
| 2628 | memcpy(hdr.addr1, skb->data, ETH_ALEN); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 2629 | memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2630 | memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN); |
| 2631 | hdrlen = 24; |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 2632 | band = chanctx_conf->def.chan->band; |
Johannes Berg | cf96683 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 2633 | break; |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 2634 | #ifdef CONFIG_MAC80211_MESH |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2635 | case NL80211_IFTYPE_MESH_POINT: |
Chun-Yeow Yeoh | b8bacc1 | 2012-05-30 09:30:41 +0800 | [diff] [blame] | 2636 | if (!is_multicast_ether_addr(skb->data)) { |
Chun-Yeow Yeoh | 163df6c | 2013-02-19 10:04:50 +0800 | [diff] [blame] | 2637 | struct sta_info *next_hop; |
| 2638 | bool mpp_lookup = true; |
| 2639 | |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 2640 | mpath = mesh_path_lookup(sdata, skb->data); |
Chun-Yeow Yeoh | 163df6c | 2013-02-19 10:04:50 +0800 | [diff] [blame] | 2641 | if (mpath) { |
| 2642 | mpp_lookup = false; |
| 2643 | next_hop = rcu_dereference(mpath->next_hop); |
| 2644 | if (!next_hop || |
| 2645 | !(mpath->flags & (MESH_PATH_ACTIVE | |
| 2646 | MESH_PATH_RESOLVING))) |
| 2647 | mpp_lookup = true; |
| 2648 | } |
| 2649 | |
Henning Rogge | ab1c790 | 2016-02-03 13:58:37 +0100 | [diff] [blame] | 2650 | if (mpp_lookup) { |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 2651 | mppath = mpp_path_lookup(sdata, skb->data); |
Henning Rogge | ab1c790 | 2016-02-03 13:58:37 +0100 | [diff] [blame] | 2652 | if (mppath) |
| 2653 | mppath->exp_time = jiffies; |
| 2654 | } |
Chun-Yeow Yeoh | 163df6c | 2013-02-19 10:04:50 +0800 | [diff] [blame] | 2655 | |
| 2656 | if (mppath && mpath) |
Bob Copeland | 2bdaf38 | 2016-02-28 20:03:56 -0500 | [diff] [blame] | 2657 | mesh_path_del(sdata, mpath->dst); |
Chun-Yeow Yeoh | b8bacc1 | 2012-05-30 09:30:41 +0800 | [diff] [blame] | 2658 | } |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 2659 | |
Joel A Fernandes | f76b57b | 2010-12-28 19:28:11 -0600 | [diff] [blame] | 2660 | /* |
Joel A Fernandes | 9d52501 | 2011-01-10 00:44:23 -0600 | [diff] [blame] | 2661 | * Use address extension if it is a packet from |
| 2662 | * another interface or if we know the destination |
| 2663 | * is being proxied by a portal (i.e. portal address |
| 2664 | * differs from proxied address) |
Joel A Fernandes | f76b57b | 2010-12-28 19:28:11 -0600 | [diff] [blame] | 2665 | */ |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 2666 | if (ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN) && |
| 2667 | !(mppath && !ether_addr_equal(mppath->mpp, skb->data))) { |
Javier Cardona | 3c5772a | 2009-08-10 12:15:48 -0700 | [diff] [blame] | 2668 | hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc, |
| 2669 | skb->data, skb->data + ETH_ALEN); |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 2670 | meshhdrlen = ieee80211_new_mesh_header(sdata, &mesh_hdr, |
| 2671 | NULL, NULL); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 2672 | } else { |
Thomas Pedersen | 27f0112 | 2012-08-20 11:28:25 -0700 | [diff] [blame] | 2673 | /* DS -> MBSS (802.11-2012 13.11.3.3). |
| 2674 | * For unicast with unknown forwarding information, |
| 2675 | * destination might be in the MBSS or if that fails |
| 2676 | * forwarded to another mesh gate. In either case |
| 2677 | * resolution will be handled in ieee80211_xmit(), so |
| 2678 | * leave the original DA. This also works for mcast */ |
| 2679 | const u8 *mesh_da = skb->data; |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 2680 | |
Thomas Pedersen | 27f0112 | 2012-08-20 11:28:25 -0700 | [diff] [blame] | 2681 | if (mppath) |
| 2682 | mesh_da = mppath->mpp; |
| 2683 | else if (mpath) |
| 2684 | mesh_da = mpath->dst; |
Thomas Pedersen | 27f0112 | 2012-08-20 11:28:25 -0700 | [diff] [blame] | 2685 | |
Javier Cardona | 3c5772a | 2009-08-10 12:15:48 -0700 | [diff] [blame] | 2686 | hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc, |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 2687 | mesh_da, sdata->vif.addr); |
Thomas Pedersen | 27f0112 | 2012-08-20 11:28:25 -0700 | [diff] [blame] | 2688 | if (is_multicast_ether_addr(mesh_da)) |
| 2689 | /* DA TA mSA AE:SA */ |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 2690 | meshhdrlen = ieee80211_new_mesh_header( |
| 2691 | sdata, &mesh_hdr, |
| 2692 | skb->data + ETH_ALEN, NULL); |
Javier Cardona | 3c5772a | 2009-08-10 12:15:48 -0700 | [diff] [blame] | 2693 | else |
Thomas Pedersen | 27f0112 | 2012-08-20 11:28:25 -0700 | [diff] [blame] | 2694 | /* RA TA mDA mSA AE:DA SA */ |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 2695 | meshhdrlen = ieee80211_new_mesh_header( |
| 2696 | sdata, &mesh_hdr, skb->data, |
| 2697 | skb->data + ETH_ALEN); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 2698 | |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 2699 | } |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2700 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2701 | if (!chanctx_conf) { |
| 2702 | ret = -ENOTCONN; |
| 2703 | goto free; |
| 2704 | } |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 2705 | band = chanctx_conf->def.chan->band; |
Rajkumar Manoharan | 8828f81 | 2019-04-11 13:47:26 -0700 | [diff] [blame] | 2706 | |
| 2707 | /* For injected frames, fill RA right away as nexthop lookup |
| 2708 | * will be skipped. |
| 2709 | */ |
| 2710 | if ((ctrl_flags & IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP) && |
| 2711 | is_zero_ether_addr(hdr.addr1)) |
| 2712 | memcpy(hdr.addr1, skb->data, ETH_ALEN); |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 2713 | break; |
| 2714 | #endif |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2715 | case NL80211_IFTYPE_STATION: |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 2716 | /* we already did checks when looking up the RA STA */ |
| 2717 | tdls_peer = test_sta_flag(sta, WLAN_STA_TDLS_PEER); |
Arik Nemtsov | 941c93c | 2011-09-28 14:12:54 +0300 | [diff] [blame] | 2718 | |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 2719 | if (tdls_peer) { |
Arik Nemtsov | 941c93c | 2011-09-28 14:12:54 +0300 | [diff] [blame] | 2720 | /* DA SA BSSID */ |
| 2721 | memcpy(hdr.addr1, skb->data, ETH_ALEN); |
| 2722 | memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN); |
| 2723 | memcpy(hdr.addr3, sdata->u.mgd.bssid, ETH_ALEN); |
| 2724 | hdrlen = 24; |
| 2725 | } else if (sdata->u.mgd.use_4addr && |
| 2726 | cpu_to_be16(ethertype) != sdata->control_port_protocol) { |
| 2727 | fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | |
| 2728 | IEEE80211_FCTL_TODS); |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 2729 | /* RA TA DA SA */ |
Arik Nemtsov | 941c93c | 2011-09-28 14:12:54 +0300 | [diff] [blame] | 2730 | memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 2731 | memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN); |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 2732 | memcpy(hdr.addr3, skb->data, ETH_ALEN); |
| 2733 | memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN); |
| 2734 | hdrlen = 30; |
| 2735 | } else { |
| 2736 | fc |= cpu_to_le16(IEEE80211_FCTL_TODS); |
| 2737 | /* BSSID SA DA */ |
Arik Nemtsov | 941c93c | 2011-09-28 14:12:54 +0300 | [diff] [blame] | 2738 | memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN); |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 2739 | memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN); |
| 2740 | memcpy(hdr.addr3, skb->data, ETH_ALEN); |
| 2741 | hdrlen = 24; |
| 2742 | } |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2743 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2744 | if (!chanctx_conf) { |
| 2745 | ret = -ENOTCONN; |
| 2746 | goto free; |
| 2747 | } |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 2748 | band = chanctx_conf->def.chan->band; |
Johannes Berg | cf96683 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 2749 | break; |
Rostislav Lisovy | 239281f | 2014-11-03 10:33:19 +0100 | [diff] [blame] | 2750 | case NL80211_IFTYPE_OCB: |
| 2751 | /* DA SA BSSID */ |
| 2752 | memcpy(hdr.addr1, skb->data, ETH_ALEN); |
| 2753 | memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN); |
| 2754 | eth_broadcast_addr(hdr.addr3); |
| 2755 | hdrlen = 24; |
| 2756 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2757 | if (!chanctx_conf) { |
| 2758 | ret = -ENOTCONN; |
| 2759 | goto free; |
| 2760 | } |
Rostislav Lisovy | 239281f | 2014-11-03 10:33:19 +0100 | [diff] [blame] | 2761 | band = chanctx_conf->def.chan->band; |
| 2762 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2763 | case NL80211_IFTYPE_ADHOC: |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2764 | /* DA SA BSSID */ |
| 2765 | memcpy(hdr.addr1, skb->data, ETH_ALEN); |
| 2766 | memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2767 | memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2768 | hdrlen = 24; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2769 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2770 | if (!chanctx_conf) { |
| 2771 | ret = -ENOTCONN; |
| 2772 | goto free; |
| 2773 | } |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 2774 | band = chanctx_conf->def.chan->band; |
Johannes Berg | cf96683 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 2775 | break; |
| 2776 | default: |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2777 | ret = -EINVAL; |
| 2778 | goto free; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2779 | } |
| 2780 | |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2781 | multicast = is_multicast_ether_addr(hdr.addr1); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2782 | |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 2783 | /* sta is always NULL for mesh */ |
| 2784 | if (sta) { |
| 2785 | authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED); |
| 2786 | wme_sta = sta->sta.wme; |
| 2787 | } else if (ieee80211_vif_is_mesh(&sdata->vif)) { |
| 2788 | /* For mesh, the use of the QoS header is mandatory */ |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 2789 | wme_sta = true; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2790 | } |
| 2791 | |
Johannes Berg | 527871d | 2015-03-21 08:09:55 +0100 | [diff] [blame] | 2792 | /* receiver does QoS (which also means we do) use it */ |
| 2793 | if (wme_sta) { |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 2794 | fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA); |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 2795 | hdrlen += 2; |
| 2796 | } |
| 2797 | |
| 2798 | /* |
Johannes Berg | 238814f | 2008-01-28 17:19:37 +0100 | [diff] [blame] | 2799 | * Drop unicast frames to unauthorised stations unless they are |
| 2800 | * EAPOL frames from the local station. |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 2801 | */ |
Johannes Berg | 55182e4 | 2011-10-12 17:28:21 +0200 | [diff] [blame] | 2802 | if (unlikely(!ieee80211_vif_is_mesh(&sdata->vif) && |
Rostislav Lisovy | 239281f | 2014-11-03 10:33:19 +0100 | [diff] [blame] | 2803 | (sdata->vif.type != NL80211_IFTYPE_OCB) && |
Sergey Ryazanov | a6ececf | 2013-08-30 01:35:09 +0400 | [diff] [blame] | 2804 | !multicast && !authorized && |
Johannes Berg | 55182e4 | 2011-10-12 17:28:21 +0200 | [diff] [blame] | 2805 | (cpu_to_be16(ethertype) != sdata->control_port_protocol || |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 2806 | !ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN)))) { |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 2807 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 2808 | net_info_ratelimited("%s: dropped frame to %pM (unauthorized port)\n", |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2809 | sdata->name, hdr.addr1); |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 2810 | #endif |
| 2811 | |
| 2812 | I802_DEBUG_INC(local->tx_handlers_drop_unauth_port); |
| 2813 | |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2814 | ret = -EPERM; |
| 2815 | goto free; |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 2816 | } |
| 2817 | |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 2818 | if (unlikely(!multicast && ((skb->sk && |
| 2819 | skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS) || |
| 2820 | ctrl_flags & IEEE80211_TX_CTL_REQ_TX_STATUS))) |
| 2821 | info_id = ieee80211_store_ack_skb(local, skb, &info_flags, |
| 2822 | cookie); |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2823 | |
Helmut Schaa | 7e24470 | 2010-12-02 18:44:09 +0100 | [diff] [blame] | 2824 | /* |
| 2825 | * If the skb is shared we need to obtain our own copy. |
| 2826 | */ |
| 2827 | if (skb_shared(skb)) { |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2828 | struct sk_buff *tmp_skb = skb; |
| 2829 | |
| 2830 | /* can't happen -- skb is a clone if info_id != 0 */ |
| 2831 | WARN_ON(info_id); |
| 2832 | |
Felix Fietkau | f8a0a78 | 2010-12-18 19:30:50 +0100 | [diff] [blame] | 2833 | skb = skb_clone(skb, GFP_ATOMIC); |
Helmut Schaa | 7e24470 | 2010-12-02 18:44:09 +0100 | [diff] [blame] | 2834 | kfree_skb(tmp_skb); |
| 2835 | |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2836 | if (!skb) { |
| 2837 | ret = -ENOMEM; |
| 2838 | goto free; |
| 2839 | } |
Helmut Schaa | 7e24470 | 2010-12-02 18:44:09 +0100 | [diff] [blame] | 2840 | } |
| 2841 | |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 2842 | hdr.frame_control = fc; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2843 | hdr.duration_id = 0; |
| 2844 | hdr.seq_ctrl = 0; |
| 2845 | |
| 2846 | skip_header_bytes = ETH_HLEN; |
| 2847 | if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) { |
| 2848 | encaps_data = bridge_tunnel_header; |
| 2849 | encaps_len = sizeof(bridge_tunnel_header); |
| 2850 | skip_header_bytes -= 2; |
Simon Horman | e5c5d22 | 2013-03-28 13:38:25 +0900 | [diff] [blame] | 2851 | } else if (ethertype >= ETH_P_802_3_MIN) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2852 | encaps_data = rfc1042_header; |
| 2853 | encaps_len = sizeof(rfc1042_header); |
| 2854 | skip_header_bytes -= 2; |
| 2855 | } else { |
| 2856 | encaps_data = NULL; |
| 2857 | encaps_len = 0; |
| 2858 | } |
| 2859 | |
| 2860 | skb_pull(skb, skip_header_bytes); |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 2861 | head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2862 | |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 2863 | /* |
| 2864 | * So we need to modify the skb header and hence need a copy of |
| 2865 | * that. The head_need variable above doesn't, so far, include |
| 2866 | * the needed header space that we don't need right away. If we |
| 2867 | * can, then we don't reallocate right now but only after the |
| 2868 | * frame arrives at the master device (if it does...) |
| 2869 | * |
| 2870 | * If we cannot, however, then we will reallocate to include all |
| 2871 | * the ever needed space. Also, if we need to reallocate it anyway, |
| 2872 | * make it big enough for everything we may ever need. |
| 2873 | */ |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2874 | |
David S. Miller | 3a5be7d | 2008-06-18 01:19:51 -0700 | [diff] [blame] | 2875 | if (head_need > 0 || skb_cloned(skb)) { |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 2876 | head_need += sdata->encrypt_headroom; |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 2877 | head_need += local->tx_headroom; |
| 2878 | head_need = max_t(int, 0, head_need); |
Johannes Berg | 14f46c1 | 2020-10-09 13:25:41 +0200 | [diff] [blame] | 2879 | if (ieee80211_skb_resize(sdata, skb, head_need, ENCRYPT_DATA)) { |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 2880 | ieee80211_free_txskb(&local->hw, skb); |
Johannes Berg | 1c963be | 2012-11-07 14:02:30 +0100 | [diff] [blame] | 2881 | skb = NULL; |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2882 | return ERR_PTR(-ENOMEM); |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 2883 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2884 | } |
| 2885 | |
Felix Fietkau | eae4430 | 2016-07-13 11:00:02 +0200 | [diff] [blame] | 2886 | if (encaps_data) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2887 | memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len); |
Johannes Berg | c29b9b9 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 2888 | |
Yuri Ershov | e4ab7eb | 2010-06-29 15:08:06 +0400 | [diff] [blame] | 2889 | #ifdef CONFIG_MAC80211_MESH |
Felix Fietkau | eae4430 | 2016-07-13 11:00:02 +0200 | [diff] [blame] | 2890 | if (meshhdrlen > 0) |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 2891 | memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen); |
Yuri Ershov | e4ab7eb | 2010-06-29 15:08:06 +0400 | [diff] [blame] | 2892 | #endif |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 2893 | |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 2894 | if (ieee80211_is_data_qos(fc)) { |
Johannes Berg | c29b9b9 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 2895 | __le16 *qos_control; |
| 2896 | |
Johannes Berg | d58ff35 | 2017-06-16 14:29:23 +0200 | [diff] [blame] | 2897 | qos_control = skb_push(skb, 2); |
Johannes Berg | c29b9b9 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 2898 | memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2); |
| 2899 | /* |
| 2900 | * Maybe we could actually set some fields here, for now just |
| 2901 | * initialise to zero to indicate no special operation. |
| 2902 | */ |
| 2903 | *qos_control = 0; |
| 2904 | } else |
| 2905 | memcpy(skb_push(skb, hdrlen), &hdr, hdrlen); |
| 2906 | |
Zhang Shengju | d57a544 | 2016-03-03 01:16:56 +0000 | [diff] [blame] | 2907 | skb_reset_mac_header(skb); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2908 | |
Felix Fietkau | 489ee91 | 2010-12-18 19:30:48 +0100 | [diff] [blame] | 2909 | info = IEEE80211_SKB_CB(skb); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 2910 | memset(info, 0, sizeof(*info)); |
| 2911 | |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2912 | info->flags = info_flags; |
| 2913 | info->ack_frame_id = info_id; |
Johannes Berg | 73c4e19 | 2014-11-09 18:50:09 +0200 | [diff] [blame] | 2914 | info->band = band; |
Rajkumar Manoharan | 0601677 | 2019-04-11 13:47:25 -0700 | [diff] [blame] | 2915 | info->control.flags = ctrl_flags; |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 2916 | |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 2917 | return skb; |
| 2918 | free: |
| 2919 | kfree_skb(skb); |
| 2920 | return ERR_PTR(ret); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2921 | } |
| 2922 | |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 2923 | /* |
| 2924 | * fast-xmit overview |
| 2925 | * |
| 2926 | * The core idea of this fast-xmit is to remove per-packet checks by checking |
| 2927 | * them out of band. ieee80211_check_fast_xmit() implements the out-of-band |
| 2928 | * checks that are needed to get the sta->fast_tx pointer assigned, after which |
| 2929 | * much less work can be done per packet. For example, fragmentation must be |
| 2930 | * disabled or the fast_tx pointer will not be set. All the conditions are seen |
| 2931 | * in the code here. |
| 2932 | * |
| 2933 | * Once assigned, the fast_tx data structure also caches the per-packet 802.11 |
| 2934 | * header and other data to aid packet processing in ieee80211_xmit_fast(). |
| 2935 | * |
| 2936 | * The most difficult part of this is that when any of these assumptions |
| 2937 | * change, an external trigger (i.e. a call to ieee80211_clear_fast_xmit(), |
| 2938 | * ieee80211_check_fast_xmit() or friends) is required to reset the data, |
| 2939 | * since the per-packet code no longer checks the conditions. This is reflected |
| 2940 | * by the calls to these functions throughout the rest of the code, and must be |
| 2941 | * maintained if any of the TX path checks change. |
| 2942 | */ |
| 2943 | |
| 2944 | void ieee80211_check_fast_xmit(struct sta_info *sta) |
| 2945 | { |
| 2946 | struct ieee80211_fast_tx build = {}, *fast_tx = NULL, *old; |
| 2947 | struct ieee80211_local *local = sta->local; |
| 2948 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
| 2949 | struct ieee80211_hdr *hdr = (void *)build.hdr; |
| 2950 | struct ieee80211_chanctx_conf *chanctx_conf; |
| 2951 | __le16 fc; |
| 2952 | |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 2953 | if (!ieee80211_hw_check(&local->hw, SUPPORT_FAST_XMIT)) |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 2954 | return; |
| 2955 | |
| 2956 | /* Locking here protects both the pointer itself, and against concurrent |
| 2957 | * invocations winning data access races to, e.g., the key pointer that |
| 2958 | * is used. |
| 2959 | * Without it, the invocation of this function right after the key |
| 2960 | * pointer changes wouldn't be sufficient, as another CPU could access |
| 2961 | * the pointer, then stall, and then do the cache update after the CPU |
| 2962 | * that invalidated the key. |
| 2963 | * With the locking, such scenarios cannot happen as the check for the |
| 2964 | * key and the fast-tx assignment are done atomically, so the CPU that |
| 2965 | * modifies the key will either wait or other one will see the key |
| 2966 | * cleared/changed already. |
| 2967 | */ |
| 2968 | spin_lock_bh(&sta->lock); |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 2969 | if (ieee80211_hw_check(&local->hw, SUPPORTS_PS) && |
| 2970 | !ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS) && |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 2971 | sdata->vif.type == NL80211_IFTYPE_STATION) |
| 2972 | goto out; |
| 2973 | |
| 2974 | if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED)) |
| 2975 | goto out; |
| 2976 | |
| 2977 | if (test_sta_flag(sta, WLAN_STA_PS_STA) || |
| 2978 | test_sta_flag(sta, WLAN_STA_PS_DRIVER) || |
Felix Fietkau | f7418bc | 2015-09-24 14:59:49 +0200 | [diff] [blame] | 2979 | test_sta_flag(sta, WLAN_STA_PS_DELIVER) || |
| 2980 | test_sta_flag(sta, WLAN_STA_CLEAR_PS_FILT)) |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 2981 | goto out; |
| 2982 | |
| 2983 | if (sdata->noack_map) |
| 2984 | goto out; |
| 2985 | |
| 2986 | /* fast-xmit doesn't handle fragmentation at all */ |
Johannes Berg | 725b812 | 2015-04-10 14:02:08 +0200 | [diff] [blame] | 2987 | if (local->hw.wiphy->frag_threshold != (u32)-1 && |
Sara Sharon | f3fe4e9 | 2016-10-18 23:12:11 +0300 | [diff] [blame] | 2988 | !ieee80211_hw_check(&local->hw, SUPPORTS_TX_FRAG)) |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 2989 | goto out; |
| 2990 | |
| 2991 | rcu_read_lock(); |
| 2992 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
| 2993 | if (!chanctx_conf) { |
| 2994 | rcu_read_unlock(); |
| 2995 | goto out; |
| 2996 | } |
| 2997 | build.band = chanctx_conf->def.chan->band; |
| 2998 | rcu_read_unlock(); |
| 2999 | |
| 3000 | fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA); |
| 3001 | |
| 3002 | switch (sdata->vif.type) { |
Johannes Berg | 3ffd884 | 2015-04-14 10:28:37 +0200 | [diff] [blame] | 3003 | case NL80211_IFTYPE_ADHOC: |
| 3004 | /* DA SA BSSID */ |
| 3005 | build.da_offs = offsetof(struct ieee80211_hdr, addr1); |
| 3006 | build.sa_offs = offsetof(struct ieee80211_hdr, addr2); |
| 3007 | memcpy(hdr->addr3, sdata->u.ibss.bssid, ETH_ALEN); |
| 3008 | build.hdr_len = 24; |
| 3009 | break; |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3010 | case NL80211_IFTYPE_STATION: |
| 3011 | if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) { |
| 3012 | /* DA SA BSSID */ |
| 3013 | build.da_offs = offsetof(struct ieee80211_hdr, addr1); |
| 3014 | build.sa_offs = offsetof(struct ieee80211_hdr, addr2); |
| 3015 | memcpy(hdr->addr3, sdata->u.mgd.bssid, ETH_ALEN); |
| 3016 | build.hdr_len = 24; |
| 3017 | break; |
| 3018 | } |
| 3019 | |
| 3020 | if (sdata->u.mgd.use_4addr) { |
| 3021 | /* non-regular ethertype cannot use the fastpath */ |
| 3022 | fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | |
| 3023 | IEEE80211_FCTL_TODS); |
| 3024 | /* RA TA DA SA */ |
| 3025 | memcpy(hdr->addr1, sdata->u.mgd.bssid, ETH_ALEN); |
| 3026 | memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN); |
| 3027 | build.da_offs = offsetof(struct ieee80211_hdr, addr3); |
| 3028 | build.sa_offs = offsetof(struct ieee80211_hdr, addr4); |
| 3029 | build.hdr_len = 30; |
| 3030 | break; |
| 3031 | } |
| 3032 | fc |= cpu_to_le16(IEEE80211_FCTL_TODS); |
| 3033 | /* BSSID SA DA */ |
| 3034 | memcpy(hdr->addr1, sdata->u.mgd.bssid, ETH_ALEN); |
| 3035 | build.da_offs = offsetof(struct ieee80211_hdr, addr3); |
| 3036 | build.sa_offs = offsetof(struct ieee80211_hdr, addr2); |
| 3037 | build.hdr_len = 24; |
| 3038 | break; |
| 3039 | case NL80211_IFTYPE_AP_VLAN: |
| 3040 | if (sdata->wdev.use_4addr) { |
| 3041 | fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | |
| 3042 | IEEE80211_FCTL_TODS); |
| 3043 | /* RA TA DA SA */ |
| 3044 | memcpy(hdr->addr1, sta->sta.addr, ETH_ALEN); |
| 3045 | memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN); |
| 3046 | build.da_offs = offsetof(struct ieee80211_hdr, addr3); |
| 3047 | build.sa_offs = offsetof(struct ieee80211_hdr, addr4); |
| 3048 | build.hdr_len = 30; |
| 3049 | break; |
| 3050 | } |
Gustavo A. R. Silva | fc0561d | 2020-07-07 15:45:48 -0500 | [diff] [blame] | 3051 | fallthrough; |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3052 | case NL80211_IFTYPE_AP: |
| 3053 | fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS); |
| 3054 | /* DA BSSID SA */ |
| 3055 | build.da_offs = offsetof(struct ieee80211_hdr, addr1); |
| 3056 | memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN); |
| 3057 | build.sa_offs = offsetof(struct ieee80211_hdr, addr3); |
| 3058 | build.hdr_len = 24; |
| 3059 | break; |
| 3060 | default: |
| 3061 | /* not handled on fast-xmit */ |
| 3062 | goto out; |
| 3063 | } |
| 3064 | |
| 3065 | if (sta->sta.wme) { |
| 3066 | build.hdr_len += 2; |
| 3067 | fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA); |
| 3068 | } |
| 3069 | |
| 3070 | /* We store the key here so there's no point in using rcu_dereference() |
| 3071 | * but that's fine because the code that changes the pointers will call |
| 3072 | * this function after doing so. For a single CPU that would be enough, |
| 3073 | * for multiple see the comment above. |
| 3074 | */ |
| 3075 | build.key = rcu_access_pointer(sta->ptk[sta->ptk_idx]); |
| 3076 | if (!build.key) |
| 3077 | build.key = rcu_access_pointer(sdata->default_unicast_key); |
| 3078 | if (build.key) { |
Johannes Berg | e495c24 | 2015-04-10 14:03:17 +0200 | [diff] [blame] | 3079 | bool gen_iv, iv_spc, mmic; |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3080 | |
| 3081 | gen_iv = build.key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV; |
| 3082 | iv_spc = build.key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE; |
David Spinadel | 9de18d8 | 2017-12-01 13:50:52 +0200 | [diff] [blame] | 3083 | mmic = build.key->conf.flags & |
| 3084 | (IEEE80211_KEY_FLAG_GENERATE_MMIC | |
| 3085 | IEEE80211_KEY_FLAG_PUT_MIC_SPACE); |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3086 | |
| 3087 | /* don't handle software crypto */ |
| 3088 | if (!(build.key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)) |
| 3089 | goto out; |
| 3090 | |
Alexander Wetzel | 62872a9 | 2018-08-31 15:00:38 +0200 | [diff] [blame] | 3091 | /* Key is being removed */ |
| 3092 | if (build.key->flags & KEY_FLAG_TAINTED) |
| 3093 | goto out; |
| 3094 | |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3095 | switch (build.key->conf.cipher) { |
| 3096 | case WLAN_CIPHER_SUITE_CCMP: |
| 3097 | case WLAN_CIPHER_SUITE_CCMP_256: |
Alexander Wetzel | 96fc6ef | 2019-03-19 21:34:08 +0100 | [diff] [blame] | 3098 | if (gen_iv) |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3099 | build.pn_offs = build.hdr_len; |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3100 | if (gen_iv || iv_spc) |
| 3101 | build.hdr_len += IEEE80211_CCMP_HDR_LEN; |
| 3102 | break; |
| 3103 | case WLAN_CIPHER_SUITE_GCMP: |
| 3104 | case WLAN_CIPHER_SUITE_GCMP_256: |
Alexander Wetzel | 96fc6ef | 2019-03-19 21:34:08 +0100 | [diff] [blame] | 3105 | if (gen_iv) |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3106 | build.pn_offs = build.hdr_len; |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3107 | if (gen_iv || iv_spc) |
| 3108 | build.hdr_len += IEEE80211_GCMP_HDR_LEN; |
| 3109 | break; |
Johannes Berg | e495c24 | 2015-04-10 14:03:17 +0200 | [diff] [blame] | 3110 | case WLAN_CIPHER_SUITE_TKIP: |
| 3111 | /* cannot handle MMIC or IV generation in xmit-fast */ |
| 3112 | if (mmic || gen_iv) |
| 3113 | goto out; |
| 3114 | if (iv_spc) |
| 3115 | build.hdr_len += IEEE80211_TKIP_IV_LEN; |
| 3116 | break; |
| 3117 | case WLAN_CIPHER_SUITE_WEP40: |
| 3118 | case WLAN_CIPHER_SUITE_WEP104: |
| 3119 | /* cannot handle IV generation in fast-xmit */ |
| 3120 | if (gen_iv) |
| 3121 | goto out; |
| 3122 | if (iv_spc) |
| 3123 | build.hdr_len += IEEE80211_WEP_IV_LEN; |
| 3124 | break; |
| 3125 | case WLAN_CIPHER_SUITE_AES_CMAC: |
| 3126 | case WLAN_CIPHER_SUITE_BIP_CMAC_256: |
| 3127 | case WLAN_CIPHER_SUITE_BIP_GMAC_128: |
| 3128 | case WLAN_CIPHER_SUITE_BIP_GMAC_256: |
| 3129 | WARN(1, |
| 3130 | "management cipher suite 0x%x enabled for data\n", |
| 3131 | build.key->conf.cipher); |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3132 | goto out; |
Johannes Berg | e495c24 | 2015-04-10 14:03:17 +0200 | [diff] [blame] | 3133 | default: |
| 3134 | /* we don't know how to generate IVs for this at all */ |
| 3135 | if (WARN_ON(gen_iv)) |
| 3136 | goto out; |
| 3137 | /* pure hardware keys are OK, of course */ |
| 3138 | if (!(build.key->flags & KEY_FLAG_CIPHER_SCHEME)) |
| 3139 | break; |
| 3140 | /* cipher scheme might require space allocation */ |
| 3141 | if (iv_spc && |
| 3142 | build.key->conf.iv_len > IEEE80211_FAST_XMIT_MAX_IV) |
| 3143 | goto out; |
| 3144 | if (iv_spc) |
| 3145 | build.hdr_len += build.key->conf.iv_len; |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3146 | } |
| 3147 | |
| 3148 | fc |= cpu_to_le16(IEEE80211_FCTL_PROTECTED); |
| 3149 | } |
| 3150 | |
| 3151 | hdr->frame_control = fc; |
| 3152 | |
| 3153 | memcpy(build.hdr + build.hdr_len, |
| 3154 | rfc1042_header, sizeof(rfc1042_header)); |
| 3155 | build.hdr_len += sizeof(rfc1042_header); |
| 3156 | |
| 3157 | fast_tx = kmemdup(&build, sizeof(build), GFP_ATOMIC); |
| 3158 | /* if the kmemdup fails, continue w/o fast_tx */ |
| 3159 | if (!fast_tx) |
| 3160 | goto out; |
| 3161 | |
| 3162 | out: |
| 3163 | /* we might have raced against another call to this function */ |
| 3164 | old = rcu_dereference_protected(sta->fast_tx, |
| 3165 | lockdep_is_held(&sta->lock)); |
| 3166 | rcu_assign_pointer(sta->fast_tx, fast_tx); |
| 3167 | if (old) |
| 3168 | kfree_rcu(old, rcu_head); |
| 3169 | spin_unlock_bh(&sta->lock); |
| 3170 | } |
| 3171 | |
| 3172 | void ieee80211_check_fast_xmit_all(struct ieee80211_local *local) |
| 3173 | { |
| 3174 | struct sta_info *sta; |
| 3175 | |
| 3176 | rcu_read_lock(); |
| 3177 | list_for_each_entry_rcu(sta, &local->sta_list, list) |
| 3178 | ieee80211_check_fast_xmit(sta); |
| 3179 | rcu_read_unlock(); |
| 3180 | } |
| 3181 | |
| 3182 | void ieee80211_check_fast_xmit_iface(struct ieee80211_sub_if_data *sdata) |
| 3183 | { |
| 3184 | struct ieee80211_local *local = sdata->local; |
| 3185 | struct sta_info *sta; |
| 3186 | |
| 3187 | rcu_read_lock(); |
| 3188 | |
| 3189 | list_for_each_entry_rcu(sta, &local->sta_list, list) { |
| 3190 | if (sdata != sta->sdata && |
| 3191 | (!sta->sdata->bss || sta->sdata->bss != sdata->bss)) |
| 3192 | continue; |
| 3193 | ieee80211_check_fast_xmit(sta); |
| 3194 | } |
| 3195 | |
| 3196 | rcu_read_unlock(); |
| 3197 | } |
| 3198 | |
| 3199 | void ieee80211_clear_fast_xmit(struct sta_info *sta) |
| 3200 | { |
| 3201 | struct ieee80211_fast_tx *fast_tx; |
| 3202 | |
| 3203 | spin_lock_bh(&sta->lock); |
| 3204 | fast_tx = rcu_dereference_protected(sta->fast_tx, |
| 3205 | lockdep_is_held(&sta->lock)); |
| 3206 | RCU_INIT_POINTER(sta->fast_tx, NULL); |
| 3207 | spin_unlock_bh(&sta->lock); |
| 3208 | |
| 3209 | if (fast_tx) |
| 3210 | kfree_rcu(fast_tx, rcu_head); |
| 3211 | } |
| 3212 | |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3213 | static bool ieee80211_amsdu_realloc_pad(struct ieee80211_local *local, |
Sara Sharon | 166ac9d | 2018-08-29 08:57:02 +0200 | [diff] [blame] | 3214 | struct sk_buff *skb, int headroom) |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3215 | { |
Sara Sharon | 166ac9d | 2018-08-29 08:57:02 +0200 | [diff] [blame] | 3216 | if (skb_headroom(skb) < headroom) { |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3217 | I802_DEBUG_INC(local->tx_expand_skb_head); |
| 3218 | |
Sara Sharon | 166ac9d | 2018-08-29 08:57:02 +0200 | [diff] [blame] | 3219 | if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) { |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3220 | wiphy_debug(local->hw.wiphy, |
| 3221 | "failed to reallocate TX buffer\n"); |
| 3222 | return false; |
| 3223 | } |
| 3224 | } |
| 3225 | |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3226 | return true; |
| 3227 | } |
| 3228 | |
| 3229 | static bool ieee80211_amsdu_prepare_head(struct ieee80211_sub_if_data *sdata, |
| 3230 | struct ieee80211_fast_tx *fast_tx, |
| 3231 | struct sk_buff *skb) |
| 3232 | { |
| 3233 | struct ieee80211_local *local = sdata->local; |
| 3234 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 3235 | struct ieee80211_hdr *hdr; |
Michael Braun | 06f2bb1 | 2016-10-15 13:28:18 +0200 | [diff] [blame] | 3236 | struct ethhdr *amsdu_hdr; |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3237 | int hdr_len = fast_tx->hdr_len - sizeof(rfc1042_header); |
| 3238 | int subframe_len = skb->len - hdr_len; |
| 3239 | void *data; |
Michael Braun | 06f2bb1 | 2016-10-15 13:28:18 +0200 | [diff] [blame] | 3240 | u8 *qc, *h_80211_src, *h_80211_dst; |
Michael Braun | a3e2f4b | 2016-10-15 13:28:19 +0200 | [diff] [blame] | 3241 | const u8 *bssid; |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3242 | |
| 3243 | if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE) |
| 3244 | return false; |
| 3245 | |
| 3246 | if (info->control.flags & IEEE80211_TX_CTRL_AMSDU) |
| 3247 | return true; |
| 3248 | |
Chih-Kang Chang | f50d2ff | 2021-08-16 16:51:28 +0800 | [diff] [blame] | 3249 | if (!ieee80211_amsdu_realloc_pad(local, skb, |
| 3250 | sizeof(*amsdu_hdr) + |
| 3251 | local->hw.extra_tx_headroom)) |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3252 | return false; |
| 3253 | |
Michael Braun | 06f2bb1 | 2016-10-15 13:28:18 +0200 | [diff] [blame] | 3254 | data = skb_push(skb, sizeof(*amsdu_hdr)); |
| 3255 | memmove(data, data + sizeof(*amsdu_hdr), hdr_len); |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3256 | hdr = data; |
Michael Braun | 06f2bb1 | 2016-10-15 13:28:18 +0200 | [diff] [blame] | 3257 | amsdu_hdr = data + hdr_len; |
| 3258 | /* h_80211_src/dst is addr* field within hdr */ |
| 3259 | h_80211_src = data + fast_tx->sa_offs; |
| 3260 | h_80211_dst = data + fast_tx->da_offs; |
| 3261 | |
| 3262 | amsdu_hdr->h_proto = cpu_to_be16(subframe_len); |
| 3263 | ether_addr_copy(amsdu_hdr->h_source, h_80211_src); |
| 3264 | ether_addr_copy(amsdu_hdr->h_dest, h_80211_dst); |
| 3265 | |
Michael Braun | a3e2f4b | 2016-10-15 13:28:19 +0200 | [diff] [blame] | 3266 | /* according to IEEE 802.11-2012 8.3.2 table 8-19, the outer SA/DA |
| 3267 | * fields needs to be changed to BSSID for A-MSDU frames depending |
| 3268 | * on FromDS/ToDS values. |
| 3269 | */ |
| 3270 | switch (sdata->vif.type) { |
| 3271 | case NL80211_IFTYPE_STATION: |
| 3272 | bssid = sdata->u.mgd.bssid; |
| 3273 | break; |
| 3274 | case NL80211_IFTYPE_AP: |
| 3275 | case NL80211_IFTYPE_AP_VLAN: |
| 3276 | bssid = sdata->vif.addr; |
| 3277 | break; |
| 3278 | default: |
| 3279 | bssid = NULL; |
| 3280 | } |
| 3281 | |
| 3282 | if (bssid && ieee80211_has_fromds(hdr->frame_control)) |
| 3283 | ether_addr_copy(h_80211_src, bssid); |
| 3284 | |
| 3285 | if (bssid && ieee80211_has_tods(hdr->frame_control)) |
| 3286 | ether_addr_copy(h_80211_dst, bssid); |
| 3287 | |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3288 | qc = ieee80211_get_qos_ctl(hdr); |
| 3289 | *qc |= IEEE80211_QOS_CTL_A_MSDU_PRESENT; |
| 3290 | |
| 3291 | info->control.flags |= IEEE80211_TX_CTRL_AMSDU; |
| 3292 | |
| 3293 | return true; |
| 3294 | } |
| 3295 | |
| 3296 | static bool ieee80211_amsdu_aggregate(struct ieee80211_sub_if_data *sdata, |
| 3297 | struct sta_info *sta, |
| 3298 | struct ieee80211_fast_tx *fast_tx, |
| 3299 | struct sk_buff *skb) |
| 3300 | { |
| 3301 | struct ieee80211_local *local = sdata->local; |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 3302 | struct fq *fq = &local->fq; |
| 3303 | struct fq_tin *tin; |
| 3304 | struct fq_flow *flow; |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3305 | u8 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK; |
| 3306 | struct ieee80211_txq *txq = sta->sta.txq[tid]; |
| 3307 | struct txq_info *txqi; |
| 3308 | struct sk_buff **frag_tail, *head; |
| 3309 | int subframe_len = skb->len - ETH_ALEN; |
| 3310 | u8 max_subframes = sta->sta.max_amsdu_subframes; |
| 3311 | int max_frags = local->hw.max_tx_fragments; |
| 3312 | int max_amsdu_len = sta->sta.max_amsdu_len; |
Felix Fietkau | eb9b64e | 2019-03-16 18:06:31 +0100 | [diff] [blame] | 3313 | int orig_truesize; |
Felix Fietkau | f2af2df | 2019-03-16 18:06:32 +0100 | [diff] [blame] | 3314 | u32 flow_idx; |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3315 | __be16 len; |
| 3316 | void *data; |
| 3317 | bool ret = false; |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 3318 | unsigned int orig_len; |
Lorenzo Bianconi | 66eb02d | 2018-08-31 01:04:13 +0200 | [diff] [blame] | 3319 | int n = 2, nfrags, pad = 0; |
Sara Sharon | 166ac9d | 2018-08-29 08:57:02 +0200 | [diff] [blame] | 3320 | u16 hdrlen; |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3321 | |
| 3322 | if (!ieee80211_hw_check(&local->hw, TX_AMSDU)) |
| 3323 | return false; |
| 3324 | |
Ryder Lee | 4f2e3eb | 2021-06-18 04:38:59 +0800 | [diff] [blame] | 3325 | if (sdata->vif.offload_flags & IEEE80211_OFFLOAD_ENCAP_ENABLED) |
| 3326 | return false; |
| 3327 | |
Sara Sharon | 344f8e0 | 2018-12-15 11:03:07 +0200 | [diff] [blame] | 3328 | if (skb_is_gso(skb)) |
| 3329 | return false; |
| 3330 | |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3331 | if (!txq) |
| 3332 | return false; |
| 3333 | |
| 3334 | txqi = to_txq_info(txq); |
| 3335 | if (test_bit(IEEE80211_TXQ_NO_AMSDU, &txqi->flags)) |
| 3336 | return false; |
| 3337 | |
| 3338 | if (sta->sta.max_rc_amsdu_len) |
| 3339 | max_amsdu_len = min_t(int, max_amsdu_len, |
| 3340 | sta->sta.max_rc_amsdu_len); |
| 3341 | |
Sara Sharon | edba6bd | 2018-09-05 08:06:10 +0300 | [diff] [blame] | 3342 | if (sta->sta.max_tid_amsdu_len[tid]) |
| 3343 | max_amsdu_len = min_t(int, max_amsdu_len, |
| 3344 | sta->sta.max_tid_amsdu_len[tid]); |
| 3345 | |
Felix Fietkau | f2af2df | 2019-03-16 18:06:32 +0100 | [diff] [blame] | 3346 | flow_idx = fq_flow_idx(fq, skb); |
| 3347 | |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 3348 | spin_lock_bh(&fq->lock); |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3349 | |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 3350 | /* TODO: Ideally aggregation should be done on dequeue to remain |
| 3351 | * responsive to environment changes. |
| 3352 | */ |
| 3353 | |
| 3354 | tin = &txqi->tin; |
Felix Fietkau | bf9009b | 2020-12-18 19:47:14 +0100 | [diff] [blame] | 3355 | flow = fq_flow_classify(fq, tin, flow_idx, skb); |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 3356 | head = skb_peek_tail(&flow->queue); |
Sara Sharon | 344f8e0 | 2018-12-15 11:03:07 +0200 | [diff] [blame] | 3357 | if (!head || skb_is_gso(head)) |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3358 | goto out; |
| 3359 | |
Felix Fietkau | eb9b64e | 2019-03-16 18:06:31 +0100 | [diff] [blame] | 3360 | orig_truesize = head->truesize; |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 3361 | orig_len = head->len; |
| 3362 | |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3363 | if (skb->len + head->len > max_amsdu_len) |
| 3364 | goto out; |
| 3365 | |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3366 | nfrags = 1 + skb_shinfo(skb)->nr_frags; |
| 3367 | nfrags += 1 + skb_shinfo(head)->nr_frags; |
| 3368 | frag_tail = &skb_shinfo(head)->frag_list; |
| 3369 | while (*frag_tail) { |
| 3370 | nfrags += 1 + skb_shinfo(*frag_tail)->nr_frags; |
| 3371 | frag_tail = &(*frag_tail)->next; |
| 3372 | n++; |
| 3373 | } |
| 3374 | |
| 3375 | if (max_subframes && n > max_subframes) |
| 3376 | goto out; |
| 3377 | |
| 3378 | if (max_frags && nfrags > max_frags) |
| 3379 | goto out; |
| 3380 | |
Sara Sharon | 9739fe2 | 2018-09-05 08:06:11 +0300 | [diff] [blame] | 3381 | if (!drv_can_aggregate_in_amsdu(local, head, skb)) |
| 3382 | goto out; |
| 3383 | |
Lorenzo Bianconi | 1eb5079 | 2018-08-29 21:03:25 +0200 | [diff] [blame] | 3384 | if (!ieee80211_amsdu_prepare_head(sdata, fast_tx, head)) |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3385 | goto out; |
| 3386 | |
Chih-Kang Chang | fe94bac | 2021-08-30 15:32:40 +0800 | [diff] [blame] | 3387 | /* If n == 2, the "while (*frag_tail)" loop above didn't execute |
| 3388 | * and frag_tail should be &skb_shinfo(head)->frag_list. |
| 3389 | * However, ieee80211_amsdu_prepare_head() can reallocate it. |
| 3390 | * Reload frag_tail to have it pointing to the correct place. |
| 3391 | */ |
| 3392 | if (n == 2) |
| 3393 | frag_tail = &skb_shinfo(head)->frag_list; |
| 3394 | |
Sara Sharon | 166ac9d | 2018-08-29 08:57:02 +0200 | [diff] [blame] | 3395 | /* |
| 3396 | * Pad out the previous subframe to a multiple of 4 by adding the |
| 3397 | * padding to the next one, that's being added. Note that head->len |
| 3398 | * is the length of the full A-MSDU, but that works since each time |
| 3399 | * we add a new subframe we pad out the previous one to a multiple |
| 3400 | * of 4 and thus it no longer matters in the next round. |
| 3401 | */ |
| 3402 | hdrlen = fast_tx->hdr_len - sizeof(rfc1042_header); |
| 3403 | if ((head->len - hdrlen) & 3) |
| 3404 | pad = 4 - ((head->len - hdrlen) & 3); |
| 3405 | |
| 3406 | if (!ieee80211_amsdu_realloc_pad(local, skb, sizeof(rfc1042_header) + |
| 3407 | 2 + pad)) |
Johannes Berg | aa58acf | 2018-08-30 10:55:49 +0200 | [diff] [blame] | 3408 | goto out_recalc; |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3409 | |
| 3410 | ret = true; |
| 3411 | data = skb_push(skb, ETH_ALEN + 2); |
| 3412 | memmove(data, data + ETH_ALEN + 2, 2 * ETH_ALEN); |
| 3413 | |
| 3414 | data += 2 * ETH_ALEN; |
| 3415 | len = cpu_to_be16(subframe_len); |
| 3416 | memcpy(data, &len, 2); |
| 3417 | memcpy(data + 2, rfc1042_header, sizeof(rfc1042_header)); |
| 3418 | |
Sara Sharon | 166ac9d | 2018-08-29 08:57:02 +0200 | [diff] [blame] | 3419 | memset(skb_push(skb, pad), 0, pad); |
| 3420 | |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3421 | head->len += skb->len; |
| 3422 | head->data_len += skb->len; |
| 3423 | *frag_tail = skb; |
| 3424 | |
Johannes Berg | aa58acf | 2018-08-30 10:55:49 +0200 | [diff] [blame] | 3425 | out_recalc: |
Felix Fietkau | eb9b64e | 2019-03-16 18:06:31 +0100 | [diff] [blame] | 3426 | fq->memory_usage += head->truesize - orig_truesize; |
Johannes Berg | aa58acf | 2018-08-30 10:55:49 +0200 | [diff] [blame] | 3427 | if (head->len != orig_len) { |
| 3428 | flow->backlog += head->len - orig_len; |
| 3429 | tin->backlog_bytes += head->len - orig_len; |
Johannes Berg | aa58acf | 2018-08-30 10:55:49 +0200 | [diff] [blame] | 3430 | } |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3431 | out: |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 3432 | spin_unlock_bh(&fq->lock); |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3433 | |
| 3434 | return ret; |
| 3435 | } |
| 3436 | |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3437 | /* |
| 3438 | * Can be called while the sta lock is held. Anything that can cause packets to |
| 3439 | * be generated will cause deadlock! |
| 3440 | */ |
Ryder Lee | 03c3911 | 2021-06-17 18:31:12 +0200 | [diff] [blame] | 3441 | static ieee80211_tx_result |
| 3442 | ieee80211_xmit_fast_finish(struct ieee80211_sub_if_data *sdata, |
| 3443 | struct sta_info *sta, u8 pn_offs, |
| 3444 | struct ieee80211_key *key, |
| 3445 | struct ieee80211_tx_data *tx) |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3446 | { |
Ryder Lee | 03c3911 | 2021-06-17 18:31:12 +0200 | [diff] [blame] | 3447 | struct sk_buff *skb = tx->skb; |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3448 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 3449 | struct ieee80211_hdr *hdr = (void *)skb->data; |
| 3450 | u8 tid = IEEE80211_NUM_TIDS; |
| 3451 | |
Ryder Lee | 03c3911 | 2021-06-17 18:31:12 +0200 | [diff] [blame] | 3452 | if (!ieee80211_hw_check(&tx->local->hw, HAS_RATE_CONTROL) && |
| 3453 | ieee80211_tx_h_rate_ctrl(tx) != TX_CONTINUE) |
| 3454 | return TX_DROP; |
| 3455 | |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3456 | if (key) |
| 3457 | info->control.hw_key = &key->conf; |
| 3458 | |
Lev Stipakov | 36ec144 | 2020-11-13 23:46:24 +0200 | [diff] [blame] | 3459 | dev_sw_netstats_tx_add(skb->dev, 1, skb->len); |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3460 | |
| 3461 | if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) { |
| 3462 | tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK; |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3463 | hdr->seq_ctrl = ieee80211_tx_next_seq(sta, tid); |
| 3464 | } else { |
| 3465 | info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ; |
| 3466 | hdr->seq_ctrl = cpu_to_le16(sdata->sequence_number); |
| 3467 | sdata->sequence_number += 0x10; |
| 3468 | } |
| 3469 | |
| 3470 | if (skb_shinfo(skb)->gso_size) |
| 3471 | sta->tx_stats.msdu[tid] += |
| 3472 | DIV_ROUND_UP(skb->len, skb_shinfo(skb)->gso_size); |
| 3473 | else |
| 3474 | sta->tx_stats.msdu[tid]++; |
| 3475 | |
| 3476 | info->hw_queue = sdata->vif.hw_queue[skb_get_queue_mapping(skb)]; |
| 3477 | |
| 3478 | /* statistics normally done by ieee80211_tx_h_stats (but that |
| 3479 | * has to consider fragmentation, so is more complex) |
| 3480 | */ |
| 3481 | sta->tx_stats.bytes[skb_get_queue_mapping(skb)] += skb->len; |
| 3482 | sta->tx_stats.packets[skb_get_queue_mapping(skb)]++; |
| 3483 | |
| 3484 | if (pn_offs) { |
| 3485 | u64 pn; |
| 3486 | u8 *crypto_hdr = skb->data + pn_offs; |
| 3487 | |
| 3488 | switch (key->conf.cipher) { |
| 3489 | case WLAN_CIPHER_SUITE_CCMP: |
| 3490 | case WLAN_CIPHER_SUITE_CCMP_256: |
| 3491 | case WLAN_CIPHER_SUITE_GCMP: |
| 3492 | case WLAN_CIPHER_SUITE_GCMP_256: |
| 3493 | pn = atomic64_inc_return(&key->conf.tx_pn); |
| 3494 | crypto_hdr[0] = pn; |
| 3495 | crypto_hdr[1] = pn >> 8; |
Alexander Wetzel | 96fc6ef | 2019-03-19 21:34:08 +0100 | [diff] [blame] | 3496 | crypto_hdr[3] = 0x20 | (key->conf.keyidx << 6); |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3497 | crypto_hdr[4] = pn >> 16; |
| 3498 | crypto_hdr[5] = pn >> 24; |
| 3499 | crypto_hdr[6] = pn >> 32; |
| 3500 | crypto_hdr[7] = pn >> 40; |
| 3501 | break; |
| 3502 | } |
| 3503 | } |
Ryder Lee | 03c3911 | 2021-06-17 18:31:12 +0200 | [diff] [blame] | 3504 | |
| 3505 | return TX_CONTINUE; |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3506 | } |
| 3507 | |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3508 | static bool ieee80211_xmit_fast(struct ieee80211_sub_if_data *sdata, |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3509 | struct sta_info *sta, |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3510 | struct ieee80211_fast_tx *fast_tx, |
| 3511 | struct sk_buff *skb) |
| 3512 | { |
| 3513 | struct ieee80211_local *local = sdata->local; |
| 3514 | u16 ethertype = (skb->data[12] << 8) | skb->data[13]; |
| 3515 | int extra_head = fast_tx->hdr_len - (ETH_HLEN - 2); |
| 3516 | int hw_headroom = sdata->local->hw.extra_tx_headroom; |
| 3517 | struct ethhdr eth; |
Johannes Berg | 35f432a | 2017-01-02 11:19:29 +0100 | [diff] [blame] | 3518 | struct ieee80211_tx_info *info; |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3519 | struct ieee80211_hdr *hdr = (void *)fast_tx->hdr; |
| 3520 | struct ieee80211_tx_data tx; |
| 3521 | ieee80211_tx_result r; |
| 3522 | struct tid_ampdu_tx *tid_tx = NULL; |
| 3523 | u8 tid = IEEE80211_NUM_TIDS; |
| 3524 | |
| 3525 | /* control port protocol needs a lot of special handling */ |
| 3526 | if (cpu_to_be16(ethertype) == sdata->control_port_protocol) |
| 3527 | return false; |
| 3528 | |
| 3529 | /* only RFC 1042 SNAP */ |
| 3530 | if (ethertype < ETH_P_802_3_MIN) |
| 3531 | return false; |
| 3532 | |
| 3533 | /* don't handle TX status request here either */ |
| 3534 | if (skb->sk && skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS) |
| 3535 | return false; |
| 3536 | |
| 3537 | if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) { |
| 3538 | tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK; |
| 3539 | tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]); |
Johannes Berg | 472be00 | 2015-06-09 16:45:08 +0200 | [diff] [blame] | 3540 | if (tid_tx) { |
| 3541 | if (!test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) |
| 3542 | return false; |
| 3543 | if (tid_tx->timeout) |
| 3544 | tid_tx->last_tx = jiffies; |
| 3545 | } |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3546 | } |
| 3547 | |
| 3548 | /* after this point (skb is modified) we cannot return false */ |
| 3549 | |
| 3550 | if (skb_shared(skb)) { |
| 3551 | struct sk_buff *tmp_skb = skb; |
| 3552 | |
| 3553 | skb = skb_clone(skb, GFP_ATOMIC); |
| 3554 | kfree_skb(tmp_skb); |
| 3555 | |
| 3556 | if (!skb) |
| 3557 | return true; |
| 3558 | } |
| 3559 | |
Felix Fietkau | 6e0456b | 2016-03-03 22:59:00 +0100 | [diff] [blame] | 3560 | if ((hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) && |
| 3561 | ieee80211_amsdu_aggregate(sdata, sta, fast_tx, skb)) |
| 3562 | return true; |
| 3563 | |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3564 | /* will not be crypto-handled beyond what we do here, so use false |
| 3565 | * as the may-encrypt argument for the resize to not account for |
| 3566 | * more room than we already have in 'extra_head' |
| 3567 | */ |
| 3568 | if (unlikely(ieee80211_skb_resize(sdata, skb, |
| 3569 | max_t(int, extra_head + hw_headroom - |
| 3570 | skb_headroom(skb), 0), |
Johannes Berg | 14f46c1 | 2020-10-09 13:25:41 +0200 | [diff] [blame] | 3571 | ENCRYPT_NO))) { |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3572 | kfree_skb(skb); |
| 3573 | return true; |
| 3574 | } |
| 3575 | |
| 3576 | memcpy(ð, skb->data, ETH_HLEN - 2); |
Johannes Berg | d58ff35 | 2017-06-16 14:29:23 +0200 | [diff] [blame] | 3577 | hdr = skb_push(skb, extra_head); |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3578 | memcpy(skb->data, fast_tx->hdr, fast_tx->hdr_len); |
| 3579 | memcpy(skb->data + fast_tx->da_offs, eth.h_dest, ETH_ALEN); |
| 3580 | memcpy(skb->data + fast_tx->sa_offs, eth.h_source, ETH_ALEN); |
| 3581 | |
Johannes Berg | 35f432a | 2017-01-02 11:19:29 +0100 | [diff] [blame] | 3582 | info = IEEE80211_SKB_CB(skb); |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3583 | memset(info, 0, sizeof(*info)); |
| 3584 | info->band = fast_tx->band; |
| 3585 | info->control.vif = &sdata->vif; |
| 3586 | info->flags = IEEE80211_TX_CTL_FIRST_FRAGMENT | |
| 3587 | IEEE80211_TX_CTL_DONTFRAG | |
| 3588 | (tid_tx ? IEEE80211_TX_CTL_AMPDU : 0); |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3589 | info->control.flags = IEEE80211_TX_CTRL_FAST_XMIT; |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3590 | |
Julius Niedworok | 276d9e8 | 2019-03-28 21:01:06 +0100 | [diff] [blame] | 3591 | #ifdef CONFIG_MAC80211_DEBUGFS |
| 3592 | if (local->force_tx_status) |
| 3593 | info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS; |
| 3594 | #endif |
| 3595 | |
Felix Fietkau | a786f96 | 2016-11-04 10:27:54 +0100 | [diff] [blame] | 3596 | if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) { |
| 3597 | tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK; |
| 3598 | *ieee80211_get_qos_ctl(hdr) = tid; |
| 3599 | } |
| 3600 | |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3601 | __skb_queue_head_init(&tx.skbs); |
| 3602 | |
| 3603 | tx.flags = IEEE80211_TX_UNICAST; |
| 3604 | tx.local = local; |
| 3605 | tx.sdata = sdata; |
| 3606 | tx.sta = sta; |
| 3607 | tx.key = fast_tx->key; |
| 3608 | |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3609 | if (ieee80211_queue_skb(local, sdata, sta, skb)) |
| 3610 | return true; |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3611 | |
Ryder Lee | 03c3911 | 2021-06-17 18:31:12 +0200 | [diff] [blame] | 3612 | tx.skb = skb; |
| 3613 | r = ieee80211_xmit_fast_finish(sdata, sta, fast_tx->pn_offs, |
| 3614 | fast_tx->key, &tx); |
| 3615 | tx.skb = NULL; |
| 3616 | if (r == TX_DROP) { |
| 3617 | kfree_skb(skb); |
| 3618 | return true; |
| 3619 | } |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3620 | |
| 3621 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
| 3622 | sdata = container_of(sdata->bss, |
| 3623 | struct ieee80211_sub_if_data, u.ap); |
| 3624 | |
| 3625 | __skb_queue_tail(&tx.skbs, skb); |
Johannes Berg | 4fd0328 | 2019-10-01 23:26:35 +0200 | [diff] [blame] | 3626 | ieee80211_tx_frags(local, &sdata->vif, sta, &tx.skbs, false); |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 3627 | return true; |
| 3628 | } |
| 3629 | |
Toke Høiland-Jørgensen | e0e2eff | 2016-09-22 19:04:19 +0200 | [diff] [blame] | 3630 | struct sk_buff *ieee80211_tx_dequeue(struct ieee80211_hw *hw, |
| 3631 | struct ieee80211_txq *txq) |
| 3632 | { |
| 3633 | struct ieee80211_local *local = hw_to_local(hw); |
| 3634 | struct txq_info *txqi = container_of(txq, struct txq_info, txq); |
| 3635 | struct ieee80211_hdr *hdr; |
| 3636 | struct sk_buff *skb = NULL; |
| 3637 | struct fq *fq = &local->fq; |
| 3638 | struct fq_tin *tin = &txqi->tin; |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3639 | struct ieee80211_tx_info *info; |
| 3640 | struct ieee80211_tx_data tx; |
| 3641 | ieee80211_tx_result r; |
Manikanta Pubbisetty | 21a5d4c | 2018-07-11 00:12:53 +0530 | [diff] [blame] | 3642 | struct ieee80211_vif *vif = txq->vif; |
Toke Høiland-Jørgensen | e0e2eff | 2016-09-22 19:04:19 +0200 | [diff] [blame] | 3643 | |
Erik Stromdahl | fb0e76a | 2019-06-17 22:01:39 +0200 | [diff] [blame] | 3644 | WARN_ON_ONCE(softirq_count() == 0); |
| 3645 | |
Toke Høiland-Jørgensen | 7a89233 | 2019-11-18 22:06:10 -0800 | [diff] [blame] | 3646 | if (!ieee80211_txq_airtime_check(hw, txq)) |
| 3647 | return NULL; |
| 3648 | |
Felix Fietkau | ded4698 | 2019-03-16 18:06:33 +0100 | [diff] [blame] | 3649 | begin: |
Toke Høiland-Jørgensen | e0e2eff | 2016-09-22 19:04:19 +0200 | [diff] [blame] | 3650 | spin_lock_bh(&fq->lock); |
| 3651 | |
Manikanta Pubbisetty | 21a5d4c | 2018-07-11 00:12:53 +0530 | [diff] [blame] | 3652 | if (test_bit(IEEE80211_TXQ_STOP, &txqi->flags) || |
| 3653 | test_bit(IEEE80211_TXQ_STOP_NETIF_TX, &txqi->flags)) |
Toke Høiland-Jørgensen | e0e2eff | 2016-09-22 19:04:19 +0200 | [diff] [blame] | 3654 | goto out; |
| 3655 | |
Johannes Berg | 1153a74 | 2021-03-23 21:05:01 +0100 | [diff] [blame] | 3656 | if (vif->txqs_stopped[txq->ac]) { |
Manikanta Pubbisetty | 21a5d4c | 2018-07-11 00:12:53 +0530 | [diff] [blame] | 3657 | set_bit(IEEE80211_TXQ_STOP_NETIF_TX, &txqi->flags); |
| 3658 | goto out; |
| 3659 | } |
| 3660 | |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3661 | /* Make sure fragments stay together. */ |
| 3662 | skb = __skb_dequeue(&txqi->frags); |
Johannes Berg | ca47b46 | 2021-04-16 13:47:04 +0200 | [diff] [blame] | 3663 | if (unlikely(skb)) { |
| 3664 | if (!(IEEE80211_SKB_CB(skb)->control.flags & |
| 3665 | IEEE80211_TX_INTCFL_NEED_TXPROCESSING)) |
| 3666 | goto out; |
| 3667 | IEEE80211_SKB_CB(skb)->control.flags &= |
| 3668 | ~IEEE80211_TX_INTCFL_NEED_TXPROCESSING; |
| 3669 | } else { |
| 3670 | skb = fq_tin_dequeue(fq, tin, fq_tin_dequeue_func); |
| 3671 | } |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3672 | |
Toke Høiland-Jørgensen | e0e2eff | 2016-09-22 19:04:19 +0200 | [diff] [blame] | 3673 | if (!skb) |
| 3674 | goto out; |
| 3675 | |
Felix Fietkau | ded4698 | 2019-03-16 18:06:33 +0100 | [diff] [blame] | 3676 | spin_unlock_bh(&fq->lock); |
| 3677 | |
Toke Høiland-Jørgensen | e0e2eff | 2016-09-22 19:04:19 +0200 | [diff] [blame] | 3678 | hdr = (struct ieee80211_hdr *)skb->data; |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3679 | info = IEEE80211_SKB_CB(skb); |
| 3680 | |
| 3681 | memset(&tx, 0, sizeof(tx)); |
| 3682 | __skb_queue_head_init(&tx.skbs); |
| 3683 | tx.local = local; |
| 3684 | tx.skb = skb; |
| 3685 | tx.sdata = vif_to_sdata(info->control.vif); |
| 3686 | |
Mathy Vanhoef | 804fc6a | 2020-10-19 20:01:13 +0400 | [diff] [blame] | 3687 | if (txq->sta) { |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3688 | tx.sta = container_of(txq->sta, struct sta_info, sta); |
Jouni Malinen | ce2e1ca | 2020-03-26 15:51:34 +0100 | [diff] [blame] | 3689 | /* |
| 3690 | * Drop unicast frames to unauthorised stations unless they are |
Mathy Vanhoef | 804fc6a | 2020-10-19 20:01:13 +0400 | [diff] [blame] | 3691 | * injected frames or EAPOL frames from the local station. |
Jouni Malinen | ce2e1ca | 2020-03-26 15:51:34 +0100 | [diff] [blame] | 3692 | */ |
Mathy Vanhoef | 804fc6a | 2020-10-19 20:01:13 +0400 | [diff] [blame] | 3693 | if (unlikely(!(info->flags & IEEE80211_TX_CTL_INJECTED) && |
| 3694 | ieee80211_is_data(hdr->frame_control) && |
Johannes Berg | be8c827 | 2020-03-29 22:50:06 +0200 | [diff] [blame] | 3695 | !ieee80211_vif_is_mesh(&tx.sdata->vif) && |
Jouni Malinen | ce2e1ca | 2020-03-26 15:51:34 +0100 | [diff] [blame] | 3696 | tx.sdata->vif.type != NL80211_IFTYPE_OCB && |
| 3697 | !is_multicast_ether_addr(hdr->addr1) && |
| 3698 | !test_sta_flag(tx.sta, WLAN_STA_AUTHORIZED) && |
| 3699 | (!(info->control.flags & |
| 3700 | IEEE80211_TX_CTRL_PORT_CTRL_PROTO) || |
| 3701 | !ether_addr_equal(tx.sdata->vif.addr, |
| 3702 | hdr->addr2)))) { |
| 3703 | I802_DEBUG_INC(local->tx_handlers_drop_unauth_port); |
| 3704 | ieee80211_free_txskb(&local->hw, skb); |
| 3705 | goto begin; |
| 3706 | } |
| 3707 | } |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3708 | |
| 3709 | /* |
| 3710 | * The key can be removed while the packet was queued, so need to call |
| 3711 | * this here to get the current key. |
| 3712 | */ |
| 3713 | r = ieee80211_tx_h_select_key(&tx); |
| 3714 | if (r != TX_CONTINUE) { |
| 3715 | ieee80211_free_txskb(&local->hw, skb); |
| 3716 | goto begin; |
| 3717 | } |
| 3718 | |
Felix Fietkau | c1f4c9e | 2016-11-04 10:27:52 +0100 | [diff] [blame] | 3719 | if (test_bit(IEEE80211_TXQ_AMPDU, &txqi->flags)) |
| 3720 | info->flags |= IEEE80211_TX_CTL_AMPDU; |
| 3721 | else |
| 3722 | info->flags &= ~IEEE80211_TX_CTL_AMPDU; |
| 3723 | |
Ryder Lee | 3187ba0 | 2021-06-17 18:31:13 +0200 | [diff] [blame] | 3724 | if (info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP) { |
| 3725 | if (!ieee80211_hw_check(&local->hw, HAS_RATE_CONTROL)) { |
| 3726 | r = ieee80211_tx_h_rate_ctrl(&tx); |
| 3727 | if (r != TX_CONTINUE) { |
| 3728 | ieee80211_free_txskb(&local->hw, skb); |
| 3729 | goto begin; |
| 3730 | } |
| 3731 | } |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 3732 | goto encap_out; |
Ryder Lee | 3187ba0 | 2021-06-17 18:31:13 +0200 | [diff] [blame] | 3733 | } |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 3734 | |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3735 | if (info->control.flags & IEEE80211_TX_CTRL_FAST_XMIT) { |
Toke Høiland-Jørgensen | e0e2eff | 2016-09-22 19:04:19 +0200 | [diff] [blame] | 3736 | struct sta_info *sta = container_of(txq->sta, struct sta_info, |
| 3737 | sta); |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3738 | u8 pn_offs = 0; |
Toke Høiland-Jørgensen | e0e2eff | 2016-09-22 19:04:19 +0200 | [diff] [blame] | 3739 | |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3740 | if (tx.key && |
| 3741 | (tx.key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV)) |
| 3742 | pn_offs = ieee80211_hdrlen(hdr->frame_control); |
| 3743 | |
Ryder Lee | 03c3911 | 2021-06-17 18:31:12 +0200 | [diff] [blame] | 3744 | r = ieee80211_xmit_fast_finish(sta->sdata, sta, pn_offs, |
| 3745 | tx.key, &tx); |
| 3746 | if (r != TX_CONTINUE) { |
| 3747 | ieee80211_free_txskb(&local->hw, skb); |
| 3748 | goto begin; |
| 3749 | } |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3750 | } else { |
| 3751 | if (invoke_tx_handlers_late(&tx)) |
| 3752 | goto begin; |
| 3753 | |
| 3754 | skb = __skb_dequeue(&tx.skbs); |
| 3755 | |
Felix Fietkau | ded4698 | 2019-03-16 18:06:33 +0100 | [diff] [blame] | 3756 | if (!skb_queue_empty(&tx.skbs)) { |
| 3757 | spin_lock_bh(&fq->lock); |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 3758 | skb_queue_splice_tail(&tx.skbs, &txqi->frags); |
Felix Fietkau | ded4698 | 2019-03-16 18:06:33 +0100 | [diff] [blame] | 3759 | spin_unlock_bh(&fq->lock); |
| 3760 | } |
Toke Høiland-Jørgensen | e0e2eff | 2016-09-22 19:04:19 +0200 | [diff] [blame] | 3761 | } |
| 3762 | |
Johannes Berg | 233e98d | 2018-12-15 11:03:09 +0200 | [diff] [blame] | 3763 | if (skb_has_frag_list(skb) && |
Johannes Berg | 1e1430d | 2016-10-04 09:22:19 +0200 | [diff] [blame] | 3764 | !ieee80211_hw_check(&local->hw, TX_FRAG_LIST)) { |
| 3765 | if (skb_linearize(skb)) { |
| 3766 | ieee80211_free_txskb(&local->hw, skb); |
| 3767 | goto begin; |
| 3768 | } |
| 3769 | } |
| 3770 | |
Johannes Berg | 5316821 | 2017-06-22 12:20:30 +0200 | [diff] [blame] | 3771 | switch (tx.sdata->vif.type) { |
| 3772 | case NL80211_IFTYPE_MONITOR: |
| 3773 | if (tx.sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE) { |
| 3774 | vif = &tx.sdata->vif; |
| 3775 | break; |
| 3776 | } |
| 3777 | tx.sdata = rcu_dereference(local->monitor_sdata); |
| 3778 | if (tx.sdata) { |
| 3779 | vif = &tx.sdata->vif; |
| 3780 | info->hw_queue = |
| 3781 | vif->hw_queue[skb_get_queue_mapping(skb)]; |
| 3782 | } else if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL)) { |
| 3783 | ieee80211_free_txskb(&local->hw, skb); |
| 3784 | goto begin; |
| 3785 | } else { |
| 3786 | vif = NULL; |
| 3787 | } |
| 3788 | break; |
| 3789 | case NL80211_IFTYPE_AP_VLAN: |
| 3790 | tx.sdata = container_of(tx.sdata->bss, |
| 3791 | struct ieee80211_sub_if_data, u.ap); |
Gustavo A. R. Silva | fc0561d | 2020-07-07 15:45:48 -0500 | [diff] [blame] | 3792 | fallthrough; |
Johannes Berg | 5316821 | 2017-06-22 12:20:30 +0200 | [diff] [blame] | 3793 | default: |
| 3794 | vif = &tx.sdata->vif; |
| 3795 | break; |
| 3796 | } |
| 3797 | |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 3798 | encap_out: |
Johannes Berg | 5316821 | 2017-06-22 12:20:30 +0200 | [diff] [blame] | 3799 | IEEE80211_SKB_CB(skb)->control.vif = vif; |
Toke Høiland-Jørgensen | 7a89233 | 2019-11-18 22:06:10 -0800 | [diff] [blame] | 3800 | |
Johannes Berg | ca98c47 | 2020-02-21 10:45:45 +0100 | [diff] [blame] | 3801 | if (vif && |
| 3802 | wiphy_ext_feature_isset(local->hw.wiphy, NL80211_EXT_FEATURE_AQL)) { |
Felix Fietkau | 3ff901c | 2020-07-24 20:28:16 +0200 | [diff] [blame] | 3803 | bool ampdu = txq->ac != IEEE80211_AC_VO; |
Toke Høiland-Jørgensen | 7a89233 | 2019-11-18 22:06:10 -0800 | [diff] [blame] | 3804 | u32 airtime; |
| 3805 | |
| 3806 | airtime = ieee80211_calc_expected_tx_airtime(hw, vif, txq->sta, |
Felix Fietkau | 3ff901c | 2020-07-24 20:28:16 +0200 | [diff] [blame] | 3807 | skb->len, ampdu); |
Toke Høiland-Jørgensen | 7a89233 | 2019-11-18 22:06:10 -0800 | [diff] [blame] | 3808 | if (airtime) { |
| 3809 | airtime = ieee80211_info_set_tx_time_est(info, airtime); |
| 3810 | ieee80211_sta_update_pending_airtime(local, tx.sta, |
| 3811 | txq->ac, |
| 3812 | airtime, |
| 3813 | false); |
| 3814 | } |
| 3815 | } |
| 3816 | |
Felix Fietkau | ded4698 | 2019-03-16 18:06:33 +0100 | [diff] [blame] | 3817 | return skb; |
Manikanta Pubbisetty | 21a5d4c | 2018-07-11 00:12:53 +0530 | [diff] [blame] | 3818 | |
Toke Høiland-Jørgensen | e0e2eff | 2016-09-22 19:04:19 +0200 | [diff] [blame] | 3819 | out: |
| 3820 | spin_unlock_bh(&fq->lock); |
| 3821 | |
Toke Høiland-Jørgensen | e0e2eff | 2016-09-22 19:04:19 +0200 | [diff] [blame] | 3822 | return skb; |
| 3823 | } |
| 3824 | EXPORT_SYMBOL(ieee80211_tx_dequeue); |
| 3825 | |
Toke Høiland-Jørgensen | 1866760 | 2018-12-18 17:02:06 -0800 | [diff] [blame] | 3826 | struct ieee80211_txq *ieee80211_next_txq(struct ieee80211_hw *hw, u8 ac) |
| 3827 | { |
| 3828 | struct ieee80211_local *local = hw_to_local(hw); |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 3829 | struct airtime_sched_info *air_sched; |
| 3830 | u64 now = ktime_get_boottime_ns(); |
Felix Fietkau | 5b989c1 | 2019-03-15 11:03:35 +0100 | [diff] [blame] | 3831 | struct ieee80211_txq *ret = NULL; |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 3832 | struct airtime_info *air_info; |
| 3833 | struct txq_info *txqi = NULL; |
| 3834 | struct rb_node *node; |
| 3835 | bool first = false; |
Toke Høiland-Jørgensen | 1866760 | 2018-12-18 17:02:06 -0800 | [diff] [blame] | 3836 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 3837 | air_sched = &local->airtime[ac]; |
| 3838 | spin_lock_bh(&air_sched->lock); |
Toke Høiland-Jørgensen | 1866760 | 2018-12-18 17:02:06 -0800 | [diff] [blame] | 3839 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 3840 | node = air_sched->schedule_pos; |
Toke Høiland-Jørgensen | 1866760 | 2018-12-18 17:02:06 -0800 | [diff] [blame] | 3841 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 3842 | begin: |
| 3843 | if (!node) { |
| 3844 | node = rb_first_cached(&air_sched->active_txqs); |
| 3845 | first = true; |
| 3846 | } else { |
| 3847 | node = rb_next(node); |
Kan Yan | 3ace10f | 2019-11-18 22:06:09 -0800 | [diff] [blame] | 3848 | } |
| 3849 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 3850 | if (!node) |
Felix Fietkau | 5b989c1 | 2019-03-15 11:03:35 +0100 | [diff] [blame] | 3851 | goto out; |
Toke Høiland-Jørgensen | 1866760 | 2018-12-18 17:02:06 -0800 | [diff] [blame] | 3852 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 3853 | txqi = container_of(node, struct txq_info, schedule_order); |
| 3854 | air_info = to_airtime_info(&txqi->txq); |
| 3855 | |
| 3856 | if (air_info->v_t > air_sched->v_t && |
| 3857 | (!first || !airtime_catchup_v_t(air_sched, air_info->v_t, now))) |
| 3858 | goto out; |
| 3859 | |
| 3860 | if (!ieee80211_txq_airtime_check(hw, &txqi->txq)) { |
| 3861 | first = false; |
| 3862 | goto begin; |
| 3863 | } |
| 3864 | |
| 3865 | air_sched->schedule_pos = node; |
| 3866 | air_sched->last_schedule_activity = now; |
Felix Fietkau | 5b989c1 | 2019-03-15 11:03:35 +0100 | [diff] [blame] | 3867 | ret = &txqi->txq; |
Felix Fietkau | 5b989c1 | 2019-03-15 11:03:35 +0100 | [diff] [blame] | 3868 | out: |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 3869 | spin_unlock_bh(&air_sched->lock); |
Felix Fietkau | 5b989c1 | 2019-03-15 11:03:35 +0100 | [diff] [blame] | 3870 | return ret; |
Toke Høiland-Jørgensen | 1866760 | 2018-12-18 17:02:06 -0800 | [diff] [blame] | 3871 | } |
| 3872 | EXPORT_SYMBOL(ieee80211_next_txq); |
| 3873 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 3874 | static void __ieee80211_insert_txq(struct rb_root_cached *root, |
| 3875 | struct txq_info *txqi) |
| 3876 | { |
| 3877 | struct rb_node **new = &root->rb_root.rb_node; |
| 3878 | struct airtime_info *old_air, *new_air; |
| 3879 | struct rb_node *parent = NULL; |
| 3880 | struct txq_info *__txqi; |
| 3881 | bool leftmost = true; |
| 3882 | |
| 3883 | while (*new) { |
| 3884 | parent = *new; |
| 3885 | __txqi = rb_entry(parent, struct txq_info, schedule_order); |
| 3886 | old_air = to_airtime_info(&__txqi->txq); |
| 3887 | new_air = to_airtime_info(&txqi->txq); |
| 3888 | |
| 3889 | if (new_air->v_t <= old_air->v_t) { |
| 3890 | new = &parent->rb_left; |
| 3891 | } else { |
| 3892 | new = &parent->rb_right; |
| 3893 | leftmost = false; |
| 3894 | } |
| 3895 | } |
| 3896 | |
| 3897 | rb_link_node(&txqi->schedule_order, parent, new); |
| 3898 | rb_insert_color_cached(&txqi->schedule_order, root, leftmost); |
| 3899 | } |
| 3900 | |
| 3901 | void ieee80211_resort_txq(struct ieee80211_hw *hw, |
| 3902 | struct ieee80211_txq *txq) |
| 3903 | { |
| 3904 | struct airtime_info *air_info = to_airtime_info(txq); |
| 3905 | struct ieee80211_local *local = hw_to_local(hw); |
| 3906 | struct txq_info *txqi = to_txq_info(txq); |
| 3907 | struct airtime_sched_info *air_sched; |
| 3908 | |
| 3909 | air_sched = &local->airtime[txq->ac]; |
| 3910 | |
| 3911 | lockdep_assert_held(&air_sched->lock); |
| 3912 | |
| 3913 | if (!RB_EMPTY_NODE(&txqi->schedule_order)) { |
| 3914 | struct airtime_info *a_prev = NULL, *a_next = NULL; |
| 3915 | struct txq_info *t_prev, *t_next; |
| 3916 | struct rb_node *n_prev, *n_next; |
| 3917 | |
| 3918 | /* Erasing a node can cause an expensive rebalancing operation, |
| 3919 | * so we check the previous and next nodes first and only remove |
| 3920 | * and re-insert if the current node is not already in the |
| 3921 | * correct position. |
| 3922 | */ |
| 3923 | if ((n_prev = rb_prev(&txqi->schedule_order)) != NULL) { |
| 3924 | t_prev = container_of(n_prev, struct txq_info, |
| 3925 | schedule_order); |
| 3926 | a_prev = to_airtime_info(&t_prev->txq); |
| 3927 | } |
| 3928 | |
| 3929 | if ((n_next = rb_next(&txqi->schedule_order)) != NULL) { |
| 3930 | t_next = container_of(n_next, struct txq_info, |
| 3931 | schedule_order); |
| 3932 | a_next = to_airtime_info(&t_next->txq); |
| 3933 | } |
| 3934 | |
| 3935 | if ((!a_prev || a_prev->v_t <= air_info->v_t) && |
| 3936 | (!a_next || a_next->v_t > air_info->v_t)) |
| 3937 | return; |
| 3938 | |
| 3939 | if (air_sched->schedule_pos == &txqi->schedule_order) |
| 3940 | air_sched->schedule_pos = n_prev; |
| 3941 | |
| 3942 | rb_erase_cached(&txqi->schedule_order, |
| 3943 | &air_sched->active_txqs); |
| 3944 | RB_CLEAR_NODE(&txqi->schedule_order); |
| 3945 | __ieee80211_insert_txq(&air_sched->active_txqs, txqi); |
| 3946 | } |
| 3947 | } |
| 3948 | |
| 3949 | void ieee80211_update_airtime_weight(struct ieee80211_local *local, |
| 3950 | struct airtime_sched_info *air_sched, |
| 3951 | u64 now, bool force) |
| 3952 | { |
| 3953 | struct airtime_info *air_info, *tmp; |
| 3954 | u64 weight_sum = 0; |
| 3955 | |
| 3956 | if (unlikely(!now)) |
| 3957 | now = ktime_get_boottime_ns(); |
| 3958 | |
| 3959 | lockdep_assert_held(&air_sched->lock); |
| 3960 | |
| 3961 | if (!force && (air_sched->last_weight_update < |
| 3962 | now - AIRTIME_ACTIVE_DURATION)) |
| 3963 | return; |
| 3964 | |
| 3965 | list_for_each_entry_safe(air_info, tmp, |
| 3966 | &air_sched->active_list, list) { |
| 3967 | if (airtime_is_active(air_info, now)) |
| 3968 | weight_sum += air_info->weight; |
| 3969 | else |
| 3970 | list_del_init(&air_info->list); |
| 3971 | } |
| 3972 | airtime_weight_sum_set(air_sched, weight_sum); |
| 3973 | air_sched->last_weight_update = now; |
| 3974 | } |
| 3975 | |
| 3976 | void ieee80211_schedule_txq(struct ieee80211_hw *hw, |
| 3977 | struct ieee80211_txq *txq) |
| 3978 | __acquires(txq_lock) __releases(txq_lock) |
| 3979 | { |
| 3980 | struct ieee80211_local *local = hw_to_local(hw); |
| 3981 | struct txq_info *txqi = to_txq_info(txq); |
| 3982 | struct airtime_sched_info *air_sched; |
| 3983 | u64 now = ktime_get_boottime_ns(); |
| 3984 | struct airtime_info *air_info; |
| 3985 | u8 ac = txq->ac; |
| 3986 | bool was_active; |
| 3987 | |
| 3988 | air_sched = &local->airtime[ac]; |
| 3989 | air_info = to_airtime_info(txq); |
| 3990 | |
| 3991 | spin_lock_bh(&air_sched->lock); |
| 3992 | was_active = airtime_is_active(air_info, now); |
| 3993 | airtime_set_active(air_sched, air_info, now); |
| 3994 | |
| 3995 | if (!RB_EMPTY_NODE(&txqi->schedule_order)) |
| 3996 | goto out; |
| 3997 | |
| 3998 | /* If the station has been inactive for a while, catch up its v_t so it |
| 3999 | * doesn't get indefinite priority; see comment above the definition of |
| 4000 | * AIRTIME_MAX_BEHIND. |
| 4001 | */ |
| 4002 | if ((!was_active && air_info->v_t < air_sched->v_t) || |
| 4003 | air_info->v_t < air_sched->v_t - AIRTIME_MAX_BEHIND) |
| 4004 | air_info->v_t = air_sched->v_t; |
| 4005 | |
| 4006 | ieee80211_update_airtime_weight(local, air_sched, now, !was_active); |
| 4007 | __ieee80211_insert_txq(&air_sched->active_txqs, txqi); |
| 4008 | |
| 4009 | out: |
| 4010 | spin_unlock_bh(&air_sched->lock); |
| 4011 | } |
| 4012 | EXPORT_SYMBOL(ieee80211_schedule_txq); |
| 4013 | |
| 4014 | static void __ieee80211_unschedule_txq(struct ieee80211_hw *hw, |
| 4015 | struct ieee80211_txq *txq, |
| 4016 | bool purge) |
| 4017 | { |
| 4018 | struct ieee80211_local *local = hw_to_local(hw); |
| 4019 | struct txq_info *txqi = to_txq_info(txq); |
| 4020 | struct airtime_sched_info *air_sched; |
| 4021 | struct airtime_info *air_info; |
| 4022 | |
| 4023 | air_sched = &local->airtime[txq->ac]; |
| 4024 | air_info = to_airtime_info(&txqi->txq); |
| 4025 | |
| 4026 | lockdep_assert_held(&air_sched->lock); |
| 4027 | |
| 4028 | if (purge) { |
| 4029 | list_del_init(&air_info->list); |
| 4030 | ieee80211_update_airtime_weight(local, air_sched, 0, true); |
| 4031 | } |
| 4032 | |
| 4033 | if (RB_EMPTY_NODE(&txqi->schedule_order)) |
| 4034 | return; |
| 4035 | |
| 4036 | if (air_sched->schedule_pos == &txqi->schedule_order) |
| 4037 | air_sched->schedule_pos = rb_prev(&txqi->schedule_order); |
| 4038 | |
| 4039 | if (!purge) |
| 4040 | airtime_set_active(air_sched, air_info, |
| 4041 | ktime_get_boottime_ns()); |
| 4042 | |
| 4043 | rb_erase_cached(&txqi->schedule_order, |
| 4044 | &air_sched->active_txqs); |
| 4045 | RB_CLEAR_NODE(&txqi->schedule_order); |
| 4046 | } |
| 4047 | |
| 4048 | void ieee80211_unschedule_txq(struct ieee80211_hw *hw, |
Felix Fietkau | 2b4a669 | 2019-03-18 12:00:58 +0100 | [diff] [blame] | 4049 | struct ieee80211_txq *txq, |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4050 | bool purge) |
| 4051 | __acquires(txq_lock) __releases(txq_lock) |
| 4052 | { |
| 4053 | struct ieee80211_local *local = hw_to_local(hw); |
| 4054 | |
| 4055 | spin_lock_bh(&local->airtime[txq->ac].lock); |
| 4056 | __ieee80211_unschedule_txq(hw, txq, purge); |
| 4057 | spin_unlock_bh(&local->airtime[txq->ac].lock); |
| 4058 | } |
| 4059 | |
| 4060 | void ieee80211_return_txq(struct ieee80211_hw *hw, |
| 4061 | struct ieee80211_txq *txq, bool force) |
Toke Høiland-Jørgensen | 1866760 | 2018-12-18 17:02:06 -0800 | [diff] [blame] | 4062 | { |
| 4063 | struct ieee80211_local *local = hw_to_local(hw); |
| 4064 | struct txq_info *txqi = to_txq_info(txq); |
| 4065 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4066 | spin_lock_bh(&local->airtime[txq->ac].lock); |
Toke Høiland-Jørgensen | 1866760 | 2018-12-18 17:02:06 -0800 | [diff] [blame] | 4067 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4068 | if (!RB_EMPTY_NODE(&txqi->schedule_order) && !force && |
| 4069 | !txq_has_queue(txq)) |
| 4070 | __ieee80211_unschedule_txq(hw, txq, false); |
Toke Høiland-Jørgensen | 1866760 | 2018-12-18 17:02:06 -0800 | [diff] [blame] | 4071 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4072 | spin_unlock_bh(&local->airtime[txq->ac].lock); |
Toke Høiland-Jørgensen | 390298e | 2019-01-22 15:20:16 +0100 | [diff] [blame] | 4073 | } |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4074 | EXPORT_SYMBOL(ieee80211_return_txq); |
Toke Høiland-Jørgensen | 390298e | 2019-01-22 15:20:16 +0100 | [diff] [blame] | 4075 | |
Lorenzo Bianconi | e908435 | 2021-01-09 18:57:51 +0100 | [diff] [blame] | 4076 | DEFINE_STATIC_KEY_FALSE(aql_disable); |
| 4077 | |
Kan Yan | 3ace10f | 2019-11-18 22:06:09 -0800 | [diff] [blame] | 4078 | bool ieee80211_txq_airtime_check(struct ieee80211_hw *hw, |
| 4079 | struct ieee80211_txq *txq) |
| 4080 | { |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4081 | struct airtime_info *air_info = to_airtime_info(txq); |
Kan Yan | 3ace10f | 2019-11-18 22:06:09 -0800 | [diff] [blame] | 4082 | struct ieee80211_local *local = hw_to_local(hw); |
| 4083 | |
Toke Høiland-Jørgensen | 911bde0 | 2019-12-12 12:14:37 +0100 | [diff] [blame] | 4084 | if (!wiphy_ext_feature_isset(local->hw.wiphy, NL80211_EXT_FEATURE_AQL)) |
Kan Yan | 3ace10f | 2019-11-18 22:06:09 -0800 | [diff] [blame] | 4085 | return true; |
| 4086 | |
Lorenzo Bianconi | e908435 | 2021-01-09 18:57:51 +0100 | [diff] [blame] | 4087 | if (static_branch_unlikely(&aql_disable)) |
| 4088 | return true; |
| 4089 | |
Kan Yan | 3ace10f | 2019-11-18 22:06:09 -0800 | [diff] [blame] | 4090 | if (!txq->sta) |
| 4091 | return true; |
| 4092 | |
Johannes Berg | 73bc9e0 | 2021-03-19 23:28:01 +0100 | [diff] [blame] | 4093 | if (unlikely(txq->tid == IEEE80211_NUM_TIDS)) |
| 4094 | return true; |
| 4095 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4096 | if (atomic_read(&air_info->aql_tx_pending) < air_info->aql_limit_low) |
Kan Yan | 3ace10f | 2019-11-18 22:06:09 -0800 | [diff] [blame] | 4097 | return true; |
| 4098 | |
| 4099 | if (atomic_read(&local->aql_total_pending_airtime) < |
| 4100 | local->aql_threshold && |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4101 | atomic_read(&air_info->aql_tx_pending) < air_info->aql_limit_high) |
Kan Yan | 3ace10f | 2019-11-18 22:06:09 -0800 | [diff] [blame] | 4102 | return true; |
| 4103 | |
| 4104 | return false; |
| 4105 | } |
| 4106 | EXPORT_SYMBOL(ieee80211_txq_airtime_check); |
| 4107 | |
Toke Høiland-Jørgensen | b4809e9 | 2018-12-18 17:02:08 -0800 | [diff] [blame] | 4108 | bool ieee80211_txq_may_transmit(struct ieee80211_hw *hw, |
| 4109 | struct ieee80211_txq *txq) |
| 4110 | { |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4111 | struct txq_info *first_txqi = NULL, *txqi = to_txq_info(txq); |
Toke Høiland-Jørgensen | b4809e9 | 2018-12-18 17:02:08 -0800 | [diff] [blame] | 4112 | struct ieee80211_local *local = hw_to_local(hw); |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4113 | struct airtime_sched_info *air_sched; |
| 4114 | struct airtime_info *air_info; |
| 4115 | struct rb_node *node = NULL; |
| 4116 | bool ret = false; |
| 4117 | u64 now; |
Toke Høiland-Jørgensen | b4809e9 | 2018-12-18 17:02:08 -0800 | [diff] [blame] | 4118 | |
Toke Høiland-Jørgensen | b4809e9 | 2018-12-18 17:02:08 -0800 | [diff] [blame] | 4119 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4120 | if (!ieee80211_txq_airtime_check(hw, txq)) |
| 4121 | return false; |
| 4122 | |
| 4123 | air_sched = &local->airtime[txq->ac]; |
| 4124 | spin_lock_bh(&air_sched->lock); |
| 4125 | |
| 4126 | if (RB_EMPTY_NODE(&txqi->schedule_order)) |
Toke Høiland-Jørgensen | b4809e9 | 2018-12-18 17:02:08 -0800 | [diff] [blame] | 4127 | goto out; |
| 4128 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4129 | now = ktime_get_boottime_ns(); |
Toke Høiland-Jørgensen | b4809e9 | 2018-12-18 17:02:08 -0800 | [diff] [blame] | 4130 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4131 | /* Like in ieee80211_next_txq(), make sure the first station in the |
| 4132 | * scheduling order is eligible for transmission to avoid starvation. |
| 4133 | */ |
| 4134 | node = rb_first_cached(&air_sched->active_txqs); |
| 4135 | if (node) { |
| 4136 | first_txqi = container_of(node, struct txq_info, |
| 4137 | schedule_order); |
| 4138 | air_info = to_airtime_info(&first_txqi->txq); |
Toke Høiland-Jørgensen | b4809e9 | 2018-12-18 17:02:08 -0800 | [diff] [blame] | 4139 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4140 | if (air_sched->v_t < air_info->v_t) |
| 4141 | airtime_catchup_v_t(air_sched, air_info->v_t, now); |
Toke Høiland-Jørgensen | b4809e9 | 2018-12-18 17:02:08 -0800 | [diff] [blame] | 4142 | } |
| 4143 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4144 | air_info = to_airtime_info(&txqi->txq); |
| 4145 | if (air_info->v_t <= air_sched->v_t) { |
| 4146 | air_sched->last_schedule_activity = now; |
| 4147 | ret = true; |
| 4148 | } |
Toke Høiland-Jørgensen | b4809e9 | 2018-12-18 17:02:08 -0800 | [diff] [blame] | 4149 | |
Toke Høiland-Jørgensen | b4809e9 | 2018-12-18 17:02:08 -0800 | [diff] [blame] | 4150 | out: |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4151 | spin_unlock_bh(&air_sched->lock); |
| 4152 | return ret; |
Toke Høiland-Jørgensen | b4809e9 | 2018-12-18 17:02:08 -0800 | [diff] [blame] | 4153 | } |
| 4154 | EXPORT_SYMBOL(ieee80211_txq_may_transmit); |
| 4155 | |
Toke Høiland-Jørgensen | 1866760 | 2018-12-18 17:02:06 -0800 | [diff] [blame] | 4156 | void ieee80211_txq_schedule_start(struct ieee80211_hw *hw, u8 ac) |
Toke Høiland-Jørgensen | 1866760 | 2018-12-18 17:02:06 -0800 | [diff] [blame] | 4157 | { |
| 4158 | struct ieee80211_local *local = hw_to_local(hw); |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4159 | struct airtime_sched_info *air_sched = &local->airtime[ac]; |
Toke Høiland-Jørgensen | 1866760 | 2018-12-18 17:02:06 -0800 | [diff] [blame] | 4160 | |
Toke Høiland-Jørgensen | 2433647 | 2021-06-23 15:47:55 +0200 | [diff] [blame] | 4161 | spin_lock_bh(&air_sched->lock); |
| 4162 | air_sched->schedule_pos = NULL; |
| 4163 | spin_unlock_bh(&air_sched->lock); |
Toke Høiland-Jørgensen | 1866760 | 2018-12-18 17:02:06 -0800 | [diff] [blame] | 4164 | } |
Felix Fietkau | 5b989c1 | 2019-03-15 11:03:35 +0100 | [diff] [blame] | 4165 | EXPORT_SYMBOL(ieee80211_txq_schedule_start); |
Toke Høiland-Jørgensen | 1866760 | 2018-12-18 17:02:06 -0800 | [diff] [blame] | 4166 | |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 4167 | void __ieee80211_subif_start_xmit(struct sk_buff *skb, |
| 4168 | struct net_device *dev, |
Rajkumar Manoharan | 0601677 | 2019-04-11 13:47:25 -0700 | [diff] [blame] | 4169 | u32 info_flags, |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 4170 | u32 ctrl_flags, |
| 4171 | u64 *cookie) |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 4172 | { |
| 4173 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Felix Fietkau | 1974da8 | 2019-03-25 08:59:23 +0100 | [diff] [blame] | 4174 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 4175 | struct sta_info *sta; |
Johannes Berg | 80616c0 | 2015-04-14 14:50:41 +0200 | [diff] [blame] | 4176 | struct sk_buff *next; |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 4177 | |
| 4178 | if (unlikely(skb->len < ETH_HLEN)) { |
| 4179 | kfree_skb(skb); |
| 4180 | return; |
| 4181 | } |
| 4182 | |
| 4183 | rcu_read_lock(); |
| 4184 | |
Johannes Berg | 2d981fd | 2015-04-10 14:10:10 +0200 | [diff] [blame] | 4185 | if (ieee80211_lookup_ra_sta(sdata, skb, &sta)) |
| 4186 | goto out_free; |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 4187 | |
Felix Fietkau | 1974da8 | 2019-03-25 08:59:23 +0100 | [diff] [blame] | 4188 | if (IS_ERR(sta)) |
| 4189 | sta = NULL; |
| 4190 | |
| 4191 | if (local->ops->wake_tx_queue) { |
| 4192 | u16 queue = __ieee80211_select_queue(sdata, sta, skb); |
| 4193 | skb_set_queue_mapping(skb, queue); |
Felix Fietkau | 180ac48 | 2020-07-26 15:09:47 +0200 | [diff] [blame] | 4194 | skb_get_hash(skb); |
Felix Fietkau | 1974da8 | 2019-03-25 08:59:23 +0100 | [diff] [blame] | 4195 | } |
| 4196 | |
Felix Fietkau | 08a46c64 | 2021-06-17 18:31:11 +0200 | [diff] [blame] | 4197 | ieee80211_aggr_check(sdata, sta, skb); |
| 4198 | |
Felix Fietkau | 1974da8 | 2019-03-25 08:59:23 +0100 | [diff] [blame] | 4199 | if (sta) { |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 4200 | struct ieee80211_fast_tx *fast_tx; |
| 4201 | |
Wen Gong | 70e5366 | 2018-08-08 18:40:01 +0800 | [diff] [blame] | 4202 | sk_pacing_shift_update(skb->sk, sdata->local->hw.tx_sk_pacing_shift); |
Toke Høiland-Jørgensen | 36148c2 | 2018-02-02 16:11:05 +0100 | [diff] [blame] | 4203 | |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 4204 | fast_tx = rcu_dereference(sta->fast_tx); |
| 4205 | |
| 4206 | if (fast_tx && |
Toke Høiland-Jørgensen | bb42f2d | 2016-09-22 19:04:20 +0200 | [diff] [blame] | 4207 | ieee80211_xmit_fast(sdata, sta, fast_tx, skb)) |
Johannes Berg | 17c18bf | 2015-03-21 15:25:43 +0100 | [diff] [blame] | 4208 | goto out; |
| 4209 | } |
| 4210 | |
Johannes Berg | 80616c0 | 2015-04-14 14:50:41 +0200 | [diff] [blame] | 4211 | if (skb_is_gso(skb)) { |
| 4212 | struct sk_buff *segs; |
Johannes Berg | 680a0da | 2015-04-13 16:58:25 +0200 | [diff] [blame] | 4213 | |
Johannes Berg | 80616c0 | 2015-04-14 14:50:41 +0200 | [diff] [blame] | 4214 | segs = skb_gso_segment(skb, 0); |
| 4215 | if (IS_ERR(segs)) { |
Johannes Berg | 2d981fd | 2015-04-10 14:10:10 +0200 | [diff] [blame] | 4216 | goto out_free; |
Johannes Berg | 80616c0 | 2015-04-14 14:50:41 +0200 | [diff] [blame] | 4217 | } else if (segs) { |
| 4218 | consume_skb(skb); |
| 4219 | skb = segs; |
| 4220 | } |
| 4221 | } else { |
| 4222 | /* we cannot process non-linear frames on this path */ |
| 4223 | if (skb_linearize(skb)) { |
| 4224 | kfree_skb(skb); |
| 4225 | goto out; |
| 4226 | } |
| 4227 | |
| 4228 | /* the frame could be fragmented, software-encrypted, and other |
| 4229 | * things so we cannot really handle checksum offload with it - |
| 4230 | * fix it up in software before we handle anything else. |
| 4231 | */ |
| 4232 | if (skb->ip_summed == CHECKSUM_PARTIAL) { |
Johannes Berg | f603f1f | 2015-05-05 15:25:33 +0200 | [diff] [blame] | 4233 | skb_set_transport_header(skb, |
| 4234 | skb_checksum_start_offset(skb)); |
Johannes Berg | 80616c0 | 2015-04-14 14:50:41 +0200 | [diff] [blame] | 4235 | if (skb_checksum_help(skb)) |
| 4236 | goto out_free; |
| 4237 | } |
Johannes Berg | 2d981fd | 2015-04-10 14:10:10 +0200 | [diff] [blame] | 4238 | } |
| 4239 | |
Jason A. Donenfeld | 9f3ef3d | 2020-01-13 18:42:33 -0500 | [diff] [blame] | 4240 | skb_list_walk_safe(skb, skb, next) { |
| 4241 | skb_mark_not_on_list(skb); |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 4242 | |
Markus Theil | 5af7fef | 2020-06-17 10:26:36 +0200 | [diff] [blame] | 4243 | if (skb->protocol == sdata->control_port_protocol) |
| 4244 | ctrl_flags |= IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP; |
| 4245 | |
Rajkumar Manoharan | 0601677 | 2019-04-11 13:47:25 -0700 | [diff] [blame] | 4246 | skb = ieee80211_build_hdr(sdata, skb, info_flags, |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 4247 | sta, ctrl_flags, cookie); |
Jason A. Donenfeld | 9f3ef3d | 2020-01-13 18:42:33 -0500 | [diff] [blame] | 4248 | if (IS_ERR(skb)) { |
| 4249 | kfree_skb_list(next); |
Johannes Berg | 80616c0 | 2015-04-14 14:50:41 +0200 | [diff] [blame] | 4250 | goto out; |
Jason A. Donenfeld | 9f3ef3d | 2020-01-13 18:42:33 -0500 | [diff] [blame] | 4251 | } |
Johannes Berg | 80616c0 | 2015-04-14 14:50:41 +0200 | [diff] [blame] | 4252 | |
Lev Stipakov | 36ec144 | 2020-11-13 23:46:24 +0200 | [diff] [blame] | 4253 | dev_sw_netstats_tx_add(dev, 1, skb->len); |
Johannes Berg | 80616c0 | 2015-04-14 14:50:41 +0200 | [diff] [blame] | 4254 | |
Mathy Vanhoef | 08aca29 | 2020-07-23 14:01:52 +0400 | [diff] [blame] | 4255 | ieee80211_xmit(sdata, sta, skb); |
Johannes Berg | 80616c0 | 2015-04-14 14:50:41 +0200 | [diff] [blame] | 4256 | } |
Johannes Berg | 2d981fd | 2015-04-10 14:10:10 +0200 | [diff] [blame] | 4257 | goto out; |
| 4258 | out_free: |
| 4259 | kfree_skb(skb); |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 4260 | out: |
| 4261 | rcu_read_unlock(); |
| 4262 | } |
| 4263 | |
Michael Braun | ebceec8 | 2016-11-22 11:52:18 +0100 | [diff] [blame] | 4264 | static int ieee80211_change_da(struct sk_buff *skb, struct sta_info *sta) |
| 4265 | { |
| 4266 | struct ethhdr *eth; |
| 4267 | int err; |
| 4268 | |
| 4269 | err = skb_ensure_writable(skb, ETH_HLEN); |
| 4270 | if (unlikely(err)) |
| 4271 | return err; |
| 4272 | |
| 4273 | eth = (void *)skb->data; |
| 4274 | ether_addr_copy(eth->h_dest, sta->sta.addr); |
| 4275 | |
| 4276 | return 0; |
| 4277 | } |
| 4278 | |
| 4279 | static bool ieee80211_multicast_to_unicast(struct sk_buff *skb, |
| 4280 | struct net_device *dev) |
| 4281 | { |
| 4282 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 4283 | const struct ethhdr *eth = (void *)skb->data; |
| 4284 | const struct vlan_ethhdr *ethvlan = (void *)skb->data; |
| 4285 | __be16 ethertype; |
| 4286 | |
| 4287 | if (likely(!is_multicast_ether_addr(eth->h_dest))) |
| 4288 | return false; |
| 4289 | |
| 4290 | switch (sdata->vif.type) { |
| 4291 | case NL80211_IFTYPE_AP_VLAN: |
| 4292 | if (sdata->u.vlan.sta) |
| 4293 | return false; |
| 4294 | if (sdata->wdev.use_4addr) |
| 4295 | return false; |
Gustavo A. R. Silva | fc0561d | 2020-07-07 15:45:48 -0500 | [diff] [blame] | 4296 | fallthrough; |
Michael Braun | ebceec8 | 2016-11-22 11:52:18 +0100 | [diff] [blame] | 4297 | case NL80211_IFTYPE_AP: |
| 4298 | /* check runtime toggle for this bss */ |
| 4299 | if (!sdata->bss->multicast_to_unicast) |
| 4300 | return false; |
| 4301 | break; |
| 4302 | default: |
| 4303 | return false; |
| 4304 | } |
| 4305 | |
| 4306 | /* multicast to unicast conversion only for some payload */ |
| 4307 | ethertype = eth->h_proto; |
| 4308 | if (ethertype == htons(ETH_P_8021Q) && skb->len >= VLAN_ETH_HLEN) |
| 4309 | ethertype = ethvlan->h_vlan_encapsulated_proto; |
| 4310 | switch (ethertype) { |
| 4311 | case htons(ETH_P_ARP): |
| 4312 | case htons(ETH_P_IP): |
| 4313 | case htons(ETH_P_IPV6): |
| 4314 | break; |
| 4315 | default: |
| 4316 | return false; |
| 4317 | } |
| 4318 | |
| 4319 | return true; |
| 4320 | } |
| 4321 | |
| 4322 | static void |
| 4323 | ieee80211_convert_to_unicast(struct sk_buff *skb, struct net_device *dev, |
| 4324 | struct sk_buff_head *queue) |
| 4325 | { |
| 4326 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 4327 | struct ieee80211_local *local = sdata->local; |
| 4328 | const struct ethhdr *eth = (struct ethhdr *)skb->data; |
| 4329 | struct sta_info *sta, *first = NULL; |
| 4330 | struct sk_buff *cloned_skb; |
| 4331 | |
| 4332 | rcu_read_lock(); |
| 4333 | |
| 4334 | list_for_each_entry_rcu(sta, &local->sta_list, list) { |
| 4335 | if (sdata != sta->sdata) |
| 4336 | /* AP-VLAN mismatch */ |
| 4337 | continue; |
| 4338 | if (unlikely(ether_addr_equal(eth->h_source, sta->sta.addr))) |
| 4339 | /* do not send back to source */ |
| 4340 | continue; |
| 4341 | if (!first) { |
| 4342 | first = sta; |
| 4343 | continue; |
| 4344 | } |
| 4345 | cloned_skb = skb_clone(skb, GFP_ATOMIC); |
| 4346 | if (!cloned_skb) |
| 4347 | goto multicast; |
| 4348 | if (unlikely(ieee80211_change_da(cloned_skb, sta))) { |
| 4349 | dev_kfree_skb(cloned_skb); |
| 4350 | goto multicast; |
| 4351 | } |
| 4352 | __skb_queue_tail(queue, cloned_skb); |
| 4353 | } |
| 4354 | |
| 4355 | if (likely(first)) { |
| 4356 | if (unlikely(ieee80211_change_da(skb, first))) |
| 4357 | goto multicast; |
| 4358 | __skb_queue_tail(queue, skb); |
| 4359 | } else { |
| 4360 | /* no STA connected, drop */ |
| 4361 | kfree_skb(skb); |
| 4362 | skb = NULL; |
| 4363 | } |
| 4364 | |
| 4365 | goto out; |
| 4366 | multicast: |
| 4367 | __skb_queue_purge(queue); |
| 4368 | __skb_queue_tail(queue, skb); |
| 4369 | out: |
| 4370 | rcu_read_unlock(); |
| 4371 | } |
| 4372 | |
Johannes Berg | 4c9451e | 2014-11-09 18:50:10 +0200 | [diff] [blame] | 4373 | /** |
| 4374 | * ieee80211_subif_start_xmit - netif start_xmit function for 802.3 vifs |
| 4375 | * @skb: packet to be sent |
| 4376 | * @dev: incoming interface |
| 4377 | * |
| 4378 | * On failure skb will be freed. |
| 4379 | */ |
Liad Kaufman | 24d342c | 2014-11-09 18:50:07 +0200 | [diff] [blame] | 4380 | netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb, |
| 4381 | struct net_device *dev) |
| 4382 | { |
Michael Braun | ebceec8 | 2016-11-22 11:52:18 +0100 | [diff] [blame] | 4383 | if (unlikely(ieee80211_multicast_to_unicast(skb, dev))) { |
| 4384 | struct sk_buff_head queue; |
| 4385 | |
| 4386 | __skb_queue_head_init(&queue); |
| 4387 | ieee80211_convert_to_unicast(skb, dev, &queue); |
| 4388 | while ((skb = __skb_dequeue(&queue))) |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 4389 | __ieee80211_subif_start_xmit(skb, dev, 0, 0, NULL); |
Michael Braun | ebceec8 | 2016-11-22 11:52:18 +0100 | [diff] [blame] | 4390 | } else { |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 4391 | __ieee80211_subif_start_xmit(skb, dev, 0, 0, NULL); |
Michael Braun | ebceec8 | 2016-11-22 11:52:18 +0100 | [diff] [blame] | 4392 | } |
| 4393 | |
Liad Kaufman | 24d342c | 2014-11-09 18:50:07 +0200 | [diff] [blame] | 4394 | return NETDEV_TX_OK; |
| 4395 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4396 | |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4397 | static bool ieee80211_tx_8023(struct ieee80211_sub_if_data *sdata, |
| 4398 | struct sk_buff *skb, int led_len, |
| 4399 | struct sta_info *sta, |
| 4400 | bool txpending) |
| 4401 | { |
| 4402 | struct ieee80211_local *local = sdata->local; |
| 4403 | struct ieee80211_tx_control control = {}; |
| 4404 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 4405 | struct ieee80211_sta *pubsta = NULL; |
| 4406 | unsigned long flags; |
| 4407 | int q = info->hw_queue; |
| 4408 | |
Lorenzo Bianconi | 196900f | 2021-03-08 23:01:49 +0100 | [diff] [blame] | 4409 | if (sta) |
| 4410 | sk_pacing_shift_update(skb->sk, local->hw.tx_sk_pacing_shift); |
| 4411 | |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4412 | if (ieee80211_queue_skb(local, sdata, sta, skb)) |
| 4413 | return true; |
| 4414 | |
| 4415 | spin_lock_irqsave(&local->queue_stop_reason_lock, flags); |
| 4416 | |
| 4417 | if (local->queue_stop_reasons[q] || |
| 4418 | (!txpending && !skb_queue_empty(&local->pending[q]))) { |
| 4419 | if (txpending) |
| 4420 | skb_queue_head(&local->pending[q], skb); |
| 4421 | else |
| 4422 | skb_queue_tail(&local->pending[q], skb); |
| 4423 | |
| 4424 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
| 4425 | |
| 4426 | return false; |
| 4427 | } |
| 4428 | |
| 4429 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
| 4430 | |
| 4431 | if (sta && sta->uploaded) |
| 4432 | pubsta = &sta->sta; |
| 4433 | |
| 4434 | control.sta = pubsta; |
| 4435 | |
| 4436 | drv_tx(local, &control, skb); |
| 4437 | |
| 4438 | return true; |
| 4439 | } |
| 4440 | |
| 4441 | static void ieee80211_8023_xmit(struct ieee80211_sub_if_data *sdata, |
| 4442 | struct net_device *dev, struct sta_info *sta, |
Felix Fietkau | 6aea26c | 2020-09-08 14:36:53 +0200 | [diff] [blame] | 4443 | struct ieee80211_key *key, struct sk_buff *skb) |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4444 | { |
| 4445 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4446 | struct ieee80211_local *local = sdata->local; |
Felix Fietkau | 96ae9cd | 2020-09-08 14:36:50 +0200 | [diff] [blame] | 4447 | struct tid_ampdu_tx *tid_tx; |
| 4448 | u8 tid; |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4449 | |
Felix Fietkau | 5f8d69e | 2020-09-08 14:36:49 +0200 | [diff] [blame] | 4450 | if (local->ops->wake_tx_queue) { |
| 4451 | u16 queue = __ieee80211_select_queue(sdata, sta, skb); |
| 4452 | skb_set_queue_mapping(skb, queue); |
| 4453 | skb_get_hash(skb); |
| 4454 | } |
| 4455 | |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4456 | if (unlikely(test_bit(SCAN_SW_SCANNING, &local->scanning)) && |
| 4457 | test_bit(SDATA_STATE_OFFCHANNEL, &sdata->state)) |
| 4458 | goto out_free; |
| 4459 | |
Vasanthakumar Thiagarajan | e61fbfc | 2020-07-22 19:50:17 +0530 | [diff] [blame] | 4460 | memset(info, 0, sizeof(*info)); |
| 4461 | |
Felix Fietkau | 08a46c64 | 2021-06-17 18:31:11 +0200 | [diff] [blame] | 4462 | ieee80211_aggr_check(sdata, sta, skb); |
| 4463 | |
Felix Fietkau | aea6a3f | 2020-09-08 14:36:51 +0200 | [diff] [blame] | 4464 | tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK; |
| 4465 | tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]); |
| 4466 | if (tid_tx) { |
| 4467 | if (!test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) { |
| 4468 | /* fall back to non-offload slow path */ |
| 4469 | __ieee80211_subif_start_xmit(skb, dev, 0, 0, NULL); |
| 4470 | return; |
Felix Fietkau | 96ae9cd | 2020-09-08 14:36:50 +0200 | [diff] [blame] | 4471 | } |
Felix Fietkau | aea6a3f | 2020-09-08 14:36:51 +0200 | [diff] [blame] | 4472 | |
| 4473 | info->flags |= IEEE80211_TX_CTL_AMPDU; |
| 4474 | if (tid_tx->timeout) |
| 4475 | tid_tx->last_tx = jiffies; |
Felix Fietkau | 96ae9cd | 2020-09-08 14:36:50 +0200 | [diff] [blame] | 4476 | } |
| 4477 | |
Felix Fietkau | aea6a3f | 2020-09-08 14:36:51 +0200 | [diff] [blame] | 4478 | if (unlikely(skb->sk && |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4479 | skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS)) |
Vasanthakumar Thiagarajan | e61fbfc | 2020-07-22 19:50:17 +0530 | [diff] [blame] | 4480 | info->ack_frame_id = ieee80211_store_ack_skb(local, skb, |
| 4481 | &info->flags, NULL); |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4482 | |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4483 | info->hw_queue = sdata->vif.hw_queue[skb_get_queue_mapping(skb)]; |
| 4484 | |
Lev Stipakov | 36ec144 | 2020-11-13 23:46:24 +0200 | [diff] [blame] | 4485 | dev_sw_netstats_tx_add(dev, 1, skb->len); |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4486 | |
Felix Fietkau | aea6a3f | 2020-09-08 14:36:51 +0200 | [diff] [blame] | 4487 | sta->tx_stats.bytes[skb_get_queue_mapping(skb)] += skb->len; |
| 4488 | sta->tx_stats.packets[skb_get_queue_mapping(skb)]++; |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4489 | |
| 4490 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
| 4491 | sdata = container_of(sdata->bss, |
| 4492 | struct ieee80211_sub_if_data, u.ap); |
| 4493 | |
Felix Fietkau | cc20ff2 | 2020-09-08 14:36:57 +0200 | [diff] [blame] | 4494 | info->flags |= IEEE80211_TX_CTL_HW_80211_ENCAP; |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4495 | info->control.vif = &sdata->vif; |
| 4496 | |
Felix Fietkau | ae04515 | 2020-09-08 14:36:52 +0200 | [diff] [blame] | 4497 | if (key) |
| 4498 | info->control.hw_key = &key->conf; |
| 4499 | |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4500 | ieee80211_tx_8023(sdata, skb, skb->len, sta, false); |
| 4501 | |
| 4502 | return; |
| 4503 | |
| 4504 | out_free: |
| 4505 | kfree_skb(skb); |
| 4506 | } |
| 4507 | |
| 4508 | netdev_tx_t ieee80211_subif_start_xmit_8023(struct sk_buff *skb, |
| 4509 | struct net_device *dev) |
| 4510 | { |
| 4511 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Felix Fietkau | aea6a3f | 2020-09-08 14:36:51 +0200 | [diff] [blame] | 4512 | struct ethhdr *ehdr = (struct ethhdr *)skb->data; |
Felix Fietkau | 6aea26c | 2020-09-08 14:36:53 +0200 | [diff] [blame] | 4513 | struct ieee80211_key *key; |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4514 | struct sta_info *sta; |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4515 | |
| 4516 | if (unlikely(skb->len < ETH_HLEN)) { |
| 4517 | kfree_skb(skb); |
| 4518 | return NETDEV_TX_OK; |
| 4519 | } |
| 4520 | |
| 4521 | rcu_read_lock(); |
| 4522 | |
Felix Fietkau | 6aea26c | 2020-09-08 14:36:53 +0200 | [diff] [blame] | 4523 | if (ieee80211_lookup_ra_sta(sdata, skb, &sta)) { |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4524 | kfree_skb(skb); |
Felix Fietkau | 6aea26c | 2020-09-08 14:36:53 +0200 | [diff] [blame] | 4525 | goto out; |
| 4526 | } |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4527 | |
Felix Fietkau | 6aea26c | 2020-09-08 14:36:53 +0200 | [diff] [blame] | 4528 | if (unlikely(IS_ERR_OR_NULL(sta) || !sta->uploaded || |
| 4529 | !test_sta_flag(sta, WLAN_STA_AUTHORIZED) || |
Felix Fietkau | b101dd2 | 2020-12-18 19:47:16 +0100 | [diff] [blame] | 4530 | sdata->control_port_protocol == ehdr->h_proto)) |
| 4531 | goto skip_offload; |
Felix Fietkau | 6aea26c | 2020-09-08 14:36:53 +0200 | [diff] [blame] | 4532 | |
Felix Fietkau | b101dd2 | 2020-12-18 19:47:16 +0100 | [diff] [blame] | 4533 | key = rcu_dereference(sta->ptk[sta->ptk_idx]); |
| 4534 | if (!key) |
| 4535 | key = rcu_dereference(sdata->default_unicast_key); |
Felix Fietkau | 6aea26c | 2020-09-08 14:36:53 +0200 | [diff] [blame] | 4536 | |
Felix Fietkau | b101dd2 | 2020-12-18 19:47:16 +0100 | [diff] [blame] | 4537 | if (key && (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) || |
| 4538 | key->conf.cipher == WLAN_CIPHER_SUITE_TKIP)) |
| 4539 | goto skip_offload; |
| 4540 | |
| 4541 | ieee80211_8023_xmit(sdata, dev, sta, key, skb); |
| 4542 | goto out; |
| 4543 | |
| 4544 | skip_offload: |
| 4545 | ieee80211_subif_start_xmit(skb, dev); |
Felix Fietkau | 6aea26c | 2020-09-08 14:36:53 +0200 | [diff] [blame] | 4546 | out: |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4547 | rcu_read_unlock(); |
| 4548 | |
| 4549 | return NETDEV_TX_OK; |
| 4550 | } |
| 4551 | |
Johannes Berg | 7528ec5 | 2014-11-09 18:50:11 +0200 | [diff] [blame] | 4552 | struct sk_buff * |
| 4553 | ieee80211_build_data_template(struct ieee80211_sub_if_data *sdata, |
| 4554 | struct sk_buff *skb, u32 info_flags) |
| 4555 | { |
| 4556 | struct ieee80211_hdr *hdr; |
| 4557 | struct ieee80211_tx_data tx = { |
| 4558 | .local = sdata->local, |
| 4559 | .sdata = sdata, |
| 4560 | }; |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 4561 | struct sta_info *sta; |
Johannes Berg | 7528ec5 | 2014-11-09 18:50:11 +0200 | [diff] [blame] | 4562 | |
| 4563 | rcu_read_lock(); |
| 4564 | |
Johannes Berg | 97ffe75 | 2015-03-21 09:13:45 +0100 | [diff] [blame] | 4565 | if (ieee80211_lookup_ra_sta(sdata, skb, &sta)) { |
| 4566 | kfree_skb(skb); |
| 4567 | skb = ERR_PTR(-EINVAL); |
| 4568 | goto out; |
| 4569 | } |
| 4570 | |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 4571 | skb = ieee80211_build_hdr(sdata, skb, info_flags, sta, 0, NULL); |
Johannes Berg | 7528ec5 | 2014-11-09 18:50:11 +0200 | [diff] [blame] | 4572 | if (IS_ERR(skb)) |
| 4573 | goto out; |
| 4574 | |
| 4575 | hdr = (void *)skb->data; |
| 4576 | tx.sta = sta_info_get(sdata, hdr->addr1); |
| 4577 | tx.skb = skb; |
| 4578 | |
| 4579 | if (ieee80211_tx_h_select_key(&tx) != TX_CONTINUE) { |
| 4580 | rcu_read_unlock(); |
| 4581 | kfree_skb(skb); |
| 4582 | return ERR_PTR(-EINVAL); |
| 4583 | } |
| 4584 | |
| 4585 | out: |
| 4586 | rcu_read_unlock(); |
| 4587 | return skb; |
| 4588 | } |
| 4589 | |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 4590 | /* |
| 4591 | * ieee80211_clear_tx_pending may not be called in a context where |
| 4592 | * it is possible that it packets could come in again. |
| 4593 | */ |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4594 | void ieee80211_clear_tx_pending(struct ieee80211_local *local) |
| 4595 | { |
Felix Fietkau | 1f98ab7 | 2012-11-10 03:44:14 +0100 | [diff] [blame] | 4596 | struct sk_buff *skb; |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 4597 | int i; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4598 | |
Felix Fietkau | 1f98ab7 | 2012-11-10 03:44:14 +0100 | [diff] [blame] | 4599 | for (i = 0; i < local->hw.queues; i++) { |
| 4600 | while ((skb = skb_dequeue(&local->pending[i])) != NULL) |
| 4601 | ieee80211_free_txskb(&local->hw, skb); |
| 4602 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4603 | } |
| 4604 | |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 4605 | /* |
| 4606 | * Returns false if the frame couldn't be transmitted but was queued instead, |
| 4607 | * which in this case means re-queued -- take as an indication to stop sending |
| 4608 | * more pending frames. |
| 4609 | */ |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 4610 | static bool ieee80211_tx_pending_skb(struct ieee80211_local *local, |
| 4611 | struct sk_buff *skb) |
| 4612 | { |
| 4613 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 4614 | struct ieee80211_sub_if_data *sdata; |
| 4615 | struct sta_info *sta; |
| 4616 | struct ieee80211_hdr *hdr; |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 4617 | bool result; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 4618 | struct ieee80211_chanctx_conf *chanctx_conf; |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 4619 | |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 4620 | sdata = vif_to_sdata(info->control.vif); |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 4621 | |
Felix Fietkau | cc20ff2 | 2020-09-08 14:36:57 +0200 | [diff] [blame] | 4622 | if (info->control.flags & IEEE80211_TX_INTCFL_NEED_TXPROCESSING) { |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 4623 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
| 4624 | if (unlikely(!chanctx_conf)) { |
| 4625 | dev_kfree_skb(skb); |
| 4626 | return true; |
| 4627 | } |
Johannes Berg | 73c4e19 | 2014-11-09 18:50:09 +0200 | [diff] [blame] | 4628 | info->band = chanctx_conf->def.chan->band; |
Mathy Vanhoef | 08aca29 | 2020-07-23 14:01:52 +0400 | [diff] [blame] | 4629 | result = ieee80211_tx(sdata, NULL, skb, true); |
Felix Fietkau | cc20ff2 | 2020-09-08 14:36:57 +0200 | [diff] [blame] | 4630 | } else if (info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP) { |
John Crispin | 50ff477 | 2019-11-25 11:04:37 +0100 | [diff] [blame] | 4631 | if (ieee80211_lookup_ra_sta(sdata, skb, &sta)) { |
| 4632 | dev_kfree_skb(skb); |
| 4633 | return true; |
| 4634 | } |
| 4635 | |
| 4636 | if (IS_ERR(sta) || (sta && !sta->uploaded)) |
| 4637 | sta = NULL; |
| 4638 | |
| 4639 | result = ieee80211_tx_8023(sdata, skb, skb->len, sta, true); |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 4640 | } else { |
Johannes Berg | 252b86c | 2011-11-16 15:28:55 +0100 | [diff] [blame] | 4641 | struct sk_buff_head skbs; |
| 4642 | |
| 4643 | __skb_queue_head_init(&skbs); |
| 4644 | __skb_queue_tail(&skbs, skb); |
| 4645 | |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 4646 | hdr = (struct ieee80211_hdr *)skb->data; |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 4647 | sta = sta_info_get(sdata, hdr->addr1); |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 4648 | |
Johannes Berg | 74e4dbf | 2011-11-16 15:28:57 +0100 | [diff] [blame] | 4649 | result = __ieee80211_tx(local, &skbs, skb->len, sta, true); |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 4650 | } |
| 4651 | |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 4652 | return result; |
| 4653 | } |
| 4654 | |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 4655 | /* |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 4656 | * Transmit all pending packets. Called from tasklet. |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 4657 | */ |
Allen Pais | da1cad7 | 2020-11-03 14:48:18 +0530 | [diff] [blame] | 4658 | void ieee80211_tx_pending(struct tasklet_struct *t) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4659 | { |
Allen Pais | da1cad7 | 2020-11-03 14:48:18 +0530 | [diff] [blame] | 4660 | struct ieee80211_local *local = from_tasklet(local, t, |
| 4661 | tx_pending_tasklet); |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 4662 | unsigned long flags; |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 4663 | int i; |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 4664 | bool txok; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4665 | |
Johannes Berg | f0e7285 | 2009-03-23 17:28:36 +0100 | [diff] [blame] | 4666 | rcu_read_lock(); |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 4667 | |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 4668 | spin_lock_irqsave(&local->queue_stop_reason_lock, flags); |
Johannes Berg | 176be72 | 2009-03-12 23:49:28 +0100 | [diff] [blame] | 4669 | for (i = 0; i < local->hw.queues; i++) { |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 4670 | /* |
| 4671 | * If queue is stopped by something other than due to pending |
| 4672 | * frames, or we have no pending frames, proceed to next queue. |
| 4673 | */ |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 4674 | if (local->queue_stop_reasons[i] || |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 4675 | skb_queue_empty(&local->pending[i])) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4676 | continue; |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 4677 | |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 4678 | while (!skb_queue_empty(&local->pending[i])) { |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 4679 | struct sk_buff *skb = __skb_dequeue(&local->pending[i]); |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 4680 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 4681 | |
Johannes Berg | a7bc376 | 2009-07-27 10:33:31 +0200 | [diff] [blame] | 4682 | if (WARN_ON(!info->control.vif)) { |
Felix Fietkau | c3e7724 | 2012-10-08 14:39:33 +0200 | [diff] [blame] | 4683 | ieee80211_free_txskb(&local->hw, skb); |
Johannes Berg | a7bc376 | 2009-07-27 10:33:31 +0200 | [diff] [blame] | 4684 | continue; |
| 4685 | } |
| 4686 | |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 4687 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, |
| 4688 | flags); |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 4689 | |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 4690 | txok = ieee80211_tx_pending_skb(local, skb); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 4691 | spin_lock_irqsave(&local->queue_stop_reason_lock, |
| 4692 | flags); |
| 4693 | if (!txok) |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 4694 | break; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4695 | } |
Johannes Berg | 7236fe2 | 2010-03-22 13:42:43 -0700 | [diff] [blame] | 4696 | |
| 4697 | if (skb_queue_empty(&local->pending[i])) |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 4698 | ieee80211_propagate_queue_wake(local, i); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4699 | } |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 4700 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 4701 | |
Johannes Berg | f0e7285 | 2009-03-23 17:28:36 +0100 | [diff] [blame] | 4702 | rcu_read_unlock(); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4703 | } |
| 4704 | |
| 4705 | /* functions for drivers to get certain frames */ |
| 4706 | |
Marco Porsch | eac70c1 | 2013-01-07 16:04:50 +0100 | [diff] [blame] | 4707 | static void __ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata, |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 4708 | struct ps_data *ps, struct sk_buff *skb, |
| 4709 | bool is_template) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4710 | { |
| 4711 | u8 *pos, *tim; |
| 4712 | int aid0 = 0; |
| 4713 | int i, have_bits = 0, n1, n2; |
| 4714 | |
| 4715 | /* Generate bitmap for TIM only if there are any STAs in power save |
| 4716 | * mode. */ |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 4717 | if (atomic_read(&ps->num_sta_ps) > 0) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4718 | /* in the hope that this is faster than |
| 4719 | * checking byte-for-byte */ |
Weilong Chen | f359d3f | 2013-12-18 15:44:16 +0800 | [diff] [blame] | 4720 | have_bits = !bitmap_empty((unsigned long *)ps->tim, |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4721 | IEEE80211_MAX_AID+1); |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 4722 | if (!is_template) { |
| 4723 | if (ps->dtim_count == 0) |
| 4724 | ps->dtim_count = sdata->vif.bss_conf.dtim_period - 1; |
| 4725 | else |
| 4726 | ps->dtim_count--; |
| 4727 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4728 | |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 4729 | tim = pos = skb_put(skb, 6); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4730 | *pos++ = WLAN_EID_TIM; |
| 4731 | *pos++ = 4; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 4732 | *pos++ = ps->dtim_count; |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 4733 | *pos++ = sdata->vif.bss_conf.dtim_period; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4734 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 4735 | if (ps->dtim_count == 0 && !skb_queue_empty(&ps->bc_buf)) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4736 | aid0 = 1; |
| 4737 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 4738 | ps->dtim_bc_mc = aid0 == 1; |
Christian Lamparter | 512119b | 2011-01-31 20:48:44 +0200 | [diff] [blame] | 4739 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4740 | if (have_bits) { |
| 4741 | /* Find largest even number N1 so that bits numbered 1 through |
| 4742 | * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits |
| 4743 | * (N2 + 1) x 8 through 2007 are 0. */ |
| 4744 | n1 = 0; |
| 4745 | for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) { |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 4746 | if (ps->tim[i]) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4747 | n1 = i & 0xfe; |
| 4748 | break; |
| 4749 | } |
| 4750 | } |
| 4751 | n2 = n1; |
| 4752 | for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) { |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 4753 | if (ps->tim[i]) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4754 | n2 = i; |
| 4755 | break; |
| 4756 | } |
| 4757 | } |
| 4758 | |
| 4759 | /* Bitmap control */ |
| 4760 | *pos++ = n1 | aid0; |
| 4761 | /* Part Virt Bitmap */ |
Eliad Peller | 5220da3 | 2011-11-24 16:50:00 +0200 | [diff] [blame] | 4762 | skb_put(skb, n2 - n1); |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 4763 | memcpy(pos, ps->tim + n1, n2 - n1 + 1); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4764 | |
| 4765 | tim[1] = n2 - n1 + 4; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4766 | } else { |
| 4767 | *pos++ = aid0; /* Bitmap control */ |
| 4768 | *pos++ = 0; /* Part Virt Bitmap */ |
| 4769 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4770 | } |
| 4771 | |
Marco Porsch | eac70c1 | 2013-01-07 16:04:50 +0100 | [diff] [blame] | 4772 | static int ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata, |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 4773 | struct ps_data *ps, struct sk_buff *skb, |
| 4774 | bool is_template) |
Marco Porsch | eac70c1 | 2013-01-07 16:04:50 +0100 | [diff] [blame] | 4775 | { |
| 4776 | struct ieee80211_local *local = sdata->local; |
| 4777 | |
| 4778 | /* |
| 4779 | * Not very nice, but we want to allow the driver to call |
| 4780 | * ieee80211_beacon_get() as a response to the set_tim() |
| 4781 | * callback. That, however, is already invoked under the |
| 4782 | * sta_lock to guarantee consistent and race-free update |
| 4783 | * of the tim bitmap in mac80211 and the driver. |
| 4784 | */ |
| 4785 | if (local->tim_in_locked_section) { |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 4786 | __ieee80211_beacon_add_tim(sdata, ps, skb, is_template); |
Marco Porsch | eac70c1 | 2013-01-07 16:04:50 +0100 | [diff] [blame] | 4787 | } else { |
Johannes Berg | 1b91731 | 2013-02-22 12:55:01 +0100 | [diff] [blame] | 4788 | spin_lock_bh(&local->tim_lock); |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 4789 | __ieee80211_beacon_add_tim(sdata, ps, skb, is_template); |
Johannes Berg | 1b91731 | 2013-02-22 12:55:01 +0100 | [diff] [blame] | 4790 | spin_unlock_bh(&local->tim_lock); |
Marco Porsch | eac70c1 | 2013-01-07 16:04:50 +0100 | [diff] [blame] | 4791 | } |
| 4792 | |
| 4793 | return 0; |
| 4794 | } |
| 4795 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4796 | static void ieee80211_set_beacon_cntdwn(struct ieee80211_sub_if_data *sdata, |
| 4797 | struct beacon_data *beacon) |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 4798 | { |
John Crispin | 5f9404a | 2021-07-02 19:44:08 +0200 | [diff] [blame] | 4799 | u8 *beacon_data, count, max_count = 1; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 4800 | struct probe_resp *resp; |
Simon Wunderlich | cd7760e | 2013-08-28 13:41:31 +0200 | [diff] [blame] | 4801 | size_t beacon_data_len; |
John Crispin | 5f9404a | 2021-07-02 19:44:08 +0200 | [diff] [blame] | 4802 | u16 *bcn_offsets; |
Andrei Otcheretianski | 0d06d9b | 2014-05-09 14:11:47 +0300 | [diff] [blame] | 4803 | int i; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 4804 | |
Simon Wunderlich | cd7760e | 2013-08-28 13:41:31 +0200 | [diff] [blame] | 4805 | switch (sdata->vif.type) { |
| 4806 | case NL80211_IFTYPE_AP: |
| 4807 | beacon_data = beacon->tail; |
| 4808 | beacon_data_len = beacon->tail_len; |
| 4809 | break; |
| 4810 | case NL80211_IFTYPE_ADHOC: |
| 4811 | beacon_data = beacon->head; |
| 4812 | beacon_data_len = beacon->head_len; |
| 4813 | break; |
Chun-Yeow Yeoh | b8456a1 | 2013-10-17 15:55:02 -0700 | [diff] [blame] | 4814 | case NL80211_IFTYPE_MESH_POINT: |
| 4815 | beacon_data = beacon->head; |
| 4816 | beacon_data_len = beacon->head_len; |
| 4817 | break; |
Simon Wunderlich | cd7760e | 2013-08-28 13:41:31 +0200 | [diff] [blame] | 4818 | default: |
| 4819 | return; |
| 4820 | } |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 4821 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 4822 | rcu_read_lock(); |
John Crispin | 5f9404a | 2021-07-02 19:44:08 +0200 | [diff] [blame] | 4823 | resp = rcu_dereference(sdata->u.ap.probe_resp); |
Andrei Otcheretianski | 0d06d9b | 2014-05-09 14:11:47 +0300 | [diff] [blame] | 4824 | |
John Crispin | 5f9404a | 2021-07-02 19:44:08 +0200 | [diff] [blame] | 4825 | bcn_offsets = beacon->cntdwn_counter_offsets; |
| 4826 | count = beacon->cntdwn_current_counter; |
| 4827 | if (sdata->vif.csa_active) |
| 4828 | max_count = IEEE80211_MAX_CNTDWN_COUNTERS_NUM; |
| 4829 | |
| 4830 | for (i = 0; i < max_count; ++i) { |
| 4831 | if (bcn_offsets[i]) { |
| 4832 | if (WARN_ON_ONCE(bcn_offsets[i] >= beacon_data_len)) { |
Andrei Otcheretianski | 0d06d9b | 2014-05-09 14:11:47 +0300 | [diff] [blame] | 4833 | rcu_read_unlock(); |
| 4834 | return; |
| 4835 | } |
John Crispin | 5f9404a | 2021-07-02 19:44:08 +0200 | [diff] [blame] | 4836 | beacon_data[bcn_offsets[i]] = count; |
Andrei Otcheretianski | 0d06d9b | 2014-05-09 14:11:47 +0300 | [diff] [blame] | 4837 | } |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 4838 | |
John Crispin | 5f9404a | 2021-07-02 19:44:08 +0200 | [diff] [blame] | 4839 | if (sdata->vif.type == NL80211_IFTYPE_AP && resp) { |
| 4840 | u16 *resp_offsets = resp->cntdwn_counter_offsets; |
| 4841 | |
| 4842 | resp->data[resp_offsets[i]] = count; |
| 4843 | } |
Andrei Otcheretianski | 0d06d9b | 2014-05-09 14:11:47 +0300 | [diff] [blame] | 4844 | } |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 4845 | rcu_read_unlock(); |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 4846 | } |
| 4847 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4848 | static u8 __ieee80211_beacon_update_cntdwn(struct beacon_data *beacon) |
Wojciech Dubowik | e996ec2 | 2015-06-10 13:06:53 +0200 | [diff] [blame] | 4849 | { |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4850 | beacon->cntdwn_current_counter--; |
Wojciech Dubowik | e996ec2 | 2015-06-10 13:06:53 +0200 | [diff] [blame] | 4851 | |
| 4852 | /* the counter should never reach 0 */ |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4853 | WARN_ON_ONCE(!beacon->cntdwn_current_counter); |
Wojciech Dubowik | e996ec2 | 2015-06-10 13:06:53 +0200 | [diff] [blame] | 4854 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4855 | return beacon->cntdwn_current_counter; |
Wojciech Dubowik | e996ec2 | 2015-06-10 13:06:53 +0200 | [diff] [blame] | 4856 | } |
| 4857 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4858 | u8 ieee80211_beacon_update_cntdwn(struct ieee80211_vif *vif) |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 4859 | { |
| 4860 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 4861 | struct beacon_data *beacon = NULL; |
| 4862 | u8 count = 0; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 4863 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 4864 | rcu_read_lock(); |
| 4865 | |
| 4866 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
| 4867 | beacon = rcu_dereference(sdata->u.ap.beacon); |
| 4868 | else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) |
| 4869 | beacon = rcu_dereference(sdata->u.ibss.presp); |
| 4870 | else if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 4871 | beacon = rcu_dereference(sdata->u.mesh.beacon); |
| 4872 | |
| 4873 | if (!beacon) |
| 4874 | goto unlock; |
| 4875 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4876 | count = __ieee80211_beacon_update_cntdwn(beacon); |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 4877 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 4878 | unlock: |
| 4879 | rcu_read_unlock(); |
| 4880 | return count; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 4881 | } |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4882 | EXPORT_SYMBOL(ieee80211_beacon_update_cntdwn); |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 4883 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4884 | void ieee80211_beacon_set_cntdwn(struct ieee80211_vif *vif, u8 counter) |
Gregory Greenman | 0373700 | 2018-04-20 13:49:24 +0300 | [diff] [blame] | 4885 | { |
| 4886 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
| 4887 | struct beacon_data *beacon = NULL; |
| 4888 | |
| 4889 | rcu_read_lock(); |
| 4890 | |
| 4891 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
| 4892 | beacon = rcu_dereference(sdata->u.ap.beacon); |
| 4893 | else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) |
| 4894 | beacon = rcu_dereference(sdata->u.ibss.presp); |
| 4895 | else if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 4896 | beacon = rcu_dereference(sdata->u.mesh.beacon); |
| 4897 | |
| 4898 | if (!beacon) |
| 4899 | goto unlock; |
| 4900 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4901 | if (counter < beacon->cntdwn_current_counter) |
| 4902 | beacon->cntdwn_current_counter = counter; |
Gregory Greenman | 0373700 | 2018-04-20 13:49:24 +0300 | [diff] [blame] | 4903 | |
| 4904 | unlock: |
| 4905 | rcu_read_unlock(); |
| 4906 | } |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4907 | EXPORT_SYMBOL(ieee80211_beacon_set_cntdwn); |
Gregory Greenman | 0373700 | 2018-04-20 13:49:24 +0300 | [diff] [blame] | 4908 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4909 | bool ieee80211_beacon_cntdwn_is_complete(struct ieee80211_vif *vif) |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 4910 | { |
| 4911 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
| 4912 | struct beacon_data *beacon = NULL; |
| 4913 | u8 *beacon_data; |
| 4914 | size_t beacon_data_len; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 4915 | int ret = false; |
| 4916 | |
| 4917 | if (!ieee80211_sdata_running(sdata)) |
| 4918 | return false; |
| 4919 | |
| 4920 | rcu_read_lock(); |
| 4921 | if (vif->type == NL80211_IFTYPE_AP) { |
| 4922 | struct ieee80211_if_ap *ap = &sdata->u.ap; |
| 4923 | |
| 4924 | beacon = rcu_dereference(ap->beacon); |
| 4925 | if (WARN_ON(!beacon || !beacon->tail)) |
| 4926 | goto out; |
| 4927 | beacon_data = beacon->tail; |
| 4928 | beacon_data_len = beacon->tail_len; |
Simon Wunderlich | cd7760e | 2013-08-28 13:41:31 +0200 | [diff] [blame] | 4929 | } else if (vif->type == NL80211_IFTYPE_ADHOC) { |
| 4930 | struct ieee80211_if_ibss *ifibss = &sdata->u.ibss; |
| 4931 | |
| 4932 | beacon = rcu_dereference(ifibss->presp); |
| 4933 | if (!beacon) |
| 4934 | goto out; |
| 4935 | |
| 4936 | beacon_data = beacon->head; |
| 4937 | beacon_data_len = beacon->head_len; |
Chun-Yeow Yeoh | b8456a1 | 2013-10-17 15:55:02 -0700 | [diff] [blame] | 4938 | } else if (vif->type == NL80211_IFTYPE_MESH_POINT) { |
| 4939 | struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; |
| 4940 | |
| 4941 | beacon = rcu_dereference(ifmsh->beacon); |
| 4942 | if (!beacon) |
| 4943 | goto out; |
| 4944 | |
| 4945 | beacon_data = beacon->head; |
| 4946 | beacon_data_len = beacon->head_len; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 4947 | } else { |
| 4948 | WARN_ON(1); |
| 4949 | goto out; |
| 4950 | } |
| 4951 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4952 | if (!beacon->cntdwn_counter_offsets[0]) |
Michal Kazior | 10d78f2 | 2014-06-05 14:21:37 +0200 | [diff] [blame] | 4953 | goto out; |
| 4954 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4955 | if (WARN_ON_ONCE(beacon->cntdwn_counter_offsets[0] > beacon_data_len)) |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 4956 | goto out; |
| 4957 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4958 | if (beacon_data[beacon->cntdwn_counter_offsets[0]] == 1) |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 4959 | ret = true; |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4960 | |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 4961 | out: |
| 4962 | rcu_read_unlock(); |
| 4963 | |
| 4964 | return ret; |
| 4965 | } |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 4966 | EXPORT_SYMBOL(ieee80211_beacon_cntdwn_is_complete); |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 4967 | |
Jouni Malinen | 0a3a843 | 2020-02-22 15:25:46 +0200 | [diff] [blame] | 4968 | static int ieee80211_beacon_protect(struct sk_buff *skb, |
| 4969 | struct ieee80211_local *local, |
| 4970 | struct ieee80211_sub_if_data *sdata) |
| 4971 | { |
| 4972 | ieee80211_tx_result res; |
| 4973 | struct ieee80211_tx_data tx; |
Johannes Berg | 9524770 | 2020-03-20 10:20:23 +0100 | [diff] [blame] | 4974 | struct sk_buff *check_skb; |
Jouni Malinen | 0a3a843 | 2020-02-22 15:25:46 +0200 | [diff] [blame] | 4975 | |
| 4976 | memset(&tx, 0, sizeof(tx)); |
| 4977 | tx.key = rcu_dereference(sdata->default_beacon_key); |
| 4978 | if (!tx.key) |
| 4979 | return 0; |
| 4980 | tx.local = local; |
| 4981 | tx.sdata = sdata; |
| 4982 | __skb_queue_head_init(&tx.skbs); |
| 4983 | __skb_queue_tail(&tx.skbs, skb); |
| 4984 | res = ieee80211_tx_h_encrypt(&tx); |
Johannes Berg | 9524770 | 2020-03-20 10:20:23 +0100 | [diff] [blame] | 4985 | check_skb = __skb_dequeue(&tx.skbs); |
| 4986 | /* we may crash after this, but it'd be a bug in crypto */ |
| 4987 | WARN_ON(check_skb != skb); |
Jouni Malinen | 0a3a843 | 2020-02-22 15:25:46 +0200 | [diff] [blame] | 4988 | if (WARN_ON_ONCE(res != TX_CONTINUE)) |
Johannes Berg | 9524770 | 2020-03-20 10:20:23 +0100 | [diff] [blame] | 4989 | return -EINVAL; |
Jouni Malinen | 0a3a843 | 2020-02-22 15:25:46 +0200 | [diff] [blame] | 4990 | |
| 4991 | return 0; |
| 4992 | } |
| 4993 | |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 4994 | static struct sk_buff * |
| 4995 | __ieee80211_beacon_get(struct ieee80211_hw *hw, |
| 4996 | struct ieee80211_vif *vif, |
| 4997 | struct ieee80211_mutable_offsets *offs, |
| 4998 | bool is_template) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 4999 | { |
| 5000 | struct ieee80211_local *local = hw_to_local(hw); |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 5001 | struct beacon_data *beacon = NULL; |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 5002 | struct sk_buff *skb = NULL; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 5003 | struct ieee80211_tx_info *info; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5004 | struct ieee80211_sub_if_data *sdata = NULL; |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 5005 | enum nl80211_band band; |
Jouni Malinen | e00cfce | 2009-12-29 12:59:19 +0200 | [diff] [blame] | 5006 | struct ieee80211_tx_rate_control txrc; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 5007 | struct ieee80211_chanctx_conf *chanctx_conf; |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 5008 | int csa_off_base = 0; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 5009 | |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 5010 | rcu_read_lock(); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5011 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 5012 | sdata = vif_to_sdata(vif); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 5013 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5014 | |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 5015 | if (!ieee80211_sdata_running(sdata) || !chanctx_conf) |
Felix Fietkau | eb3e554 | 2011-01-24 19:28:49 +0100 | [diff] [blame] | 5016 | goto out; |
| 5017 | |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 5018 | if (offs) |
| 5019 | memset(offs, 0, sizeof(*offs)); |
Johannes Berg | eddcbb94 | 2009-10-29 08:30:35 +0100 | [diff] [blame] | 5020 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 5021 | if (sdata->vif.type == NL80211_IFTYPE_AP) { |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 5022 | struct ieee80211_if_ap *ap = &sdata->u.ap; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 5023 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 5024 | beacon = rcu_dereference(ap->beacon); |
Dan Carpenter | 3ad97fb | 2011-02-07 22:03:35 +0300 | [diff] [blame] | 5025 | if (beacon) { |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 5026 | if (beacon->cntdwn_counter_offsets[0]) { |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 5027 | if (!is_template) |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 5028 | ieee80211_beacon_update_cntdwn(vif); |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 5029 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 5030 | ieee80211_set_beacon_cntdwn(sdata, beacon); |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 5031 | } |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 5032 | |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 5033 | /* |
| 5034 | * headroom, head length, |
| 5035 | * tail length and maximum TIM length |
| 5036 | */ |
| 5037 | skb = dev_alloc_skb(local->tx_headroom + |
| 5038 | beacon->head_len + |
Felix Fietkau | 70dabeb | 2013-12-14 13:54:53 +0100 | [diff] [blame] | 5039 | beacon->tail_len + 256 + |
| 5040 | local->hw.extra_beacon_tailroom); |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 5041 | if (!skb) |
| 5042 | goto out; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 5043 | |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 5044 | skb_reserve(skb, local->tx_headroom); |
Johannes Berg | 59ae1d1 | 2017-06-16 14:29:20 +0200 | [diff] [blame] | 5045 | skb_put_data(skb, beacon->head, beacon->head_len); |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 5046 | |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 5047 | ieee80211_beacon_add_tim(sdata, &ap->ps, skb, |
| 5048 | is_template); |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 5049 | |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 5050 | if (offs) { |
| 5051 | offs->tim_offset = beacon->head_len; |
| 5052 | offs->tim_length = skb->len - beacon->head_len; |
John Crispin | 5f9404a | 2021-07-02 19:44:08 +0200 | [diff] [blame] | 5053 | offs->cntdwn_counter_offs[0] = beacon->cntdwn_counter_offsets[0]; |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 5054 | |
| 5055 | /* for AP the csa offsets are from tail */ |
| 5056 | csa_off_base = skb->len; |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 5057 | } |
Johannes Berg | eddcbb94 | 2009-10-29 08:30:35 +0100 | [diff] [blame] | 5058 | |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 5059 | if (beacon->tail) |
Johannes Berg | 59ae1d1 | 2017-06-16 14:29:20 +0200 | [diff] [blame] | 5060 | skb_put_data(skb, beacon->tail, |
| 5061 | beacon->tail_len); |
Jouni Malinen | 0a3a843 | 2020-02-22 15:25:46 +0200 | [diff] [blame] | 5062 | |
| 5063 | if (ieee80211_beacon_protect(skb, local, sdata) < 0) |
| 5064 | goto out; |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 5065 | } else |
| 5066 | goto out; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 5067 | } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) { |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 5068 | struct ieee80211_if_ibss *ifibss = &sdata->u.ibss; |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 5069 | struct ieee80211_hdr *hdr; |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 5070 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 5071 | beacon = rcu_dereference(ifibss->presp); |
| 5072 | if (!beacon) |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 5073 | goto out; |
| 5074 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 5075 | if (beacon->cntdwn_counter_offsets[0]) { |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 5076 | if (!is_template) |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 5077 | __ieee80211_beacon_update_cntdwn(beacon); |
Simon Wunderlich | cd7760e | 2013-08-28 13:41:31 +0200 | [diff] [blame] | 5078 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 5079 | ieee80211_set_beacon_cntdwn(sdata, beacon); |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 5080 | } |
Simon Wunderlich | cd7760e | 2013-08-28 13:41:31 +0200 | [diff] [blame] | 5081 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 5082 | skb = dev_alloc_skb(local->tx_headroom + beacon->head_len + |
Felix Fietkau | 70dabeb | 2013-12-14 13:54:53 +0100 | [diff] [blame] | 5083 | local->hw.extra_beacon_tailroom); |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 5084 | if (!skb) |
| 5085 | goto out; |
Johannes Berg | c3ffeab | 2013-03-07 20:54:29 +0100 | [diff] [blame] | 5086 | skb_reserve(skb, local->tx_headroom); |
Johannes Berg | 59ae1d1 | 2017-06-16 14:29:20 +0200 | [diff] [blame] | 5087 | skb_put_data(skb, beacon->head, beacon->head_len); |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 5088 | |
| 5089 | hdr = (struct ieee80211_hdr *) skb->data; |
Harvey Harrison | e7827a7 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 5090 | hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 5091 | IEEE80211_STYPE_BEACON); |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 5092 | } else if (ieee80211_vif_is_mesh(&sdata->vif)) { |
Javier Cardona | dbf498f | 2012-03-31 11:31:32 -0700 | [diff] [blame] | 5093 | struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 5094 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 5095 | beacon = rcu_dereference(ifmsh->beacon); |
| 5096 | if (!beacon) |
Johannes Berg | ac1bd84 | 2011-01-18 13:45:32 +0100 | [diff] [blame] | 5097 | goto out; |
Johannes Berg | ac1bd84 | 2011-01-18 13:45:32 +0100 | [diff] [blame] | 5098 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 5099 | if (beacon->cntdwn_counter_offsets[0]) { |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 5100 | if (!is_template) |
| 5101 | /* TODO: For mesh csa_counter is in TU, so |
| 5102 | * decrementing it by one isn't correct, but |
| 5103 | * for now we leave it consistent with overall |
| 5104 | * mac80211's behavior. |
| 5105 | */ |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 5106 | __ieee80211_beacon_update_cntdwn(beacon); |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 5107 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 5108 | ieee80211_set_beacon_cntdwn(sdata, beacon); |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 5109 | } |
Chun-Yeow Yeoh | b8456a1 | 2013-10-17 15:55:02 -0700 | [diff] [blame] | 5110 | |
Javier Cardona | dbf498f | 2012-03-31 11:31:32 -0700 | [diff] [blame] | 5111 | if (ifmsh->sync_ops) |
Masashi Honma | 445cd45 | 2016-12-08 10:15:51 +0900 | [diff] [blame] | 5112 | ifmsh->sync_ops->adjust_tsf(sdata, beacon); |
Javier Cardona | dbf498f | 2012-03-31 11:31:32 -0700 | [diff] [blame] | 5113 | |
Thomas Pedersen | 3b69a9c | 2011-10-26 14:47:25 -0700 | [diff] [blame] | 5114 | skb = dev_alloc_skb(local->tx_headroom + |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 5115 | beacon->head_len + |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 5116 | 256 + /* TIM IE */ |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 5117 | beacon->tail_len + |
Felix Fietkau | 70dabeb | 2013-12-14 13:54:53 +0100 | [diff] [blame] | 5118 | local->hw.extra_beacon_tailroom); |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 5119 | if (!skb) |
| 5120 | goto out; |
Thomas Pedersen | 2b5e196 | 2013-02-14 11:20:13 -0800 | [diff] [blame] | 5121 | skb_reserve(skb, local->tx_headroom); |
Johannes Berg | 59ae1d1 | 2017-06-16 14:29:20 +0200 | [diff] [blame] | 5122 | skb_put_data(skb, beacon->head, beacon->head_len); |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 5123 | ieee80211_beacon_add_tim(sdata, &ifmsh->ps, skb, is_template); |
| 5124 | |
| 5125 | if (offs) { |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 5126 | offs->tim_offset = beacon->head_len; |
| 5127 | offs->tim_length = skb->len - beacon->head_len; |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 5128 | } |
| 5129 | |
Johannes Berg | 59ae1d1 | 2017-06-16 14:29:20 +0200 | [diff] [blame] | 5130 | skb_put_data(skb, beacon->tail, beacon->tail_len); |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 5131 | } else { |
| 5132 | WARN_ON(1); |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 5133 | goto out; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5134 | } |
| 5135 | |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 5136 | /* CSA offsets */ |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 5137 | if (offs && beacon) { |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 5138 | int i; |
| 5139 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 5140 | for (i = 0; i < IEEE80211_MAX_CNTDWN_COUNTERS_NUM; i++) { |
| 5141 | u16 csa_off = beacon->cntdwn_counter_offsets[i]; |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 5142 | |
| 5143 | if (!csa_off) |
| 5144 | continue; |
| 5145 | |
John Crispin | 8552a43 | 2020-08-11 10:01:04 +0200 | [diff] [blame] | 5146 | offs->cntdwn_counter_offs[i] = csa_off_base + csa_off; |
Andrei Otcheretianski | 1af586c | 2014-05-09 14:11:50 +0300 | [diff] [blame] | 5147 | } |
| 5148 | } |
| 5149 | |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 5150 | band = chanctx_conf->def.chan->band; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 5151 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 5152 | info = IEEE80211_SKB_CB(skb); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5153 | |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 5154 | info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
Jouni Malinen | e00cfce | 2009-12-29 12:59:19 +0200 | [diff] [blame] | 5155 | info->flags |= IEEE80211_TX_CTL_NO_ACK; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 5156 | info->band = band; |
Jouni Malinen | e00cfce | 2009-12-29 12:59:19 +0200 | [diff] [blame] | 5157 | |
| 5158 | memset(&txrc, 0, sizeof(txrc)); |
| 5159 | txrc.hw = hw; |
Johannes Berg | e31583c | 2012-07-26 14:07:46 +0200 | [diff] [blame] | 5160 | txrc.sband = local->hw.wiphy->bands[band]; |
Jouni Malinen | e00cfce | 2009-12-29 12:59:19 +0200 | [diff] [blame] | 5161 | txrc.bss_conf = &sdata->vif.bss_conf; |
| 5162 | txrc.skb = skb; |
| 5163 | txrc.reported_rate.idx = -1; |
Jouni Malinen | 08fad43 | 2020-04-25 18:57:12 +0300 | [diff] [blame] | 5164 | if (sdata->beacon_rate_set && sdata->beacon_rateidx_mask[band]) |
| 5165 | txrc.rate_idx_mask = sdata->beacon_rateidx_mask[band]; |
| 5166 | else |
| 5167 | txrc.rate_idx_mask = sdata->rc_rateidx_mask[band]; |
Felix Fietkau | 8f0729b | 2010-11-11 15:07:23 +0100 | [diff] [blame] | 5168 | txrc.bss = true; |
Jouni Malinen | e00cfce | 2009-12-29 12:59:19 +0200 | [diff] [blame] | 5169 | rate_control_get_rate(sdata, NULL, &txrc); |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 5170 | |
| 5171 | info->control.vif = vif; |
Johannes Berg | f591fa5 | 2008-07-10 11:21:26 +0200 | [diff] [blame] | 5172 | |
John W. Linville | a472e71 | 2010-05-06 14:45:17 -0400 | [diff] [blame] | 5173 | info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT | |
| 5174 | IEEE80211_TX_CTL_ASSIGN_SEQ | |
| 5175 | IEEE80211_TX_CTL_FIRST_FRAGMENT; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 5176 | out: |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 5177 | rcu_read_unlock(); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5178 | return skb; |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 5179 | |
| 5180 | } |
| 5181 | |
| 5182 | struct sk_buff * |
| 5183 | ieee80211_beacon_get_template(struct ieee80211_hw *hw, |
| 5184 | struct ieee80211_vif *vif, |
| 5185 | struct ieee80211_mutable_offsets *offs) |
| 5186 | { |
| 5187 | return __ieee80211_beacon_get(hw, vif, offs, true); |
| 5188 | } |
| 5189 | EXPORT_SYMBOL(ieee80211_beacon_get_template); |
| 5190 | |
| 5191 | struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw, |
| 5192 | struct ieee80211_vif *vif, |
| 5193 | u16 *tim_offset, u16 *tim_length) |
| 5194 | { |
| 5195 | struct ieee80211_mutable_offsets offs = {}; |
| 5196 | struct sk_buff *bcn = __ieee80211_beacon_get(hw, vif, &offs, false); |
Helmut Schaa | 35afa58 | 2015-09-09 09:46:32 +0200 | [diff] [blame] | 5197 | struct sk_buff *copy; |
| 5198 | struct ieee80211_supported_band *sband; |
| 5199 | int shift; |
| 5200 | |
| 5201 | if (!bcn) |
| 5202 | return bcn; |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 5203 | |
| 5204 | if (tim_offset) |
| 5205 | *tim_offset = offs.tim_offset; |
| 5206 | |
| 5207 | if (tim_length) |
| 5208 | *tim_length = offs.tim_length; |
| 5209 | |
Helmut Schaa | 35afa58 | 2015-09-09 09:46:32 +0200 | [diff] [blame] | 5210 | if (ieee80211_hw_check(hw, BEACON_TX_STATUS) || |
| 5211 | !hw_to_local(hw)->monitors) |
| 5212 | return bcn; |
| 5213 | |
| 5214 | /* send a copy to monitor interfaces */ |
| 5215 | copy = skb_copy(bcn, GFP_ATOMIC); |
| 5216 | if (!copy) |
| 5217 | return bcn; |
| 5218 | |
| 5219 | shift = ieee80211_vif_get_shift(vif); |
Mohammed Shafi Shajakhan | 21a8e9d | 2017-04-27 12:45:38 +0530 | [diff] [blame] | 5220 | sband = ieee80211_get_sband(vif_to_sdata(vif)); |
| 5221 | if (!sband) |
| 5222 | return bcn; |
| 5223 | |
John Crispin | b7b2e8c | 2019-07-14 17:44:15 +0200 | [diff] [blame] | 5224 | ieee80211_tx_monitor(hw_to_local(hw), copy, sband, 1, shift, false, |
| 5225 | NULL); |
Helmut Schaa | 35afa58 | 2015-09-09 09:46:32 +0200 | [diff] [blame] | 5226 | |
Andrei Otcheretianski | 6ec8c33 | 2014-05-09 14:11:49 +0300 | [diff] [blame] | 5227 | return bcn; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5228 | } |
Johannes Berg | eddcbb94 | 2009-10-29 08:30:35 +0100 | [diff] [blame] | 5229 | EXPORT_SYMBOL(ieee80211_beacon_get_tim); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5230 | |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 5231 | struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw, |
| 5232 | struct ieee80211_vif *vif) |
| 5233 | { |
| 5234 | struct ieee80211_if_ap *ap = NULL; |
Eyal Shapira | aa7a008 | 2012-08-06 14:26:16 +0300 | [diff] [blame] | 5235 | struct sk_buff *skb = NULL; |
| 5236 | struct probe_resp *presp = NULL; |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 5237 | struct ieee80211_hdr *hdr; |
| 5238 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
| 5239 | |
| 5240 | if (sdata->vif.type != NL80211_IFTYPE_AP) |
| 5241 | return NULL; |
| 5242 | |
| 5243 | rcu_read_lock(); |
| 5244 | |
| 5245 | ap = &sdata->u.ap; |
| 5246 | presp = rcu_dereference(ap->probe_resp); |
| 5247 | if (!presp) |
| 5248 | goto out; |
| 5249 | |
Eyal Shapira | aa7a008 | 2012-08-06 14:26:16 +0300 | [diff] [blame] | 5250 | skb = dev_alloc_skb(presp->len); |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 5251 | if (!skb) |
| 5252 | goto out; |
| 5253 | |
Johannes Berg | 59ae1d1 | 2017-06-16 14:29:20 +0200 | [diff] [blame] | 5254 | skb_put_data(skb, presp->data, presp->len); |
Eyal Shapira | aa7a008 | 2012-08-06 14:26:16 +0300 | [diff] [blame] | 5255 | |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 5256 | hdr = (struct ieee80211_hdr *) skb->data; |
| 5257 | memset(hdr->addr1, 0, sizeof(hdr->addr1)); |
| 5258 | |
| 5259 | out: |
| 5260 | rcu_read_unlock(); |
| 5261 | return skb; |
| 5262 | } |
| 5263 | EXPORT_SYMBOL(ieee80211_proberesp_get); |
| 5264 | |
Aloka Dixit | 295b02c | 2020-09-11 00:05:31 +0000 | [diff] [blame] | 5265 | struct sk_buff *ieee80211_get_fils_discovery_tmpl(struct ieee80211_hw *hw, |
| 5266 | struct ieee80211_vif *vif) |
| 5267 | { |
| 5268 | struct sk_buff *skb = NULL; |
| 5269 | struct fils_discovery_data *tmpl = NULL; |
| 5270 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
| 5271 | |
| 5272 | if (sdata->vif.type != NL80211_IFTYPE_AP) |
| 5273 | return NULL; |
| 5274 | |
| 5275 | rcu_read_lock(); |
| 5276 | tmpl = rcu_dereference(sdata->u.ap.fils_discovery); |
| 5277 | if (!tmpl) { |
| 5278 | rcu_read_unlock(); |
| 5279 | return NULL; |
| 5280 | } |
| 5281 | |
| 5282 | skb = dev_alloc_skb(sdata->local->hw.extra_tx_headroom + tmpl->len); |
| 5283 | if (skb) { |
| 5284 | skb_reserve(skb, sdata->local->hw.extra_tx_headroom); |
| 5285 | skb_put_data(skb, tmpl->data, tmpl->len); |
| 5286 | } |
| 5287 | |
| 5288 | rcu_read_unlock(); |
| 5289 | return skb; |
| 5290 | } |
| 5291 | EXPORT_SYMBOL(ieee80211_get_fils_discovery_tmpl); |
| 5292 | |
Aloka Dixit | 632189a | 2020-09-11 00:33:01 +0000 | [diff] [blame] | 5293 | struct sk_buff * |
| 5294 | ieee80211_get_unsol_bcast_probe_resp_tmpl(struct ieee80211_hw *hw, |
| 5295 | struct ieee80211_vif *vif) |
| 5296 | { |
| 5297 | struct sk_buff *skb = NULL; |
| 5298 | struct unsol_bcast_probe_resp_data *tmpl = NULL; |
| 5299 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
| 5300 | |
| 5301 | if (sdata->vif.type != NL80211_IFTYPE_AP) |
| 5302 | return NULL; |
| 5303 | |
| 5304 | rcu_read_lock(); |
| 5305 | tmpl = rcu_dereference(sdata->u.ap.unsol_bcast_probe_resp); |
| 5306 | if (!tmpl) { |
| 5307 | rcu_read_unlock(); |
| 5308 | return NULL; |
| 5309 | } |
| 5310 | |
| 5311 | skb = dev_alloc_skb(sdata->local->hw.extra_tx_headroom + tmpl->len); |
| 5312 | if (skb) { |
| 5313 | skb_reserve(skb, sdata->local->hw.extra_tx_headroom); |
| 5314 | skb_put_data(skb, tmpl->data, tmpl->len); |
| 5315 | } |
| 5316 | |
| 5317 | rcu_read_unlock(); |
| 5318 | return skb; |
| 5319 | } |
| 5320 | EXPORT_SYMBOL(ieee80211_get_unsol_bcast_probe_resp_tmpl); |
| 5321 | |
Kalle Valo | 7044cc5 | 2010-01-05 20:16:19 +0200 | [diff] [blame] | 5322 | struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw, |
| 5323 | struct ieee80211_vif *vif) |
| 5324 | { |
| 5325 | struct ieee80211_sub_if_data *sdata; |
| 5326 | struct ieee80211_if_managed *ifmgd; |
| 5327 | struct ieee80211_pspoll *pspoll; |
| 5328 | struct ieee80211_local *local; |
| 5329 | struct sk_buff *skb; |
| 5330 | |
| 5331 | if (WARN_ON(vif->type != NL80211_IFTYPE_STATION)) |
| 5332 | return NULL; |
| 5333 | |
| 5334 | sdata = vif_to_sdata(vif); |
| 5335 | ifmgd = &sdata->u.mgd; |
| 5336 | local = sdata->local; |
| 5337 | |
| 5338 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll)); |
Joe Perches | d15b845 | 2011-08-29 14:17:31 -0700 | [diff] [blame] | 5339 | if (!skb) |
Kalle Valo | 7044cc5 | 2010-01-05 20:16:19 +0200 | [diff] [blame] | 5340 | return NULL; |
Joe Perches | d15b845 | 2011-08-29 14:17:31 -0700 | [diff] [blame] | 5341 | |
Kalle Valo | 7044cc5 | 2010-01-05 20:16:19 +0200 | [diff] [blame] | 5342 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 5343 | |
Johannes Berg | b080db5 | 2017-06-16 14:29:19 +0200 | [diff] [blame] | 5344 | pspoll = skb_put_zero(skb, sizeof(*pspoll)); |
Kalle Valo | 7044cc5 | 2010-01-05 20:16:19 +0200 | [diff] [blame] | 5345 | pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL | |
| 5346 | IEEE80211_STYPE_PSPOLL); |
Johannes Berg | 1db364c | 2020-04-17 12:38:04 +0200 | [diff] [blame] | 5347 | pspoll->aid = cpu_to_le16(sdata->vif.bss_conf.aid); |
Kalle Valo | 7044cc5 | 2010-01-05 20:16:19 +0200 | [diff] [blame] | 5348 | |
| 5349 | /* aid in PS-Poll has its two MSBs each set to 1 */ |
| 5350 | pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14); |
| 5351 | |
| 5352 | memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN); |
| 5353 | memcpy(pspoll->ta, vif->addr, ETH_ALEN); |
| 5354 | |
| 5355 | return skb; |
| 5356 | } |
| 5357 | EXPORT_SYMBOL(ieee80211_pspoll_get); |
| 5358 | |
| 5359 | struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw, |
Johannes Berg | 7b6ddea | 2017-11-21 14:46:08 +0100 | [diff] [blame] | 5360 | struct ieee80211_vif *vif, |
| 5361 | bool qos_ok) |
Kalle Valo | 7044cc5 | 2010-01-05 20:16:19 +0200 | [diff] [blame] | 5362 | { |
| 5363 | struct ieee80211_hdr_3addr *nullfunc; |
| 5364 | struct ieee80211_sub_if_data *sdata; |
| 5365 | struct ieee80211_if_managed *ifmgd; |
| 5366 | struct ieee80211_local *local; |
| 5367 | struct sk_buff *skb; |
Johannes Berg | 7b6ddea | 2017-11-21 14:46:08 +0100 | [diff] [blame] | 5368 | bool qos = false; |
Kalle Valo | 7044cc5 | 2010-01-05 20:16:19 +0200 | [diff] [blame] | 5369 | |
| 5370 | if (WARN_ON(vif->type != NL80211_IFTYPE_STATION)) |
| 5371 | return NULL; |
| 5372 | |
| 5373 | sdata = vif_to_sdata(vif); |
| 5374 | ifmgd = &sdata->u.mgd; |
| 5375 | local = sdata->local; |
| 5376 | |
Johannes Berg | 7b6ddea | 2017-11-21 14:46:08 +0100 | [diff] [blame] | 5377 | if (qos_ok) { |
| 5378 | struct sta_info *sta; |
| 5379 | |
| 5380 | rcu_read_lock(); |
| 5381 | sta = sta_info_get(sdata, ifmgd->bssid); |
| 5382 | qos = sta && sta->sta.wme; |
| 5383 | rcu_read_unlock(); |
| 5384 | } |
| 5385 | |
| 5386 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + |
| 5387 | sizeof(*nullfunc) + 2); |
Joe Perches | d15b845 | 2011-08-29 14:17:31 -0700 | [diff] [blame] | 5388 | if (!skb) |
Kalle Valo | 7044cc5 | 2010-01-05 20:16:19 +0200 | [diff] [blame] | 5389 | return NULL; |
Joe Perches | d15b845 | 2011-08-29 14:17:31 -0700 | [diff] [blame] | 5390 | |
Kalle Valo | 7044cc5 | 2010-01-05 20:16:19 +0200 | [diff] [blame] | 5391 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 5392 | |
Johannes Berg | b080db5 | 2017-06-16 14:29:19 +0200 | [diff] [blame] | 5393 | nullfunc = skb_put_zero(skb, sizeof(*nullfunc)); |
Kalle Valo | 7044cc5 | 2010-01-05 20:16:19 +0200 | [diff] [blame] | 5394 | nullfunc->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA | |
| 5395 | IEEE80211_STYPE_NULLFUNC | |
| 5396 | IEEE80211_FCTL_TODS); |
Johannes Berg | 7b6ddea | 2017-11-21 14:46:08 +0100 | [diff] [blame] | 5397 | if (qos) { |
Johannes Berg | e0ba709 | 2018-11-09 11:16:46 +0100 | [diff] [blame] | 5398 | __le16 qoshdr = cpu_to_le16(7); |
Johannes Berg | 7b6ddea | 2017-11-21 14:46:08 +0100 | [diff] [blame] | 5399 | |
| 5400 | BUILD_BUG_ON((IEEE80211_STYPE_QOS_NULLFUNC | |
| 5401 | IEEE80211_STYPE_NULLFUNC) != |
| 5402 | IEEE80211_STYPE_QOS_NULLFUNC); |
| 5403 | nullfunc->frame_control |= |
| 5404 | cpu_to_le16(IEEE80211_STYPE_QOS_NULLFUNC); |
| 5405 | skb->priority = 7; |
| 5406 | skb_set_queue_mapping(skb, IEEE80211_AC_VO); |
Johannes Berg | e0ba709 | 2018-11-09 11:16:46 +0100 | [diff] [blame] | 5407 | skb_put_data(skb, &qoshdr, sizeof(qoshdr)); |
Johannes Berg | 7b6ddea | 2017-11-21 14:46:08 +0100 | [diff] [blame] | 5408 | } |
| 5409 | |
Kalle Valo | 7044cc5 | 2010-01-05 20:16:19 +0200 | [diff] [blame] | 5410 | memcpy(nullfunc->addr1, ifmgd->bssid, ETH_ALEN); |
| 5411 | memcpy(nullfunc->addr2, vif->addr, ETH_ALEN); |
| 5412 | memcpy(nullfunc->addr3, ifmgd->bssid, ETH_ALEN); |
| 5413 | |
| 5414 | return skb; |
| 5415 | } |
| 5416 | EXPORT_SYMBOL(ieee80211_nullfunc_get); |
| 5417 | |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 5418 | struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw, |
Johannes Berg | a344d67 | 2014-06-12 22:24:31 +0200 | [diff] [blame] | 5419 | const u8 *src_addr, |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 5420 | const u8 *ssid, size_t ssid_len, |
Johannes Berg | b9a9ada | 2012-11-29 13:00:10 +0100 | [diff] [blame] | 5421 | size_t tailroom) |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 5422 | { |
Johannes Berg | a344d67 | 2014-06-12 22:24:31 +0200 | [diff] [blame] | 5423 | struct ieee80211_local *local = hw_to_local(hw); |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 5424 | struct ieee80211_hdr_3addr *hdr; |
| 5425 | struct sk_buff *skb; |
| 5426 | size_t ie_ssid_len; |
| 5427 | u8 *pos; |
| 5428 | |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 5429 | ie_ssid_len = 2 + ssid_len; |
| 5430 | |
| 5431 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*hdr) + |
Johannes Berg | b9a9ada | 2012-11-29 13:00:10 +0100 | [diff] [blame] | 5432 | ie_ssid_len + tailroom); |
Joe Perches | d15b845 | 2011-08-29 14:17:31 -0700 | [diff] [blame] | 5433 | if (!skb) |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 5434 | return NULL; |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 5435 | |
| 5436 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 5437 | |
Johannes Berg | b080db5 | 2017-06-16 14:29:19 +0200 | [diff] [blame] | 5438 | hdr = skb_put_zero(skb, sizeof(*hdr)); |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 5439 | hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 5440 | IEEE80211_STYPE_PROBE_REQ); |
Johannes Berg | e83e654 | 2012-07-13 16:23:07 +0200 | [diff] [blame] | 5441 | eth_broadcast_addr(hdr->addr1); |
Johannes Berg | a344d67 | 2014-06-12 22:24:31 +0200 | [diff] [blame] | 5442 | memcpy(hdr->addr2, src_addr, ETH_ALEN); |
Johannes Berg | e83e654 | 2012-07-13 16:23:07 +0200 | [diff] [blame] | 5443 | eth_broadcast_addr(hdr->addr3); |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 5444 | |
| 5445 | pos = skb_put(skb, ie_ssid_len); |
| 5446 | *pos++ = WLAN_EID_SSID; |
| 5447 | *pos++ = ssid_len; |
Stanislaw Gruszka | 88c868c | 2012-03-29 16:30:41 +0200 | [diff] [blame] | 5448 | if (ssid_len) |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 5449 | memcpy(pos, ssid, ssid_len); |
| 5450 | pos += ssid_len; |
| 5451 | |
Kalle Valo | 05e54ea | 2010-01-05 20:16:38 +0200 | [diff] [blame] | 5452 | return skb; |
| 5453 | } |
| 5454 | EXPORT_SYMBOL(ieee80211_probereq_get); |
| 5455 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 5456 | void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5457 | const void *frame, size_t frame_len, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 5458 | const struct ieee80211_tx_info *frame_txctl, |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5459 | struct ieee80211_rts *rts) |
| 5460 | { |
| 5461 | const struct ieee80211_hdr *hdr = frame; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5462 | |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 5463 | rts->frame_control = |
| 5464 | cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS); |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 5465 | rts->duration = ieee80211_rts_duration(hw, vif, frame_len, |
| 5466 | frame_txctl); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5467 | memcpy(rts->ra, hdr->addr1, sizeof(rts->ra)); |
| 5468 | memcpy(rts->ta, hdr->addr2, sizeof(rts->ta)); |
| 5469 | } |
| 5470 | EXPORT_SYMBOL(ieee80211_rts_get); |
| 5471 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 5472 | void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5473 | const void *frame, size_t frame_len, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 5474 | const struct ieee80211_tx_info *frame_txctl, |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5475 | struct ieee80211_cts *cts) |
| 5476 | { |
| 5477 | const struct ieee80211_hdr *hdr = frame; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5478 | |
Harvey Harrison | 065e9605 | 2008-06-22 16:45:27 -0700 | [diff] [blame] | 5479 | cts->frame_control = |
| 5480 | cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS); |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 5481 | cts->duration = ieee80211_ctstoself_duration(hw, vif, |
| 5482 | frame_len, frame_txctl); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5483 | memcpy(cts->ra, hdr->addr1, sizeof(cts->ra)); |
| 5484 | } |
| 5485 | EXPORT_SYMBOL(ieee80211_ctstoself_get); |
| 5486 | |
| 5487 | struct sk_buff * |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 5488 | ieee80211_get_buffered_bc(struct ieee80211_hw *hw, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 5489 | struct ieee80211_vif *vif) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5490 | { |
| 5491 | struct ieee80211_local *local = hw_to_local(hw); |
Tomas Winkler | 747cf5e | 2008-05-27 17:50:51 +0300 | [diff] [blame] | 5492 | struct sk_buff *skb = NULL; |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 5493 | struct ieee80211_tx_data tx; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5494 | struct ieee80211_sub_if_data *sdata; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 5495 | struct ps_data *ps; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 5496 | struct ieee80211_tx_info *info; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 5497 | struct ieee80211_chanctx_conf *chanctx_conf; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5498 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 5499 | sdata = vif_to_sdata(vif); |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 5500 | |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 5501 | rcu_read_lock(); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 5502 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 5503 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 5504 | if (!chanctx_conf) |
Tomas Winkler | 747cf5e | 2008-05-27 17:50:51 +0300 | [diff] [blame] | 5505 | goto out; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 5506 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 5507 | if (sdata->vif.type == NL80211_IFTYPE_AP) { |
| 5508 | struct beacon_data *beacon = |
| 5509 | rcu_dereference(sdata->u.ap.beacon); |
| 5510 | |
| 5511 | if (!beacon || !beacon->head) |
| 5512 | goto out; |
| 5513 | |
| 5514 | ps = &sdata->u.ap.ps; |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 5515 | } else if (ieee80211_vif_is_mesh(&sdata->vif)) { |
| 5516 | ps = &sdata->u.mesh.ps; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 5517 | } else { |
| 5518 | goto out; |
| 5519 | } |
| 5520 | |
| 5521 | if (ps->dtim_count != 0 || !ps->dtim_bc_mc) |
Tomas Winkler | 747cf5e | 2008-05-27 17:50:51 +0300 | [diff] [blame] | 5522 | goto out; /* send buffered bc/mc only after DTIM beacon */ |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 5523 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5524 | while (1) { |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 5525 | skb = skb_dequeue(&ps->bc_buf); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5526 | if (!skb) |
Tomas Winkler | 747cf5e | 2008-05-27 17:50:51 +0300 | [diff] [blame] | 5527 | goto out; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5528 | local->total_ps_buffered--; |
| 5529 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 5530 | if (!skb_queue_empty(&ps->bc_buf) && skb->len >= 2) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5531 | struct ieee80211_hdr *hdr = |
| 5532 | (struct ieee80211_hdr *) skb->data; |
| 5533 | /* more buffered multicast/broadcast frames ==> set |
| 5534 | * MoreData flag in IEEE 802.11 header to inform PS |
| 5535 | * STAs */ |
| 5536 | hdr->frame_control |= |
| 5537 | cpu_to_le16(IEEE80211_FCTL_MOREDATA); |
| 5538 | } |
| 5539 | |
Michael Braun | 112c44b | 2014-03-06 15:08:43 +0100 | [diff] [blame] | 5540 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
Marco Porsch | 7cbf9d0 | 2013-03-01 16:01:18 +0100 | [diff] [blame] | 5541 | sdata = IEEE80211_DEV_TO_SUB_IF(skb->dev); |
Johannes Berg | 7c10770 | 2015-03-20 14:18:27 +0100 | [diff] [blame] | 5542 | if (!ieee80211_tx_prepare(sdata, &tx, NULL, skb)) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5543 | break; |
Felix Fietkau | 6b07d9c | 2016-08-02 11:13:41 +0200 | [diff] [blame] | 5544 | ieee80211_free_txskb(hw, skb); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5545 | } |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 5546 | |
| 5547 | info = IEEE80211_SKB_CB(skb); |
| 5548 | |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 5549 | tx.flags |= IEEE80211_TX_PS_BUFFERED; |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 5550 | info->band = chanctx_conf->def.chan->band; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5551 | |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 5552 | if (invoke_tx_handlers(&tx)) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5553 | skb = NULL; |
Johannes Berg | 97b045d | 2008-06-20 01:22:30 +0200 | [diff] [blame] | 5554 | out: |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 5555 | rcu_read_unlock(); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5556 | |
| 5557 | return skb; |
| 5558 | } |
| 5559 | EXPORT_SYMBOL(ieee80211_get_buffered_bc); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 5560 | |
Liad Kaufman | b6da911 | 2014-11-19 13:47:38 +0200 | [diff] [blame] | 5561 | int ieee80211_reserve_tid(struct ieee80211_sta *pubsta, u8 tid) |
| 5562 | { |
| 5563 | struct sta_info *sta = container_of(pubsta, struct sta_info, sta); |
| 5564 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
| 5565 | struct ieee80211_local *local = sdata->local; |
| 5566 | int ret; |
| 5567 | u32 queues; |
| 5568 | |
| 5569 | lockdep_assert_held(&local->sta_mtx); |
| 5570 | |
| 5571 | /* only some cases are supported right now */ |
| 5572 | switch (sdata->vif.type) { |
| 5573 | case NL80211_IFTYPE_STATION: |
| 5574 | case NL80211_IFTYPE_AP: |
| 5575 | case NL80211_IFTYPE_AP_VLAN: |
| 5576 | break; |
| 5577 | default: |
| 5578 | WARN_ON(1); |
| 5579 | return -EINVAL; |
| 5580 | } |
| 5581 | |
| 5582 | if (WARN_ON(tid >= IEEE80211_NUM_UPS)) |
| 5583 | return -EINVAL; |
| 5584 | |
| 5585 | if (sta->reserved_tid == tid) { |
| 5586 | ret = 0; |
| 5587 | goto out; |
| 5588 | } |
| 5589 | |
| 5590 | if (sta->reserved_tid != IEEE80211_TID_UNRESERVED) { |
| 5591 | sdata_err(sdata, "TID reservation already active\n"); |
| 5592 | ret = -EALREADY; |
| 5593 | goto out; |
| 5594 | } |
| 5595 | |
| 5596 | ieee80211_stop_vif_queues(sdata->local, sdata, |
| 5597 | IEEE80211_QUEUE_STOP_REASON_RESERVE_TID); |
| 5598 | |
| 5599 | synchronize_net(); |
| 5600 | |
| 5601 | /* Tear down BA sessions so we stop aggregating on this TID */ |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 5602 | if (ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION)) { |
Liad Kaufman | b6da911 | 2014-11-19 13:47:38 +0200 | [diff] [blame] | 5603 | set_sta_flag(sta, WLAN_STA_BLOCK_BA); |
| 5604 | __ieee80211_stop_tx_ba_session(sta, tid, |
| 5605 | AGG_STOP_LOCAL_REQUEST); |
| 5606 | } |
| 5607 | |
| 5608 | queues = BIT(sdata->vif.hw_queue[ieee802_1d_to_ac[tid]]); |
Emmanuel Grumbach | 3b24f4c | 2015-01-07 15:42:39 +0200 | [diff] [blame] | 5609 | __ieee80211_flush_queues(local, sdata, queues, false); |
Liad Kaufman | b6da911 | 2014-11-19 13:47:38 +0200 | [diff] [blame] | 5610 | |
| 5611 | sta->reserved_tid = tid; |
| 5612 | |
| 5613 | ieee80211_wake_vif_queues(local, sdata, |
| 5614 | IEEE80211_QUEUE_STOP_REASON_RESERVE_TID); |
| 5615 | |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 5616 | if (ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION)) |
Liad Kaufman | b6da911 | 2014-11-19 13:47:38 +0200 | [diff] [blame] | 5617 | clear_sta_flag(sta, WLAN_STA_BLOCK_BA); |
| 5618 | |
| 5619 | ret = 0; |
| 5620 | out: |
| 5621 | return ret; |
| 5622 | } |
| 5623 | EXPORT_SYMBOL(ieee80211_reserve_tid); |
| 5624 | |
| 5625 | void ieee80211_unreserve_tid(struct ieee80211_sta *pubsta, u8 tid) |
| 5626 | { |
| 5627 | struct sta_info *sta = container_of(pubsta, struct sta_info, sta); |
| 5628 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
| 5629 | |
| 5630 | lockdep_assert_held(&sdata->local->sta_mtx); |
| 5631 | |
| 5632 | /* only some cases are supported right now */ |
| 5633 | switch (sdata->vif.type) { |
| 5634 | case NL80211_IFTYPE_STATION: |
| 5635 | case NL80211_IFTYPE_AP: |
| 5636 | case NL80211_IFTYPE_AP_VLAN: |
| 5637 | break; |
| 5638 | default: |
| 5639 | WARN_ON(1); |
| 5640 | return; |
| 5641 | } |
| 5642 | |
| 5643 | if (tid != sta->reserved_tid) { |
| 5644 | sdata_err(sdata, "TID to unreserve (%d) isn't reserved\n", tid); |
| 5645 | return; |
| 5646 | } |
| 5647 | |
| 5648 | sta->reserved_tid = IEEE80211_TID_UNRESERVED; |
| 5649 | } |
| 5650 | EXPORT_SYMBOL(ieee80211_unreserve_tid); |
| 5651 | |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 5652 | void __ieee80211_tx_skb_tid_band(struct ieee80211_sub_if_data *sdata, |
| 5653 | struct sk_buff *skb, int tid, |
Mathy Vanhoef | 08aca29 | 2020-07-23 14:01:52 +0400 | [diff] [blame] | 5654 | enum nl80211_band band) |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 5655 | { |
Amadeusz Sławiński | 731977e | 2017-01-24 16:42:10 +0100 | [diff] [blame] | 5656 | int ac = ieee80211_ac_from_tid(tid); |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 5657 | |
Zhang Shengju | d57a544 | 2016-03-03 01:16:56 +0000 | [diff] [blame] | 5658 | skb_reset_mac_header(skb); |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 5659 | skb_set_queue_mapping(skb, ac); |
Helmut Schaa | cf6bb79 | 2011-12-15 10:18:34 +0100 | [diff] [blame] | 5660 | skb->priority = tid; |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 5661 | |
Johannes Berg | 89afe61 | 2013-02-13 15:39:57 +0100 | [diff] [blame] | 5662 | skb->dev = sdata->dev; |
| 5663 | |
Johannes Berg | 3d34deb | 2009-06-18 17:25:11 +0200 | [diff] [blame] | 5664 | /* |
| 5665 | * The other path calling ieee80211_xmit is from the tasklet, |
| 5666 | * and while we can handle concurrent transmissions locking |
| 5667 | * requirements are that we do not come into tx with bhs on. |
| 5668 | */ |
| 5669 | local_bh_disable(); |
Johannes Berg | 73c4e19 | 2014-11-09 18:50:09 +0200 | [diff] [blame] | 5670 | IEEE80211_SKB_CB(skb)->band = band; |
Mathy Vanhoef | 08aca29 | 2020-07-23 14:01:52 +0400 | [diff] [blame] | 5671 | ieee80211_xmit(sdata, NULL, skb); |
Johannes Berg | 3d34deb | 2009-06-18 17:25:11 +0200 | [diff] [blame] | 5672 | local_bh_enable(); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 5673 | } |
Denis Kenzior | 9118064 | 2018-03-26 12:52:50 -0500 | [diff] [blame] | 5674 | |
| 5675 | int ieee80211_tx_control_port(struct wiphy *wiphy, struct net_device *dev, |
| 5676 | const u8 *buf, size_t len, |
Markus Theil | dca9ca2 | 2020-05-08 16:42:00 +0200 | [diff] [blame] | 5677 | const u8 *dest, __be16 proto, bool unencrypted, |
| 5678 | u64 *cookie) |
Denis Kenzior | 9118064 | 2018-03-26 12:52:50 -0500 | [diff] [blame] | 5679 | { |
| 5680 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 5681 | struct ieee80211_local *local = sdata->local; |
Markus Theil | 10cb8e6 | 2021-02-06 12:51:12 +0100 | [diff] [blame] | 5682 | struct sta_info *sta; |
Denis Kenzior | 9118064 | 2018-03-26 12:52:50 -0500 | [diff] [blame] | 5683 | struct sk_buff *skb; |
| 5684 | struct ethhdr *ehdr; |
Johannes Berg | b95d2cc | 2020-03-26 15:53:34 +0100 | [diff] [blame] | 5685 | u32 ctrl_flags = 0; |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 5686 | u32 flags = 0; |
Denis Kenzior | 9118064 | 2018-03-26 12:52:50 -0500 | [diff] [blame] | 5687 | |
| 5688 | /* Only accept CONTROL_PORT_PROTOCOL configured in CONNECT/ASSOCIATE |
| 5689 | * or Pre-Authentication |
| 5690 | */ |
| 5691 | if (proto != sdata->control_port_protocol && |
| 5692 | proto != cpu_to_be16(ETH_P_PREAUTH)) |
| 5693 | return -EINVAL; |
| 5694 | |
Johannes Berg | b95d2cc | 2020-03-26 15:53:34 +0100 | [diff] [blame] | 5695 | if (proto == sdata->control_port_protocol) |
Markus Theil | 5af7fef | 2020-06-17 10:26:36 +0200 | [diff] [blame] | 5696 | ctrl_flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO | |
| 5697 | IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP; |
Johannes Berg | b95d2cc | 2020-03-26 15:53:34 +0100 | [diff] [blame] | 5698 | |
Denis Kenzior | 9118064 | 2018-03-26 12:52:50 -0500 | [diff] [blame] | 5699 | if (unencrypted) |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 5700 | flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
| 5701 | |
| 5702 | if (cookie) |
| 5703 | ctrl_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS; |
| 5704 | |
Markus Theil | 10cb8e6 | 2021-02-06 12:51:12 +0100 | [diff] [blame] | 5705 | flags |= IEEE80211_TX_INTFL_NL80211_FRAME_TX; |
Denis Kenzior | 9118064 | 2018-03-26 12:52:50 -0500 | [diff] [blame] | 5706 | |
| 5707 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + |
| 5708 | sizeof(struct ethhdr) + len); |
| 5709 | if (!skb) |
| 5710 | return -ENOMEM; |
| 5711 | |
| 5712 | skb_reserve(skb, local->hw.extra_tx_headroom + sizeof(struct ethhdr)); |
| 5713 | |
| 5714 | skb_put_data(skb, buf, len); |
| 5715 | |
| 5716 | ehdr = skb_push(skb, sizeof(struct ethhdr)); |
| 5717 | memcpy(ehdr->h_dest, dest, ETH_ALEN); |
Johannes Berg | 8079e4f | 2020-02-24 10:19:11 +0100 | [diff] [blame] | 5718 | memcpy(ehdr->h_source, sdata->vif.addr, ETH_ALEN); |
Denis Kenzior | 9118064 | 2018-03-26 12:52:50 -0500 | [diff] [blame] | 5719 | ehdr->h_proto = proto; |
| 5720 | |
| 5721 | skb->dev = dev; |
Markus Theil | 10cb8e6 | 2021-02-06 12:51:12 +0100 | [diff] [blame] | 5722 | skb->protocol = proto; |
Denis Kenzior | 9118064 | 2018-03-26 12:52:50 -0500 | [diff] [blame] | 5723 | skb_reset_network_header(skb); |
| 5724 | skb_reset_mac_header(skb); |
| 5725 | |
Markus Theil | 10cb8e6 | 2021-02-06 12:51:12 +0100 | [diff] [blame] | 5726 | /* update QoS header to prioritize control port frames if possible, |
| 5727 | * priorization also happens for control port frames send over |
| 5728 | * AF_PACKET |
| 5729 | */ |
| 5730 | rcu_read_lock(); |
| 5731 | |
| 5732 | if (ieee80211_lookup_ra_sta(sdata, skb, &sta) == 0 && !IS_ERR(sta)) { |
| 5733 | u16 queue = __ieee80211_select_queue(sdata, sta, skb); |
| 5734 | |
| 5735 | skb_set_queue_mapping(skb, queue); |
| 5736 | skb_get_hash(skb); |
| 5737 | } |
| 5738 | |
| 5739 | rcu_read_unlock(); |
| 5740 | |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 5741 | /* mutex lock is only needed for incrementing the cookie counter */ |
| 5742 | mutex_lock(&local->mtx); |
| 5743 | |
Denis Kenzior | e7441c9 | 2018-06-19 10:39:50 -0500 | [diff] [blame] | 5744 | local_bh_disable(); |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 5745 | __ieee80211_subif_start_xmit(skb, skb->dev, flags, ctrl_flags, cookie); |
Denis Kenzior | e7441c9 | 2018-06-19 10:39:50 -0500 | [diff] [blame] | 5746 | local_bh_enable(); |
Denis Kenzior | 9118064 | 2018-03-26 12:52:50 -0500 | [diff] [blame] | 5747 | |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 5748 | mutex_unlock(&local->mtx); |
| 5749 | |
Denis Kenzior | 9118064 | 2018-03-26 12:52:50 -0500 | [diff] [blame] | 5750 | return 0; |
| 5751 | } |
Rajkumar Manoharan | 8828f81 | 2019-04-11 13:47:26 -0700 | [diff] [blame] | 5752 | |
| 5753 | int ieee80211_probe_mesh_link(struct wiphy *wiphy, struct net_device *dev, |
| 5754 | const u8 *buf, size_t len) |
| 5755 | { |
| 5756 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 5757 | struct ieee80211_local *local = sdata->local; |
| 5758 | struct sk_buff *skb; |
| 5759 | |
| 5760 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + len + |
| 5761 | 30 + /* header size */ |
| 5762 | 18); /* 11s header size */ |
| 5763 | if (!skb) |
| 5764 | return -ENOMEM; |
| 5765 | |
| 5766 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 5767 | skb_put_data(skb, buf, len); |
| 5768 | |
| 5769 | skb->dev = dev; |
| 5770 | skb->protocol = htons(ETH_P_802_3); |
| 5771 | skb_reset_network_header(skb); |
| 5772 | skb_reset_mac_header(skb); |
| 5773 | |
| 5774 | local_bh_disable(); |
| 5775 | __ieee80211_subif_start_xmit(skb, skb->dev, 0, |
Markus Theil | a752819 | 2020-05-27 18:03:34 +0200 | [diff] [blame] | 5776 | IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP, |
| 5777 | NULL); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 5778 | local_bh_enable(); |
| 5779 | |
| 5780 | return 0; |
| 5781 | } |