blob: 6200b071992d964838221cb012f9ca7f4d841a5f [file] [log] [blame]
Johannes Berge2ebc742007-07-27 15:43:22 +02001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
5 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 *
12 * Transmit and frame generation functions.
13 */
14
15#include <linux/kernel.h>
16#include <linux/slab.h>
17#include <linux/skbuff.h>
18#include <linux/etherdevice.h>
19#include <linux/bitmap.h>
Johannes Bergd4e46a32007-09-14 11:10:24 -040020#include <linux/rcupdate.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040021#include <linux/export.h>
Matti Gottliebad38bfc2013-11-18 19:06:45 +020022#include <linux/time.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070023#include <net/net_namespace.h>
Johannes Berge2ebc742007-07-27 15:43:22 +020024#include <net/ieee80211_radiotap.h>
25#include <net/cfg80211.h>
26#include <net/mac80211.h>
27#include <asm/unaligned.h>
28
29#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020030#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040031#include "led.h"
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +010032#include "mesh.h"
Johannes Berge2ebc742007-07-27 15:43:22 +020033#include "wep.h"
34#include "wpa.h"
35#include "wme.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040036#include "rate.h"
Johannes Berge2ebc742007-07-27 15:43:22 +020037
Johannes Berge2ebc742007-07-27 15:43:22 +020038/* misc utils */
39
Johannes Berg252b86c2011-11-16 15:28:55 +010040static __le16 ieee80211_duration(struct ieee80211_tx_data *tx,
41 struct sk_buff *skb, int group_addr,
Johannes Berg03f93c32008-06-25 14:36:27 +030042 int next_frag_len)
Johannes Berge2ebc742007-07-27 15:43:22 +020043{
Simon Wunderlich2103dec2013-07-08 16:55:53 +020044 int rate, mrate, erp, dur, i, shift = 0;
Johannes Berg2e92e6f2008-05-15 12:55:27 +020045 struct ieee80211_rate *txrate;
Johannes Berge2ebc742007-07-27 15:43:22 +020046 struct ieee80211_local *local = tx->local;
Johannes Berg8318d782008-01-24 19:38:38 +010047 struct ieee80211_supported_band *sband;
Harvey Harrison358c8d92008-07-15 18:44:13 -070048 struct ieee80211_hdr *hdr;
Johannes Berg252b86c2011-11-16 15:28:55 +010049 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Simon Wunderlich2103dec2013-07-08 16:55:53 +020050 struct ieee80211_chanctx_conf *chanctx_conf;
51 u32 rate_flags = 0;
52
53 rcu_read_lock();
54 chanctx_conf = rcu_dereference(tx->sdata->vif.chanctx_conf);
55 if (chanctx_conf) {
56 shift = ieee80211_chandef_get_shift(&chanctx_conf->def);
57 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
58 }
59 rcu_read_unlock();
Johannes Berge6a98542008-10-21 12:40:02 +020060
61 /* assume HW handles this */
Felix Fietkau0d528d82013-04-22 16:14:41 +020062 if (tx->rate.flags & IEEE80211_TX_RC_MCS)
Johannes Berge6a98542008-10-21 12:40:02 +020063 return 0;
64
65 /* uh huh? */
Felix Fietkau0d528d82013-04-22 16:14:41 +020066 if (WARN_ON_ONCE(tx->rate.idx < 0))
Johannes Berge6a98542008-10-21 12:40:02 +020067 return 0;
Johannes Berge2ebc742007-07-27 15:43:22 +020068
Johannes Berg2d565772012-07-23 15:12:51 +020069 sband = local->hw.wiphy->bands[info->band];
Felix Fietkau0d528d82013-04-22 16:14:41 +020070 txrate = &sband->bitrates[tx->rate.idx];
Johannes Berg8318d782008-01-24 19:38:38 +010071
Johannes Berge6a98542008-10-21 12:40:02 +020072 erp = txrate->flags & IEEE80211_RATE_ERP_G;
Johannes Berge2ebc742007-07-27 15:43:22 +020073
74 /*
75 * data and mgmt (except PS Poll):
76 * - during CFP: 32768
77 * - during contention period:
78 * if addr1 is group address: 0
79 * if more fragments = 0 and addr1 is individual address: time to
80 * transmit one ACK plus SIFS
81 * if more fragments = 1 and addr1 is individual address: time to
82 * transmit next fragment plus 2 x ACK plus 3 x SIFS
83 *
84 * IEEE 802.11, 9.6:
85 * - control response frame (CTS or ACK) shall be transmitted using the
86 * same rate as the immediately previous frame in the frame exchange
87 * sequence, if this rate belongs to the PHY mandatory rates, or else
88 * at the highest possible rate belonging to the PHY rates in the
89 * BSSBasicRateSet
90 */
Johannes Berg252b86c2011-11-16 15:28:55 +010091 hdr = (struct ieee80211_hdr *)skb->data;
Harvey Harrison358c8d92008-07-15 18:44:13 -070092 if (ieee80211_is_ctl(hdr->frame_control)) {
Johannes Berge2ebc742007-07-27 15:43:22 +020093 /* TODO: These control frames are not currently sent by
Johannes Bergccd7b362008-09-11 00:01:56 +020094 * mac80211, but should they be implemented, this function
Johannes Berge2ebc742007-07-27 15:43:22 +020095 * needs to be updated to support duration field calculation.
96 *
97 * RTS: time needed to transmit pending data/mgmt frame plus
98 * one CTS frame plus one ACK frame plus 3 x SIFS
99 * CTS: duration of immediately previous RTS minus time
100 * required to transmit CTS and its SIFS
101 * ACK: 0 if immediately previous directed data/mgmt had
102 * more=0, with more=1 duration in ACK frame is duration
103 * from previous frame minus time needed to transmit ACK
104 * and its SIFS
105 * PS Poll: BIT(15) | BIT(14) | aid
106 */
107 return 0;
108 }
109
110 /* data/mgmt */
111 if (0 /* FIX: data/mgmt during CFP */)
Johannes Berg03f93c32008-06-25 14:36:27 +0300112 return cpu_to_le16(32768);
Johannes Berge2ebc742007-07-27 15:43:22 +0200113
114 if (group_addr) /* Group address as the destination - no ACK */
115 return 0;
116
117 /* Individual destination address:
118 * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
119 * CTS and ACK frames shall be transmitted using the highest rate in
120 * basic rate set that is less than or equal to the rate of the
121 * immediately previous frame and that is using the same modulation
122 * (CCK or OFDM). If no basic rate set matches with these requirements,
123 * the highest mandatory rate of the PHY that is less than or equal to
124 * the rate of the previous frame is used.
125 * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
126 */
127 rate = -1;
Johannes Berg8318d782008-01-24 19:38:38 +0100128 /* use lowest available if everything fails */
129 mrate = sband->bitrates[0].bitrate;
130 for (i = 0; i < sband->n_bitrates; i++) {
131 struct ieee80211_rate *r = &sband->bitrates[i];
132
133 if (r->bitrate > txrate->bitrate)
Johannes Berge2ebc742007-07-27 15:43:22 +0200134 break;
135
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200136 if ((rate_flags & r->flags) != rate_flags)
137 continue;
138
Johannes Bergbda39332008-10-11 01:51:51 +0200139 if (tx->sdata->vif.bss_conf.basic_rates & BIT(i))
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200140 rate = DIV_ROUND_UP(r->bitrate, 1 << shift);
Johannes Berge2ebc742007-07-27 15:43:22 +0200141
Johannes Berg8318d782008-01-24 19:38:38 +0100142 switch (sband->band) {
143 case IEEE80211_BAND_2GHZ: {
144 u32 flag;
145 if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
146 flag = IEEE80211_RATE_MANDATORY_G;
147 else
148 flag = IEEE80211_RATE_MANDATORY_B;
149 if (r->flags & flag)
150 mrate = r->bitrate;
151 break;
152 }
153 case IEEE80211_BAND_5GHZ:
154 if (r->flags & IEEE80211_RATE_MANDATORY_A)
155 mrate = r->bitrate;
156 break;
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +0300157 case IEEE80211_BAND_60GHZ:
158 /* TODO, for now fall through */
Johannes Berg8318d782008-01-24 19:38:38 +0100159 case IEEE80211_NUM_BANDS:
160 WARN_ON(1);
161 break;
162 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200163 }
164 if (rate == -1) {
165 /* No matching basic rate found; use highest suitable mandatory
166 * PHY rate */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200167 rate = DIV_ROUND_UP(mrate, 1 << shift);
Johannes Berge2ebc742007-07-27 15:43:22 +0200168 }
169
Simon Wunderlich6674f212011-11-21 21:34:30 +0100170 /* Don't calculate ACKs for QoS Frames with NoAck Policy set */
171 if (ieee80211_is_data_qos(hdr->frame_control) &&
Claudio Pisac26a0e12012-05-28 13:06:25 +0100172 *(ieee80211_get_qos_ctl(hdr)) & IEEE80211_QOS_CTL_ACK_POLICY_NOACK)
Simon Wunderlich6674f212011-11-21 21:34:30 +0100173 dur = 0;
174 else
175 /* Time needed to transmit ACK
176 * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
177 * to closest integer */
Michal Kazior4ee73f32012-04-11 08:47:56 +0200178 dur = ieee80211_frame_duration(sband->band, 10, rate, erp,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200179 tx->sdata->vif.bss_conf.use_short_preamble,
180 shift);
Johannes Berge2ebc742007-07-27 15:43:22 +0200181
182 if (next_frag_len) {
183 /* Frame is fragmented: duration increases with time needed to
184 * transmit next fragment plus ACK and 2 x SIFS. */
185 dur *= 2; /* ACK + SIFS */
186 /* next fragment */
Michal Kazior4ee73f32012-04-11 08:47:56 +0200187 dur += ieee80211_frame_duration(sband->band, next_frag_len,
Johannes Berg8318d782008-01-24 19:38:38 +0100188 txrate->bitrate, erp,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200189 tx->sdata->vif.bss_conf.use_short_preamble,
190 shift);
Johannes Berge2ebc742007-07-27 15:43:22 +0200191 }
192
Johannes Berg03f93c32008-06-25 14:36:27 +0300193 return cpu_to_le16(dur);
Johannes Berge2ebc742007-07-27 15:43:22 +0200194}
195
Johannes Berge2ebc742007-07-27 15:43:22 +0200196/* tx handlers */
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200197static ieee80211_tx_result debug_noinline
198ieee80211_tx_h_dynamic_ps(struct ieee80211_tx_data *tx)
199{
200 struct ieee80211_local *local = tx->local;
Kalle Valo0c742112010-01-12 10:42:53 +0200201 struct ieee80211_if_managed *ifmgd;
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200202
203 /* driver doesn't support power save */
204 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
205 return TX_CONTINUE;
206
207 /* hardware does dynamic power save */
208 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
209 return TX_CONTINUE;
210
211 /* dynamic power save disabled */
212 if (local->hw.conf.dynamic_ps_timeout <= 0)
213 return TX_CONTINUE;
214
215 /* we are scanning, don't enable power save */
216 if (local->scanning)
217 return TX_CONTINUE;
218
219 if (!local->ps_sdata)
220 return TX_CONTINUE;
221
222 /* No point if we're going to suspend */
223 if (local->quiescing)
224 return TX_CONTINUE;
225
Kalle Valo0c742112010-01-12 10:42:53 +0200226 /* dynamic ps is supported only in managed mode */
227 if (tx->sdata->vif.type != NL80211_IFTYPE_STATION)
228 return TX_CONTINUE;
229
230 ifmgd = &tx->sdata->u.mgd;
231
232 /*
233 * Don't wakeup from power save if u-apsd is enabled, voip ac has
234 * u-apsd enabled and the frame is in voip class. This effectively
235 * means that even if all access categories have u-apsd enabled, in
236 * practise u-apsd is only used with the voip ac. This is a
237 * workaround for the case when received voip class packets do not
238 * have correct qos tag for some reason, due the network or the
239 * peer application.
240 *
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200241 * Note: ifmgd->uapsd_queues access is racy here. If the value is
Kalle Valo0c742112010-01-12 10:42:53 +0200242 * changed via debugfs, user needs to reassociate manually to have
243 * everything in sync.
244 */
Johannes Berg4875d30d2012-03-27 14:18:37 +0200245 if ((ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED) &&
246 (ifmgd->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO) &&
247 skb_get_queue_mapping(tx->skb) == IEEE80211_AC_VO)
Kalle Valo0c742112010-01-12 10:42:53 +0200248 return TX_CONTINUE;
249
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200250 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
251 ieee80211_stop_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +0100252 IEEE80211_MAX_QUEUE_MAP,
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200253 IEEE80211_QUEUE_STOP_REASON_PS);
Vivek Natarajandb285692011-02-18 17:18:03 +0530254 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200255 ieee80211_queue_work(&local->hw,
256 &local->dynamic_ps_disable_work);
257 }
258
Luciano Coelho5db1c072011-05-03 21:40:08 +0300259 /* Don't restart the timer if we're not disassociated */
260 if (!ifmgd->associated)
261 return TX_CONTINUE;
262
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200263 mod_timer(&local->dynamic_ps_timer, jiffies +
264 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
265
266 return TX_CONTINUE;
267}
Johannes Berge2ebc742007-07-27 15:43:22 +0200268
Johannes Bergd9e8a702008-06-30 15:10:44 +0200269static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100270ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200271{
Harvey Harrison358c8d92008-07-15 18:44:13 -0700272
Johannes Berge039fa42008-05-15 12:55:29 +0200273 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200274 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200275 bool assoc = false;
Johannes Berge2ebc742007-07-27 15:43:22 +0200276
Johannes Berge039fa42008-05-15 12:55:29 +0200277 if (unlikely(info->flags & IEEE80211_TX_CTL_INJECTED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100278 return TX_CONTINUE;
Johannes Berg58d41852007-09-26 17:53:18 +0200279
Ben Greearb23b0252011-02-04 11:54:17 -0800280 if (unlikely(test_bit(SCAN_SW_SCANNING, &tx->local->scanning)) &&
281 test_bit(SDATA_STATE_OFFCHANNEL, &tx->sdata->state) &&
Kalle Valoa9a6fff2009-03-18 14:06:44 +0200282 !ieee80211_is_probe_req(hdr->frame_control) &&
283 !ieee80211_is_nullfunc(hdr->frame_control))
284 /*
285 * When software scanning only nullfunc frames (to notify
286 * the sleep state to the AP) and probe requests (for the
287 * active scan) are allowed, all other frames should not be
288 * sent and we should not get here, but if we do
289 * nonetheless, drop them to avoid sending them
290 * off-channel. See the link below and
291 * ieee80211_start_scan() for more.
292 *
293 * http://article.gmane.org/gmane.linux.kernel.wireless.general/30089
294 */
Johannes Berg9ae54c82008-01-31 19:48:20 +0100295 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200296
Bill Jordan1be7fe82010-10-01 11:20:41 -0400297 if (tx->sdata->vif.type == NL80211_IFTYPE_WDS)
298 return TX_CONTINUE;
299
Johannes Berg05c914f2008-09-11 00:01:58 +0200300 if (tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100301 return TX_CONTINUE;
302
Johannes Berg5cf121c2008-02-25 16:27:43 +0100303 if (tx->flags & IEEE80211_TX_PS_BUFFERED)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100304 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200305
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200306 if (tx->sta)
307 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
Johannes Berge2ebc742007-07-27 15:43:22 +0200308
Johannes Berg5cf121c2008-02-25 16:27:43 +0100309 if (likely(tx->flags & IEEE80211_TX_UNICAST)) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200310 if (unlikely(!assoc &&
Harvey Harrison358c8d92008-07-15 18:44:13 -0700311 ieee80211_is_data(hdr->frame_control))) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200312#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200313 sdata_info(tx->sdata,
314 "dropped data frame to not associated station %pM\n",
315 hdr->addr1);
316#endif
Johannes Berge2ebc742007-07-27 15:43:22 +0200317 I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100318 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200319 }
Johannes Berg29623892011-12-14 12:20:31 +0100320 } else if (unlikely(tx->sdata->vif.type == NL80211_IFTYPE_AP &&
321 ieee80211_is_data(hdr->frame_control) &&
Felix Fietkau030ef8f2012-04-23 19:49:02 +0200322 !atomic_read(&tx->sdata->u.ap.num_mcast_sta))) {
Johannes Berg29623892011-12-14 12:20:31 +0100323 /*
324 * No associated STAs - no need to send multicast
325 * frames.
326 */
327 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200328 }
329
Johannes Berg9ae54c82008-01-31 19:48:20 +0100330 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200331}
332
Johannes Berge2ebc742007-07-27 15:43:22 +0200333/* This function is called whenever the AP is about to exceed the maximum limit
334 * of buffered frames for power saving STAs. This situation should not really
335 * happen often during normal operation, so dropping the oldest buffered packet
336 * from each queue should be OK to make some room for new frames. */
337static void purge_old_ps_buffers(struct ieee80211_local *local)
338{
339 int total = 0, purged = 0;
340 struct sk_buff *skb;
341 struct ieee80211_sub_if_data *sdata;
342 struct sta_info *sta;
343
Johannes Berg79010422007-09-18 17:29:21 -0400344 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Marco Porschd012a602012-10-10 12:39:50 -0700345 struct ps_data *ps;
346
347 if (sdata->vif.type == NL80211_IFTYPE_AP)
348 ps = &sdata->u.ap.ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100349 else if (ieee80211_vif_is_mesh(&sdata->vif))
350 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -0700351 else
Johannes Berge2ebc742007-07-27 15:43:22 +0200352 continue;
Marco Porschd012a602012-10-10 12:39:50 -0700353
354 skb = skb_dequeue(&ps->bc_buf);
Johannes Berge2ebc742007-07-27 15:43:22 +0200355 if (skb) {
356 purged++;
357 dev_kfree_skb(skb);
358 }
Marco Porschd012a602012-10-10 12:39:50 -0700359 total += skb_queue_len(&ps->bc_buf);
Johannes Berge2ebc742007-07-27 15:43:22 +0200360 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200361
Johannes Berg948d8872011-09-29 16:04:29 +0200362 /*
363 * Drop one frame from each station from the lowest-priority
364 * AC that has frames at all.
365 */
Johannes Bergd0709a62008-02-25 16:27:46 +0100366 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Johannes Berg948d8872011-09-29 16:04:29 +0200367 int ac;
368
369 for (ac = IEEE80211_AC_BK; ac >= IEEE80211_AC_VO; ac--) {
370 skb = skb_dequeue(&sta->ps_tx_buf[ac]);
371 total += skb_queue_len(&sta->ps_tx_buf[ac]);
372 if (skb) {
373 purged++;
Felix Fietkauc3e77242012-10-08 14:39:33 +0200374 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg948d8872011-09-29 16:04:29 +0200375 break;
376 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200377 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200378 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100379
Johannes Berge2ebc742007-07-27 15:43:22 +0200380 local->total_ps_buffered = total;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200381 ps_dbg_hw(&local->hw, "PS buffers full - purged %d frames\n", purged);
Johannes Berge2ebc742007-07-27 15:43:22 +0200382}
383
Johannes Berg9ae54c82008-01-31 19:48:20 +0100384static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100385ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200386{
Johannes Berge039fa42008-05-15 12:55:29 +0200387 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Harvey Harrison358c8d92008-07-15 18:44:13 -0700388 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Marco Porschd012a602012-10-10 12:39:50 -0700389 struct ps_data *ps;
Johannes Berge039fa42008-05-15 12:55:29 +0200390
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100391 /*
392 * broadcast/multicast frame
393 *
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100394 * If any of the associated/peer stations is in power save mode,
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100395 * the frame is buffered to be sent after DTIM beacon frame.
396 * This is done either by the hardware or us.
397 */
398
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100399 /* powersaving STAs currently only in AP/VLAN/mesh mode */
Marco Porschd012a602012-10-10 12:39:50 -0700400 if (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
401 tx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
402 if (!tx->sdata->bss)
403 return TX_CONTINUE;
404
405 ps = &tx->sdata->bss->ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100406 } else if (ieee80211_vif_is_mesh(&tx->sdata->vif)) {
407 ps = &tx->sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -0700408 } else {
Johannes Berg3e122be2008-07-09 14:40:34 +0200409 return TX_CONTINUE;
Marco Porschd012a602012-10-10 12:39:50 -0700410 }
411
Johannes Berg3e122be2008-07-09 14:40:34 +0200412
413 /* no buffering for ordered frames */
Harvey Harrison358c8d92008-07-15 18:44:13 -0700414 if (ieee80211_has_order(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100415 return TX_CONTINUE;
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100416
Johannes Bergf4d57942013-05-28 17:24:15 +0200417 if (tx->local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
418 info->hw_queue = tx->sdata->vif.cab_queue;
419
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100420 /* no stations in PS mode */
Marco Porschd012a602012-10-10 12:39:50 -0700421 if (!atomic_read(&ps->num_sta_ps))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100422 return TX_CONTINUE;
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100423
Johannes Berg62b517c2009-10-29 12:19:21 +0100424 info->flags |= IEEE80211_TX_CTL_SEND_AFTER_DTIM;
Johannes Berg62b12082009-08-10 16:04:15 +0200425
Johannes Berg62b517c2009-10-29 12:19:21 +0100426 /* device releases frame after DTIM beacon */
427 if (!(tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING))
Johannes Berg62b12082009-08-10 16:04:15 +0200428 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200429
Johannes Berg62b12082009-08-10 16:04:15 +0200430 /* buffered in mac80211 */
431 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
432 purge_old_ps_buffers(tx->local);
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100433
Marco Porschd012a602012-10-10 12:39:50 -0700434 if (skb_queue_len(&ps->bc_buf) >= AP_MAX_BC_BUFFER) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200435 ps_dbg(tx->sdata,
436 "BC TX buffer full - dropping the oldest frame\n");
Marco Porschd012a602012-10-10 12:39:50 -0700437 dev_kfree_skb(skb_dequeue(&ps->bc_buf));
Johannes Berg62b12082009-08-10 16:04:15 +0200438 } else
439 tx->local->total_ps_buffered++;
440
Marco Porschd012a602012-10-10 12:39:50 -0700441 skb_queue_tail(&ps->bc_buf, tx->skb);
Johannes Berg62b12082009-08-10 16:04:15 +0200442
443 return TX_QUEUED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200444}
445
Jouni Malinenfb733332009-01-08 13:32:00 +0200446static int ieee80211_use_mfp(__le16 fc, struct sta_info *sta,
447 struct sk_buff *skb)
448{
449 if (!ieee80211_is_mgmt(fc))
450 return 0;
451
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200452 if (sta == NULL || !test_sta_flag(sta, WLAN_STA_MFP))
Jouni Malinenfb733332009-01-08 13:32:00 +0200453 return 0;
454
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100455 if (!ieee80211_is_robust_mgmt_frame(skb))
Jouni Malinenfb733332009-01-08 13:32:00 +0200456 return 0;
457
458 return 1;
459}
460
Johannes Berg9ae54c82008-01-31 19:48:20 +0100461static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100462ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200463{
464 struct sta_info *sta = tx->sta;
Johannes Berge039fa42008-05-15 12:55:29 +0200465 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300466 struct ieee80211_local *local = tx->local;
Johannes Berge2ebc742007-07-27 15:43:22 +0200467
Johannes Berg02f2f1a2012-02-27 12:18:30 +0100468 if (unlikely(!sta))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100469 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200470
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200471 if (unlikely((test_sta_flag(sta, WLAN_STA_PS_STA) ||
472 test_sta_flag(sta, WLAN_STA_PS_DRIVER)) &&
Johannes Berg02f2f1a2012-02-27 12:18:30 +0100473 !(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER))) {
Johannes Berg948d8872011-09-29 16:04:29 +0200474 int ac = skb_get_queue_mapping(tx->skb);
475
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200476 ps_dbg(sta->sdata, "STA %pM aid %d: PS buffer for AC %d\n",
477 sta->sta.addr, sta->sta.aid, ac);
Johannes Berge2ebc742007-07-27 15:43:22 +0200478 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
479 purge_old_ps_buffers(tx->local);
Johannes Berg948d8872011-09-29 16:04:29 +0200480 if (skb_queue_len(&sta->ps_tx_buf[ac]) >= STA_MAX_TX_BUFFER) {
481 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf[ac]);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200482 ps_dbg(tx->sdata,
483 "STA %pM TX buffer for AC %d full - dropping oldest frame\n",
484 sta->sta.addr, ac);
Felix Fietkauc3e77242012-10-08 14:39:33 +0200485 ieee80211_free_txskb(&local->hw, old);
Johannes Berge2ebc742007-07-27 15:43:22 +0200486 } else
487 tx->local->total_ps_buffered++;
Johannes Berg004c8722008-02-20 11:21:35 +0100488
Johannes Berge039fa42008-05-15 12:55:29 +0200489 info->control.jiffies = jiffies;
Johannes Berg5061b0c2009-07-14 00:33:34 +0200490 info->control.vif = &tx->sdata->vif;
Johannes Berg8f77f382009-06-07 21:58:37 +0200491 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
Johannes Berg03c8c062014-01-09 01:45:28 +0100492 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
Johannes Berg948d8872011-09-29 16:04:29 +0200493 skb_queue_tail(&sta->ps_tx_buf[ac], tx->skb);
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300494
495 if (!timer_pending(&local->sta_cleanup))
496 mod_timer(&local->sta_cleanup,
497 round_jiffies(jiffies +
498 STA_INFO_CLEANUP_INTERVAL));
499
Johannes Bergc868cb352011-09-29 16:04:27 +0200500 /*
501 * We queued up some frames, so the TIM bit might
502 * need to be set, recalculate it.
503 */
504 sta_info_recalc_tim(sta);
505
Johannes Berg9ae54c82008-01-31 19:48:20 +0100506 return TX_QUEUED;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200507 } else if (unlikely(test_sta_flag(sta, WLAN_STA_PS_STA))) {
508 ps_dbg(tx->sdata,
509 "STA %pM in PS mode, but polling/in SP -> send frame\n",
510 sta->sta.addr);
Johannes Berge2ebc742007-07-27 15:43:22 +0200511 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200512
Johannes Berg9ae54c82008-01-31 19:48:20 +0100513 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200514}
515
Johannes Bergd9e8a702008-06-30 15:10:44 +0200516static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100517ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200518{
Felix Fietkau277d9162013-12-16 21:39:50 +0100519 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
520 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
521
Johannes Berg5cf121c2008-02-25 16:27:43 +0100522 if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100523 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200524
Felix Fietkau277d9162013-12-16 21:39:50 +0100525 if (ieee80211_is_mgmt(hdr->frame_control) &&
Johannes Bergb4ba5442014-01-24 14:41:44 +0100526 !ieee80211_is_bufferable_mmpdu(hdr->frame_control)) {
Felix Fietkau277d9162013-12-16 21:39:50 +0100527 if (tx->flags & IEEE80211_TX_UNICAST)
528 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
529 return TX_CONTINUE;
530 }
531
Johannes Berg5cf121c2008-02-25 16:27:43 +0100532 if (tx->flags & IEEE80211_TX_UNICAST)
Johannes Berge2ebc742007-07-27 15:43:22 +0200533 return ieee80211_tx_h_unicast_ps_buf(tx);
534 else
535 return ieee80211_tx_h_multicast_ps_buf(tx);
536}
537
Johannes Bergd9e8a702008-06-30 15:10:44 +0200538static ieee80211_tx_result debug_noinline
Johannes Berga621fa42010-08-27 14:26:54 +0300539ieee80211_tx_h_check_control_port_protocol(struct ieee80211_tx_data *tx)
540{
541 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
542
Johannes Bergaf61a162013-07-02 18:09:12 +0200543 if (unlikely(tx->sdata->control_port_protocol == tx->skb->protocol)) {
544 if (tx->sdata->control_port_no_encrypt)
545 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
546 info->control.flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO;
547 }
Johannes Berga621fa42010-08-27 14:26:54 +0300548
549 return TX_CONTINUE;
550}
551
552static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100553ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200554{
Johannes Berg46e6de12012-07-04 18:10:07 +0200555 struct ieee80211_key *key;
Johannes Berge039fa42008-05-15 12:55:29 +0200556 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Harvey Harrison358c8d92008-07-15 18:44:13 -0700557 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400558
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200559 if (unlikely(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT))
Johannes Berge2ebc742007-07-27 15:43:22 +0200560 tx->key = NULL;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200561 else if (tx->sta &&
562 (key = rcu_dereference(tx->sta->ptk[tx->sta->ptk_idx])))
Johannes Bergd4e46a32007-09-14 11:10:24 -0400563 tx->key = key;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200564 else if (ieee80211_is_mgmt(hdr->frame_control) &&
Jouni Malinenecbcd322010-03-29 23:35:23 -0700565 is_multicast_ether_addr(hdr->addr1) &&
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100566 ieee80211_is_robust_mgmt_frame(tx->skb) &&
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200567 (key = rcu_dereference(tx->sdata->default_mgmt_key)))
568 tx->key = key;
Johannes Bergf7e01042010-12-09 19:49:02 +0100569 else if (is_multicast_ether_addr(hdr->addr1) &&
570 (key = rcu_dereference(tx->sdata->default_multicast_key)))
571 tx->key = key;
572 else if (!is_multicast_ether_addr(hdr->addr1) &&
573 (key = rcu_dereference(tx->sdata->default_unicast_key)))
Johannes Bergd4e46a32007-09-14 11:10:24 -0400574 tx->key = key;
Johannes Berg46e6de12012-07-04 18:10:07 +0200575 else if (info->flags & IEEE80211_TX_CTL_INJECTED)
576 tx->key = NULL;
577 else if (!tx->sdata->drop_unencrypted)
578 tx->key = NULL;
579 else if (tx->skb->protocol == tx->sdata->control_port_protocol)
580 tx->key = NULL;
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100581 else if (ieee80211_is_robust_mgmt_frame(tx->skb) &&
Johannes Berg46e6de12012-07-04 18:10:07 +0200582 !(ieee80211_is_action(hdr->frame_control) &&
583 tx->sta && test_sta_flag(tx->sta, WLAN_STA_MFP)))
584 tx->key = NULL;
Nicolas Cavallari4922f712012-07-04 18:10:08 +0200585 else if (ieee80211_is_mgmt(hdr->frame_control) &&
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100586 !ieee80211_is_robust_mgmt_frame(tx->skb))
Nicolas Cavallari4922f712012-07-04 18:10:08 +0200587 tx->key = NULL;
Johannes Berg46e6de12012-07-04 18:10:07 +0200588 else {
Johannes Berge2ebc742007-07-27 15:43:22 +0200589 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100590 return TX_DROP;
Johannes Berg46e6de12012-07-04 18:10:07 +0200591 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200592
593 if (tx->key) {
Johannes Berg813d7662010-01-17 01:47:58 +0100594 bool skip_hw = false;
595
Johannes Berge2ebc742007-07-27 15:43:22 +0200596 tx->key->tx_rx_count++;
Johannes Berg011bfcc2007-09-17 01:29:25 -0400597 /* TODO: add threshold stuff again */
Johannes Berg176e4f82007-12-18 15:27:47 +0100598
Johannes Berg97359d12010-08-10 09:46:38 +0200599 switch (tx->key->conf.cipher) {
600 case WLAN_CIPHER_SUITE_WEP40:
601 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berg97359d12010-08-10 09:46:38 +0200602 case WLAN_CIPHER_SUITE_TKIP:
Harvey Harrison358c8d92008-07-15 18:44:13 -0700603 if (!ieee80211_is_data_present(hdr->frame_control))
Johannes Berg176e4f82007-12-18 15:27:47 +0100604 tx->key = NULL;
605 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200606 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinenfb733332009-01-08 13:32:00 +0200607 if (!ieee80211_is_data_present(hdr->frame_control) &&
608 !ieee80211_use_mfp(hdr->frame_control, tx->sta,
609 tx->skb))
610 tx->key = NULL;
Kalle Valo3b43a182010-01-23 20:27:14 +0200611 else
612 skip_hw = (tx->key->conf.flags &
Johannes Berge548c492012-09-04 17:08:23 +0200613 IEEE80211_KEY_FLAG_SW_MGMT_TX) &&
Kalle Valo3b43a182010-01-23 20:27:14 +0200614 ieee80211_is_mgmt(hdr->frame_control);
Jouni Malinenfb733332009-01-08 13:32:00 +0200615 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200616 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200617 if (!ieee80211_is_mgmt(hdr->frame_control))
618 tx->key = NULL;
619 break;
Johannes Berg176e4f82007-12-18 15:27:47 +0100620 }
Johannes Berg813d7662010-01-17 01:47:58 +0100621
Johannes Berge54faf22013-01-29 11:41:38 +0100622 if (unlikely(tx->key && tx->key->flags & KEY_FLAG_TAINTED &&
623 !ieee80211_is_deauth(hdr->frame_control)))
Johannes Berg95acac62011-07-12 12:30:59 +0200624 return TX_DROP;
625
Johannes Bergf12553e2010-01-22 22:07:59 +0100626 if (!skip_hw && tx->key &&
Johannes Berg382b1652010-01-25 11:36:16 +0100627 tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
Johannes Berg813d7662010-01-17 01:47:58 +0100628 info->control.hw_key = &tx->key->conf;
Johannes Berge2ebc742007-07-27 15:43:22 +0200629 }
630
Johannes Berg9ae54c82008-01-31 19:48:20 +0100631 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200632}
633
Johannes Bergd9e8a702008-06-30 15:10:44 +0200634static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100635ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200636{
Johannes Berge039fa42008-05-15 12:55:29 +0200637 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200638 struct ieee80211_hdr *hdr = (void *)tx->skb->data;
639 struct ieee80211_supported_band *sband;
Shanyu Zhaoa2c40242010-04-27 11:15:12 -0700640 u32 len;
Johannes Berge6a98542008-10-21 12:40:02 +0200641 struct ieee80211_tx_rate_control txrc;
Felix Fietkau0d528d82013-04-22 16:14:41 +0200642 struct ieee80211_sta_rates *ratetbl = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200643 bool assoc = false;
Johannes Berge6a98542008-10-21 12:40:02 +0200644
645 memset(&txrc, 0, sizeof(txrc));
Johannes Berg8318d782008-01-24 19:38:38 +0100646
Johannes Berg2d565772012-07-23 15:12:51 +0200647 sband = tx->local->hw.wiphy->bands[info->band];
Johannes Berge2ebc742007-07-27 15:43:22 +0200648
Shanyu Zhaoa2c40242010-04-27 11:15:12 -0700649 len = min_t(u32, tx->skb->len + FCS_LEN,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200650 tx->local->hw.wiphy->frag_threshold);
Johannes Berg58d41852007-09-26 17:53:18 +0200651
Johannes Berge6a98542008-10-21 12:40:02 +0200652 /* set up the tx rate control struct we give the RC algo */
Johannes Berg005e4722012-02-26 11:24:35 +0100653 txrc.hw = &tx->local->hw;
Johannes Berge6a98542008-10-21 12:40:02 +0200654 txrc.sband = sband;
655 txrc.bss_conf = &tx->sdata->vif.bss_conf;
656 txrc.skb = tx->skb;
657 txrc.reported_rate.idx = -1;
Johannes Berg2d565772012-07-23 15:12:51 +0200658 txrc.rate_idx_mask = tx->sdata->rc_rateidx_mask[info->band];
Jouni Malinen37eb0b12010-01-06 13:09:08 +0200659 if (txrc.rate_idx_mask == (1 << sband->n_bitrates) - 1)
660 txrc.max_rate_idx = -1;
661 else
662 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +0200663
664 if (tx->sdata->rc_has_mcs_mask[info->band])
665 txrc.rate_idx_mcs_mask =
666 tx->sdata->rc_rateidx_mcs_mask[info->band];
667
Felix Fietkau8f0729b2010-11-11 15:07:23 +0100668 txrc.bss = (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -0800669 tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT ||
Felix Fietkau8f0729b2010-11-11 15:07:23 +0100670 tx->sdata->vif.type == NL80211_IFTYPE_ADHOC);
Johannes Berg58d41852007-09-26 17:53:18 +0200671
Johannes Berge6a98542008-10-21 12:40:02 +0200672 /* set up RTS protection if desired */
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200673 if (len > tx->local->hw.wiphy->rts_threshold) {
Felix Fietkau0d528d82013-04-22 16:14:41 +0200674 txrc.rts = true;
Johannes Berge2ebc742007-07-27 15:43:22 +0200675 }
Johannes Berge6a98542008-10-21 12:40:02 +0200676
Felix Fietkau0d528d82013-04-22 16:14:41 +0200677 info->control.use_rts = txrc.rts;
Felix Fietkau991fec02013-04-16 13:38:43 +0200678 info->control.use_cts_prot = tx->sdata->vif.bss_conf.use_cts_prot;
679
Johannes Berge6a98542008-10-21 12:40:02 +0200680 /*
681 * Use short preamble if the BSS can handle it, but not for
682 * management frames unless we know the receiver can handle
683 * that -- the management frame might be to a station that
684 * just wants a probe response.
685 */
686 if (tx->sdata->vif.bss_conf.use_short_preamble &&
687 (ieee80211_is_data(hdr->frame_control) ||
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200688 (tx->sta && test_sta_flag(tx->sta, WLAN_STA_SHORT_PREAMBLE))))
Felix Fietkau0d528d82013-04-22 16:14:41 +0200689 txrc.short_preamble = true;
690
691 info->control.short_preamble = txrc.short_preamble;
Johannes Berge6a98542008-10-21 12:40:02 +0200692
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200693 if (tx->sta)
694 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
Johannes Berge6a98542008-10-21 12:40:02 +0200695
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700696 /*
697 * Lets not bother rate control if we're associated and cannot
698 * talk to the sta. This should not happen.
699 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200700 if (WARN(test_bit(SCAN_SW_SCANNING, &tx->local->scanning) && assoc &&
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700701 !rate_usable_index_exists(sband, &tx->sta->sta),
702 "%s: Dropped data frame as no usable bitrate found while "
703 "scanning and associated. Target station: "
704 "%pM on %d GHz band\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100705 tx->sdata->name, hdr->addr1,
Johannes Berg2d565772012-07-23 15:12:51 +0200706 info->band ? 5 : 2))
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700707 return TX_DROP;
708
709 /*
710 * If we're associated with the sta at this point we know we can at
711 * least send the frame at the lowest bit rate.
712 */
Johannes Berge6a98542008-10-21 12:40:02 +0200713 rate_control_get_rate(tx->sdata, tx->sta, &txrc);
714
Felix Fietkau0d528d82013-04-22 16:14:41 +0200715 if (tx->sta && !info->control.skip_table)
716 ratetbl = rcu_dereference(tx->sta->sta.rates);
717
718 if (unlikely(info->control.rates[0].idx < 0)) {
719 if (ratetbl) {
720 struct ieee80211_tx_rate rate = {
721 .idx = ratetbl->rate[0].idx,
722 .flags = ratetbl->rate[0].flags,
723 .count = ratetbl->rate[0].count
724 };
725
726 if (ratetbl->rate[0].idx < 0)
727 return TX_DROP;
728
729 tx->rate = rate;
730 } else {
731 return TX_DROP;
732 }
733 } else {
734 tx->rate = info->control.rates[0];
735 }
Johannes Berge6a98542008-10-21 12:40:02 +0200736
Helmut Schaac1ce5a72010-12-01 16:34:45 +0100737 if (txrc.reported_rate.idx < 0) {
Felix Fietkau0d528d82013-04-22 16:14:41 +0200738 txrc.reported_rate = tx->rate;
Helmut Schaac1ce5a72010-12-01 16:34:45 +0100739 if (tx->sta && ieee80211_is_data(hdr->frame_control))
740 tx->sta->last_tx_rate = txrc.reported_rate;
741 } else if (tx->sta)
Johannes Berge6a98542008-10-21 12:40:02 +0200742 tx->sta->last_tx_rate = txrc.reported_rate;
743
Felix Fietkau0d528d82013-04-22 16:14:41 +0200744 if (ratetbl)
745 return TX_CONTINUE;
746
Johannes Berge6a98542008-10-21 12:40:02 +0200747 if (unlikely(!info->control.rates[0].count))
748 info->control.rates[0].count = 1;
749
Gábor Stefanik99551512009-04-23 19:36:14 +0200750 if (WARN_ON_ONCE((info->control.rates[0].count > 1) &&
751 (info->flags & IEEE80211_TX_CTL_NO_ACK)))
752 info->control.rates[0].count = 1;
753
Johannes Berg9ae54c82008-01-31 19:48:20 +0100754 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200755}
756
Johannes Bergd9e8a702008-06-30 15:10:44 +0200757static ieee80211_tx_result debug_noinline
Johannes Bergf591fa52008-07-10 11:21:26 +0200758ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
759{
760 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
761 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
762 u16 *seq;
763 u8 *qc;
764 int tid;
765
Johannes Berg25d834e2008-09-12 22:52:47 +0200766 /*
767 * Packet injection may want to control the sequence
768 * number, if we have no matching interface then we
769 * neither assign one ourselves nor ask the driver to.
770 */
Johannes Berg5061b0c2009-07-14 00:33:34 +0200771 if (unlikely(info->control.vif->type == NL80211_IFTYPE_MONITOR))
Johannes Berg25d834e2008-09-12 22:52:47 +0200772 return TX_CONTINUE;
773
Johannes Bergf591fa52008-07-10 11:21:26 +0200774 if (unlikely(ieee80211_is_ctl(hdr->frame_control)))
775 return TX_CONTINUE;
776
777 if (ieee80211_hdrlen(hdr->frame_control) < 24)
778 return TX_CONTINUE;
779
Johannes Berg49a59542011-09-29 16:04:41 +0200780 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
781 return TX_CONTINUE;
782
Johannes Berg94778282008-10-10 13:21:59 +0200783 /*
784 * Anything but QoS data that has a sequence number field
785 * (is long enough) gets a sequence number from the global
Bob Copelandc4c205f2013-08-23 09:35:38 -0400786 * counter. QoS data frames with a multicast destination
787 * also use the global counter (802.11-2012 9.3.2.10).
Johannes Berg94778282008-10-10 13:21:59 +0200788 */
Bob Copelandc4c205f2013-08-23 09:35:38 -0400789 if (!ieee80211_is_data_qos(hdr->frame_control) ||
790 is_multicast_ether_addr(hdr->addr1)) {
Johannes Berg94778282008-10-10 13:21:59 +0200791 /* driver should assign sequence number */
Johannes Bergf591fa52008-07-10 11:21:26 +0200792 info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
Johannes Berg94778282008-10-10 13:21:59 +0200793 /* for pure STA mode without beacons, we can do it */
794 hdr->seq_ctrl = cpu_to_le16(tx->sdata->sequence_number);
795 tx->sdata->sequence_number += 0x10;
Johannes Bergf591fa52008-07-10 11:21:26 +0200796 return TX_CONTINUE;
797 }
798
799 /*
800 * This should be true for injected/management frames only, for
801 * management frames we have set the IEEE80211_TX_CTL_ASSIGN_SEQ
802 * above since they are not QoS-data frames.
803 */
804 if (!tx->sta)
805 return TX_CONTINUE;
806
807 /* include per-STA, per-TID sequence counter */
808
809 qc = ieee80211_get_qos_ctl(hdr);
810 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
811 seq = &tx->sta->tid_seq[tid];
812
813 hdr->seq_ctrl = cpu_to_le16(*seq);
814
815 /* Increase the sequence number. */
816 *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ;
817
818 return TX_CONTINUE;
819}
820
Johannes Berg252b86c2011-11-16 15:28:55 +0100821static int ieee80211_fragment(struct ieee80211_tx_data *tx,
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100822 struct sk_buff *skb, int hdrlen,
823 int frag_threshold)
824{
Johannes Berg252b86c2011-11-16 15:28:55 +0100825 struct ieee80211_local *local = tx->local;
Johannes Berga1a3fce2011-11-16 15:28:56 +0100826 struct ieee80211_tx_info *info;
Johannes Berg252b86c2011-11-16 15:28:55 +0100827 struct sk_buff *tmp;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100828 int per_fragm = frag_threshold - hdrlen - FCS_LEN;
829 int pos = hdrlen + per_fragm;
830 int rem = skb->len - hdrlen - per_fragm;
831
832 if (WARN_ON(rem < 0))
833 return -EINVAL;
834
Johannes Berg252b86c2011-11-16 15:28:55 +0100835 /* first fragment was already added to queue by caller */
836
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100837 while (rem) {
838 int fraglen = per_fragm;
839
840 if (fraglen > rem)
841 fraglen = rem;
842 rem -= fraglen;
843 tmp = dev_alloc_skb(local->tx_headroom +
844 frag_threshold +
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200845 tx->sdata->encrypt_headroom +
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100846 IEEE80211_ENCRYPT_TAILROOM);
847 if (!tmp)
848 return -ENOMEM;
Johannes Berg252b86c2011-11-16 15:28:55 +0100849
850 __skb_queue_tail(&tx->skbs, tmp);
851
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200852 skb_reserve(tmp,
853 local->tx_headroom + tx->sdata->encrypt_headroom);
854
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100855 /* copy control information */
856 memcpy(tmp->cb, skb->cb, sizeof(tmp->cb));
Johannes Berga1a3fce2011-11-16 15:28:56 +0100857
858 info = IEEE80211_SKB_CB(tmp);
859 info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT |
860 IEEE80211_TX_CTL_FIRST_FRAGMENT);
861
862 if (rem)
863 info->flags |= IEEE80211_TX_CTL_MORE_FRAMES;
864
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100865 skb_copy_queue_mapping(tmp, skb);
866 tmp->priority = skb->priority;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100867 tmp->dev = skb->dev;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100868
869 /* copy header and data */
870 memcpy(skb_put(tmp, hdrlen), skb->data, hdrlen);
871 memcpy(skb_put(tmp, fraglen), skb->data + pos, fraglen);
872
873 pos += fraglen;
874 }
875
Johannes Berg252b86c2011-11-16 15:28:55 +0100876 /* adjust first fragment's length */
Johannes Berg338f9772014-02-01 00:16:23 +0100877 skb_trim(skb, hdrlen + per_fragm);
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100878 return 0;
879}
880
Johannes Bergf591fa52008-07-10 11:21:26 +0200881static ieee80211_tx_result debug_noinline
Johannes Berge2454942008-05-15 12:55:28 +0200882ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
883{
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100884 struct sk_buff *skb = tx->skb;
885 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
886 struct ieee80211_hdr *hdr = (void *)skb->data;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200887 int frag_threshold = tx->local->hw.wiphy->frag_threshold;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100888 int hdrlen;
889 int fragnum;
Johannes Berge2454942008-05-15 12:55:28 +0200890
Johannes Berg252b86c2011-11-16 15:28:55 +0100891 /* no matter what happens, tx->skb moves to tx->skbs */
892 __skb_queue_tail(&tx->skbs, skb);
893 tx->skb = NULL;
894
Johannes Berga26eb272011-10-07 14:01:25 +0200895 if (info->flags & IEEE80211_TX_CTL_DONTFRAG)
896 return TX_CONTINUE;
897
898 if (tx->local->ops->set_frag_threshold)
Johannes Berge2454942008-05-15 12:55:28 +0200899 return TX_CONTINUE;
900
Johannes Bergeefce912008-05-17 00:57:13 +0200901 /*
902 * Warn when submitting a fragmented A-MPDU frame and drop it.
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200903 * This scenario is handled in ieee80211_tx_prepare but extra
Ron Rindjunsky8d5e0d52008-06-12 15:42:29 +0300904 * caution taken here as fragmented ampdu may cause Tx stop.
Johannes Bergeefce912008-05-17 00:57:13 +0200905 */
Sujith8b30b1f2008-10-24 09:55:27 +0530906 if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU))
Johannes Bergeefce912008-05-17 00:57:13 +0200907 return TX_DROP;
908
Harvey Harrison065e96052008-06-22 16:45:27 -0700909 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berge2454942008-05-15 12:55:28 +0200910
Johannes Berga26eb272011-10-07 14:01:25 +0200911 /* internal error, why isn't DONTFRAG set? */
Johannes Berg8ccd8f22009-04-29 23:35:56 +0200912 if (WARN_ON(skb->len + FCS_LEN <= frag_threshold))
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100913 return TX_DROP;
Johannes Berge2454942008-05-15 12:55:28 +0200914
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100915 /*
916 * Now fragment the frame. This will allocate all the fragments and
917 * chain them (using skb as the first fragment) to skb->next.
918 * During transmission, we will remove the successfully transmitted
919 * fragments from this list. When the low-level driver rejects one
920 * of the fragments then we will simply pretend to accept the skb
921 * but store it away as pending.
922 */
Johannes Berg252b86c2011-11-16 15:28:55 +0100923 if (ieee80211_fragment(tx, skb, hdrlen, frag_threshold))
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100924 return TX_DROP;
Johannes Berge2454942008-05-15 12:55:28 +0200925
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100926 /* update duration/seq/flags of fragments */
927 fragnum = 0;
Johannes Berg252b86c2011-11-16 15:28:55 +0100928
929 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100930 const __le16 morefrags = cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
Johannes Berge2454942008-05-15 12:55:28 +0200931
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100932 hdr = (void *)skb->data;
933 info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200934
Johannes Berg252b86c2011-11-16 15:28:55 +0100935 if (!skb_queue_is_last(&tx->skbs, skb)) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100936 hdr->frame_control |= morefrags;
Johannes Berge6a98542008-10-21 12:40:02 +0200937 /*
938 * No multi-rate retries for fragmented frames, that
939 * would completely throw off the NAV at other STAs.
940 */
941 info->control.rates[1].idx = -1;
942 info->control.rates[2].idx = -1;
943 info->control.rates[3].idx = -1;
Thomas Huehne3e1a0b2012-07-02 19:46:16 +0200944 BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 4);
Johannes Berge6a98542008-10-21 12:40:02 +0200945 info->flags &= ~IEEE80211_TX_CTL_RATE_CTRL_PROBE;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100946 } else {
947 hdr->frame_control &= ~morefrags;
Johannes Berge6a98542008-10-21 12:40:02 +0200948 }
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100949 hdr->seq_ctrl |= cpu_to_le16(fragnum & IEEE80211_SCTL_FRAG);
950 fragnum++;
Johannes Berg252b86c2011-11-16 15:28:55 +0100951 }
Johannes Berge2454942008-05-15 12:55:28 +0200952
953 return TX_CONTINUE;
Johannes Berge2454942008-05-15 12:55:28 +0200954}
955
Johannes Bergd9e8a702008-06-30 15:10:44 +0200956static ieee80211_tx_result debug_noinline
Johannes Bergfeff1f22009-08-10 16:01:54 +0200957ieee80211_tx_h_stats(struct ieee80211_tx_data *tx)
958{
Johannes Berg252b86c2011-11-16 15:28:55 +0100959 struct sk_buff *skb;
Johannes Berg560d2682013-02-05 10:55:21 +0100960 int ac = -1;
Johannes Bergfeff1f22009-08-10 16:01:54 +0200961
962 if (!tx->sta)
963 return TX_CONTINUE;
964
Johannes Berg252b86c2011-11-16 15:28:55 +0100965 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg560d2682013-02-05 10:55:21 +0100966 ac = skb_get_queue_mapping(skb);
Johannes Bergfeff1f22009-08-10 16:01:54 +0200967 tx->sta->tx_fragments++;
Johannes Berg560d2682013-02-05 10:55:21 +0100968 tx->sta->tx_bytes[ac] += skb->len;
Johannes Berg252b86c2011-11-16 15:28:55 +0100969 }
Johannes Berg560d2682013-02-05 10:55:21 +0100970 if (ac >= 0)
971 tx->sta->tx_packets[ac]++;
Johannes Bergfeff1f22009-08-10 16:01:54 +0200972
973 return TX_CONTINUE;
974}
975
976static ieee80211_tx_result debug_noinline
Johannes Berge2454942008-05-15 12:55:28 +0200977ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
978{
979 if (!tx->key)
980 return TX_CONTINUE;
981
Johannes Berg97359d12010-08-10 09:46:38 +0200982 switch (tx->key->conf.cipher) {
983 case WLAN_CIPHER_SUITE_WEP40:
984 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berge2454942008-05-15 12:55:28 +0200985 return ieee80211_crypto_wep_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +0200986 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berge2454942008-05-15 12:55:28 +0200987 return ieee80211_crypto_tkip_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +0200988 case WLAN_CIPHER_SUITE_CCMP:
Johannes Berge2454942008-05-15 12:55:28 +0200989 return ieee80211_crypto_ccmp_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +0200990 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200991 return ieee80211_crypto_aes_cmac_encrypt(tx);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300992 default:
Yoni Divinskyd32a1022012-01-16 15:18:59 +0200993 return ieee80211_crypto_hw_encrypt(tx);
Johannes Berge2454942008-05-15 12:55:28 +0200994 }
995
Johannes Berge2454942008-05-15 12:55:28 +0200996 return TX_DROP;
997}
998
Johannes Bergd9e8a702008-06-30 15:10:44 +0200999static ieee80211_tx_result debug_noinline
Johannes Berg03f93c32008-06-25 14:36:27 +03001000ieee80211_tx_h_calculate_duration(struct ieee80211_tx_data *tx)
1001{
Johannes Berg252b86c2011-11-16 15:28:55 +01001002 struct sk_buff *skb;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001003 struct ieee80211_hdr *hdr;
1004 int next_len;
1005 bool group_addr;
Johannes Berg03f93c32008-06-25 14:36:27 +03001006
Johannes Berg252b86c2011-11-16 15:28:55 +01001007 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001008 hdr = (void *) skb->data;
Jouni Malinen7e0aae42009-05-19 19:25:58 +03001009 if (unlikely(ieee80211_is_pspoll(hdr->frame_control)))
1010 break; /* must not overwrite AID */
Johannes Berg252b86c2011-11-16 15:28:55 +01001011 if (!skb_queue_is_last(&tx->skbs, skb)) {
1012 struct sk_buff *next = skb_queue_next(&tx->skbs, skb);
1013 next_len = next->len;
1014 } else
1015 next_len = 0;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001016 group_addr = is_multicast_ether_addr(hdr->addr1);
Johannes Berg03f93c32008-06-25 14:36:27 +03001017
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001018 hdr->duration_id =
Johannes Berg252b86c2011-11-16 15:28:55 +01001019 ieee80211_duration(tx, skb, group_addr, next_len);
1020 }
Johannes Berg03f93c32008-06-25 14:36:27 +03001021
1022 return TX_CONTINUE;
1023}
1024
Johannes Berge2ebc742007-07-27 15:43:22 +02001025/* actual transmit path */
1026
Johannes Berga622ab72010-06-10 10:21:39 +02001027static bool ieee80211_tx_prep_agg(struct ieee80211_tx_data *tx,
1028 struct sk_buff *skb,
1029 struct ieee80211_tx_info *info,
1030 struct tid_ampdu_tx *tid_tx,
1031 int tid)
1032{
1033 bool queued = false;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001034 bool reset_agg_timer = false;
Helmut Schaaaa454582012-03-07 17:20:30 +01001035 struct sk_buff *purge_skb = NULL;
Johannes Berga622ab72010-06-10 10:21:39 +02001036
1037 if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1038 info->flags |= IEEE80211_TX_CTL_AMPDU;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001039 reset_agg_timer = true;
Johannes Berg0ab33702010-06-10 10:21:42 +02001040 } else if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
1041 /*
1042 * nothing -- this aggregation session is being started
1043 * but that might still fail with the driver
1044 */
Johannes Berga622ab72010-06-10 10:21:39 +02001045 } else {
1046 spin_lock(&tx->sta->lock);
1047 /*
1048 * Need to re-check now, because we may get here
1049 *
1050 * 1) in the window during which the setup is actually
1051 * already done, but not marked yet because not all
1052 * packets are spliced over to the driver pending
1053 * queue yet -- if this happened we acquire the lock
1054 * either before or after the splice happens, but
1055 * need to recheck which of these cases happened.
1056 *
1057 * 2) during session teardown, if the OPERATIONAL bit
1058 * was cleared due to the teardown but the pointer
1059 * hasn't been assigned NULL yet (or we loaded it
1060 * before it was assigned) -- in this case it may
1061 * now be NULL which means we should just let the
1062 * packet pass through because splicing the frames
1063 * back is already done.
1064 */
Johannes Berg40b275b2011-05-13 14:15:49 +02001065 tid_tx = rcu_dereference_protected_tid_tx(tx->sta, tid);
Johannes Berga622ab72010-06-10 10:21:39 +02001066
1067 if (!tid_tx) {
1068 /* do nothing, let packet pass through */
1069 } else if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1070 info->flags |= IEEE80211_TX_CTL_AMPDU;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001071 reset_agg_timer = true;
Johannes Berga622ab72010-06-10 10:21:39 +02001072 } else {
1073 queued = true;
1074 info->control.vif = &tx->sdata->vif;
1075 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
Johannes Berg03c8c062014-01-09 01:45:28 +01001076 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
Johannes Berga622ab72010-06-10 10:21:39 +02001077 __skb_queue_tail(&tid_tx->pending, skb);
Helmut Schaaaa454582012-03-07 17:20:30 +01001078 if (skb_queue_len(&tid_tx->pending) > STA_MAX_TX_BUFFER)
1079 purge_skb = __skb_dequeue(&tid_tx->pending);
Johannes Berga622ab72010-06-10 10:21:39 +02001080 }
1081 spin_unlock(&tx->sta->lock);
Helmut Schaaaa454582012-03-07 17:20:30 +01001082
1083 if (purge_skb)
Felix Fietkauc3e77242012-10-08 14:39:33 +02001084 ieee80211_free_txskb(&tx->local->hw, purge_skb);
Johannes Berga622ab72010-06-10 10:21:39 +02001085 }
1086
Nikolay Martynov285fa692011-11-22 21:50:28 -05001087 /* reset session timer */
1088 if (reset_agg_timer && tid_tx->timeout)
Felix Fietkau12d3952f2012-03-18 22:58:06 +01001089 tid_tx->last_tx = jiffies;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001090
Johannes Berga622ab72010-06-10 10:21:39 +02001091 return queued;
1092}
1093
Johannes Berg58d41852007-09-26 17:53:18 +02001094/*
1095 * initialises @tx
1096 */
Johannes Berg9ae54c82008-01-31 19:48:20 +01001097static ieee80211_tx_result
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001098ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
1099 struct ieee80211_tx_data *tx,
1100 struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +02001101{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001102 struct ieee80211_local *local = sdata->local;
Johannes Berg58d41852007-09-26 17:53:18 +02001103 struct ieee80211_hdr *hdr;
Johannes Berge039fa42008-05-15 12:55:29 +02001104 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg68f2b512011-10-07 14:01:24 +02001105 int tid;
Johannes Berga622ab72010-06-10 10:21:39 +02001106 u8 *qc;
Johannes Berge2ebc742007-07-27 15:43:22 +02001107
1108 memset(tx, 0, sizeof(*tx));
1109 tx->skb = skb;
Johannes Berge2ebc742007-07-27 15:43:22 +02001110 tx->local = local;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001111 tx->sdata = sdata;
Johannes Berg252b86c2011-11-16 15:28:55 +01001112 __skb_queue_head_init(&tx->skbs);
Johannes Berge2ebc742007-07-27 15:43:22 +02001113
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001114 /*
1115 * If this flag is set to true anywhere, and we get here,
1116 * we are doing the needed processing, so remove the flag
1117 * now.
1118 */
1119 info->flags &= ~IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1120
Johannes Berg58d41852007-09-26 17:53:18 +02001121 hdr = (struct ieee80211_hdr *) skb->data;
1122
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001123 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001124 tx->sta = rcu_dereference(sdata->u.vlan.sta);
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001125 if (!tx->sta && sdata->dev->ieee80211_ptr->use_4addr)
1126 return TX_DROP;
Felix Fietkau03bb7f42013-09-29 21:39:33 +02001127 } else if (info->flags & (IEEE80211_TX_CTL_INJECTED |
1128 IEEE80211_TX_INTFL_NL80211_FRAME_TX) ||
Felix Fietkau66f2c992012-04-29 15:44:16 +02001129 tx->sdata->control_port_protocol == tx->skb->protocol) {
Felix Fietkaub4d57ad2010-01-31 23:25:24 +01001130 tx->sta = sta_info_get_bss(sdata, hdr->addr1);
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001131 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001132 if (!tx->sta)
Johannes Bergabe60632009-11-25 17:46:18 +01001133 tx->sta = sta_info_get(sdata, hdr->addr1);
Johannes Berg58d41852007-09-26 17:53:18 +02001134
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001135 if (tx->sta && ieee80211_is_data_qos(hdr->frame_control) &&
Johannes Berg49a59542011-09-29 16:04:41 +02001136 !ieee80211_is_qos_nullfunc(hdr->frame_control) &&
Arik Nemtsovedf6b782011-08-30 09:32:38 +03001137 (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION) &&
1138 !(local->hw.flags & IEEE80211_HW_TX_AMPDU_SETUP_IN_HW)) {
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001139 struct tid_ampdu_tx *tid_tx;
1140
Sujith8b30b1f2008-10-24 09:55:27 +05301141 qc = ieee80211_get_qos_ctl(hdr);
1142 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
1143
Johannes Berga622ab72010-06-10 10:21:39 +02001144 tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]);
1145 if (tid_tx) {
1146 bool queued;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001147
Johannes Berga622ab72010-06-10 10:21:39 +02001148 queued = ieee80211_tx_prep_agg(tx, skb, info,
1149 tid_tx, tid);
1150
1151 if (unlikely(queued))
1152 return TX_QUEUED;
1153 }
Sujith8b30b1f2008-10-24 09:55:27 +05301154 }
1155
Jiri Slabybadffb72007-08-28 17:01:54 -04001156 if (is_multicast_ether_addr(hdr->addr1)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001157 tx->flags &= ~IEEE80211_TX_UNICAST;
Johannes Berge039fa42008-05-15 12:55:29 +02001158 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Simon Wunderlich6fd67e92011-11-18 14:20:42 +01001159 } else
Johannes Berg5cf121c2008-02-25 16:27:43 +01001160 tx->flags |= IEEE80211_TX_UNICAST;
Johannes Berg58d41852007-09-26 17:53:18 +02001161
Johannes Berga26eb272011-10-07 14:01:25 +02001162 if (!(info->flags & IEEE80211_TX_CTL_DONTFRAG)) {
1163 if (!(tx->flags & IEEE80211_TX_UNICAST) ||
1164 skb->len + FCS_LEN <= local->hw.wiphy->frag_threshold ||
1165 info->flags & IEEE80211_TX_CTL_AMPDU)
1166 info->flags |= IEEE80211_TX_CTL_DONTFRAG;
Johannes Berg58d41852007-09-26 17:53:18 +02001167 }
1168
Johannes Berge2ebc742007-07-27 15:43:22 +02001169 if (!tx->sta)
Johannes Berge039fa42008-05-15 12:55:29 +02001170 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001171 else if (test_and_clear_sta_flag(tx->sta, WLAN_STA_CLEAR_PS_FILT))
Johannes Berge039fa42008-05-15 12:55:29 +02001172 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
Johannes Berg58d41852007-09-26 17:53:18 +02001173
Johannes Berge039fa42008-05-15 12:55:29 +02001174 info->flags |= IEEE80211_TX_CTL_FIRST_FRAGMENT;
Johannes Berge2ebc742007-07-27 15:43:22 +02001175
Johannes Berg9ae54c82008-01-31 19:48:20 +01001176 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +02001177}
1178
Johannes Berg11127e92011-11-16 16:02:47 +01001179static bool ieee80211_tx_frags(struct ieee80211_local *local,
1180 struct ieee80211_vif *vif,
1181 struct ieee80211_sta *sta,
1182 struct sk_buff_head *skbs,
1183 bool txpending)
Johannes Berge2ebc742007-07-27 15:43:22 +02001184{
Thomas Huehn36323f82012-07-23 21:33:42 +02001185 struct ieee80211_tx_control control;
Johannes Berg252b86c2011-11-16 15:28:55 +01001186 struct sk_buff *skb, *tmp;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001187 unsigned long flags;
Johannes Berge2ebc742007-07-27 15:43:22 +02001188
Johannes Berg252b86c2011-11-16 15:28:55 +01001189 skb_queue_walk_safe(skbs, skb, tmp) {
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001190 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1191 int q = info->hw_queue;
1192
1193#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1194 if (WARN_ON_ONCE(q >= local->hw.queues)) {
1195 __skb_unlink(skb, skbs);
Felix Fietkauc3e77242012-10-08 14:39:33 +02001196 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001197 continue;
1198 }
1199#endif
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001200
1201 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001202 if (local->queue_stop_reasons[q] ||
Johannes Berg7bb45682011-02-24 14:42:06 +01001203 (!txpending && !skb_queue_empty(&local->pending[q]))) {
Seth Forshee6c17b772013-02-11 11:21:07 -06001204 if (unlikely(info->flags &
Seth Forsheea7679ed2013-02-25 14:58:05 -06001205 IEEE80211_TX_INTFL_OFFCHAN_TX_OK)) {
1206 if (local->queue_stop_reasons[q] &
1207 ~BIT(IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL)) {
1208 /*
1209 * Drop off-channel frames if queues
1210 * are stopped for any reason other
1211 * than off-channel operation. Never
1212 * queue them.
1213 */
1214 spin_unlock_irqrestore(
1215 &local->queue_stop_reason_lock,
1216 flags);
1217 ieee80211_purge_tx_queue(&local->hw,
1218 skbs);
1219 return true;
1220 }
1221 } else {
1222
Seth Forshee6c17b772013-02-11 11:21:07 -06001223 /*
Seth Forsheea7679ed2013-02-25 14:58:05 -06001224 * Since queue is stopped, queue up frames for
1225 * later transmission from the tx-pending
1226 * tasklet when the queue is woken again.
Seth Forshee6c17b772013-02-11 11:21:07 -06001227 */
Seth Forsheea7679ed2013-02-25 14:58:05 -06001228 if (txpending)
1229 skb_queue_splice_init(skbs,
1230 &local->pending[q]);
1231 else
1232 skb_queue_splice_tail_init(skbs,
1233 &local->pending[q]);
1234
1235 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1236 flags);
1237 return false;
Seth Forshee6c17b772013-02-11 11:21:07 -06001238 }
Johannes Berg7bb45682011-02-24 14:42:06 +01001239 }
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001240 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Tomas Winklerf8e79dd2008-07-24 18:46:44 +03001241
Johannes Berg11127e92011-11-16 16:02:47 +01001242 info->control.vif = vif;
Thomas Huehn36323f82012-07-23 21:33:42 +02001243 control.sta = sta;
Johannes Bergec25acc2010-07-22 17:11:28 +02001244
Johannes Berg252b86c2011-11-16 15:28:55 +01001245 __skb_unlink(skb, skbs);
Thomas Huehn36323f82012-07-23 21:33:42 +02001246 drv_tx(local, &control, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001247 }
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001248
Johannes Berg11127e92011-11-16 16:02:47 +01001249 return true;
1250}
1251
1252/*
1253 * Returns false if the frame couldn't be transmitted but was queued instead.
1254 */
1255static bool __ieee80211_tx(struct ieee80211_local *local,
1256 struct sk_buff_head *skbs, int led_len,
1257 struct sta_info *sta, bool txpending)
1258{
1259 struct ieee80211_tx_info *info;
1260 struct ieee80211_sub_if_data *sdata;
1261 struct ieee80211_vif *vif;
1262 struct ieee80211_sta *pubsta;
1263 struct sk_buff *skb;
1264 bool result = true;
1265 __le16 fc;
1266
1267 if (WARN_ON(skb_queue_empty(skbs)))
1268 return true;
1269
1270 skb = skb_peek(skbs);
1271 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
1272 info = IEEE80211_SKB_CB(skb);
1273 sdata = vif_to_sdata(info->control.vif);
1274 if (sta && !sta->uploaded)
1275 sta = NULL;
1276
1277 if (sta)
1278 pubsta = &sta->sta;
1279 else
1280 pubsta = NULL;
1281
1282 switch (sdata->vif.type) {
1283 case NL80211_IFTYPE_MONITOR:
Johannes Bergc82b5a72013-07-14 23:39:20 +03001284 if (sdata->u.mntr_flags & MONITOR_FLAG_ACTIVE) {
1285 vif = &sdata->vif;
1286 break;
1287 }
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001288 sdata = rcu_dereference(local->monitor_sdata);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001289 if (sdata) {
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001290 vif = &sdata->vif;
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001291 info->hw_queue =
1292 vif->hw_queue[skb_get_queue_mapping(skb)];
1293 } else if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL) {
1294 dev_kfree_skb(skb);
1295 return true;
1296 } else
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001297 vif = NULL;
Johannes Berg11127e92011-11-16 16:02:47 +01001298 break;
1299 case NL80211_IFTYPE_AP_VLAN:
1300 sdata = container_of(sdata->bss,
1301 struct ieee80211_sub_if_data, u.ap);
1302 /* fall through */
1303 default:
1304 vif = &sdata->vif;
1305 break;
1306 }
1307
Johannes Bergcb831b52012-07-02 15:40:18 +02001308 result = ieee80211_tx_frags(local, vif, pubsta, skbs,
1309 txpending);
Johannes Berg11127e92011-11-16 16:02:47 +01001310
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001311 ieee80211_tpt_led_trig_tx(local, fc, led_len);
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001312
Johannes Berg4db4e0a2011-11-24 14:47:36 +01001313 WARN_ON_ONCE(!skb_queue_empty(skbs));
Johannes Berg252b86c2011-11-16 15:28:55 +01001314
Johannes Berg11127e92011-11-16 16:02:47 +01001315 return result;
Johannes Berge2ebc742007-07-27 15:43:22 +02001316}
1317
Johannes Berg97b045d2008-06-20 01:22:30 +02001318/*
1319 * Invoke TX handlers, return 0 on success and non-zero if the
1320 * frame was dropped or queued.
1321 */
1322static int invoke_tx_handlers(struct ieee80211_tx_data *tx)
1323{
Johannes Berg252b86c2011-11-16 15:28:55 +01001324 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Berg97b045d2008-06-20 01:22:30 +02001325 ieee80211_tx_result res = TX_DROP;
Johannes Berg97b045d2008-06-20 01:22:30 +02001326
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001327#define CALL_TXH(txh) \
1328 do { \
1329 res = txh(tx); \
1330 if (res != TX_CONTINUE) \
1331 goto txh_done; \
1332 } while (0)
Johannes Berg97b045d2008-06-20 01:22:30 +02001333
Kalle Valo5c1b98a2010-01-12 10:42:46 +02001334 CALL_TXH(ieee80211_tx_h_dynamic_ps);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001335 CALL_TXH(ieee80211_tx_h_check_assoc);
1336 CALL_TXH(ieee80211_tx_h_ps_buf);
Johannes Berga621fa42010-08-27 14:26:54 +03001337 CALL_TXH(ieee80211_tx_h_check_control_port_protocol);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001338 CALL_TXH(ieee80211_tx_h_select_key);
Johannes Bergaf65cd962009-11-17 18:18:36 +01001339 if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL))
1340 CALL_TXH(ieee80211_tx_h_rate_ctrl);
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001341
Johannes Bergaa5b5492011-12-02 22:08:52 +01001342 if (unlikely(info->flags & IEEE80211_TX_INTFL_RETRANSMISSION)) {
1343 __skb_queue_tail(&tx->skbs, tx->skb);
1344 tx->skb = NULL;
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001345 goto txh_done;
Johannes Bergaa5b5492011-12-02 22:08:52 +01001346 }
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001347
1348 CALL_TXH(ieee80211_tx_h_michael_mic_add);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001349 CALL_TXH(ieee80211_tx_h_sequence);
1350 CALL_TXH(ieee80211_tx_h_fragment);
Johannes Bergd9e8a702008-06-30 15:10:44 +02001351 /* handlers after fragment must be aware of tx info fragmentation! */
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001352 CALL_TXH(ieee80211_tx_h_stats);
1353 CALL_TXH(ieee80211_tx_h_encrypt);
Arik Nemtsov8fd369e2011-01-31 22:29:12 +02001354 if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL))
1355 CALL_TXH(ieee80211_tx_h_calculate_duration);
Johannes Bergd9e8a702008-06-30 15:10:44 +02001356#undef CALL_TXH
1357
1358 txh_done:
Johannes Berg97b045d2008-06-20 01:22:30 +02001359 if (unlikely(res == TX_DROP)) {
Tomas Winkler5479d0e2008-06-28 03:15:03 +03001360 I802_DEBUG_INC(tx->local->tx_handlers_drop);
Johannes Berg252b86c2011-11-16 15:28:55 +01001361 if (tx->skb)
Felix Fietkauc3e77242012-10-08 14:39:33 +02001362 ieee80211_free_txskb(&tx->local->hw, tx->skb);
Johannes Berg252b86c2011-11-16 15:28:55 +01001363 else
Felix Fietkau1f98ab72012-11-10 03:44:14 +01001364 ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs);
Johannes Berg97b045d2008-06-20 01:22:30 +02001365 return -1;
1366 } else if (unlikely(res == TX_QUEUED)) {
Tomas Winkler5479d0e2008-06-28 03:15:03 +03001367 I802_DEBUG_INC(tx->local->tx_handlers_queued);
Johannes Berg97b045d2008-06-20 01:22:30 +02001368 return -1;
1369 }
1370
1371 return 0;
1372}
1373
Felix Fietkau06be6b12013-10-14 18:01:00 +02001374bool ieee80211_tx_prepare_skb(struct ieee80211_hw *hw,
1375 struct ieee80211_vif *vif, struct sk_buff *skb,
1376 int band, struct ieee80211_sta **sta)
1377{
1378 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1379 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1380 struct ieee80211_tx_data tx;
1381
1382 if (ieee80211_tx_prepare(sdata, &tx, skb) == TX_DROP)
1383 return false;
1384
1385 info->band = band;
1386 info->control.vif = vif;
1387 info->hw_queue = vif->hw_queue[skb_get_queue_mapping(skb)];
1388
1389 if (invoke_tx_handlers(&tx))
1390 return false;
1391
1392 if (sta) {
1393 if (tx.sta)
1394 *sta = &tx.sta->sta;
1395 else
1396 *sta = NULL;
1397 }
1398
1399 return true;
1400}
1401EXPORT_SYMBOL(ieee80211_tx_prepare_skb);
1402
Johannes Berg7bb45682011-02-24 14:42:06 +01001403/*
1404 * Returns false if the frame couldn't be transmitted but was queued instead.
1405 */
1406static bool ieee80211_tx(struct ieee80211_sub_if_data *sdata,
Johannes Berg55de9082012-07-26 17:24:39 +02001407 struct sk_buff *skb, bool txpending,
1408 enum ieee80211_band band)
Johannes Berge2ebc742007-07-27 15:43:22 +02001409{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001410 struct ieee80211_local *local = sdata->local;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001411 struct ieee80211_tx_data tx;
Johannes Berg97b045d2008-06-20 01:22:30 +02001412 ieee80211_tx_result res_prepare;
Johannes Berge039fa42008-05-15 12:55:29 +02001413 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001414 bool result = true;
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001415 int led_len;
Johannes Berge2ebc742007-07-27 15:43:22 +02001416
Johannes Berge2ebc742007-07-27 15:43:22 +02001417 if (unlikely(skb->len < 10)) {
1418 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001419 return true;
Johannes Berge2ebc742007-07-27 15:43:22 +02001420 }
1421
Johannes Berg58d41852007-09-26 17:53:18 +02001422 /* initialises tx */
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001423 led_len = skb->len;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001424 res_prepare = ieee80211_tx_prepare(sdata, &tx, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001425
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001426 if (unlikely(res_prepare == TX_DROP)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02001427 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg55de9082012-07-26 17:24:39 +02001428 return true;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001429 } else if (unlikely(res_prepare == TX_QUEUED)) {
Johannes Berg55de9082012-07-26 17:24:39 +02001430 return true;
Johannes Berge2ebc742007-07-27 15:43:22 +02001431 }
1432
Johannes Berg55de9082012-07-26 17:24:39 +02001433 info->band = band;
Johannes Berge2ebc742007-07-27 15:43:22 +02001434
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001435 /* set up hw_queue value early */
1436 if (!(info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) ||
1437 !(local->hw.flags & IEEE80211_HW_QUEUE_CONTROL))
1438 info->hw_queue =
1439 sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
1440
Johannes Berg7bb45682011-02-24 14:42:06 +01001441 if (!invoke_tx_handlers(&tx))
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001442 result = __ieee80211_tx(local, &tx.skbs, led_len,
1443 tx.sta, txpending);
Johannes Berg55de9082012-07-26 17:24:39 +02001444
Johannes Berg7bb45682011-02-24 14:42:06 +01001445 return result;
Johannes Berge2ebc742007-07-27 15:43:22 +02001446}
1447
1448/* device xmit handlers */
1449
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301450static int ieee80211_skb_resize(struct ieee80211_sub_if_data *sdata,
Johannes Berg23c07522008-05-29 10:38:53 +02001451 struct sk_buff *skb,
1452 int head_need, bool may_encrypt)
1453{
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301454 struct ieee80211_local *local = sdata->local;
Johannes Berg23c07522008-05-29 10:38:53 +02001455 int tail_need = 0;
1456
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301457 if (may_encrypt && sdata->crypto_tx_tailroom_needed_cnt) {
Johannes Berg23c07522008-05-29 10:38:53 +02001458 tail_need = IEEE80211_ENCRYPT_TAILROOM;
1459 tail_need -= skb_tailroom(skb);
1460 tail_need = max_t(int, tail_need, 0);
1461 }
1462
Felix Fietkaufc7c9762011-02-07 12:05:00 +01001463 if (skb_cloned(skb))
Johannes Berg23c07522008-05-29 10:38:53 +02001464 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
Felix Fietkau4cd06a32010-12-18 19:30:49 +01001465 else if (head_need || tail_need)
Johannes Berg23c07522008-05-29 10:38:53 +02001466 I802_DEBUG_INC(local->tx_expand_skb_head);
Felix Fietkau4cd06a32010-12-18 19:30:49 +01001467 else
1468 return 0;
Johannes Berg23c07522008-05-29 10:38:53 +02001469
1470 if (pskb_expand_head(skb, head_need, tail_need, GFP_ATOMIC)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07001471 wiphy_debug(local->hw.wiphy,
1472 "failed to reallocate TX buffer\n");
Johannes Berg23c07522008-05-29 10:38:53 +02001473 return -ENOMEM;
1474 }
1475
Johannes Berg23c07522008-05-29 10:38:53 +02001476 return 0;
1477}
1478
Johannes Berg55de9082012-07-26 17:24:39 +02001479void ieee80211_xmit(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb,
1480 enum ieee80211_band band)
Johannes Berge2ebc742007-07-27 15:43:22 +02001481{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001482 struct ieee80211_local *local = sdata->local;
Johannes Berge039fa42008-05-15 12:55:29 +02001483 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001484 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berge2ebc742007-07-27 15:43:22 +02001485 int headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001486 bool may_encrypt;
Johannes Berge2ebc742007-07-27 15:43:22 +02001487
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001488 may_encrypt = !(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT);
Johannes Berg23c07522008-05-29 10:38:53 +02001489
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001490 headroom = local->tx_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001491 if (may_encrypt)
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001492 headroom += sdata->encrypt_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001493 headroom -= skb_headroom(skb);
1494 headroom = max_t(int, 0, headroom);
1495
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301496 if (ieee80211_skb_resize(sdata, skb, headroom, may_encrypt)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02001497 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001498 return;
Johannes Berge2ebc742007-07-27 15:43:22 +02001499 }
1500
Steve deRosier740c1aa2010-09-11 20:01:31 -07001501 hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berg5061b0c2009-07-14 00:33:34 +02001502 info->control.vif = &sdata->vif;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001503
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001504 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1505 if (ieee80211_is_data(hdr->frame_control) &&
1506 is_unicast_ether_addr(hdr->addr1)) {
Johannes Bergbf7cd942013-02-15 14:40:31 +01001507 if (mesh_nexthop_resolve(sdata, skb))
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001508 return; /* skb queued: don't free */
1509 } else {
1510 ieee80211_mps_set_frame_flags(sdata, NULL, hdr);
1511 }
Johannes Berg98aed9f2012-03-27 14:18:36 +02001512 }
Javier Cardonacca89492009-08-10 17:29:29 -07001513
Javier Cardona2154c812011-09-07 17:49:53 -07001514 ieee80211_set_qos_hdr(sdata, skb);
Johannes Berg55de9082012-07-26 17:24:39 +02001515 ieee80211_tx(sdata, skb, false, band);
Johannes Berge2ebc742007-07-27 15:43:22 +02001516}
1517
Johannes Berg73b9f032011-10-07 14:01:26 +02001518static bool ieee80211_parse_tx_radiotap(struct sk_buff *skb)
1519{
1520 struct ieee80211_radiotap_iterator iterator;
1521 struct ieee80211_radiotap_header *rthdr =
1522 (struct ieee80211_radiotap_header *) skb->data;
1523 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1524 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len,
1525 NULL);
1526 u16 txflags;
1527
1528 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
1529 IEEE80211_TX_CTL_DONTFRAG;
1530
1531 /*
1532 * for every radiotap entry that is present
1533 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
1534 * entries present, or -EINVAL on error)
1535 */
1536
1537 while (!ret) {
1538 ret = ieee80211_radiotap_iterator_next(&iterator);
1539
1540 if (ret)
1541 continue;
1542
1543 /* see if this argument is something we can use */
1544 switch (iterator.this_arg_index) {
1545 /*
1546 * You must take care when dereferencing iterator.this_arg
1547 * for multibyte types... the pointer is not aligned. Use
1548 * get_unaligned((type *)iterator.this_arg) to dereference
1549 * iterator.this_arg for type "type" safely on all arches.
1550 */
1551 case IEEE80211_RADIOTAP_FLAGS:
1552 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
1553 /*
1554 * this indicates that the skb we have been
1555 * handed has the 32-bit FCS CRC at the end...
1556 * we should react to that by snipping it off
1557 * because it will be recomputed and added
1558 * on transmission
1559 */
1560 if (skb->len < (iterator._max_length + FCS_LEN))
1561 return false;
1562
1563 skb_trim(skb, skb->len - FCS_LEN);
1564 }
1565 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
1566 info->flags &= ~IEEE80211_TX_INTFL_DONT_ENCRYPT;
1567 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
1568 info->flags &= ~IEEE80211_TX_CTL_DONTFRAG;
1569 break;
1570
1571 case IEEE80211_RADIOTAP_TX_FLAGS:
1572 txflags = get_unaligned_le16(iterator.this_arg);
1573 if (txflags & IEEE80211_RADIOTAP_F_TX_NOACK)
1574 info->flags |= IEEE80211_TX_CTL_NO_ACK;
1575 break;
1576
1577 /*
1578 * Please update the file
1579 * Documentation/networking/mac80211-injection.txt
1580 * when parsing new fields here.
1581 */
1582
1583 default:
1584 break;
1585 }
1586 }
1587
1588 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
1589 return false;
1590
1591 /*
1592 * remove the radiotap header
1593 * iterator->_max_length was sanity-checked against
1594 * skb->len by iterator init
1595 */
1596 skb_pull(skb, iterator._max_length);
1597
1598 return true;
1599}
1600
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00001601netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
1602 struct net_device *dev)
Johannes Berge2ebc742007-07-27 15:43:22 +02001603{
1604 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg55de9082012-07-26 17:24:39 +02001605 struct ieee80211_chanctx_conf *chanctx_conf;
1606 struct ieee80211_channel *chan;
Johannes Berge2ebc742007-07-27 15:43:22 +02001607 struct ieee80211_radiotap_header *prthdr =
1608 (struct ieee80211_radiotap_header *)skb->data;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001609 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001610 struct ieee80211_hdr *hdr;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001611 struct ieee80211_sub_if_data *tmp_sdata, *sdata;
Andy Green9b8a74e2007-07-27 15:43:24 +02001612 u16 len_rthdr;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001613 int hdrlen;
Johannes Berge2ebc742007-07-27 15:43:22 +02001614
Andy Green9b8a74e2007-07-27 15:43:24 +02001615 /* check for not even having the fixed radiotap header part */
1616 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1617 goto fail; /* too short to be possibly valid */
1618
1619 /* is it a header version we can trust to find length from? */
1620 if (unlikely(prthdr->it_version))
1621 goto fail; /* only version 0 is supported */
1622
1623 /* then there must be a radiotap header with a length we can use */
1624 len_rthdr = ieee80211_get_radiotap_len(skb->data);
1625
1626 /* does the skb contain enough to deliver on the alleged length? */
1627 if (unlikely(skb->len < len_rthdr))
1628 goto fail; /* skb too short for claimed rt header extent */
Johannes Berge2ebc742007-07-27 15:43:22 +02001629
Johannes Berge2ebc742007-07-27 15:43:22 +02001630 /*
1631 * fix up the pointers accounting for the radiotap
1632 * header still being in there. We are being given
1633 * a precooked IEEE80211 header so no need for
1634 * normal processing
1635 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001636 skb_set_mac_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001637 /*
Andy Green9b8a74e2007-07-27 15:43:24 +02001638 * these are just fixed to the end of the rt area since we
1639 * don't have any better information and at this point, nobody cares
Johannes Berge2ebc742007-07-27 15:43:22 +02001640 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001641 skb_set_network_header(skb, len_rthdr);
1642 skb_set_transport_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001643
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001644 if (skb->len < len_rthdr + 2)
1645 goto fail;
1646
1647 hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr);
1648 hdrlen = ieee80211_hdrlen(hdr->frame_control);
1649
1650 if (skb->len < len_rthdr + hdrlen)
1651 goto fail;
1652
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001653 /*
1654 * Initialize skb->protocol if the injected frame is a data frame
1655 * carrying a rfc1042 header
1656 */
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001657 if (ieee80211_is_data(hdr->frame_control) &&
1658 skb->len >= len_rthdr + hdrlen + sizeof(rfc1042_header) + 2) {
1659 u8 *payload = (u8 *)hdr + hdrlen;
1660
Joe Perchesb203ca32012-05-08 18:56:52 +00001661 if (ether_addr_equal(payload, rfc1042_header))
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001662 skb->protocol = cpu_to_be16((payload[6] << 8) |
1663 payload[7]);
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001664 }
1665
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001666 memset(info, 0, sizeof(*info));
1667
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001668 info->flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
Johannes Berg73b9f032011-10-07 14:01:26 +02001669 IEEE80211_TX_CTL_INJECTED;
1670
1671 /* process and remove the injection radiotap header */
1672 if (!ieee80211_parse_tx_radiotap(skb))
1673 goto fail;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001674
1675 rcu_read_lock();
1676
1677 /*
1678 * We process outgoing injected frames that have a local address
1679 * we handle as though they are non-injected frames.
1680 * This code here isn't entirely correct, the local MAC address
1681 * isn't always enough to find the interface to use; for proper
1682 * VLAN/WDS support we will need a different mechanism (which
1683 * likely isn't going to be monitor interfaces).
1684 */
1685 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1686
1687 list_for_each_entry_rcu(tmp_sdata, &local->interfaces, list) {
1688 if (!ieee80211_sdata_running(tmp_sdata))
1689 continue;
1690 if (tmp_sdata->vif.type == NL80211_IFTYPE_MONITOR ||
1691 tmp_sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1692 tmp_sdata->vif.type == NL80211_IFTYPE_WDS)
1693 continue;
Joe Perchesb203ca32012-05-08 18:56:52 +00001694 if (ether_addr_equal(tmp_sdata->vif.addr, hdr->addr2)) {
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001695 sdata = tmp_sdata;
1696 break;
1697 }
1698 }
Johannes Berg7351c6b2009-11-19 01:08:30 +01001699
Johannes Berg55de9082012-07-26 17:24:39 +02001700 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1701 if (!chanctx_conf) {
1702 tmp_sdata = rcu_dereference(local->monitor_sdata);
1703 if (tmp_sdata)
1704 chanctx_conf =
1705 rcu_dereference(tmp_sdata->vif.chanctx_conf);
1706 }
Johannes Berg55de9082012-07-26 17:24:39 +02001707
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01001708 if (chanctx_conf)
1709 chan = chanctx_conf->def.chan;
1710 else if (!local->use_chanctx)
Karl Beldan675a0b02013-03-25 16:26:57 +01001711 chan = local->_oper_chandef.chan;
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01001712 else
1713 goto fail_rcu;
Johannes Berg55de9082012-07-26 17:24:39 +02001714
1715 /*
1716 * Frame injection is not allowed if beaconing is not allowed
1717 * or if we need radar detection. Beaconing is usually not allowed when
1718 * the mode or operation (Adhoc, AP, Mesh) does not support DFS.
1719 * Passive scan is also used in world regulatory domains where
1720 * your country is not known and as such it should be treated as
1721 * NO TX unless the channel is explicitly allowed in which case
1722 * your current regulatory domain would not have the passive scan
1723 * flag.
1724 *
1725 * Since AP mode uses monitor interfaces to inject/TX management
1726 * frames we can make AP mode the exception to this rule once it
1727 * supports radar detection as its implementation can deal with
1728 * radar detection by itself. We can do that later by adding a
1729 * monitor flag interfaces used for AP support.
1730 */
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +02001731 if ((chan->flags & (IEEE80211_CHAN_NO_IR | IEEE80211_CHAN_RADAR)))
Johannes Berg55de9082012-07-26 17:24:39 +02001732 goto fail_rcu;
1733
1734 ieee80211_xmit(sdata, skb, chan->band);
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001735 rcu_read_unlock();
1736
Johannes Berge2ebc742007-07-27 15:43:22 +02001737 return NETDEV_TX_OK;
Andy Green9b8a74e2007-07-27 15:43:24 +02001738
Johannes Berg55de9082012-07-26 17:24:39 +02001739fail_rcu:
1740 rcu_read_unlock();
Andy Green9b8a74e2007-07-27 15:43:24 +02001741fail:
1742 dev_kfree_skb(skb);
1743 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
Johannes Berge2ebc742007-07-27 15:43:22 +02001744}
1745
Matti Gottliebad38bfc2013-11-18 19:06:45 +02001746/*
1747 * Measure Tx frame arrival time for Tx latency statistics calculation
1748 * A single Tx frame latency should be measured from when it is entering the
1749 * Kernel until we receive Tx complete confirmation indication and the skb is
1750 * freed.
1751 */
1752static void ieee80211_tx_latency_start_msrmnt(struct ieee80211_local *local,
1753 struct sk_buff *skb)
1754{
1755 struct timespec skb_arv;
1756 struct ieee80211_tx_latency_bin_ranges *tx_latency;
1757
1758 tx_latency = rcu_dereference(local->tx_latency);
1759 if (!tx_latency)
1760 return;
1761
1762 ktime_get_ts(&skb_arv);
1763 skb->tstamp = ktime_set(skb_arv.tv_sec, skb_arv.tv_nsec);
1764}
1765
Johannes Berge2ebc742007-07-27 15:43:22 +02001766/**
1767 * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type
1768 * subinterfaces (wlan#, WDS, and VLAN interfaces)
1769 * @skb: packet to be sent
1770 * @dev: incoming interface
1771 *
1772 * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will
1773 * not be freed, and caller is responsible for either retrying later or freeing
1774 * skb).
1775 *
1776 * This function takes in an Ethernet header and encapsulates it with suitable
1777 * IEEE 802.11 header based on which interface the packet is coming in. The
1778 * encapsulated packet will then be passed to master interface, wlan#.11, for
1779 * transmission (through low-level driver).
1780 */
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00001781netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb,
1782 struct net_device *dev)
Johannes Berge2ebc742007-07-27 15:43:22 +02001783{
Johannes Berg133b8222008-09-16 14:18:59 +02001784 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1785 struct ieee80211_local *local = sdata->local;
Felix Fietkau489ee912010-12-18 19:30:48 +01001786 struct ieee80211_tx_info *info;
Johannes Bergdcf33962012-07-30 15:11:56 +02001787 int head_need;
Harvey Harrison065e96052008-06-22 16:45:27 -07001788 u16 ethertype, hdrlen, meshhdrlen = 0;
1789 __le16 fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02001790 struct ieee80211_hdr hdr;
Wey-Yi Guyff67bb82010-08-21 07:23:29 -07001791 struct ieee80211s_hdr mesh_hdr __maybe_unused;
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001792 struct mesh_path __maybe_unused *mppath = NULL, *mpath = NULL;
Johannes Berge2ebc742007-07-27 15:43:22 +02001793 const u8 *encaps_data;
1794 int encaps_len, skip_header_bytes;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001795 int nh_pos, h_pos;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001796 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001797 bool wme_sta = false, authorized = false, tdls_auth = false;
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001798 bool tdls_direct = false;
Johannes Berga729cff2011-11-06 14:13:34 +01001799 bool multicast;
1800 u32 info_flags = 0;
1801 u16 info_id = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02001802 struct ieee80211_chanctx_conf *chanctx_conf;
1803 struct ieee80211_sub_if_data *ap_sdata;
1804 enum ieee80211_band band;
Johannes Berge2ebc742007-07-27 15:43:22 +02001805
Johannes Bergdcf33962012-07-30 15:11:56 +02001806 if (unlikely(skb->len < ETH_HLEN))
Johannes Berge2ebc742007-07-27 15:43:22 +02001807 goto fail;
Johannes Berge2ebc742007-07-27 15:43:22 +02001808
Johannes Berge2ebc742007-07-27 15:43:22 +02001809 /* convert Ethernet header to proper 802.11 header (based on
1810 * operation mode) */
1811 ethertype = (skb->data[12] << 8) | skb->data[13];
Harvey Harrison065e96052008-06-22 16:45:27 -07001812 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
Johannes Berge2ebc742007-07-27 15:43:22 +02001813
Johannes Berg55de9082012-07-26 17:24:39 +02001814 rcu_read_lock();
1815
Matti Gottliebad38bfc2013-11-18 19:06:45 +02001816 /* Measure frame arrival for Tx latency statistics calculation */
1817 ieee80211_tx_latency_start_msrmnt(local, skb);
1818
Johannes Berg51fb61e2007-12-19 01:31:27 +01001819 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001820 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg9bc383d2009-11-19 11:55:19 +01001821 sta = rcu_dereference(sdata->u.vlan.sta);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001822 if (sta) {
1823 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
1824 /* RA TA DA SA */
1825 memcpy(hdr.addr1, sta->sta.addr, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001826 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001827 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1828 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1829 hdrlen = 30;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001830 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
1831 wme_sta = test_sta_flag(sta, WLAN_STA_WME);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001832 }
Johannes Berg55de9082012-07-26 17:24:39 +02001833 ap_sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
1834 u.ap);
1835 chanctx_conf = rcu_dereference(ap_sdata->vif.chanctx_conf);
1836 if (!chanctx_conf)
1837 goto fail_rcu;
Johannes Berg4bf88532012-11-09 11:39:59 +01001838 band = chanctx_conf->def.chan->band;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001839 if (sta)
1840 break;
1841 /* fall through */
1842 case NL80211_IFTYPE_AP:
Arnd Bergmannfe801232013-01-25 14:14:33 +00001843 if (sdata->vif.type == NL80211_IFTYPE_AP)
1844 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1845 if (!chanctx_conf)
1846 goto fail_rcu;
Harvey Harrison065e96052008-06-22 16:45:27 -07001847 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
Johannes Berge2ebc742007-07-27 15:43:22 +02001848 /* DA BSSID SA */
1849 memcpy(hdr.addr1, skb->data, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001850 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02001851 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1852 hdrlen = 24;
Johannes Berg4bf88532012-11-09 11:39:59 +01001853 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04001854 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001855 case NL80211_IFTYPE_WDS:
Harvey Harrison065e96052008-06-22 16:45:27 -07001856 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
Johannes Berge2ebc742007-07-27 15:43:22 +02001857 /* RA TA DA SA */
1858 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001859 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02001860 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1861 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1862 hdrlen = 30;
Johannes Berg55de9082012-07-26 17:24:39 +02001863 /*
1864 * This is the exception! WDS style interfaces are prohibited
1865 * when channel contexts are in used so this must be valid
1866 */
Karl Beldan675a0b02013-03-25 16:26:57 +01001867 band = local->hw.conf.chandef.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04001868 break;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001869#ifdef CONFIG_MAC80211_MESH
Johannes Berg05c914f2008-09-11 00:01:58 +02001870 case NL80211_IFTYPE_MESH_POINT:
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001871 if (!is_multicast_ether_addr(skb->data)) {
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001872 struct sta_info *next_hop;
1873 bool mpp_lookup = true;
1874
Johannes Bergbf7cd942013-02-15 14:40:31 +01001875 mpath = mesh_path_lookup(sdata, skb->data);
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001876 if (mpath) {
1877 mpp_lookup = false;
1878 next_hop = rcu_dereference(mpath->next_hop);
1879 if (!next_hop ||
1880 !(mpath->flags & (MESH_PATH_ACTIVE |
1881 MESH_PATH_RESOLVING)))
1882 mpp_lookup = true;
1883 }
1884
1885 if (mpp_lookup)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001886 mppath = mpp_path_lookup(sdata, skb->data);
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001887
1888 if (mppath && mpath)
1889 mesh_path_del(mpath->sdata, mpath->dst);
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001890 }
YanBo79617de2008-09-22 13:30:32 +08001891
Joel A Fernandesf76b57b2010-12-28 19:28:11 -06001892 /*
Joel A Fernandes9d525012011-01-10 00:44:23 -06001893 * Use address extension if it is a packet from
1894 * another interface or if we know the destination
1895 * is being proxied by a portal (i.e. portal address
1896 * differs from proxied address)
Joel A Fernandesf76b57b2010-12-28 19:28:11 -06001897 */
Joe Perchesb203ca32012-05-08 18:56:52 +00001898 if (ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN) &&
1899 !(mppath && !ether_addr_equal(mppath->mpp, skb->data))) {
Javier Cardona3c5772a2009-08-10 12:15:48 -07001900 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
1901 skb->data, skb->data + ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +01001902 meshhdrlen = ieee80211_new_mesh_header(sdata, &mesh_hdr,
1903 NULL, NULL);
YanBo79617de2008-09-22 13:30:32 +08001904 } else {
Thomas Pedersen27f01122012-08-20 11:28:25 -07001905 /* DS -> MBSS (802.11-2012 13.11.3.3).
1906 * For unicast with unknown forwarding information,
1907 * destination might be in the MBSS or if that fails
1908 * forwarded to another mesh gate. In either case
1909 * resolution will be handled in ieee80211_xmit(), so
1910 * leave the original DA. This also works for mcast */
1911 const u8 *mesh_da = skb->data;
YanBo79617de2008-09-22 13:30:32 +08001912
Thomas Pedersen27f01122012-08-20 11:28:25 -07001913 if (mppath)
1914 mesh_da = mppath->mpp;
1915 else if (mpath)
1916 mesh_da = mpath->dst;
Thomas Pedersen27f01122012-08-20 11:28:25 -07001917
Javier Cardona3c5772a2009-08-10 12:15:48 -07001918 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
Johannes Berg47846c92009-11-25 17:46:19 +01001919 mesh_da, sdata->vif.addr);
Thomas Pedersen27f01122012-08-20 11:28:25 -07001920 if (is_multicast_ether_addr(mesh_da))
1921 /* DA TA mSA AE:SA */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001922 meshhdrlen = ieee80211_new_mesh_header(
1923 sdata, &mesh_hdr,
1924 skb->data + ETH_ALEN, NULL);
Javier Cardona3c5772a2009-08-10 12:15:48 -07001925 else
Thomas Pedersen27f01122012-08-20 11:28:25 -07001926 /* RA TA mDA mSA AE:DA SA */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001927 meshhdrlen = ieee80211_new_mesh_header(
1928 sdata, &mesh_hdr, skb->data,
1929 skb->data + ETH_ALEN);
YanBo79617de2008-09-22 13:30:32 +08001930
YanBo79617de2008-09-22 13:30:32 +08001931 }
Johannes Berg55de9082012-07-26 17:24:39 +02001932 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1933 if (!chanctx_conf)
1934 goto fail_rcu;
Johannes Berg4bf88532012-11-09 11:39:59 +01001935 band = chanctx_conf->def.chan->band;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001936 break;
1937#endif
Johannes Berg05c914f2008-09-11 00:01:58 +02001938 case NL80211_IFTYPE_STATION:
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001939 if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001940 bool tdls_peer = false;
1941
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001942 sta = sta_info_get(sdata, skb->data);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001943 if (sta) {
1944 authorized = test_sta_flag(sta,
1945 WLAN_STA_AUTHORIZED);
1946 wme_sta = test_sta_flag(sta, WLAN_STA_WME);
1947 tdls_peer = test_sta_flag(sta,
1948 WLAN_STA_TDLS_PEER);
1949 tdls_auth = test_sta_flag(sta,
1950 WLAN_STA_TDLS_PEER_AUTH);
1951 }
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001952
1953 /*
1954 * If the TDLS link is enabled, send everything
1955 * directly. Otherwise, allow TDLS setup frames
1956 * to be transmitted indirectly.
1957 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001958 tdls_direct = tdls_peer && (tdls_auth ||
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001959 !(ethertype == ETH_P_TDLS && skb->len > 14 &&
1960 skb->data[14] == WLAN_TDLS_SNAP_RFTYPE));
1961 }
1962
1963 if (tdls_direct) {
1964 /* link during setup - throw out frames to peer */
Johannes Bergdcf33962012-07-30 15:11:56 +02001965 if (!tdls_auth)
Johannes Berg55de9082012-07-26 17:24:39 +02001966 goto fail_rcu;
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001967
1968 /* DA SA BSSID */
1969 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1970 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1971 memcpy(hdr.addr3, sdata->u.mgd.bssid, ETH_ALEN);
1972 hdrlen = 24;
1973 } else if (sdata->u.mgd.use_4addr &&
1974 cpu_to_be16(ethertype) != sdata->control_port_protocol) {
1975 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
1976 IEEE80211_FCTL_TODS);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001977 /* RA TA DA SA */
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001978 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001979 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001980 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1981 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1982 hdrlen = 30;
1983 } else {
1984 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
1985 /* BSSID SA DA */
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001986 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001987 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1988 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1989 hdrlen = 24;
1990 }
Johannes Berg55de9082012-07-26 17:24:39 +02001991 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1992 if (!chanctx_conf)
1993 goto fail_rcu;
Johannes Berg4bf88532012-11-09 11:39:59 +01001994 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04001995 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001996 case NL80211_IFTYPE_ADHOC:
Johannes Berge2ebc742007-07-27 15:43:22 +02001997 /* DA SA BSSID */
1998 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1999 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01002000 memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02002001 hdrlen = 24;
Johannes Berg55de9082012-07-26 17:24:39 +02002002 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2003 if (!chanctx_conf)
2004 goto fail_rcu;
Johannes Berg4bf88532012-11-09 11:39:59 +01002005 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04002006 break;
2007 default:
Johannes Berg55de9082012-07-26 17:24:39 +02002008 goto fail_rcu;
Johannes Berge2ebc742007-07-27 15:43:22 +02002009 }
2010
Johannes Berg7d185b82008-01-28 17:11:43 +01002011 /*
2012 * There's no need to try to look up the destination
2013 * if it is a multicast address (which can only happen
2014 * in AP mode)
2015 */
Johannes Berga729cff2011-11-06 14:13:34 +01002016 multicast = is_multicast_ether_addr(hdr.addr1);
2017 if (!multicast) {
Johannes Bergabe60632009-11-25 17:46:18 +01002018 sta = sta_info_get(sdata, hdr.addr1);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002019 if (sta) {
2020 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
2021 wme_sta = test_sta_flag(sta, WLAN_STA_WME);
2022 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002023 }
2024
Javier Cardona4777be42011-09-07 17:49:52 -07002025 /* For mesh, the use of the QoS header is mandatory */
2026 if (ieee80211_vif_is_mesh(&sdata->vif))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002027 wme_sta = true;
Javier Cardona4777be42011-09-07 17:49:52 -07002028
Johannes Berg3434fbd2008-05-03 00:59:37 +02002029 /* receiver and we are QoS enabled, use a QoS type frame */
Johannes Berg32c50572012-03-28 11:04:29 +02002030 if (wme_sta && local->hw.queues >= IEEE80211_NUM_ACS) {
Harvey Harrison065e96052008-06-22 16:45:27 -07002031 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002032 hdrlen += 2;
2033 }
2034
2035 /*
Johannes Berg238814f2008-01-28 17:19:37 +01002036 * Drop unicast frames to unauthorised stations unless they are
2037 * EAPOL frames from the local station.
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002038 */
Johannes Berg55182e42011-10-12 17:28:21 +02002039 if (unlikely(!ieee80211_vif_is_mesh(&sdata->vif) &&
Sergey Ryazanova6ececf2013-08-30 01:35:09 +04002040 !multicast && !authorized &&
Johannes Berg55182e42011-10-12 17:28:21 +02002041 (cpu_to_be16(ethertype) != sdata->control_port_protocol ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002042 !ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN)))) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002043#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002044 net_info_ratelimited("%s: dropped frame to %pM (unauthorized port)\n",
Joe Perchese87cc472012-05-13 21:56:26 +00002045 dev->name, hdr.addr1);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002046#endif
2047
2048 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
2049
Johannes Berg55de9082012-07-26 17:24:39 +02002050 goto fail_rcu;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002051 }
2052
Johannes Berga729cff2011-11-06 14:13:34 +01002053 if (unlikely(!multicast && skb->sk &&
2054 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS)) {
2055 struct sk_buff *orig_skb = skb;
2056
2057 skb = skb_clone(skb, GFP_ATOMIC);
2058 if (skb) {
2059 unsigned long flags;
Tejun Heo9475af62013-02-27 17:04:59 -08002060 int id;
Johannes Berga729cff2011-11-06 14:13:34 +01002061
2062 spin_lock_irqsave(&local->ack_status_lock, flags);
Tejun Heo9475af62013-02-27 17:04:59 -08002063 id = idr_alloc(&local->ack_status_frames, orig_skb,
2064 1, 0x10000, GFP_ATOMIC);
Johannes Berga729cff2011-11-06 14:13:34 +01002065 spin_unlock_irqrestore(&local->ack_status_lock, flags);
2066
Tejun Heo9475af62013-02-27 17:04:59 -08002067 if (id >= 0) {
Johannes Berga729cff2011-11-06 14:13:34 +01002068 info_id = id;
2069 info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
2070 } else if (skb_shared(skb)) {
2071 kfree_skb(orig_skb);
2072 } else {
2073 kfree_skb(skb);
2074 skb = orig_skb;
2075 }
2076 } else {
2077 /* couldn't clone -- lose tx status ... */
2078 skb = orig_skb;
2079 }
2080 }
2081
Helmut Schaa7e244702010-12-02 18:44:09 +01002082 /*
2083 * If the skb is shared we need to obtain our own copy.
2084 */
2085 if (skb_shared(skb)) {
Johannes Berga729cff2011-11-06 14:13:34 +01002086 struct sk_buff *tmp_skb = skb;
2087
2088 /* can't happen -- skb is a clone if info_id != 0 */
2089 WARN_ON(info_id);
2090
Felix Fietkauf8a0a782010-12-18 19:30:50 +01002091 skb = skb_clone(skb, GFP_ATOMIC);
Helmut Schaa7e244702010-12-02 18:44:09 +01002092 kfree_skb(tmp_skb);
2093
Johannes Bergdcf33962012-07-30 15:11:56 +02002094 if (!skb)
Johannes Berg55de9082012-07-26 17:24:39 +02002095 goto fail_rcu;
Helmut Schaa7e244702010-12-02 18:44:09 +01002096 }
2097
Harvey Harrison065e96052008-06-22 16:45:27 -07002098 hdr.frame_control = fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02002099 hdr.duration_id = 0;
2100 hdr.seq_ctrl = 0;
2101
2102 skip_header_bytes = ETH_HLEN;
2103 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
2104 encaps_data = bridge_tunnel_header;
2105 encaps_len = sizeof(bridge_tunnel_header);
2106 skip_header_bytes -= 2;
Simon Hormane5c5d222013-03-28 13:38:25 +09002107 } else if (ethertype >= ETH_P_802_3_MIN) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002108 encaps_data = rfc1042_header;
2109 encaps_len = sizeof(rfc1042_header);
2110 skip_header_bytes -= 2;
2111 } else {
2112 encaps_data = NULL;
2113 encaps_len = 0;
2114 }
2115
Helmut Schaa7e244702010-12-02 18:44:09 +01002116 nh_pos = skb_network_header(skb) - skb->data;
2117 h_pos = skb_transport_header(skb) - skb->data;
2118
Johannes Berge2ebc742007-07-27 15:43:22 +02002119 skb_pull(skb, skip_header_bytes);
2120 nh_pos -= skip_header_bytes;
2121 h_pos -= skip_header_bytes;
2122
Johannes Berg23c07522008-05-29 10:38:53 +02002123 head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002124
Johannes Berg23c07522008-05-29 10:38:53 +02002125 /*
2126 * So we need to modify the skb header and hence need a copy of
2127 * that. The head_need variable above doesn't, so far, include
2128 * the needed header space that we don't need right away. If we
2129 * can, then we don't reallocate right now but only after the
2130 * frame arrives at the master device (if it does...)
2131 *
2132 * If we cannot, however, then we will reallocate to include all
2133 * the ever needed space. Also, if we need to reallocate it anyway,
2134 * make it big enough for everything we may ever need.
2135 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002136
David S. Miller3a5be7d2008-06-18 01:19:51 -07002137 if (head_need > 0 || skb_cloned(skb)) {
Max Stepanov2475b1cc2013-03-24 14:23:27 +02002138 head_need += sdata->encrypt_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02002139 head_need += local->tx_headroom;
2140 head_need = max_t(int, 0, head_need);
Felix Fietkauc3e77242012-10-08 14:39:33 +02002141 if (ieee80211_skb_resize(sdata, skb, head_need, true)) {
2142 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg1c963be2012-11-07 14:02:30 +01002143 skb = NULL;
Johannes Berg55de9082012-07-26 17:24:39 +02002144 goto fail_rcu;
Felix Fietkauc3e77242012-10-08 14:39:33 +02002145 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002146 }
2147
2148 if (encaps_data) {
2149 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
2150 nh_pos += encaps_len;
2151 h_pos += encaps_len;
2152 }
Johannes Bergc29b9b92007-09-14 11:10:24 -04002153
Yuri Ershove4ab7eb2010-06-29 15:08:06 +04002154#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002155 if (meshhdrlen > 0) {
2156 memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
2157 nh_pos += meshhdrlen;
2158 h_pos += meshhdrlen;
2159 }
Yuri Ershove4ab7eb2010-06-29 15:08:06 +04002160#endif
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002161
Harvey Harrison065e96052008-06-22 16:45:27 -07002162 if (ieee80211_is_data_qos(fc)) {
Johannes Bergc29b9b92007-09-14 11:10:24 -04002163 __le16 *qos_control;
2164
Weilong Chenf359d3f2013-12-18 15:44:16 +08002165 qos_control = (__le16 *) skb_push(skb, 2);
Johannes Bergc29b9b92007-09-14 11:10:24 -04002166 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
2167 /*
2168 * Maybe we could actually set some fields here, for now just
2169 * initialise to zero to indicate no special operation.
2170 */
2171 *qos_control = 0;
2172 } else
2173 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
2174
Johannes Berge2ebc742007-07-27 15:43:22 +02002175 nh_pos += hdrlen;
2176 h_pos += hdrlen;
2177
Stephen Hemminger68aae112007-08-24 11:29:34 -07002178 dev->stats.tx_packets++;
2179 dev->stats.tx_bytes += skb->len;
Johannes Berge2ebc742007-07-27 15:43:22 +02002180
2181 /* Update skb pointers to various headers since this modified frame
2182 * is going to go through Linux networking code that may potentially
2183 * need things like pointer to IP header. */
2184 skb_set_mac_header(skb, 0);
2185 skb_set_network_header(skb, nh_pos);
2186 skb_set_transport_header(skb, h_pos);
2187
Felix Fietkau489ee912010-12-18 19:30:48 +01002188 info = IEEE80211_SKB_CB(skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002189 memset(info, 0, sizeof(*info));
2190
Johannes Berge2ebc742007-07-27 15:43:22 +02002191 dev->trans_start = jiffies;
Johannes Berga729cff2011-11-06 14:13:34 +01002192
2193 info->flags = info_flags;
2194 info->ack_frame_id = info_id;
2195
Johannes Berg55de9082012-07-26 17:24:39 +02002196 ieee80211_xmit(sdata, skb, band);
2197 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002198
Patrick McHardyec634fe2009-07-05 19:23:38 -07002199 return NETDEV_TX_OK;
Johannes Berge2ebc742007-07-27 15:43:22 +02002200
Johannes Berg55de9082012-07-26 17:24:39 +02002201 fail_rcu:
2202 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002203 fail:
Johannes Bergdcf33962012-07-30 15:11:56 +02002204 dev_kfree_skb(skb);
2205 return NETDEV_TX_OK;
Johannes Berge2ebc742007-07-27 15:43:22 +02002206}
2207
Johannes Berge2ebc742007-07-27 15:43:22 +02002208
Johannes Berge2530082008-05-17 00:57:14 +02002209/*
2210 * ieee80211_clear_tx_pending may not be called in a context where
2211 * it is possible that it packets could come in again.
2212 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002213void ieee80211_clear_tx_pending(struct ieee80211_local *local)
2214{
Felix Fietkau1f98ab72012-11-10 03:44:14 +01002215 struct sk_buff *skb;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01002216 int i;
Johannes Berge2ebc742007-07-27 15:43:22 +02002217
Felix Fietkau1f98ab72012-11-10 03:44:14 +01002218 for (i = 0; i < local->hw.queues; i++) {
2219 while ((skb = skb_dequeue(&local->pending[i])) != NULL)
2220 ieee80211_free_txskb(&local->hw, skb);
2221 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002222}
2223
Johannes Berg7bb45682011-02-24 14:42:06 +01002224/*
2225 * Returns false if the frame couldn't be transmitted but was queued instead,
2226 * which in this case means re-queued -- take as an indication to stop sending
2227 * more pending frames.
2228 */
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002229static bool ieee80211_tx_pending_skb(struct ieee80211_local *local,
2230 struct sk_buff *skb)
2231{
2232 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2233 struct ieee80211_sub_if_data *sdata;
2234 struct sta_info *sta;
2235 struct ieee80211_hdr *hdr;
Johannes Berg7bb45682011-02-24 14:42:06 +01002236 bool result;
Johannes Berg55de9082012-07-26 17:24:39 +02002237 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002238
Johannes Berg5061b0c2009-07-14 00:33:34 +02002239 sdata = vif_to_sdata(info->control.vif);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002240
2241 if (info->flags & IEEE80211_TX_INTFL_NEED_TXPROCESSING) {
Johannes Berg55de9082012-07-26 17:24:39 +02002242 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2243 if (unlikely(!chanctx_conf)) {
2244 dev_kfree_skb(skb);
2245 return true;
2246 }
2247 result = ieee80211_tx(sdata, skb, true,
Johannes Berg4bf88532012-11-09 11:39:59 +01002248 chanctx_conf->def.chan->band);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002249 } else {
Johannes Berg252b86c2011-11-16 15:28:55 +01002250 struct sk_buff_head skbs;
2251
2252 __skb_queue_head_init(&skbs);
2253 __skb_queue_tail(&skbs, skb);
2254
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002255 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Bergabe60632009-11-25 17:46:18 +01002256 sta = sta_info_get(sdata, hdr->addr1);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002257
Johannes Berg74e4dbf2011-11-16 15:28:57 +01002258 result = __ieee80211_tx(local, &skbs, skb->len, sta, true);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002259 }
2260
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002261 return result;
2262}
2263
Johannes Berge2530082008-05-17 00:57:14 +02002264/*
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002265 * Transmit all pending packets. Called from tasklet.
Johannes Berge2530082008-05-17 00:57:14 +02002266 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002267void ieee80211_tx_pending(unsigned long data)
2268{
2269 struct ieee80211_local *local = (struct ieee80211_local *)data;
Johannes Berg2a577d92009-03-23 17:28:37 +01002270 unsigned long flags;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002271 int i;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002272 bool txok;
Johannes Berge2ebc742007-07-27 15:43:22 +02002273
Johannes Bergf0e72852009-03-23 17:28:36 +01002274 rcu_read_lock();
Johannes Berg2a577d92009-03-23 17:28:37 +01002275
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002276 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Berg176be722009-03-12 23:49:28 +01002277 for (i = 0; i < local->hw.queues; i++) {
Johannes Berg2a577d92009-03-23 17:28:37 +01002278 /*
2279 * If queue is stopped by something other than due to pending
2280 * frames, or we have no pending frames, proceed to next queue.
2281 */
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002282 if (local->queue_stop_reasons[i] ||
Johannes Berg2a577d92009-03-23 17:28:37 +01002283 skb_queue_empty(&local->pending[i]))
Johannes Berge2ebc742007-07-27 15:43:22 +02002284 continue;
Johannes Berge2530082008-05-17 00:57:14 +02002285
Johannes Berg2a577d92009-03-23 17:28:37 +01002286 while (!skb_queue_empty(&local->pending[i])) {
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002287 struct sk_buff *skb = __skb_dequeue(&local->pending[i]);
Johannes Berg5061b0c2009-07-14 00:33:34 +02002288 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg5061b0c2009-07-14 00:33:34 +02002289
Johannes Berga7bc3762009-07-27 10:33:31 +02002290 if (WARN_ON(!info->control.vif)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02002291 ieee80211_free_txskb(&local->hw, skb);
Johannes Berga7bc3762009-07-27 10:33:31 +02002292 continue;
2293 }
2294
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002295 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
2296 flags);
Johannes Berg2a577d92009-03-23 17:28:37 +01002297
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002298 txok = ieee80211_tx_pending_skb(local, skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002299 spin_lock_irqsave(&local->queue_stop_reason_lock,
2300 flags);
2301 if (!txok)
Johannes Berg2a577d92009-03-23 17:28:37 +01002302 break;
Johannes Berge2ebc742007-07-27 15:43:22 +02002303 }
Johannes Berg7236fe22010-03-22 13:42:43 -07002304
2305 if (skb_queue_empty(&local->pending[i]))
Johannes Berg3a25a8c2012-04-03 16:28:50 +02002306 ieee80211_propagate_queue_wake(local, i);
Johannes Berge2ebc742007-07-27 15:43:22 +02002307 }
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002308 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Johannes Berg2a577d92009-03-23 17:28:37 +01002309
Johannes Bergf0e72852009-03-23 17:28:36 +01002310 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002311}
2312
2313/* functions for drivers to get certain frames */
2314
Marco Porscheac70c12013-01-07 16:04:50 +01002315static void __ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
2316 struct ps_data *ps, struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +02002317{
2318 u8 *pos, *tim;
2319 int aid0 = 0;
2320 int i, have_bits = 0, n1, n2;
2321
2322 /* Generate bitmap for TIM only if there are any STAs in power save
2323 * mode. */
Marco Porschd012a602012-10-10 12:39:50 -07002324 if (atomic_read(&ps->num_sta_ps) > 0)
Johannes Berge2ebc742007-07-27 15:43:22 +02002325 /* in the hope that this is faster than
2326 * checking byte-for-byte */
Weilong Chenf359d3f2013-12-18 15:44:16 +08002327 have_bits = !bitmap_empty((unsigned long *)ps->tim,
Johannes Berge2ebc742007-07-27 15:43:22 +02002328 IEEE80211_MAX_AID+1);
2329
Marco Porschd012a602012-10-10 12:39:50 -07002330 if (ps->dtim_count == 0)
2331 ps->dtim_count = sdata->vif.bss_conf.dtim_period - 1;
Johannes Berge2ebc742007-07-27 15:43:22 +02002332 else
Marco Porschd012a602012-10-10 12:39:50 -07002333 ps->dtim_count--;
Johannes Berge2ebc742007-07-27 15:43:22 +02002334
2335 tim = pos = (u8 *) skb_put(skb, 6);
2336 *pos++ = WLAN_EID_TIM;
2337 *pos++ = 4;
Marco Porschd012a602012-10-10 12:39:50 -07002338 *pos++ = ps->dtim_count;
Johannes Berg88600202012-02-13 15:17:18 +01002339 *pos++ = sdata->vif.bss_conf.dtim_period;
Johannes Berge2ebc742007-07-27 15:43:22 +02002340
Marco Porschd012a602012-10-10 12:39:50 -07002341 if (ps->dtim_count == 0 && !skb_queue_empty(&ps->bc_buf))
Johannes Berge2ebc742007-07-27 15:43:22 +02002342 aid0 = 1;
2343
Marco Porschd012a602012-10-10 12:39:50 -07002344 ps->dtim_bc_mc = aid0 == 1;
Christian Lamparter512119b2011-01-31 20:48:44 +02002345
Johannes Berge2ebc742007-07-27 15:43:22 +02002346 if (have_bits) {
2347 /* Find largest even number N1 so that bits numbered 1 through
2348 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
2349 * (N2 + 1) x 8 through 2007 are 0. */
2350 n1 = 0;
2351 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
Marco Porschd012a602012-10-10 12:39:50 -07002352 if (ps->tim[i]) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002353 n1 = i & 0xfe;
2354 break;
2355 }
2356 }
2357 n2 = n1;
2358 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
Marco Porschd012a602012-10-10 12:39:50 -07002359 if (ps->tim[i]) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002360 n2 = i;
2361 break;
2362 }
2363 }
2364
2365 /* Bitmap control */
2366 *pos++ = n1 | aid0;
2367 /* Part Virt Bitmap */
Eliad Peller5220da32011-11-24 16:50:00 +02002368 skb_put(skb, n2 - n1);
Marco Porschd012a602012-10-10 12:39:50 -07002369 memcpy(pos, ps->tim + n1, n2 - n1 + 1);
Johannes Berge2ebc742007-07-27 15:43:22 +02002370
2371 tim[1] = n2 - n1 + 4;
Johannes Berge2ebc742007-07-27 15:43:22 +02002372 } else {
2373 *pos++ = aid0; /* Bitmap control */
2374 *pos++ = 0; /* Part Virt Bitmap */
2375 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002376}
2377
Marco Porscheac70c12013-01-07 16:04:50 +01002378static int ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
2379 struct ps_data *ps, struct sk_buff *skb)
2380{
2381 struct ieee80211_local *local = sdata->local;
2382
2383 /*
2384 * Not very nice, but we want to allow the driver to call
2385 * ieee80211_beacon_get() as a response to the set_tim()
2386 * callback. That, however, is already invoked under the
2387 * sta_lock to guarantee consistent and race-free update
2388 * of the tim bitmap in mac80211 and the driver.
2389 */
2390 if (local->tim_in_locked_section) {
2391 __ieee80211_beacon_add_tim(sdata, ps, skb);
2392 } else {
Johannes Berg1b917312013-02-22 12:55:01 +01002393 spin_lock_bh(&local->tim_lock);
Marco Porscheac70c12013-01-07 16:04:50 +01002394 __ieee80211_beacon_add_tim(sdata, ps, skb);
Johannes Berg1b917312013-02-22 12:55:01 +01002395 spin_unlock_bh(&local->tim_lock);
Marco Porscheac70c12013-01-07 16:04:50 +01002396 }
2397
2398 return 0;
2399}
2400
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002401static void ieee80211_update_csa(struct ieee80211_sub_if_data *sdata,
2402 struct beacon_data *beacon)
2403{
2404 struct probe_resp *resp;
2405 int counter_offset_beacon = sdata->csa_counter_offset_beacon;
2406 int counter_offset_presp = sdata->csa_counter_offset_presp;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002407 u8 *beacon_data;
2408 size_t beacon_data_len;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002409
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002410 switch (sdata->vif.type) {
2411 case NL80211_IFTYPE_AP:
2412 beacon_data = beacon->tail;
2413 beacon_data_len = beacon->tail_len;
2414 break;
2415 case NL80211_IFTYPE_ADHOC:
2416 beacon_data = beacon->head;
2417 beacon_data_len = beacon->head_len;
2418 break;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002419 case NL80211_IFTYPE_MESH_POINT:
2420 beacon_data = beacon->head;
2421 beacon_data_len = beacon->head_len;
2422 break;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002423 default:
2424 return;
2425 }
2426 if (WARN_ON(counter_offset_beacon >= beacon_data_len))
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002427 return;
2428
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002429 /* Warn if the driver did not check for/react to csa
2430 * completeness. A beacon with CSA counter set to 0 should
2431 * never occur, because a counter of 1 means switch just
2432 * before the next beacon.
2433 */
2434 if (WARN_ON(beacon_data[counter_offset_beacon] == 1))
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002435 return;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002436
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002437 beacon_data[counter_offset_beacon]--;
2438
2439 if (sdata->vif.type == NL80211_IFTYPE_AP && counter_offset_presp) {
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002440 rcu_read_lock();
2441 resp = rcu_dereference(sdata->u.ap.probe_resp);
2442
2443 /* if nl80211 accepted the offset, this should not happen. */
2444 if (WARN_ON(!resp)) {
2445 rcu_read_unlock();
2446 return;
2447 }
2448 resp->data[counter_offset_presp]--;
2449 rcu_read_unlock();
2450 }
2451}
2452
2453bool ieee80211_csa_is_complete(struct ieee80211_vif *vif)
2454{
2455 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2456 struct beacon_data *beacon = NULL;
2457 u8 *beacon_data;
2458 size_t beacon_data_len;
2459 int counter_beacon = sdata->csa_counter_offset_beacon;
2460 int ret = false;
2461
2462 if (!ieee80211_sdata_running(sdata))
2463 return false;
2464
2465 rcu_read_lock();
2466 if (vif->type == NL80211_IFTYPE_AP) {
2467 struct ieee80211_if_ap *ap = &sdata->u.ap;
2468
2469 beacon = rcu_dereference(ap->beacon);
2470 if (WARN_ON(!beacon || !beacon->tail))
2471 goto out;
2472 beacon_data = beacon->tail;
2473 beacon_data_len = beacon->tail_len;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002474 } else if (vif->type == NL80211_IFTYPE_ADHOC) {
2475 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
2476
2477 beacon = rcu_dereference(ifibss->presp);
2478 if (!beacon)
2479 goto out;
2480
2481 beacon_data = beacon->head;
2482 beacon_data_len = beacon->head_len;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002483 } else if (vif->type == NL80211_IFTYPE_MESH_POINT) {
2484 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
2485
2486 beacon = rcu_dereference(ifmsh->beacon);
2487 if (!beacon)
2488 goto out;
2489
2490 beacon_data = beacon->head;
2491 beacon_data_len = beacon->head_len;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002492 } else {
2493 WARN_ON(1);
2494 goto out;
2495 }
2496
2497 if (WARN_ON(counter_beacon > beacon_data_len))
2498 goto out;
2499
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002500 if (beacon_data[counter_beacon] == 1)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002501 ret = true;
2502 out:
2503 rcu_read_unlock();
2504
2505 return ret;
2506}
2507EXPORT_SYMBOL(ieee80211_csa_is_complete);
2508
Johannes Bergeddcbb92009-10-29 08:30:35 +01002509struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
2510 struct ieee80211_vif *vif,
2511 u16 *tim_offset, u16 *tim_length)
Johannes Berge2ebc742007-07-27 15:43:22 +02002512{
2513 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg9d139c82008-07-09 14:40:37 +02002514 struct sk_buff *skb = NULL;
Johannes Berge039fa42008-05-15 12:55:29 +02002515 struct ieee80211_tx_info *info;
Johannes Berge2ebc742007-07-27 15:43:22 +02002516 struct ieee80211_sub_if_data *sdata = NULL;
Johannes Berg55de9082012-07-26 17:24:39 +02002517 enum ieee80211_band band;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002518 struct ieee80211_tx_rate_control txrc;
Johannes Berg55de9082012-07-26 17:24:39 +02002519 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berg8318d782008-01-24 19:38:38 +01002520
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002521 rcu_read_lock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002522
Johannes Berg32bfd352007-12-19 01:31:26 +01002523 sdata = vif_to_sdata(vif);
Johannes Berg55de9082012-07-26 17:24:39 +02002524 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berge2ebc742007-07-27 15:43:22 +02002525
Johannes Berg55de9082012-07-26 17:24:39 +02002526 if (!ieee80211_sdata_running(sdata) || !chanctx_conf)
Felix Fietkaueb3e5542011-01-24 19:28:49 +01002527 goto out;
2528
Johannes Bergeddcbb92009-10-29 08:30:35 +01002529 if (tim_offset)
2530 *tim_offset = 0;
2531 if (tim_length)
2532 *tim_length = 0;
2533
Johannes Berg05c914f2008-09-11 00:01:58 +02002534 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Marco Porschd012a602012-10-10 12:39:50 -07002535 struct ieee80211_if_ap *ap = &sdata->u.ap;
2536 struct beacon_data *beacon = rcu_dereference(ap->beacon);
2537
Dan Carpenter3ad97fb2011-02-07 22:03:35 +03002538 if (beacon) {
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002539 if (sdata->vif.csa_active)
2540 ieee80211_update_csa(sdata, beacon);
2541
Johannes Berg902acc72008-02-23 15:17:19 +01002542 /*
2543 * headroom, head length,
2544 * tail length and maximum TIM length
2545 */
2546 skb = dev_alloc_skb(local->tx_headroom +
2547 beacon->head_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002548 beacon->tail_len + 256 +
2549 local->hw.extra_beacon_tailroom);
Johannes Berg902acc72008-02-23 15:17:19 +01002550 if (!skb)
2551 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002552
Johannes Berg902acc72008-02-23 15:17:19 +01002553 skb_reserve(skb, local->tx_headroom);
2554 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2555 beacon->head_len);
2556
Marco Porscheac70c12013-01-07 16:04:50 +01002557 ieee80211_beacon_add_tim(sdata, &ap->ps, skb);
Johannes Berg902acc72008-02-23 15:17:19 +01002558
Johannes Bergeddcbb92009-10-29 08:30:35 +01002559 if (tim_offset)
2560 *tim_offset = beacon->head_len;
2561 if (tim_length)
2562 *tim_length = skb->len - beacon->head_len;
2563
Johannes Berg902acc72008-02-23 15:17:19 +01002564 if (beacon->tail)
2565 memcpy(skb_put(skb, beacon->tail_len),
2566 beacon->tail, beacon->tail_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002567 } else
2568 goto out;
Johannes Berg05c914f2008-09-11 00:01:58 +02002569 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg46900292009-02-15 12:44:28 +01002570 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg9d139c82008-07-09 14:40:37 +02002571 struct ieee80211_hdr *hdr;
Johannes Bergc3ffeab2013-03-07 20:54:29 +01002572 struct beacon_data *presp = rcu_dereference(ifibss->presp);
Johannes Berg902acc72008-02-23 15:17:19 +01002573
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002574 if (!presp)
Johannes Berg9d139c82008-07-09 14:40:37 +02002575 goto out;
2576
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002577 if (sdata->vif.csa_active)
2578 ieee80211_update_csa(sdata, presp);
2579
2580
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002581 skb = dev_alloc_skb(local->tx_headroom + presp->head_len +
2582 local->hw.extra_beacon_tailroom);
Johannes Berg9d139c82008-07-09 14:40:37 +02002583 if (!skb)
2584 goto out;
Johannes Bergc3ffeab2013-03-07 20:54:29 +01002585 skb_reserve(skb, local->tx_headroom);
2586 memcpy(skb_put(skb, presp->head_len), presp->head,
2587 presp->head_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002588
2589 hdr = (struct ieee80211_hdr *) skb->data;
Harvey Harrisone7827a72008-07-15 18:44:13 -07002590 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2591 IEEE80211_STYPE_BEACON);
Johannes Berg902acc72008-02-23 15:17:19 +01002592 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
Javier Cardonadbf498f2012-03-31 11:31:32 -07002593 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08002594 struct beacon_data *bcn = rcu_dereference(ifmsh->beacon);
Johannes Berg472dbc42008-09-11 00:01:49 +02002595
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08002596 if (!bcn)
Johannes Bergac1bd842011-01-18 13:45:32 +01002597 goto out;
Johannes Bergac1bd842011-01-18 13:45:32 +01002598
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002599 if (sdata->vif.csa_active)
2600 ieee80211_update_csa(sdata, bcn);
2601
Javier Cardonadbf498f2012-03-31 11:31:32 -07002602 if (ifmsh->sync_ops)
Thomas Pedersen43552be2013-12-15 13:14:16 -08002603 ifmsh->sync_ops->adjust_tbtt(sdata, bcn);
Javier Cardonadbf498f2012-03-31 11:31:32 -07002604
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -07002605 skb = dev_alloc_skb(local->tx_headroom +
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08002606 bcn->head_len +
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002607 256 + /* TIM IE */
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002608 bcn->tail_len +
2609 local->hw.extra_beacon_tailroom);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002610 if (!skb)
2611 goto out;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08002612 skb_reserve(skb, local->tx_headroom);
2613 memcpy(skb_put(skb, bcn->head_len), bcn->head, bcn->head_len);
2614 ieee80211_beacon_add_tim(sdata, &ifmsh->ps, skb);
2615 memcpy(skb_put(skb, bcn->tail_len), bcn->tail, bcn->tail_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002616 } else {
2617 WARN_ON(1);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002618 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02002619 }
2620
Johannes Berg4bf88532012-11-09 11:39:59 +01002621 band = chanctx_conf->def.chan->band;
Johannes Berg55de9082012-07-26 17:24:39 +02002622
Johannes Berge039fa42008-05-15 12:55:29 +02002623 info = IEEE80211_SKB_CB(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002624
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002625 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002626 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Johannes Berge039fa42008-05-15 12:55:29 +02002627 info->band = band;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002628
2629 memset(&txrc, 0, sizeof(txrc));
2630 txrc.hw = hw;
Johannes Berge31583c2012-07-26 14:07:46 +02002631 txrc.sband = local->hw.wiphy->bands[band];
Jouni Malinene00cfce2009-12-29 12:59:19 +02002632 txrc.bss_conf = &sdata->vif.bss_conf;
2633 txrc.skb = skb;
2634 txrc.reported_rate.idx = -1;
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002635 txrc.rate_idx_mask = sdata->rc_rateidx_mask[band];
Johannes Berge31583c2012-07-26 14:07:46 +02002636 if (txrc.rate_idx_mask == (1 << txrc.sband->n_bitrates) - 1)
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002637 txrc.max_rate_idx = -1;
2638 else
2639 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
Felix Fietkau8f0729b2010-11-11 15:07:23 +01002640 txrc.bss = true;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002641 rate_control_get_rate(sdata, NULL, &txrc);
Johannes Berge039fa42008-05-15 12:55:29 +02002642
2643 info->control.vif = vif;
Johannes Bergf591fa52008-07-10 11:21:26 +02002644
John W. Linvillea472e712010-05-06 14:45:17 -04002645 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT |
2646 IEEE80211_TX_CTL_ASSIGN_SEQ |
2647 IEEE80211_TX_CTL_FIRST_FRAGMENT;
Johannes Berge6a98542008-10-21 12:40:02 +02002648 out:
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002649 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002650 return skb;
2651}
Johannes Bergeddcbb92009-10-29 08:30:35 +01002652EXPORT_SYMBOL(ieee80211_beacon_get_tim);
Johannes Berge2ebc742007-07-27 15:43:22 +02002653
Arik Nemtsov02945822011-11-10 11:28:57 +02002654struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw,
2655 struct ieee80211_vif *vif)
2656{
2657 struct ieee80211_if_ap *ap = NULL;
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002658 struct sk_buff *skb = NULL;
2659 struct probe_resp *presp = NULL;
Arik Nemtsov02945822011-11-10 11:28:57 +02002660 struct ieee80211_hdr *hdr;
2661 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2662
2663 if (sdata->vif.type != NL80211_IFTYPE_AP)
2664 return NULL;
2665
2666 rcu_read_lock();
2667
2668 ap = &sdata->u.ap;
2669 presp = rcu_dereference(ap->probe_resp);
2670 if (!presp)
2671 goto out;
2672
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002673 skb = dev_alloc_skb(presp->len);
Arik Nemtsov02945822011-11-10 11:28:57 +02002674 if (!skb)
2675 goto out;
2676
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002677 memcpy(skb_put(skb, presp->len), presp->data, presp->len);
2678
Arik Nemtsov02945822011-11-10 11:28:57 +02002679 hdr = (struct ieee80211_hdr *) skb->data;
2680 memset(hdr->addr1, 0, sizeof(hdr->addr1));
2681
2682out:
2683 rcu_read_unlock();
2684 return skb;
2685}
2686EXPORT_SYMBOL(ieee80211_proberesp_get);
2687
Kalle Valo7044cc52010-01-05 20:16:19 +02002688struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw,
2689 struct ieee80211_vif *vif)
2690{
2691 struct ieee80211_sub_if_data *sdata;
2692 struct ieee80211_if_managed *ifmgd;
2693 struct ieee80211_pspoll *pspoll;
2694 struct ieee80211_local *local;
2695 struct sk_buff *skb;
2696
2697 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2698 return NULL;
2699
2700 sdata = vif_to_sdata(vif);
2701 ifmgd = &sdata->u.mgd;
2702 local = sdata->local;
2703
2704 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
Joe Perchesd15b8452011-08-29 14:17:31 -07002705 if (!skb)
Kalle Valo7044cc52010-01-05 20:16:19 +02002706 return NULL;
Joe Perchesd15b8452011-08-29 14:17:31 -07002707
Kalle Valo7044cc52010-01-05 20:16:19 +02002708 skb_reserve(skb, local->hw.extra_tx_headroom);
2709
2710 pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll));
2711 memset(pspoll, 0, sizeof(*pspoll));
2712 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
2713 IEEE80211_STYPE_PSPOLL);
2714 pspoll->aid = cpu_to_le16(ifmgd->aid);
2715
2716 /* aid in PS-Poll has its two MSBs each set to 1 */
2717 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
2718
2719 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
2720 memcpy(pspoll->ta, vif->addr, ETH_ALEN);
2721
2722 return skb;
2723}
2724EXPORT_SYMBOL(ieee80211_pspoll_get);
2725
2726struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw,
2727 struct ieee80211_vif *vif)
2728{
2729 struct ieee80211_hdr_3addr *nullfunc;
2730 struct ieee80211_sub_if_data *sdata;
2731 struct ieee80211_if_managed *ifmgd;
2732 struct ieee80211_local *local;
2733 struct sk_buff *skb;
2734
2735 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2736 return NULL;
2737
2738 sdata = vif_to_sdata(vif);
2739 ifmgd = &sdata->u.mgd;
2740 local = sdata->local;
2741
2742 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*nullfunc));
Joe Perchesd15b8452011-08-29 14:17:31 -07002743 if (!skb)
Kalle Valo7044cc52010-01-05 20:16:19 +02002744 return NULL;
Joe Perchesd15b8452011-08-29 14:17:31 -07002745
Kalle Valo7044cc52010-01-05 20:16:19 +02002746 skb_reserve(skb, local->hw.extra_tx_headroom);
2747
2748 nullfunc = (struct ieee80211_hdr_3addr *) skb_put(skb,
2749 sizeof(*nullfunc));
2750 memset(nullfunc, 0, sizeof(*nullfunc));
2751 nullfunc->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
2752 IEEE80211_STYPE_NULLFUNC |
2753 IEEE80211_FCTL_TODS);
2754 memcpy(nullfunc->addr1, ifmgd->bssid, ETH_ALEN);
2755 memcpy(nullfunc->addr2, vif->addr, ETH_ALEN);
2756 memcpy(nullfunc->addr3, ifmgd->bssid, ETH_ALEN);
2757
2758 return skb;
2759}
2760EXPORT_SYMBOL(ieee80211_nullfunc_get);
2761
Kalle Valo05e54ea2010-01-05 20:16:38 +02002762struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw,
2763 struct ieee80211_vif *vif,
2764 const u8 *ssid, size_t ssid_len,
Johannes Bergb9a9ada2012-11-29 13:00:10 +01002765 size_t tailroom)
Kalle Valo05e54ea2010-01-05 20:16:38 +02002766{
2767 struct ieee80211_sub_if_data *sdata;
2768 struct ieee80211_local *local;
2769 struct ieee80211_hdr_3addr *hdr;
2770 struct sk_buff *skb;
2771 size_t ie_ssid_len;
2772 u8 *pos;
2773
2774 sdata = vif_to_sdata(vif);
2775 local = sdata->local;
2776 ie_ssid_len = 2 + ssid_len;
2777
2778 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*hdr) +
Johannes Bergb9a9ada2012-11-29 13:00:10 +01002779 ie_ssid_len + tailroom);
Joe Perchesd15b8452011-08-29 14:17:31 -07002780 if (!skb)
Kalle Valo05e54ea2010-01-05 20:16:38 +02002781 return NULL;
Kalle Valo05e54ea2010-01-05 20:16:38 +02002782
2783 skb_reserve(skb, local->hw.extra_tx_headroom);
2784
2785 hdr = (struct ieee80211_hdr_3addr *) skb_put(skb, sizeof(*hdr));
2786 memset(hdr, 0, sizeof(*hdr));
2787 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2788 IEEE80211_STYPE_PROBE_REQ);
Johannes Berge83e6542012-07-13 16:23:07 +02002789 eth_broadcast_addr(hdr->addr1);
Kalle Valo05e54ea2010-01-05 20:16:38 +02002790 memcpy(hdr->addr2, vif->addr, ETH_ALEN);
Johannes Berge83e6542012-07-13 16:23:07 +02002791 eth_broadcast_addr(hdr->addr3);
Kalle Valo05e54ea2010-01-05 20:16:38 +02002792
2793 pos = skb_put(skb, ie_ssid_len);
2794 *pos++ = WLAN_EID_SSID;
2795 *pos++ = ssid_len;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002796 if (ssid_len)
Kalle Valo05e54ea2010-01-05 20:16:38 +02002797 memcpy(pos, ssid, ssid_len);
2798 pos += ssid_len;
2799
Kalle Valo05e54ea2010-01-05 20:16:38 +02002800 return skb;
2801}
2802EXPORT_SYMBOL(ieee80211_probereq_get);
2803
Johannes Berg32bfd352007-12-19 01:31:26 +01002804void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02002805 const void *frame, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +02002806 const struct ieee80211_tx_info *frame_txctl,
Johannes Berge2ebc742007-07-27 15:43:22 +02002807 struct ieee80211_rts *rts)
2808{
2809 const struct ieee80211_hdr *hdr = frame;
Johannes Berge2ebc742007-07-27 15:43:22 +02002810
Harvey Harrison065e96052008-06-22 16:45:27 -07002811 rts->frame_control =
2812 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
Johannes Berg32bfd352007-12-19 01:31:26 +01002813 rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
2814 frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02002815 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
2816 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
2817}
2818EXPORT_SYMBOL(ieee80211_rts_get);
2819
Johannes Berg32bfd352007-12-19 01:31:26 +01002820void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02002821 const void *frame, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +02002822 const struct ieee80211_tx_info *frame_txctl,
Johannes Berge2ebc742007-07-27 15:43:22 +02002823 struct ieee80211_cts *cts)
2824{
2825 const struct ieee80211_hdr *hdr = frame;
Johannes Berge2ebc742007-07-27 15:43:22 +02002826
Harvey Harrison065e96052008-06-22 16:45:27 -07002827 cts->frame_control =
2828 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
Johannes Berg32bfd352007-12-19 01:31:26 +01002829 cts->duration = ieee80211_ctstoself_duration(hw, vif,
2830 frame_len, frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02002831 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
2832}
2833EXPORT_SYMBOL(ieee80211_ctstoself_get);
2834
2835struct sk_buff *
Johannes Berg32bfd352007-12-19 01:31:26 +01002836ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
Johannes Berge039fa42008-05-15 12:55:29 +02002837 struct ieee80211_vif *vif)
Johannes Berge2ebc742007-07-27 15:43:22 +02002838{
2839 struct ieee80211_local *local = hw_to_local(hw);
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002840 struct sk_buff *skb = NULL;
Johannes Berg5cf121c2008-02-25 16:27:43 +01002841 struct ieee80211_tx_data tx;
Johannes Berge2ebc742007-07-27 15:43:22 +02002842 struct ieee80211_sub_if_data *sdata;
Marco Porschd012a602012-10-10 12:39:50 -07002843 struct ps_data *ps;
Johannes Berge039fa42008-05-15 12:55:29 +02002844 struct ieee80211_tx_info *info;
Johannes Berg55de9082012-07-26 17:24:39 +02002845 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berge2ebc742007-07-27 15:43:22 +02002846
Johannes Berg32bfd352007-12-19 01:31:26 +01002847 sdata = vif_to_sdata(vif);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002848
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002849 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02002850 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002851
Marco Porschd012a602012-10-10 12:39:50 -07002852 if (!chanctx_conf)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002853 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002854
Marco Porschd012a602012-10-10 12:39:50 -07002855 if (sdata->vif.type == NL80211_IFTYPE_AP) {
2856 struct beacon_data *beacon =
2857 rcu_dereference(sdata->u.ap.beacon);
2858
2859 if (!beacon || !beacon->head)
2860 goto out;
2861
2862 ps = &sdata->u.ap.ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002863 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
2864 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -07002865 } else {
2866 goto out;
2867 }
2868
2869 if (ps->dtim_count != 0 || !ps->dtim_bc_mc)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002870 goto out; /* send buffered bc/mc only after DTIM beacon */
Johannes Berge039fa42008-05-15 12:55:29 +02002871
Johannes Berge2ebc742007-07-27 15:43:22 +02002872 while (1) {
Marco Porschd012a602012-10-10 12:39:50 -07002873 skb = skb_dequeue(&ps->bc_buf);
Johannes Berge2ebc742007-07-27 15:43:22 +02002874 if (!skb)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002875 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02002876 local->total_ps_buffered--;
2877
Marco Porschd012a602012-10-10 12:39:50 -07002878 if (!skb_queue_empty(&ps->bc_buf) && skb->len >= 2) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002879 struct ieee80211_hdr *hdr =
2880 (struct ieee80211_hdr *) skb->data;
2881 /* more buffered multicast/broadcast frames ==> set
2882 * MoreData flag in IEEE 802.11 header to inform PS
2883 * STAs */
2884 hdr->frame_control |=
2885 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
2886 }
2887
Michael Braun112c44b2014-03-06 15:08:43 +01002888 if (sdata->vif.type == NL80211_IFTYPE_AP)
Marco Porsch7cbf9d02013-03-01 16:01:18 +01002889 sdata = IEEE80211_DEV_TO_SUB_IF(skb->dev);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002890 if (!ieee80211_tx_prepare(sdata, &tx, skb))
Johannes Berge2ebc742007-07-27 15:43:22 +02002891 break;
2892 dev_kfree_skb_any(skb);
2893 }
Johannes Berge039fa42008-05-15 12:55:29 +02002894
2895 info = IEEE80211_SKB_CB(skb);
2896
Johannes Berg5cf121c2008-02-25 16:27:43 +01002897 tx.flags |= IEEE80211_TX_PS_BUFFERED;
Johannes Berg4bf88532012-11-09 11:39:59 +01002898 info->band = chanctx_conf->def.chan->band;
Johannes Berge2ebc742007-07-27 15:43:22 +02002899
Johannes Berg97b045d2008-06-20 01:22:30 +02002900 if (invoke_tx_handlers(&tx))
Johannes Berge2ebc742007-07-27 15:43:22 +02002901 skb = NULL;
Johannes Berg97b045d2008-06-20 01:22:30 +02002902 out:
Johannes Bergd0709a62008-02-25 16:27:46 +01002903 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002904
2905 return skb;
2906}
2907EXPORT_SYMBOL(ieee80211_get_buffered_bc);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002908
Johannes Berg55de9082012-07-26 17:24:39 +02002909void __ieee80211_tx_skb_tid_band(struct ieee80211_sub_if_data *sdata,
2910 struct sk_buff *skb, int tid,
2911 enum ieee80211_band band)
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002912{
Christian Lamparter353d09c2012-07-07 15:07:13 +02002913 int ac = ieee802_1d_to_ac[tid & 7];
Johannes Berg3a25a8c2012-04-03 16:28:50 +02002914
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002915 skb_set_mac_header(skb, 0);
2916 skb_set_network_header(skb, 0);
2917 skb_set_transport_header(skb, 0);
2918
Johannes Berg3a25a8c2012-04-03 16:28:50 +02002919 skb_set_queue_mapping(skb, ac);
Helmut Schaacf6bb792011-12-15 10:18:34 +01002920 skb->priority = tid;
Johannes Bergcf0277e2010-01-05 18:00:58 +01002921
Johannes Berg89afe612013-02-13 15:39:57 +01002922 skb->dev = sdata->dev;
2923
Johannes Berg3d34deb2009-06-18 17:25:11 +02002924 /*
2925 * The other path calling ieee80211_xmit is from the tasklet,
2926 * and while we can handle concurrent transmissions locking
2927 * requirements are that we do not come into tx with bhs on.
2928 */
2929 local_bh_disable();
Johannes Berg55de9082012-07-26 17:24:39 +02002930 ieee80211_xmit(sdata, skb, band);
Johannes Berg3d34deb2009-06-18 17:25:11 +02002931 local_bh_enable();
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002932}