blob: d741b7369dc4dfa1d522b5f7733a993437a5dae9 [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) ||
Johannes Berg5ac2e352014-05-27 16:32:27 +0200472 test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
473 test_sta_flag(sta, WLAN_STA_PS_DELIVER)) &&
Johannes Berg02f2f1a2012-02-27 12:18:30 +0100474 !(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER))) {
Johannes Berg948d8872011-09-29 16:04:29 +0200475 int ac = skb_get_queue_mapping(tx->skb);
476
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200477 ps_dbg(sta->sdata, "STA %pM aid %d: PS buffer for AC %d\n",
478 sta->sta.addr, sta->sta.aid, ac);
Johannes Berge2ebc742007-07-27 15:43:22 +0200479 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
480 purge_old_ps_buffers(tx->local);
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +0200481
482 /* sync with ieee80211_sta_ps_deliver_wakeup */
483 spin_lock(&sta->ps_lock);
484 /*
485 * STA woke up the meantime and all the frames on ps_tx_buf have
486 * been queued to pending queue. No reordering can happen, go
487 * ahead and Tx the packet.
488 */
489 if (!test_sta_flag(sta, WLAN_STA_PS_STA) &&
Johannes Berg5ac2e352014-05-27 16:32:27 +0200490 !test_sta_flag(sta, WLAN_STA_PS_DRIVER) &&
491 !test_sta_flag(sta, WLAN_STA_PS_DELIVER)) {
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +0200492 spin_unlock(&sta->ps_lock);
493 return TX_CONTINUE;
494 }
495
Johannes Berg948d8872011-09-29 16:04:29 +0200496 if (skb_queue_len(&sta->ps_tx_buf[ac]) >= STA_MAX_TX_BUFFER) {
497 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf[ac]);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200498 ps_dbg(tx->sdata,
499 "STA %pM TX buffer for AC %d full - dropping oldest frame\n",
500 sta->sta.addr, ac);
Felix Fietkauc3e77242012-10-08 14:39:33 +0200501 ieee80211_free_txskb(&local->hw, old);
Johannes Berge2ebc742007-07-27 15:43:22 +0200502 } else
503 tx->local->total_ps_buffered++;
Johannes Berg004c8722008-02-20 11:21:35 +0100504
Johannes Berge039fa42008-05-15 12:55:29 +0200505 info->control.jiffies = jiffies;
Johannes Berg5061b0c2009-07-14 00:33:34 +0200506 info->control.vif = &tx->sdata->vif;
Johannes Berg8f77f382009-06-07 21:58:37 +0200507 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
Johannes Berg03c8c062014-01-09 01:45:28 +0100508 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
Johannes Berg948d8872011-09-29 16:04:29 +0200509 skb_queue_tail(&sta->ps_tx_buf[ac], tx->skb);
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +0200510 spin_unlock(&sta->ps_lock);
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300511
512 if (!timer_pending(&local->sta_cleanup))
513 mod_timer(&local->sta_cleanup,
514 round_jiffies(jiffies +
515 STA_INFO_CLEANUP_INTERVAL));
516
Johannes Bergc868cb352011-09-29 16:04:27 +0200517 /*
518 * We queued up some frames, so the TIM bit might
519 * need to be set, recalculate it.
520 */
521 sta_info_recalc_tim(sta);
522
Johannes Berg9ae54c82008-01-31 19:48:20 +0100523 return TX_QUEUED;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200524 } else if (unlikely(test_sta_flag(sta, WLAN_STA_PS_STA))) {
525 ps_dbg(tx->sdata,
526 "STA %pM in PS mode, but polling/in SP -> send frame\n",
527 sta->sta.addr);
Johannes Berge2ebc742007-07-27 15:43:22 +0200528 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200529
Johannes Berg9ae54c82008-01-31 19:48:20 +0100530 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200531}
532
Johannes Bergd9e8a702008-06-30 15:10:44 +0200533static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100534ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200535{
Felix Fietkau277d9162013-12-16 21:39:50 +0100536 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
537 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
538
Johannes Berg5cf121c2008-02-25 16:27:43 +0100539 if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100540 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200541
Felix Fietkau277d9162013-12-16 21:39:50 +0100542 if (ieee80211_is_mgmt(hdr->frame_control) &&
Johannes Bergb4ba5442014-01-24 14:41:44 +0100543 !ieee80211_is_bufferable_mmpdu(hdr->frame_control)) {
Felix Fietkau277d9162013-12-16 21:39:50 +0100544 if (tx->flags & IEEE80211_TX_UNICAST)
545 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
546 return TX_CONTINUE;
547 }
548
Johannes Berg5cf121c2008-02-25 16:27:43 +0100549 if (tx->flags & IEEE80211_TX_UNICAST)
Johannes Berge2ebc742007-07-27 15:43:22 +0200550 return ieee80211_tx_h_unicast_ps_buf(tx);
551 else
552 return ieee80211_tx_h_multicast_ps_buf(tx);
553}
554
Johannes Bergd9e8a702008-06-30 15:10:44 +0200555static ieee80211_tx_result debug_noinline
Johannes Berga621fa42010-08-27 14:26:54 +0300556ieee80211_tx_h_check_control_port_protocol(struct ieee80211_tx_data *tx)
557{
558 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
559
Johannes Bergaf61a162013-07-02 18:09:12 +0200560 if (unlikely(tx->sdata->control_port_protocol == tx->skb->protocol)) {
561 if (tx->sdata->control_port_no_encrypt)
562 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
563 info->control.flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO;
564 }
Johannes Berga621fa42010-08-27 14:26:54 +0300565
566 return TX_CONTINUE;
567}
568
569static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100570ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200571{
Johannes Berg46e6de12012-07-04 18:10:07 +0200572 struct ieee80211_key *key;
Johannes Berge039fa42008-05-15 12:55:29 +0200573 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Harvey Harrison358c8d92008-07-15 18:44:13 -0700574 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400575
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200576 if (unlikely(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT))
Johannes Berge2ebc742007-07-27 15:43:22 +0200577 tx->key = NULL;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200578 else if (tx->sta &&
579 (key = rcu_dereference(tx->sta->ptk[tx->sta->ptk_idx])))
Johannes Bergd4e46a32007-09-14 11:10:24 -0400580 tx->key = key;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200581 else if (ieee80211_is_mgmt(hdr->frame_control) &&
Jouni Malinenecbcd322010-03-29 23:35:23 -0700582 is_multicast_ether_addr(hdr->addr1) &&
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100583 ieee80211_is_robust_mgmt_frame(tx->skb) &&
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200584 (key = rcu_dereference(tx->sdata->default_mgmt_key)))
585 tx->key = key;
Johannes Bergf7e01042010-12-09 19:49:02 +0100586 else if (is_multicast_ether_addr(hdr->addr1) &&
587 (key = rcu_dereference(tx->sdata->default_multicast_key)))
588 tx->key = key;
589 else if (!is_multicast_ether_addr(hdr->addr1) &&
590 (key = rcu_dereference(tx->sdata->default_unicast_key)))
Johannes Bergd4e46a32007-09-14 11:10:24 -0400591 tx->key = key;
Johannes Berg46e6de12012-07-04 18:10:07 +0200592 else if (info->flags & IEEE80211_TX_CTL_INJECTED)
593 tx->key = NULL;
594 else if (!tx->sdata->drop_unencrypted)
595 tx->key = NULL;
596 else if (tx->skb->protocol == tx->sdata->control_port_protocol)
597 tx->key = NULL;
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100598 else if (ieee80211_is_robust_mgmt_frame(tx->skb) &&
Johannes Berg46e6de12012-07-04 18:10:07 +0200599 !(ieee80211_is_action(hdr->frame_control) &&
600 tx->sta && test_sta_flag(tx->sta, WLAN_STA_MFP)))
601 tx->key = NULL;
Nicolas Cavallari4922f712012-07-04 18:10:08 +0200602 else if (ieee80211_is_mgmt(hdr->frame_control) &&
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100603 !ieee80211_is_robust_mgmt_frame(tx->skb))
Nicolas Cavallari4922f712012-07-04 18:10:08 +0200604 tx->key = NULL;
Johannes Berg46e6de12012-07-04 18:10:07 +0200605 else {
Johannes Berge2ebc742007-07-27 15:43:22 +0200606 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100607 return TX_DROP;
Johannes Berg46e6de12012-07-04 18:10:07 +0200608 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200609
610 if (tx->key) {
Johannes Berg813d7662010-01-17 01:47:58 +0100611 bool skip_hw = false;
612
Johannes Berge2ebc742007-07-27 15:43:22 +0200613 tx->key->tx_rx_count++;
Johannes Berg011bfcc2007-09-17 01:29:25 -0400614 /* TODO: add threshold stuff again */
Johannes Berg176e4f82007-12-18 15:27:47 +0100615
Johannes Berg97359d12010-08-10 09:46:38 +0200616 switch (tx->key->conf.cipher) {
617 case WLAN_CIPHER_SUITE_WEP40:
618 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berg97359d12010-08-10 09:46:38 +0200619 case WLAN_CIPHER_SUITE_TKIP:
Harvey Harrison358c8d92008-07-15 18:44:13 -0700620 if (!ieee80211_is_data_present(hdr->frame_control))
Johannes Berg176e4f82007-12-18 15:27:47 +0100621 tx->key = NULL;
622 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200623 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinenfb733332009-01-08 13:32:00 +0200624 if (!ieee80211_is_data_present(hdr->frame_control) &&
625 !ieee80211_use_mfp(hdr->frame_control, tx->sta,
626 tx->skb))
627 tx->key = NULL;
Kalle Valo3b43a182010-01-23 20:27:14 +0200628 else
629 skip_hw = (tx->key->conf.flags &
Johannes Berge548c492012-09-04 17:08:23 +0200630 IEEE80211_KEY_FLAG_SW_MGMT_TX) &&
Kalle Valo3b43a182010-01-23 20:27:14 +0200631 ieee80211_is_mgmt(hdr->frame_control);
Jouni Malinenfb733332009-01-08 13:32:00 +0200632 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200633 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200634 if (!ieee80211_is_mgmt(hdr->frame_control))
635 tx->key = NULL;
636 break;
Johannes Berg176e4f82007-12-18 15:27:47 +0100637 }
Johannes Berg813d7662010-01-17 01:47:58 +0100638
Johannes Berge54faf22013-01-29 11:41:38 +0100639 if (unlikely(tx->key && tx->key->flags & KEY_FLAG_TAINTED &&
640 !ieee80211_is_deauth(hdr->frame_control)))
Johannes Berg95acac62011-07-12 12:30:59 +0200641 return TX_DROP;
642
Johannes Bergf12553e2010-01-22 22:07:59 +0100643 if (!skip_hw && tx->key &&
Johannes Berg382b1652010-01-25 11:36:16 +0100644 tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
Johannes Berg813d7662010-01-17 01:47:58 +0100645 info->control.hw_key = &tx->key->conf;
Johannes Berge2ebc742007-07-27 15:43:22 +0200646 }
647
Johannes Berg9ae54c82008-01-31 19:48:20 +0100648 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200649}
650
Johannes Bergd9e8a702008-06-30 15:10:44 +0200651static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100652ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200653{
Johannes Berge039fa42008-05-15 12:55:29 +0200654 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200655 struct ieee80211_hdr *hdr = (void *)tx->skb->data;
656 struct ieee80211_supported_band *sband;
Shanyu Zhaoa2c40242010-04-27 11:15:12 -0700657 u32 len;
Johannes Berge6a98542008-10-21 12:40:02 +0200658 struct ieee80211_tx_rate_control txrc;
Felix Fietkau0d528d82013-04-22 16:14:41 +0200659 struct ieee80211_sta_rates *ratetbl = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200660 bool assoc = false;
Johannes Berge6a98542008-10-21 12:40:02 +0200661
662 memset(&txrc, 0, sizeof(txrc));
Johannes Berg8318d782008-01-24 19:38:38 +0100663
Johannes Berg2d565772012-07-23 15:12:51 +0200664 sband = tx->local->hw.wiphy->bands[info->band];
Johannes Berge2ebc742007-07-27 15:43:22 +0200665
Shanyu Zhaoa2c40242010-04-27 11:15:12 -0700666 len = min_t(u32, tx->skb->len + FCS_LEN,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200667 tx->local->hw.wiphy->frag_threshold);
Johannes Berg58d41852007-09-26 17:53:18 +0200668
Johannes Berge6a98542008-10-21 12:40:02 +0200669 /* set up the tx rate control struct we give the RC algo */
Johannes Berg005e4722012-02-26 11:24:35 +0100670 txrc.hw = &tx->local->hw;
Johannes Berge6a98542008-10-21 12:40:02 +0200671 txrc.sband = sband;
672 txrc.bss_conf = &tx->sdata->vif.bss_conf;
673 txrc.skb = tx->skb;
674 txrc.reported_rate.idx = -1;
Johannes Berg2d565772012-07-23 15:12:51 +0200675 txrc.rate_idx_mask = tx->sdata->rc_rateidx_mask[info->band];
Jouni Malinen37eb0b12010-01-06 13:09:08 +0200676 if (txrc.rate_idx_mask == (1 << sband->n_bitrates) - 1)
677 txrc.max_rate_idx = -1;
678 else
679 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +0200680
681 if (tx->sdata->rc_has_mcs_mask[info->band])
682 txrc.rate_idx_mcs_mask =
683 tx->sdata->rc_rateidx_mcs_mask[info->band];
684
Felix Fietkau8f0729b2010-11-11 15:07:23 +0100685 txrc.bss = (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -0800686 tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT ||
Felix Fietkau8f0729b2010-11-11 15:07:23 +0100687 tx->sdata->vif.type == NL80211_IFTYPE_ADHOC);
Johannes Berg58d41852007-09-26 17:53:18 +0200688
Johannes Berge6a98542008-10-21 12:40:02 +0200689 /* set up RTS protection if desired */
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200690 if (len > tx->local->hw.wiphy->rts_threshold) {
Felix Fietkau0d528d82013-04-22 16:14:41 +0200691 txrc.rts = true;
Johannes Berge2ebc742007-07-27 15:43:22 +0200692 }
Johannes Berge6a98542008-10-21 12:40:02 +0200693
Felix Fietkau0d528d82013-04-22 16:14:41 +0200694 info->control.use_rts = txrc.rts;
Felix Fietkau991fec02013-04-16 13:38:43 +0200695 info->control.use_cts_prot = tx->sdata->vif.bss_conf.use_cts_prot;
696
Johannes Berge6a98542008-10-21 12:40:02 +0200697 /*
698 * Use short preamble if the BSS can handle it, but not for
699 * management frames unless we know the receiver can handle
700 * that -- the management frame might be to a station that
701 * just wants a probe response.
702 */
703 if (tx->sdata->vif.bss_conf.use_short_preamble &&
704 (ieee80211_is_data(hdr->frame_control) ||
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200705 (tx->sta && test_sta_flag(tx->sta, WLAN_STA_SHORT_PREAMBLE))))
Felix Fietkau0d528d82013-04-22 16:14:41 +0200706 txrc.short_preamble = true;
707
708 info->control.short_preamble = txrc.short_preamble;
Johannes Berge6a98542008-10-21 12:40:02 +0200709
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200710 if (tx->sta)
711 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
Johannes Berge6a98542008-10-21 12:40:02 +0200712
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700713 /*
714 * Lets not bother rate control if we're associated and cannot
715 * talk to the sta. This should not happen.
716 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200717 if (WARN(test_bit(SCAN_SW_SCANNING, &tx->local->scanning) && assoc &&
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700718 !rate_usable_index_exists(sband, &tx->sta->sta),
719 "%s: Dropped data frame as no usable bitrate found while "
720 "scanning and associated. Target station: "
721 "%pM on %d GHz band\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100722 tx->sdata->name, hdr->addr1,
Johannes Berg2d565772012-07-23 15:12:51 +0200723 info->band ? 5 : 2))
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700724 return TX_DROP;
725
726 /*
727 * If we're associated with the sta at this point we know we can at
728 * least send the frame at the lowest bit rate.
729 */
Johannes Berge6a98542008-10-21 12:40:02 +0200730 rate_control_get_rate(tx->sdata, tx->sta, &txrc);
731
Felix Fietkau0d528d82013-04-22 16:14:41 +0200732 if (tx->sta && !info->control.skip_table)
733 ratetbl = rcu_dereference(tx->sta->sta.rates);
734
735 if (unlikely(info->control.rates[0].idx < 0)) {
736 if (ratetbl) {
737 struct ieee80211_tx_rate rate = {
738 .idx = ratetbl->rate[0].idx,
739 .flags = ratetbl->rate[0].flags,
740 .count = ratetbl->rate[0].count
741 };
742
743 if (ratetbl->rate[0].idx < 0)
744 return TX_DROP;
745
746 tx->rate = rate;
747 } else {
748 return TX_DROP;
749 }
750 } else {
751 tx->rate = info->control.rates[0];
752 }
Johannes Berge6a98542008-10-21 12:40:02 +0200753
Helmut Schaac1ce5a72010-12-01 16:34:45 +0100754 if (txrc.reported_rate.idx < 0) {
Felix Fietkau0d528d82013-04-22 16:14:41 +0200755 txrc.reported_rate = tx->rate;
Helmut Schaac1ce5a72010-12-01 16:34:45 +0100756 if (tx->sta && ieee80211_is_data(hdr->frame_control))
757 tx->sta->last_tx_rate = txrc.reported_rate;
758 } else if (tx->sta)
Johannes Berge6a98542008-10-21 12:40:02 +0200759 tx->sta->last_tx_rate = txrc.reported_rate;
760
Felix Fietkau0d528d82013-04-22 16:14:41 +0200761 if (ratetbl)
762 return TX_CONTINUE;
763
Johannes Berge6a98542008-10-21 12:40:02 +0200764 if (unlikely(!info->control.rates[0].count))
765 info->control.rates[0].count = 1;
766
Gábor Stefanik99551512009-04-23 19:36:14 +0200767 if (WARN_ON_ONCE((info->control.rates[0].count > 1) &&
768 (info->flags & IEEE80211_TX_CTL_NO_ACK)))
769 info->control.rates[0].count = 1;
770
Johannes Berg9ae54c82008-01-31 19:48:20 +0100771 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200772}
773
Johannes Bergd9e8a702008-06-30 15:10:44 +0200774static ieee80211_tx_result debug_noinline
Johannes Bergf591fa52008-07-10 11:21:26 +0200775ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
776{
777 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
778 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
779 u16 *seq;
780 u8 *qc;
781 int tid;
782
Johannes Berg25d834e2008-09-12 22:52:47 +0200783 /*
784 * Packet injection may want to control the sequence
785 * number, if we have no matching interface then we
786 * neither assign one ourselves nor ask the driver to.
787 */
Johannes Berg5061b0c2009-07-14 00:33:34 +0200788 if (unlikely(info->control.vif->type == NL80211_IFTYPE_MONITOR))
Johannes Berg25d834e2008-09-12 22:52:47 +0200789 return TX_CONTINUE;
790
Johannes Bergf591fa52008-07-10 11:21:26 +0200791 if (unlikely(ieee80211_is_ctl(hdr->frame_control)))
792 return TX_CONTINUE;
793
794 if (ieee80211_hdrlen(hdr->frame_control) < 24)
795 return TX_CONTINUE;
796
Johannes Berg49a59542011-09-29 16:04:41 +0200797 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
798 return TX_CONTINUE;
799
Johannes Berg94778282008-10-10 13:21:59 +0200800 /*
801 * Anything but QoS data that has a sequence number field
802 * (is long enough) gets a sequence number from the global
Bob Copelandc4c205f2013-08-23 09:35:38 -0400803 * counter. QoS data frames with a multicast destination
804 * also use the global counter (802.11-2012 9.3.2.10).
Johannes Berg94778282008-10-10 13:21:59 +0200805 */
Bob Copelandc4c205f2013-08-23 09:35:38 -0400806 if (!ieee80211_is_data_qos(hdr->frame_control) ||
807 is_multicast_ether_addr(hdr->addr1)) {
Johannes Berg94778282008-10-10 13:21:59 +0200808 /* driver should assign sequence number */
Johannes Bergf591fa52008-07-10 11:21:26 +0200809 info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
Johannes Berg94778282008-10-10 13:21:59 +0200810 /* for pure STA mode without beacons, we can do it */
811 hdr->seq_ctrl = cpu_to_le16(tx->sdata->sequence_number);
812 tx->sdata->sequence_number += 0x10;
Johannes Bergf591fa52008-07-10 11:21:26 +0200813 return TX_CONTINUE;
814 }
815
816 /*
817 * This should be true for injected/management frames only, for
818 * management frames we have set the IEEE80211_TX_CTL_ASSIGN_SEQ
819 * above since they are not QoS-data frames.
820 */
821 if (!tx->sta)
822 return TX_CONTINUE;
823
824 /* include per-STA, per-TID sequence counter */
825
826 qc = ieee80211_get_qos_ctl(hdr);
827 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
828 seq = &tx->sta->tid_seq[tid];
829
830 hdr->seq_ctrl = cpu_to_le16(*seq);
831
832 /* Increase the sequence number. */
833 *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ;
834
835 return TX_CONTINUE;
836}
837
Johannes Berg252b86c2011-11-16 15:28:55 +0100838static int ieee80211_fragment(struct ieee80211_tx_data *tx,
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100839 struct sk_buff *skb, int hdrlen,
840 int frag_threshold)
841{
Johannes Berg252b86c2011-11-16 15:28:55 +0100842 struct ieee80211_local *local = tx->local;
Johannes Berga1a3fce2011-11-16 15:28:56 +0100843 struct ieee80211_tx_info *info;
Johannes Berg252b86c2011-11-16 15:28:55 +0100844 struct sk_buff *tmp;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100845 int per_fragm = frag_threshold - hdrlen - FCS_LEN;
846 int pos = hdrlen + per_fragm;
847 int rem = skb->len - hdrlen - per_fragm;
848
849 if (WARN_ON(rem < 0))
850 return -EINVAL;
851
Johannes Berg252b86c2011-11-16 15:28:55 +0100852 /* first fragment was already added to queue by caller */
853
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100854 while (rem) {
855 int fraglen = per_fragm;
856
857 if (fraglen > rem)
858 fraglen = rem;
859 rem -= fraglen;
860 tmp = dev_alloc_skb(local->tx_headroom +
861 frag_threshold +
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200862 tx->sdata->encrypt_headroom +
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100863 IEEE80211_ENCRYPT_TAILROOM);
864 if (!tmp)
865 return -ENOMEM;
Johannes Berg252b86c2011-11-16 15:28:55 +0100866
867 __skb_queue_tail(&tx->skbs, tmp);
868
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200869 skb_reserve(tmp,
870 local->tx_headroom + tx->sdata->encrypt_headroom);
871
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100872 /* copy control information */
873 memcpy(tmp->cb, skb->cb, sizeof(tmp->cb));
Johannes Berga1a3fce2011-11-16 15:28:56 +0100874
875 info = IEEE80211_SKB_CB(tmp);
876 info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT |
877 IEEE80211_TX_CTL_FIRST_FRAGMENT);
878
879 if (rem)
880 info->flags |= IEEE80211_TX_CTL_MORE_FRAMES;
881
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100882 skb_copy_queue_mapping(tmp, skb);
883 tmp->priority = skb->priority;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100884 tmp->dev = skb->dev;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100885
886 /* copy header and data */
887 memcpy(skb_put(tmp, hdrlen), skb->data, hdrlen);
888 memcpy(skb_put(tmp, fraglen), skb->data + pos, fraglen);
889
890 pos += fraglen;
891 }
892
Johannes Berg252b86c2011-11-16 15:28:55 +0100893 /* adjust first fragment's length */
Johannes Berg338f9772014-02-01 00:16:23 +0100894 skb_trim(skb, hdrlen + per_fragm);
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100895 return 0;
896}
897
Johannes Bergf591fa52008-07-10 11:21:26 +0200898static ieee80211_tx_result debug_noinline
Johannes Berge2454942008-05-15 12:55:28 +0200899ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
900{
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100901 struct sk_buff *skb = tx->skb;
902 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
903 struct ieee80211_hdr *hdr = (void *)skb->data;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200904 int frag_threshold = tx->local->hw.wiphy->frag_threshold;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100905 int hdrlen;
906 int fragnum;
Johannes Berge2454942008-05-15 12:55:28 +0200907
Johannes Berg252b86c2011-11-16 15:28:55 +0100908 /* no matter what happens, tx->skb moves to tx->skbs */
909 __skb_queue_tail(&tx->skbs, skb);
910 tx->skb = NULL;
911
Johannes Berga26eb272011-10-07 14:01:25 +0200912 if (info->flags & IEEE80211_TX_CTL_DONTFRAG)
913 return TX_CONTINUE;
914
915 if (tx->local->ops->set_frag_threshold)
Johannes Berge2454942008-05-15 12:55:28 +0200916 return TX_CONTINUE;
917
Johannes Bergeefce912008-05-17 00:57:13 +0200918 /*
919 * Warn when submitting a fragmented A-MPDU frame and drop it.
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200920 * This scenario is handled in ieee80211_tx_prepare but extra
Ron Rindjunsky8d5e0d52008-06-12 15:42:29 +0300921 * caution taken here as fragmented ampdu may cause Tx stop.
Johannes Bergeefce912008-05-17 00:57:13 +0200922 */
Sujith8b30b1f2008-10-24 09:55:27 +0530923 if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU))
Johannes Bergeefce912008-05-17 00:57:13 +0200924 return TX_DROP;
925
Harvey Harrison065e96052008-06-22 16:45:27 -0700926 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berge2454942008-05-15 12:55:28 +0200927
Johannes Berga26eb272011-10-07 14:01:25 +0200928 /* internal error, why isn't DONTFRAG set? */
Johannes Berg8ccd8f22009-04-29 23:35:56 +0200929 if (WARN_ON(skb->len + FCS_LEN <= frag_threshold))
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100930 return TX_DROP;
Johannes Berge2454942008-05-15 12:55:28 +0200931
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100932 /*
933 * Now fragment the frame. This will allocate all the fragments and
934 * chain them (using skb as the first fragment) to skb->next.
935 * During transmission, we will remove the successfully transmitted
936 * fragments from this list. When the low-level driver rejects one
937 * of the fragments then we will simply pretend to accept the skb
938 * but store it away as pending.
939 */
Johannes Berg252b86c2011-11-16 15:28:55 +0100940 if (ieee80211_fragment(tx, skb, hdrlen, frag_threshold))
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100941 return TX_DROP;
Johannes Berge2454942008-05-15 12:55:28 +0200942
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100943 /* update duration/seq/flags of fragments */
944 fragnum = 0;
Johannes Berg252b86c2011-11-16 15:28:55 +0100945
946 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100947 const __le16 morefrags = cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
Johannes Berge2454942008-05-15 12:55:28 +0200948
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100949 hdr = (void *)skb->data;
950 info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200951
Johannes Berg252b86c2011-11-16 15:28:55 +0100952 if (!skb_queue_is_last(&tx->skbs, skb)) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100953 hdr->frame_control |= morefrags;
Johannes Berge6a98542008-10-21 12:40:02 +0200954 /*
955 * No multi-rate retries for fragmented frames, that
956 * would completely throw off the NAV at other STAs.
957 */
958 info->control.rates[1].idx = -1;
959 info->control.rates[2].idx = -1;
960 info->control.rates[3].idx = -1;
Thomas Huehne3e1a0b2012-07-02 19:46:16 +0200961 BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 4);
Johannes Berge6a98542008-10-21 12:40:02 +0200962 info->flags &= ~IEEE80211_TX_CTL_RATE_CTRL_PROBE;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100963 } else {
964 hdr->frame_control &= ~morefrags;
Johannes Berge6a98542008-10-21 12:40:02 +0200965 }
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100966 hdr->seq_ctrl |= cpu_to_le16(fragnum & IEEE80211_SCTL_FRAG);
967 fragnum++;
Johannes Berg252b86c2011-11-16 15:28:55 +0100968 }
Johannes Berge2454942008-05-15 12:55:28 +0200969
970 return TX_CONTINUE;
Johannes Berge2454942008-05-15 12:55:28 +0200971}
972
Johannes Bergd9e8a702008-06-30 15:10:44 +0200973static ieee80211_tx_result debug_noinline
Johannes Bergfeff1f22009-08-10 16:01:54 +0200974ieee80211_tx_h_stats(struct ieee80211_tx_data *tx)
975{
Johannes Berg252b86c2011-11-16 15:28:55 +0100976 struct sk_buff *skb;
Johannes Berg560d2682013-02-05 10:55:21 +0100977 int ac = -1;
Johannes Bergfeff1f22009-08-10 16:01:54 +0200978
979 if (!tx->sta)
980 return TX_CONTINUE;
981
Johannes Berg252b86c2011-11-16 15:28:55 +0100982 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg560d2682013-02-05 10:55:21 +0100983 ac = skb_get_queue_mapping(skb);
Johannes Bergfeff1f22009-08-10 16:01:54 +0200984 tx->sta->tx_fragments++;
Johannes Berg560d2682013-02-05 10:55:21 +0100985 tx->sta->tx_bytes[ac] += skb->len;
Johannes Berg252b86c2011-11-16 15:28:55 +0100986 }
Johannes Berg560d2682013-02-05 10:55:21 +0100987 if (ac >= 0)
988 tx->sta->tx_packets[ac]++;
Johannes Bergfeff1f22009-08-10 16:01:54 +0200989
990 return TX_CONTINUE;
991}
992
993static ieee80211_tx_result debug_noinline
Johannes Berge2454942008-05-15 12:55:28 +0200994ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
995{
996 if (!tx->key)
997 return TX_CONTINUE;
998
Johannes Berg97359d12010-08-10 09:46:38 +0200999 switch (tx->key->conf.cipher) {
1000 case WLAN_CIPHER_SUITE_WEP40:
1001 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berge2454942008-05-15 12:55:28 +02001002 return ieee80211_crypto_wep_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +02001003 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berge2454942008-05-15 12:55:28 +02001004 return ieee80211_crypto_tkip_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +02001005 case WLAN_CIPHER_SUITE_CCMP:
Johannes Berge2454942008-05-15 12:55:28 +02001006 return ieee80211_crypto_ccmp_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +02001007 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02001008 return ieee80211_crypto_aes_cmac_encrypt(tx);
Johannes Berg3ffc2a92010-08-27 14:26:52 +03001009 default:
Yoni Divinskyd32a1022012-01-16 15:18:59 +02001010 return ieee80211_crypto_hw_encrypt(tx);
Johannes Berge2454942008-05-15 12:55:28 +02001011 }
1012
Johannes Berge2454942008-05-15 12:55:28 +02001013 return TX_DROP;
1014}
1015
Johannes Bergd9e8a702008-06-30 15:10:44 +02001016static ieee80211_tx_result debug_noinline
Johannes Berg03f93c32008-06-25 14:36:27 +03001017ieee80211_tx_h_calculate_duration(struct ieee80211_tx_data *tx)
1018{
Johannes Berg252b86c2011-11-16 15:28:55 +01001019 struct sk_buff *skb;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001020 struct ieee80211_hdr *hdr;
1021 int next_len;
1022 bool group_addr;
Johannes Berg03f93c32008-06-25 14:36:27 +03001023
Johannes Berg252b86c2011-11-16 15:28:55 +01001024 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001025 hdr = (void *) skb->data;
Jouni Malinen7e0aae42009-05-19 19:25:58 +03001026 if (unlikely(ieee80211_is_pspoll(hdr->frame_control)))
1027 break; /* must not overwrite AID */
Johannes Berg252b86c2011-11-16 15:28:55 +01001028 if (!skb_queue_is_last(&tx->skbs, skb)) {
1029 struct sk_buff *next = skb_queue_next(&tx->skbs, skb);
1030 next_len = next->len;
1031 } else
1032 next_len = 0;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001033 group_addr = is_multicast_ether_addr(hdr->addr1);
Johannes Berg03f93c32008-06-25 14:36:27 +03001034
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001035 hdr->duration_id =
Johannes Berg252b86c2011-11-16 15:28:55 +01001036 ieee80211_duration(tx, skb, group_addr, next_len);
1037 }
Johannes Berg03f93c32008-06-25 14:36:27 +03001038
1039 return TX_CONTINUE;
1040}
1041
Johannes Berge2ebc742007-07-27 15:43:22 +02001042/* actual transmit path */
1043
Johannes Berga622ab72010-06-10 10:21:39 +02001044static bool ieee80211_tx_prep_agg(struct ieee80211_tx_data *tx,
1045 struct sk_buff *skb,
1046 struct ieee80211_tx_info *info,
1047 struct tid_ampdu_tx *tid_tx,
1048 int tid)
1049{
1050 bool queued = false;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001051 bool reset_agg_timer = false;
Helmut Schaaaa454582012-03-07 17:20:30 +01001052 struct sk_buff *purge_skb = NULL;
Johannes Berga622ab72010-06-10 10:21:39 +02001053
1054 if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1055 info->flags |= IEEE80211_TX_CTL_AMPDU;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001056 reset_agg_timer = true;
Johannes Berg0ab33702010-06-10 10:21:42 +02001057 } else if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
1058 /*
1059 * nothing -- this aggregation session is being started
1060 * but that might still fail with the driver
1061 */
Johannes Berga622ab72010-06-10 10:21:39 +02001062 } else {
1063 spin_lock(&tx->sta->lock);
1064 /*
1065 * Need to re-check now, because we may get here
1066 *
1067 * 1) in the window during which the setup is actually
1068 * already done, but not marked yet because not all
1069 * packets are spliced over to the driver pending
1070 * queue yet -- if this happened we acquire the lock
1071 * either before or after the splice happens, but
1072 * need to recheck which of these cases happened.
1073 *
1074 * 2) during session teardown, if the OPERATIONAL bit
1075 * was cleared due to the teardown but the pointer
1076 * hasn't been assigned NULL yet (or we loaded it
1077 * before it was assigned) -- in this case it may
1078 * now be NULL which means we should just let the
1079 * packet pass through because splicing the frames
1080 * back is already done.
1081 */
Johannes Berg40b275b2011-05-13 14:15:49 +02001082 tid_tx = rcu_dereference_protected_tid_tx(tx->sta, tid);
Johannes Berga622ab72010-06-10 10:21:39 +02001083
1084 if (!tid_tx) {
1085 /* do nothing, let packet pass through */
1086 } else if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1087 info->flags |= IEEE80211_TX_CTL_AMPDU;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001088 reset_agg_timer = true;
Johannes Berga622ab72010-06-10 10:21:39 +02001089 } else {
1090 queued = true;
1091 info->control.vif = &tx->sdata->vif;
1092 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
Johannes Berg03c8c062014-01-09 01:45:28 +01001093 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
Johannes Berga622ab72010-06-10 10:21:39 +02001094 __skb_queue_tail(&tid_tx->pending, skb);
Helmut Schaaaa454582012-03-07 17:20:30 +01001095 if (skb_queue_len(&tid_tx->pending) > STA_MAX_TX_BUFFER)
1096 purge_skb = __skb_dequeue(&tid_tx->pending);
Johannes Berga622ab72010-06-10 10:21:39 +02001097 }
1098 spin_unlock(&tx->sta->lock);
Helmut Schaaaa454582012-03-07 17:20:30 +01001099
1100 if (purge_skb)
Felix Fietkauc3e77242012-10-08 14:39:33 +02001101 ieee80211_free_txskb(&tx->local->hw, purge_skb);
Johannes Berga622ab72010-06-10 10:21:39 +02001102 }
1103
Nikolay Martynov285fa692011-11-22 21:50:28 -05001104 /* reset session timer */
1105 if (reset_agg_timer && tid_tx->timeout)
Felix Fietkau12d3952f2012-03-18 22:58:06 +01001106 tid_tx->last_tx = jiffies;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001107
Johannes Berga622ab72010-06-10 10:21:39 +02001108 return queued;
1109}
1110
Johannes Berg58d41852007-09-26 17:53:18 +02001111/*
1112 * initialises @tx
1113 */
Johannes Berg9ae54c82008-01-31 19:48:20 +01001114static ieee80211_tx_result
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001115ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
1116 struct ieee80211_tx_data *tx,
1117 struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +02001118{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001119 struct ieee80211_local *local = sdata->local;
Johannes Berg58d41852007-09-26 17:53:18 +02001120 struct ieee80211_hdr *hdr;
Johannes Berge039fa42008-05-15 12:55:29 +02001121 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg68f2b512011-10-07 14:01:24 +02001122 int tid;
Johannes Berga622ab72010-06-10 10:21:39 +02001123 u8 *qc;
Johannes Berge2ebc742007-07-27 15:43:22 +02001124
1125 memset(tx, 0, sizeof(*tx));
1126 tx->skb = skb;
Johannes Berge2ebc742007-07-27 15:43:22 +02001127 tx->local = local;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001128 tx->sdata = sdata;
Johannes Berg252b86c2011-11-16 15:28:55 +01001129 __skb_queue_head_init(&tx->skbs);
Johannes Berge2ebc742007-07-27 15:43:22 +02001130
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001131 /*
1132 * If this flag is set to true anywhere, and we get here,
1133 * we are doing the needed processing, so remove the flag
1134 * now.
1135 */
1136 info->flags &= ~IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1137
Johannes Berg58d41852007-09-26 17:53:18 +02001138 hdr = (struct ieee80211_hdr *) skb->data;
1139
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001140 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001141 tx->sta = rcu_dereference(sdata->u.vlan.sta);
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001142 if (!tx->sta && sdata->dev->ieee80211_ptr->use_4addr)
1143 return TX_DROP;
Felix Fietkau03bb7f42013-09-29 21:39:33 +02001144 } else if (info->flags & (IEEE80211_TX_CTL_INJECTED |
1145 IEEE80211_TX_INTFL_NL80211_FRAME_TX) ||
Felix Fietkau66f2c992012-04-29 15:44:16 +02001146 tx->sdata->control_port_protocol == tx->skb->protocol) {
Felix Fietkaub4d57ad2010-01-31 23:25:24 +01001147 tx->sta = sta_info_get_bss(sdata, hdr->addr1);
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001148 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001149 if (!tx->sta)
Johannes Bergabe60632009-11-25 17:46:18 +01001150 tx->sta = sta_info_get(sdata, hdr->addr1);
Johannes Berg58d41852007-09-26 17:53:18 +02001151
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001152 if (tx->sta && ieee80211_is_data_qos(hdr->frame_control) &&
Johannes Berg49a59542011-09-29 16:04:41 +02001153 !ieee80211_is_qos_nullfunc(hdr->frame_control) &&
Arik Nemtsovedf6b782011-08-30 09:32:38 +03001154 (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION) &&
1155 !(local->hw.flags & IEEE80211_HW_TX_AMPDU_SETUP_IN_HW)) {
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001156 struct tid_ampdu_tx *tid_tx;
1157
Sujith8b30b1f2008-10-24 09:55:27 +05301158 qc = ieee80211_get_qos_ctl(hdr);
1159 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
1160
Johannes Berga622ab72010-06-10 10:21:39 +02001161 tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]);
1162 if (tid_tx) {
1163 bool queued;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001164
Johannes Berga622ab72010-06-10 10:21:39 +02001165 queued = ieee80211_tx_prep_agg(tx, skb, info,
1166 tid_tx, tid);
1167
1168 if (unlikely(queued))
1169 return TX_QUEUED;
1170 }
Sujith8b30b1f2008-10-24 09:55:27 +05301171 }
1172
Jiri Slabybadffb72007-08-28 17:01:54 -04001173 if (is_multicast_ether_addr(hdr->addr1)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001174 tx->flags &= ~IEEE80211_TX_UNICAST;
Johannes Berge039fa42008-05-15 12:55:29 +02001175 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Simon Wunderlich6fd67e92011-11-18 14:20:42 +01001176 } else
Johannes Berg5cf121c2008-02-25 16:27:43 +01001177 tx->flags |= IEEE80211_TX_UNICAST;
Johannes Berg58d41852007-09-26 17:53:18 +02001178
Johannes Berga26eb272011-10-07 14:01:25 +02001179 if (!(info->flags & IEEE80211_TX_CTL_DONTFRAG)) {
1180 if (!(tx->flags & IEEE80211_TX_UNICAST) ||
1181 skb->len + FCS_LEN <= local->hw.wiphy->frag_threshold ||
1182 info->flags & IEEE80211_TX_CTL_AMPDU)
1183 info->flags |= IEEE80211_TX_CTL_DONTFRAG;
Johannes Berg58d41852007-09-26 17:53:18 +02001184 }
1185
Johannes Berge2ebc742007-07-27 15:43:22 +02001186 if (!tx->sta)
Johannes Berge039fa42008-05-15 12:55:29 +02001187 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001188 else if (test_and_clear_sta_flag(tx->sta, WLAN_STA_CLEAR_PS_FILT))
Johannes Berge039fa42008-05-15 12:55:29 +02001189 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
Johannes Berg58d41852007-09-26 17:53:18 +02001190
Johannes Berge039fa42008-05-15 12:55:29 +02001191 info->flags |= IEEE80211_TX_CTL_FIRST_FRAGMENT;
Johannes Berge2ebc742007-07-27 15:43:22 +02001192
Johannes Berg9ae54c82008-01-31 19:48:20 +01001193 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +02001194}
1195
Johannes Berg11127e92011-11-16 16:02:47 +01001196static bool ieee80211_tx_frags(struct ieee80211_local *local,
1197 struct ieee80211_vif *vif,
1198 struct ieee80211_sta *sta,
1199 struct sk_buff_head *skbs,
1200 bool txpending)
Johannes Berge2ebc742007-07-27 15:43:22 +02001201{
Thomas Huehn36323f82012-07-23 21:33:42 +02001202 struct ieee80211_tx_control control;
Johannes Berg252b86c2011-11-16 15:28:55 +01001203 struct sk_buff *skb, *tmp;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001204 unsigned long flags;
Johannes Berge2ebc742007-07-27 15:43:22 +02001205
Johannes Berg252b86c2011-11-16 15:28:55 +01001206 skb_queue_walk_safe(skbs, skb, tmp) {
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001207 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1208 int q = info->hw_queue;
1209
1210#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1211 if (WARN_ON_ONCE(q >= local->hw.queues)) {
1212 __skb_unlink(skb, skbs);
Felix Fietkauc3e77242012-10-08 14:39:33 +02001213 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001214 continue;
1215 }
1216#endif
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001217
1218 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001219 if (local->queue_stop_reasons[q] ||
Johannes Berg7bb45682011-02-24 14:42:06 +01001220 (!txpending && !skb_queue_empty(&local->pending[q]))) {
Seth Forshee6c17b772013-02-11 11:21:07 -06001221 if (unlikely(info->flags &
Seth Forsheea7679ed2013-02-25 14:58:05 -06001222 IEEE80211_TX_INTFL_OFFCHAN_TX_OK)) {
1223 if (local->queue_stop_reasons[q] &
1224 ~BIT(IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL)) {
1225 /*
1226 * Drop off-channel frames if queues
1227 * are stopped for any reason other
1228 * than off-channel operation. Never
1229 * queue them.
1230 */
1231 spin_unlock_irqrestore(
1232 &local->queue_stop_reason_lock,
1233 flags);
1234 ieee80211_purge_tx_queue(&local->hw,
1235 skbs);
1236 return true;
1237 }
1238 } else {
1239
Seth Forshee6c17b772013-02-11 11:21:07 -06001240 /*
Seth Forsheea7679ed2013-02-25 14:58:05 -06001241 * Since queue is stopped, queue up frames for
1242 * later transmission from the tx-pending
1243 * tasklet when the queue is woken again.
Seth Forshee6c17b772013-02-11 11:21:07 -06001244 */
Seth Forsheea7679ed2013-02-25 14:58:05 -06001245 if (txpending)
1246 skb_queue_splice_init(skbs,
1247 &local->pending[q]);
1248 else
1249 skb_queue_splice_tail_init(skbs,
1250 &local->pending[q]);
1251
1252 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1253 flags);
1254 return false;
Seth Forshee6c17b772013-02-11 11:21:07 -06001255 }
Johannes Berg7bb45682011-02-24 14:42:06 +01001256 }
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001257 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Tomas Winklerf8e79dd2008-07-24 18:46:44 +03001258
Johannes Berg11127e92011-11-16 16:02:47 +01001259 info->control.vif = vif;
Thomas Huehn36323f82012-07-23 21:33:42 +02001260 control.sta = sta;
Johannes Bergec25acc2010-07-22 17:11:28 +02001261
Johannes Berg252b86c2011-11-16 15:28:55 +01001262 __skb_unlink(skb, skbs);
Thomas Huehn36323f82012-07-23 21:33:42 +02001263 drv_tx(local, &control, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001264 }
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001265
Johannes Berg11127e92011-11-16 16:02:47 +01001266 return true;
1267}
1268
1269/*
1270 * Returns false if the frame couldn't be transmitted but was queued instead.
1271 */
1272static bool __ieee80211_tx(struct ieee80211_local *local,
1273 struct sk_buff_head *skbs, int led_len,
1274 struct sta_info *sta, bool txpending)
1275{
1276 struct ieee80211_tx_info *info;
1277 struct ieee80211_sub_if_data *sdata;
1278 struct ieee80211_vif *vif;
1279 struct ieee80211_sta *pubsta;
1280 struct sk_buff *skb;
1281 bool result = true;
1282 __le16 fc;
1283
1284 if (WARN_ON(skb_queue_empty(skbs)))
1285 return true;
1286
1287 skb = skb_peek(skbs);
1288 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
1289 info = IEEE80211_SKB_CB(skb);
1290 sdata = vif_to_sdata(info->control.vif);
1291 if (sta && !sta->uploaded)
1292 sta = NULL;
1293
1294 if (sta)
1295 pubsta = &sta->sta;
1296 else
1297 pubsta = NULL;
1298
1299 switch (sdata->vif.type) {
1300 case NL80211_IFTYPE_MONITOR:
Johannes Bergc82b5a72013-07-14 23:39:20 +03001301 if (sdata->u.mntr_flags & MONITOR_FLAG_ACTIVE) {
1302 vif = &sdata->vif;
1303 break;
1304 }
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001305 sdata = rcu_dereference(local->monitor_sdata);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001306 if (sdata) {
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001307 vif = &sdata->vif;
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001308 info->hw_queue =
1309 vif->hw_queue[skb_get_queue_mapping(skb)];
1310 } else if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL) {
1311 dev_kfree_skb(skb);
1312 return true;
1313 } else
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001314 vif = NULL;
Johannes Berg11127e92011-11-16 16:02:47 +01001315 break;
1316 case NL80211_IFTYPE_AP_VLAN:
1317 sdata = container_of(sdata->bss,
1318 struct ieee80211_sub_if_data, u.ap);
1319 /* fall through */
1320 default:
1321 vif = &sdata->vif;
1322 break;
1323 }
1324
Johannes Bergcb831b52012-07-02 15:40:18 +02001325 result = ieee80211_tx_frags(local, vif, pubsta, skbs,
1326 txpending);
Johannes Berg11127e92011-11-16 16:02:47 +01001327
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001328 ieee80211_tpt_led_trig_tx(local, fc, led_len);
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001329
Johannes Berg4db4e0a2011-11-24 14:47:36 +01001330 WARN_ON_ONCE(!skb_queue_empty(skbs));
Johannes Berg252b86c2011-11-16 15:28:55 +01001331
Johannes Berg11127e92011-11-16 16:02:47 +01001332 return result;
Johannes Berge2ebc742007-07-27 15:43:22 +02001333}
1334
Johannes Berg97b045d2008-06-20 01:22:30 +02001335/*
1336 * Invoke TX handlers, return 0 on success and non-zero if the
1337 * frame was dropped or queued.
1338 */
1339static int invoke_tx_handlers(struct ieee80211_tx_data *tx)
1340{
Johannes Berg252b86c2011-11-16 15:28:55 +01001341 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Berg97b045d2008-06-20 01:22:30 +02001342 ieee80211_tx_result res = TX_DROP;
Johannes Berg97b045d2008-06-20 01:22:30 +02001343
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001344#define CALL_TXH(txh) \
1345 do { \
1346 res = txh(tx); \
1347 if (res != TX_CONTINUE) \
1348 goto txh_done; \
1349 } while (0)
Johannes Berg97b045d2008-06-20 01:22:30 +02001350
Kalle Valo5c1b98a2010-01-12 10:42:46 +02001351 CALL_TXH(ieee80211_tx_h_dynamic_ps);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001352 CALL_TXH(ieee80211_tx_h_check_assoc);
1353 CALL_TXH(ieee80211_tx_h_ps_buf);
Johannes Berga621fa42010-08-27 14:26:54 +03001354 CALL_TXH(ieee80211_tx_h_check_control_port_protocol);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001355 CALL_TXH(ieee80211_tx_h_select_key);
Johannes Bergaf65cd962009-11-17 18:18:36 +01001356 if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL))
1357 CALL_TXH(ieee80211_tx_h_rate_ctrl);
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001358
Johannes Bergaa5b5492011-12-02 22:08:52 +01001359 if (unlikely(info->flags & IEEE80211_TX_INTFL_RETRANSMISSION)) {
1360 __skb_queue_tail(&tx->skbs, tx->skb);
1361 tx->skb = NULL;
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001362 goto txh_done;
Johannes Bergaa5b5492011-12-02 22:08:52 +01001363 }
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001364
1365 CALL_TXH(ieee80211_tx_h_michael_mic_add);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001366 CALL_TXH(ieee80211_tx_h_sequence);
1367 CALL_TXH(ieee80211_tx_h_fragment);
Johannes Bergd9e8a702008-06-30 15:10:44 +02001368 /* handlers after fragment must be aware of tx info fragmentation! */
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001369 CALL_TXH(ieee80211_tx_h_stats);
1370 CALL_TXH(ieee80211_tx_h_encrypt);
Arik Nemtsov8fd369e2011-01-31 22:29:12 +02001371 if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL))
1372 CALL_TXH(ieee80211_tx_h_calculate_duration);
Johannes Bergd9e8a702008-06-30 15:10:44 +02001373#undef CALL_TXH
1374
1375 txh_done:
Johannes Berg97b045d2008-06-20 01:22:30 +02001376 if (unlikely(res == TX_DROP)) {
Tomas Winkler5479d0e2008-06-28 03:15:03 +03001377 I802_DEBUG_INC(tx->local->tx_handlers_drop);
Johannes Berg252b86c2011-11-16 15:28:55 +01001378 if (tx->skb)
Felix Fietkauc3e77242012-10-08 14:39:33 +02001379 ieee80211_free_txskb(&tx->local->hw, tx->skb);
Johannes Berg252b86c2011-11-16 15:28:55 +01001380 else
Felix Fietkau1f98ab72012-11-10 03:44:14 +01001381 ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs);
Johannes Berg97b045d2008-06-20 01:22:30 +02001382 return -1;
1383 } else if (unlikely(res == TX_QUEUED)) {
Tomas Winkler5479d0e2008-06-28 03:15:03 +03001384 I802_DEBUG_INC(tx->local->tx_handlers_queued);
Johannes Berg97b045d2008-06-20 01:22:30 +02001385 return -1;
1386 }
1387
1388 return 0;
1389}
1390
Felix Fietkau06be6b12013-10-14 18:01:00 +02001391bool ieee80211_tx_prepare_skb(struct ieee80211_hw *hw,
1392 struct ieee80211_vif *vif, struct sk_buff *skb,
1393 int band, struct ieee80211_sta **sta)
1394{
1395 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1396 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1397 struct ieee80211_tx_data tx;
1398
1399 if (ieee80211_tx_prepare(sdata, &tx, skb) == TX_DROP)
1400 return false;
1401
1402 info->band = band;
1403 info->control.vif = vif;
1404 info->hw_queue = vif->hw_queue[skb_get_queue_mapping(skb)];
1405
1406 if (invoke_tx_handlers(&tx))
1407 return false;
1408
1409 if (sta) {
1410 if (tx.sta)
1411 *sta = &tx.sta->sta;
1412 else
1413 *sta = NULL;
1414 }
1415
1416 return true;
1417}
1418EXPORT_SYMBOL(ieee80211_tx_prepare_skb);
1419
Johannes Berg7bb45682011-02-24 14:42:06 +01001420/*
1421 * Returns false if the frame couldn't be transmitted but was queued instead.
1422 */
1423static bool ieee80211_tx(struct ieee80211_sub_if_data *sdata,
Johannes Berg55de9082012-07-26 17:24:39 +02001424 struct sk_buff *skb, bool txpending,
1425 enum ieee80211_band band)
Johannes Berge2ebc742007-07-27 15:43:22 +02001426{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001427 struct ieee80211_local *local = sdata->local;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001428 struct ieee80211_tx_data tx;
Johannes Berg97b045d2008-06-20 01:22:30 +02001429 ieee80211_tx_result res_prepare;
Johannes Berge039fa42008-05-15 12:55:29 +02001430 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001431 bool result = true;
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001432 int led_len;
Johannes Berge2ebc742007-07-27 15:43:22 +02001433
Johannes Berge2ebc742007-07-27 15:43:22 +02001434 if (unlikely(skb->len < 10)) {
1435 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001436 return true;
Johannes Berge2ebc742007-07-27 15:43:22 +02001437 }
1438
Johannes Berg58d41852007-09-26 17:53:18 +02001439 /* initialises tx */
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001440 led_len = skb->len;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001441 res_prepare = ieee80211_tx_prepare(sdata, &tx, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001442
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001443 if (unlikely(res_prepare == TX_DROP)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02001444 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg55de9082012-07-26 17:24:39 +02001445 return true;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001446 } else if (unlikely(res_prepare == TX_QUEUED)) {
Johannes Berg55de9082012-07-26 17:24:39 +02001447 return true;
Johannes Berge2ebc742007-07-27 15:43:22 +02001448 }
1449
Johannes Berg55de9082012-07-26 17:24:39 +02001450 info->band = band;
Johannes Berge2ebc742007-07-27 15:43:22 +02001451
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001452 /* set up hw_queue value early */
1453 if (!(info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) ||
1454 !(local->hw.flags & IEEE80211_HW_QUEUE_CONTROL))
1455 info->hw_queue =
1456 sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
1457
Johannes Berg7bb45682011-02-24 14:42:06 +01001458 if (!invoke_tx_handlers(&tx))
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001459 result = __ieee80211_tx(local, &tx.skbs, led_len,
1460 tx.sta, txpending);
Johannes Berg55de9082012-07-26 17:24:39 +02001461
Johannes Berg7bb45682011-02-24 14:42:06 +01001462 return result;
Johannes Berge2ebc742007-07-27 15:43:22 +02001463}
1464
1465/* device xmit handlers */
1466
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301467static int ieee80211_skb_resize(struct ieee80211_sub_if_data *sdata,
Johannes Berg23c07522008-05-29 10:38:53 +02001468 struct sk_buff *skb,
1469 int head_need, bool may_encrypt)
1470{
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301471 struct ieee80211_local *local = sdata->local;
Johannes Berg23c07522008-05-29 10:38:53 +02001472 int tail_need = 0;
1473
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301474 if (may_encrypt && sdata->crypto_tx_tailroom_needed_cnt) {
Johannes Berg23c07522008-05-29 10:38:53 +02001475 tail_need = IEEE80211_ENCRYPT_TAILROOM;
1476 tail_need -= skb_tailroom(skb);
1477 tail_need = max_t(int, tail_need, 0);
1478 }
1479
Felix Fietkaufc7c9762011-02-07 12:05:00 +01001480 if (skb_cloned(skb))
Johannes Berg23c07522008-05-29 10:38:53 +02001481 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
Felix Fietkau4cd06a32010-12-18 19:30:49 +01001482 else if (head_need || tail_need)
Johannes Berg23c07522008-05-29 10:38:53 +02001483 I802_DEBUG_INC(local->tx_expand_skb_head);
Felix Fietkau4cd06a32010-12-18 19:30:49 +01001484 else
1485 return 0;
Johannes Berg23c07522008-05-29 10:38:53 +02001486
1487 if (pskb_expand_head(skb, head_need, tail_need, GFP_ATOMIC)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07001488 wiphy_debug(local->hw.wiphy,
1489 "failed to reallocate TX buffer\n");
Johannes Berg23c07522008-05-29 10:38:53 +02001490 return -ENOMEM;
1491 }
1492
Johannes Berg23c07522008-05-29 10:38:53 +02001493 return 0;
1494}
1495
Johannes Berg55de9082012-07-26 17:24:39 +02001496void ieee80211_xmit(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb,
1497 enum ieee80211_band band)
Johannes Berge2ebc742007-07-27 15:43:22 +02001498{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001499 struct ieee80211_local *local = sdata->local;
Johannes Berge039fa42008-05-15 12:55:29 +02001500 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001501 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berge2ebc742007-07-27 15:43:22 +02001502 int headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001503 bool may_encrypt;
Johannes Berge2ebc742007-07-27 15:43:22 +02001504
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001505 may_encrypt = !(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT);
Johannes Berg23c07522008-05-29 10:38:53 +02001506
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001507 headroom = local->tx_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001508 if (may_encrypt)
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001509 headroom += sdata->encrypt_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001510 headroom -= skb_headroom(skb);
1511 headroom = max_t(int, 0, headroom);
1512
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301513 if (ieee80211_skb_resize(sdata, skb, headroom, may_encrypt)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02001514 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001515 return;
Johannes Berge2ebc742007-07-27 15:43:22 +02001516 }
1517
Steve deRosier740c1aa2010-09-11 20:01:31 -07001518 hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berg5061b0c2009-07-14 00:33:34 +02001519 info->control.vif = &sdata->vif;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001520
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001521 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1522 if (ieee80211_is_data(hdr->frame_control) &&
1523 is_unicast_ether_addr(hdr->addr1)) {
Johannes Bergbf7cd942013-02-15 14:40:31 +01001524 if (mesh_nexthop_resolve(sdata, skb))
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001525 return; /* skb queued: don't free */
1526 } else {
1527 ieee80211_mps_set_frame_flags(sdata, NULL, hdr);
1528 }
Johannes Berg98aed9f2012-03-27 14:18:36 +02001529 }
Javier Cardonacca89492009-08-10 17:29:29 -07001530
Javier Cardona2154c812011-09-07 17:49:53 -07001531 ieee80211_set_qos_hdr(sdata, skb);
Johannes Berg55de9082012-07-26 17:24:39 +02001532 ieee80211_tx(sdata, skb, false, band);
Johannes Berge2ebc742007-07-27 15:43:22 +02001533}
1534
Johannes Berg73b9f032011-10-07 14:01:26 +02001535static bool ieee80211_parse_tx_radiotap(struct sk_buff *skb)
1536{
1537 struct ieee80211_radiotap_iterator iterator;
1538 struct ieee80211_radiotap_header *rthdr =
1539 (struct ieee80211_radiotap_header *) skb->data;
1540 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1541 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len,
1542 NULL);
1543 u16 txflags;
1544
1545 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
1546 IEEE80211_TX_CTL_DONTFRAG;
1547
1548 /*
1549 * for every radiotap entry that is present
1550 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
1551 * entries present, or -EINVAL on error)
1552 */
1553
1554 while (!ret) {
1555 ret = ieee80211_radiotap_iterator_next(&iterator);
1556
1557 if (ret)
1558 continue;
1559
1560 /* see if this argument is something we can use */
1561 switch (iterator.this_arg_index) {
1562 /*
1563 * You must take care when dereferencing iterator.this_arg
1564 * for multibyte types... the pointer is not aligned. Use
1565 * get_unaligned((type *)iterator.this_arg) to dereference
1566 * iterator.this_arg for type "type" safely on all arches.
1567 */
1568 case IEEE80211_RADIOTAP_FLAGS:
1569 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
1570 /*
1571 * this indicates that the skb we have been
1572 * handed has the 32-bit FCS CRC at the end...
1573 * we should react to that by snipping it off
1574 * because it will be recomputed and added
1575 * on transmission
1576 */
1577 if (skb->len < (iterator._max_length + FCS_LEN))
1578 return false;
1579
1580 skb_trim(skb, skb->len - FCS_LEN);
1581 }
1582 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
1583 info->flags &= ~IEEE80211_TX_INTFL_DONT_ENCRYPT;
1584 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
1585 info->flags &= ~IEEE80211_TX_CTL_DONTFRAG;
1586 break;
1587
1588 case IEEE80211_RADIOTAP_TX_FLAGS:
1589 txflags = get_unaligned_le16(iterator.this_arg);
1590 if (txflags & IEEE80211_RADIOTAP_F_TX_NOACK)
1591 info->flags |= IEEE80211_TX_CTL_NO_ACK;
1592 break;
1593
1594 /*
1595 * Please update the file
1596 * Documentation/networking/mac80211-injection.txt
1597 * when parsing new fields here.
1598 */
1599
1600 default:
1601 break;
1602 }
1603 }
1604
1605 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
1606 return false;
1607
1608 /*
1609 * remove the radiotap header
1610 * iterator->_max_length was sanity-checked against
1611 * skb->len by iterator init
1612 */
1613 skb_pull(skb, iterator._max_length);
1614
1615 return true;
1616}
1617
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00001618netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
1619 struct net_device *dev)
Johannes Berge2ebc742007-07-27 15:43:22 +02001620{
1621 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg55de9082012-07-26 17:24:39 +02001622 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berge2ebc742007-07-27 15:43:22 +02001623 struct ieee80211_radiotap_header *prthdr =
1624 (struct ieee80211_radiotap_header *)skb->data;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001625 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001626 struct ieee80211_hdr *hdr;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001627 struct ieee80211_sub_if_data *tmp_sdata, *sdata;
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001628 struct cfg80211_chan_def *chandef;
Andy Green9b8a74e2007-07-27 15:43:24 +02001629 u16 len_rthdr;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001630 int hdrlen;
Johannes Berge2ebc742007-07-27 15:43:22 +02001631
Andy Green9b8a74e2007-07-27 15:43:24 +02001632 /* check for not even having the fixed radiotap header part */
1633 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1634 goto fail; /* too short to be possibly valid */
1635
1636 /* is it a header version we can trust to find length from? */
1637 if (unlikely(prthdr->it_version))
1638 goto fail; /* only version 0 is supported */
1639
1640 /* then there must be a radiotap header with a length we can use */
1641 len_rthdr = ieee80211_get_radiotap_len(skb->data);
1642
1643 /* does the skb contain enough to deliver on the alleged length? */
1644 if (unlikely(skb->len < len_rthdr))
1645 goto fail; /* skb too short for claimed rt header extent */
Johannes Berge2ebc742007-07-27 15:43:22 +02001646
Johannes Berge2ebc742007-07-27 15:43:22 +02001647 /*
1648 * fix up the pointers accounting for the radiotap
1649 * header still being in there. We are being given
1650 * a precooked IEEE80211 header so no need for
1651 * normal processing
1652 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001653 skb_set_mac_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001654 /*
Andy Green9b8a74e2007-07-27 15:43:24 +02001655 * these are just fixed to the end of the rt area since we
1656 * don't have any better information and at this point, nobody cares
Johannes Berge2ebc742007-07-27 15:43:22 +02001657 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001658 skb_set_network_header(skb, len_rthdr);
1659 skb_set_transport_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001660
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001661 if (skb->len < len_rthdr + 2)
1662 goto fail;
1663
1664 hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr);
1665 hdrlen = ieee80211_hdrlen(hdr->frame_control);
1666
1667 if (skb->len < len_rthdr + hdrlen)
1668 goto fail;
1669
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001670 /*
1671 * Initialize skb->protocol if the injected frame is a data frame
1672 * carrying a rfc1042 header
1673 */
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001674 if (ieee80211_is_data(hdr->frame_control) &&
1675 skb->len >= len_rthdr + hdrlen + sizeof(rfc1042_header) + 2) {
1676 u8 *payload = (u8 *)hdr + hdrlen;
1677
Joe Perchesb203ca32012-05-08 18:56:52 +00001678 if (ether_addr_equal(payload, rfc1042_header))
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001679 skb->protocol = cpu_to_be16((payload[6] << 8) |
1680 payload[7]);
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001681 }
1682
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001683 memset(info, 0, sizeof(*info));
1684
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001685 info->flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
Johannes Berg73b9f032011-10-07 14:01:26 +02001686 IEEE80211_TX_CTL_INJECTED;
1687
1688 /* process and remove the injection radiotap header */
1689 if (!ieee80211_parse_tx_radiotap(skb))
1690 goto fail;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001691
1692 rcu_read_lock();
1693
1694 /*
1695 * We process outgoing injected frames that have a local address
1696 * we handle as though they are non-injected frames.
1697 * This code here isn't entirely correct, the local MAC address
1698 * isn't always enough to find the interface to use; for proper
1699 * VLAN/WDS support we will need a different mechanism (which
1700 * likely isn't going to be monitor interfaces).
1701 */
1702 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1703
1704 list_for_each_entry_rcu(tmp_sdata, &local->interfaces, list) {
1705 if (!ieee80211_sdata_running(tmp_sdata))
1706 continue;
1707 if (tmp_sdata->vif.type == NL80211_IFTYPE_MONITOR ||
1708 tmp_sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1709 tmp_sdata->vif.type == NL80211_IFTYPE_WDS)
1710 continue;
Joe Perchesb203ca32012-05-08 18:56:52 +00001711 if (ether_addr_equal(tmp_sdata->vif.addr, hdr->addr2)) {
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001712 sdata = tmp_sdata;
1713 break;
1714 }
1715 }
Johannes Berg7351c6b2009-11-19 01:08:30 +01001716
Johannes Berg55de9082012-07-26 17:24:39 +02001717 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1718 if (!chanctx_conf) {
1719 tmp_sdata = rcu_dereference(local->monitor_sdata);
1720 if (tmp_sdata)
1721 chanctx_conf =
1722 rcu_dereference(tmp_sdata->vif.chanctx_conf);
1723 }
Johannes Berg55de9082012-07-26 17:24:39 +02001724
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01001725 if (chanctx_conf)
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001726 chandef = &chanctx_conf->def;
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01001727 else if (!local->use_chanctx)
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001728 chandef = &local->_oper_chandef;
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01001729 else
1730 goto fail_rcu;
Johannes Berg55de9082012-07-26 17:24:39 +02001731
1732 /*
1733 * Frame injection is not allowed if beaconing is not allowed
1734 * or if we need radar detection. Beaconing is usually not allowed when
1735 * the mode or operation (Adhoc, AP, Mesh) does not support DFS.
1736 * Passive scan is also used in world regulatory domains where
1737 * your country is not known and as such it should be treated as
1738 * NO TX unless the channel is explicitly allowed in which case
1739 * your current regulatory domain would not have the passive scan
1740 * flag.
1741 *
1742 * Since AP mode uses monitor interfaces to inject/TX management
1743 * frames we can make AP mode the exception to this rule once it
1744 * supports radar detection as its implementation can deal with
1745 * radar detection by itself. We can do that later by adding a
1746 * monitor flag interfaces used for AP support.
1747 */
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001748 if (!cfg80211_reg_can_beacon(local->hw.wiphy, chandef,
1749 sdata->vif.type))
Johannes Berg55de9082012-07-26 17:24:39 +02001750 goto fail_rcu;
1751
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001752 ieee80211_xmit(sdata, skb, chandef->chan->band);
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001753 rcu_read_unlock();
1754
Johannes Berge2ebc742007-07-27 15:43:22 +02001755 return NETDEV_TX_OK;
Andy Green9b8a74e2007-07-27 15:43:24 +02001756
Johannes Berg55de9082012-07-26 17:24:39 +02001757fail_rcu:
1758 rcu_read_unlock();
Andy Green9b8a74e2007-07-27 15:43:24 +02001759fail:
1760 dev_kfree_skb(skb);
1761 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
Johannes Berge2ebc742007-07-27 15:43:22 +02001762}
1763
Matti Gottliebad38bfc2013-11-18 19:06:45 +02001764/*
1765 * Measure Tx frame arrival time for Tx latency statistics calculation
1766 * A single Tx frame latency should be measured from when it is entering the
1767 * Kernel until we receive Tx complete confirmation indication and the skb is
1768 * freed.
1769 */
1770static void ieee80211_tx_latency_start_msrmnt(struct ieee80211_local *local,
1771 struct sk_buff *skb)
1772{
1773 struct timespec skb_arv;
1774 struct ieee80211_tx_latency_bin_ranges *tx_latency;
1775
1776 tx_latency = rcu_dereference(local->tx_latency);
1777 if (!tx_latency)
1778 return;
1779
1780 ktime_get_ts(&skb_arv);
1781 skb->tstamp = ktime_set(skb_arv.tv_sec, skb_arv.tv_nsec);
1782}
1783
Johannes Berge2ebc742007-07-27 15:43:22 +02001784/**
1785 * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type
1786 * subinterfaces (wlan#, WDS, and VLAN interfaces)
1787 * @skb: packet to be sent
1788 * @dev: incoming interface
1789 *
1790 * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will
1791 * not be freed, and caller is responsible for either retrying later or freeing
1792 * skb).
1793 *
1794 * This function takes in an Ethernet header and encapsulates it with suitable
1795 * IEEE 802.11 header based on which interface the packet is coming in. The
1796 * encapsulated packet will then be passed to master interface, wlan#.11, for
1797 * transmission (through low-level driver).
1798 */
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00001799netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb,
1800 struct net_device *dev)
Johannes Berge2ebc742007-07-27 15:43:22 +02001801{
Johannes Berg133b8222008-09-16 14:18:59 +02001802 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1803 struct ieee80211_local *local = sdata->local;
Felix Fietkau489ee912010-12-18 19:30:48 +01001804 struct ieee80211_tx_info *info;
Johannes Bergdcf33962012-07-30 15:11:56 +02001805 int head_need;
Harvey Harrison065e96052008-06-22 16:45:27 -07001806 u16 ethertype, hdrlen, meshhdrlen = 0;
1807 __le16 fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02001808 struct ieee80211_hdr hdr;
Wey-Yi Guyff67bb82010-08-21 07:23:29 -07001809 struct ieee80211s_hdr mesh_hdr __maybe_unused;
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001810 struct mesh_path __maybe_unused *mppath = NULL, *mpath = NULL;
Johannes Berge2ebc742007-07-27 15:43:22 +02001811 const u8 *encaps_data;
1812 int encaps_len, skip_header_bytes;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001813 int nh_pos, h_pos;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001814 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001815 bool wme_sta = false, authorized = false, tdls_auth = false;
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001816 bool tdls_direct = false;
Johannes Berga729cff2011-11-06 14:13:34 +01001817 bool multicast;
1818 u32 info_flags = 0;
1819 u16 info_id = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02001820 struct ieee80211_chanctx_conf *chanctx_conf;
1821 struct ieee80211_sub_if_data *ap_sdata;
1822 enum ieee80211_band band;
Johannes Berge2ebc742007-07-27 15:43:22 +02001823
Johannes Bergdcf33962012-07-30 15:11:56 +02001824 if (unlikely(skb->len < ETH_HLEN))
Johannes Berge2ebc742007-07-27 15:43:22 +02001825 goto fail;
Johannes Berge2ebc742007-07-27 15:43:22 +02001826
Johannes Berge2ebc742007-07-27 15:43:22 +02001827 /* convert Ethernet header to proper 802.11 header (based on
1828 * operation mode) */
1829 ethertype = (skb->data[12] << 8) | skb->data[13];
Harvey Harrison065e96052008-06-22 16:45:27 -07001830 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
Johannes Berge2ebc742007-07-27 15:43:22 +02001831
Johannes Berg55de9082012-07-26 17:24:39 +02001832 rcu_read_lock();
1833
Matti Gottliebad38bfc2013-11-18 19:06:45 +02001834 /* Measure frame arrival for Tx latency statistics calculation */
1835 ieee80211_tx_latency_start_msrmnt(local, skb);
1836
Johannes Berg51fb61e2007-12-19 01:31:27 +01001837 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001838 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg9bc383d2009-11-19 11:55:19 +01001839 sta = rcu_dereference(sdata->u.vlan.sta);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001840 if (sta) {
1841 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
1842 /* RA TA DA SA */
1843 memcpy(hdr.addr1, sta->sta.addr, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001844 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001845 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1846 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1847 hdrlen = 30;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001848 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
1849 wme_sta = test_sta_flag(sta, WLAN_STA_WME);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001850 }
Johannes Berg55de9082012-07-26 17:24:39 +02001851 ap_sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
1852 u.ap);
1853 chanctx_conf = rcu_dereference(ap_sdata->vif.chanctx_conf);
1854 if (!chanctx_conf)
1855 goto fail_rcu;
Johannes Berg4bf88532012-11-09 11:39:59 +01001856 band = chanctx_conf->def.chan->band;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001857 if (sta)
1858 break;
1859 /* fall through */
1860 case NL80211_IFTYPE_AP:
Arnd Bergmannfe801232013-01-25 14:14:33 +00001861 if (sdata->vif.type == NL80211_IFTYPE_AP)
1862 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1863 if (!chanctx_conf)
1864 goto fail_rcu;
Harvey Harrison065e96052008-06-22 16:45:27 -07001865 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
Johannes Berge2ebc742007-07-27 15:43:22 +02001866 /* DA BSSID SA */
1867 memcpy(hdr.addr1, skb->data, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001868 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02001869 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1870 hdrlen = 24;
Johannes Berg4bf88532012-11-09 11:39:59 +01001871 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04001872 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001873 case NL80211_IFTYPE_WDS:
Harvey Harrison065e96052008-06-22 16:45:27 -07001874 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
Johannes Berge2ebc742007-07-27 15:43:22 +02001875 /* RA TA DA SA */
1876 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001877 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02001878 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1879 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1880 hdrlen = 30;
Johannes Berg55de9082012-07-26 17:24:39 +02001881 /*
1882 * This is the exception! WDS style interfaces are prohibited
1883 * when channel contexts are in used so this must be valid
1884 */
Karl Beldan675a0b02013-03-25 16:26:57 +01001885 band = local->hw.conf.chandef.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04001886 break;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001887#ifdef CONFIG_MAC80211_MESH
Johannes Berg05c914f2008-09-11 00:01:58 +02001888 case NL80211_IFTYPE_MESH_POINT:
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001889 if (!is_multicast_ether_addr(skb->data)) {
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001890 struct sta_info *next_hop;
1891 bool mpp_lookup = true;
1892
Johannes Bergbf7cd942013-02-15 14:40:31 +01001893 mpath = mesh_path_lookup(sdata, skb->data);
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001894 if (mpath) {
1895 mpp_lookup = false;
1896 next_hop = rcu_dereference(mpath->next_hop);
1897 if (!next_hop ||
1898 !(mpath->flags & (MESH_PATH_ACTIVE |
1899 MESH_PATH_RESOLVING)))
1900 mpp_lookup = true;
1901 }
1902
1903 if (mpp_lookup)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001904 mppath = mpp_path_lookup(sdata, skb->data);
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001905
1906 if (mppath && mpath)
1907 mesh_path_del(mpath->sdata, mpath->dst);
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001908 }
YanBo79617de2008-09-22 13:30:32 +08001909
Joel A Fernandesf76b57b2010-12-28 19:28:11 -06001910 /*
Joel A Fernandes9d525012011-01-10 00:44:23 -06001911 * Use address extension if it is a packet from
1912 * another interface or if we know the destination
1913 * is being proxied by a portal (i.e. portal address
1914 * differs from proxied address)
Joel A Fernandesf76b57b2010-12-28 19:28:11 -06001915 */
Joe Perchesb203ca32012-05-08 18:56:52 +00001916 if (ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN) &&
1917 !(mppath && !ether_addr_equal(mppath->mpp, skb->data))) {
Javier Cardona3c5772a2009-08-10 12:15:48 -07001918 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
1919 skb->data, skb->data + ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +01001920 meshhdrlen = ieee80211_new_mesh_header(sdata, &mesh_hdr,
1921 NULL, NULL);
YanBo79617de2008-09-22 13:30:32 +08001922 } else {
Thomas Pedersen27f01122012-08-20 11:28:25 -07001923 /* DS -> MBSS (802.11-2012 13.11.3.3).
1924 * For unicast with unknown forwarding information,
1925 * destination might be in the MBSS or if that fails
1926 * forwarded to another mesh gate. In either case
1927 * resolution will be handled in ieee80211_xmit(), so
1928 * leave the original DA. This also works for mcast */
1929 const u8 *mesh_da = skb->data;
YanBo79617de2008-09-22 13:30:32 +08001930
Thomas Pedersen27f01122012-08-20 11:28:25 -07001931 if (mppath)
1932 mesh_da = mppath->mpp;
1933 else if (mpath)
1934 mesh_da = mpath->dst;
Thomas Pedersen27f01122012-08-20 11:28:25 -07001935
Javier Cardona3c5772a2009-08-10 12:15:48 -07001936 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
Johannes Berg47846c92009-11-25 17:46:19 +01001937 mesh_da, sdata->vif.addr);
Thomas Pedersen27f01122012-08-20 11:28:25 -07001938 if (is_multicast_ether_addr(mesh_da))
1939 /* DA TA mSA AE:SA */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001940 meshhdrlen = ieee80211_new_mesh_header(
1941 sdata, &mesh_hdr,
1942 skb->data + ETH_ALEN, NULL);
Javier Cardona3c5772a2009-08-10 12:15:48 -07001943 else
Thomas Pedersen27f01122012-08-20 11:28:25 -07001944 /* RA TA mDA mSA AE:DA SA */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001945 meshhdrlen = ieee80211_new_mesh_header(
1946 sdata, &mesh_hdr, skb->data,
1947 skb->data + ETH_ALEN);
YanBo79617de2008-09-22 13:30:32 +08001948
YanBo79617de2008-09-22 13:30:32 +08001949 }
Johannes Berg55de9082012-07-26 17:24:39 +02001950 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1951 if (!chanctx_conf)
1952 goto fail_rcu;
Johannes Berg4bf88532012-11-09 11:39:59 +01001953 band = chanctx_conf->def.chan->band;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001954 break;
1955#endif
Johannes Berg05c914f2008-09-11 00:01:58 +02001956 case NL80211_IFTYPE_STATION:
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001957 if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001958 bool tdls_peer = false;
1959
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001960 sta = sta_info_get(sdata, skb->data);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001961 if (sta) {
1962 authorized = test_sta_flag(sta,
1963 WLAN_STA_AUTHORIZED);
1964 wme_sta = test_sta_flag(sta, WLAN_STA_WME);
1965 tdls_peer = test_sta_flag(sta,
1966 WLAN_STA_TDLS_PEER);
1967 tdls_auth = test_sta_flag(sta,
1968 WLAN_STA_TDLS_PEER_AUTH);
1969 }
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001970
1971 /*
1972 * If the TDLS link is enabled, send everything
1973 * directly. Otherwise, allow TDLS setup frames
1974 * to be transmitted indirectly.
1975 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001976 tdls_direct = tdls_peer && (tdls_auth ||
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001977 !(ethertype == ETH_P_TDLS && skb->len > 14 &&
1978 skb->data[14] == WLAN_TDLS_SNAP_RFTYPE));
1979 }
1980
1981 if (tdls_direct) {
1982 /* link during setup - throw out frames to peer */
Johannes Bergdcf33962012-07-30 15:11:56 +02001983 if (!tdls_auth)
Johannes Berg55de9082012-07-26 17:24:39 +02001984 goto fail_rcu;
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001985
1986 /* DA SA BSSID */
1987 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1988 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1989 memcpy(hdr.addr3, sdata->u.mgd.bssid, ETH_ALEN);
1990 hdrlen = 24;
1991 } else if (sdata->u.mgd.use_4addr &&
1992 cpu_to_be16(ethertype) != sdata->control_port_protocol) {
1993 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
1994 IEEE80211_FCTL_TODS);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001995 /* RA TA DA SA */
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001996 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001997 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001998 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1999 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2000 hdrlen = 30;
2001 } else {
2002 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
2003 /* BSSID SA DA */
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002004 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002005 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2006 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2007 hdrlen = 24;
2008 }
Johannes Berg55de9082012-07-26 17:24:39 +02002009 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2010 if (!chanctx_conf)
2011 goto fail_rcu;
Johannes Berg4bf88532012-11-09 11:39:59 +01002012 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04002013 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002014 case NL80211_IFTYPE_ADHOC:
Johannes Berge2ebc742007-07-27 15:43:22 +02002015 /* DA SA BSSID */
2016 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2017 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01002018 memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02002019 hdrlen = 24;
Johannes Berg55de9082012-07-26 17:24:39 +02002020 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2021 if (!chanctx_conf)
2022 goto fail_rcu;
Johannes Berg4bf88532012-11-09 11:39:59 +01002023 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04002024 break;
2025 default:
Johannes Berg55de9082012-07-26 17:24:39 +02002026 goto fail_rcu;
Johannes Berge2ebc742007-07-27 15:43:22 +02002027 }
2028
Johannes Berg7d185b82008-01-28 17:11:43 +01002029 /*
2030 * There's no need to try to look up the destination
2031 * if it is a multicast address (which can only happen
2032 * in AP mode)
2033 */
Johannes Berga729cff2011-11-06 14:13:34 +01002034 multicast = is_multicast_ether_addr(hdr.addr1);
2035 if (!multicast) {
Johannes Bergabe60632009-11-25 17:46:18 +01002036 sta = sta_info_get(sdata, hdr.addr1);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002037 if (sta) {
2038 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
2039 wme_sta = test_sta_flag(sta, WLAN_STA_WME);
2040 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002041 }
2042
Javier Cardona4777be42011-09-07 17:49:52 -07002043 /* For mesh, the use of the QoS header is mandatory */
2044 if (ieee80211_vif_is_mesh(&sdata->vif))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002045 wme_sta = true;
Javier Cardona4777be42011-09-07 17:49:52 -07002046
Johannes Berg3434fbd2008-05-03 00:59:37 +02002047 /* receiver and we are QoS enabled, use a QoS type frame */
Johannes Berg32c50572012-03-28 11:04:29 +02002048 if (wme_sta && local->hw.queues >= IEEE80211_NUM_ACS) {
Harvey Harrison065e96052008-06-22 16:45:27 -07002049 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002050 hdrlen += 2;
2051 }
2052
2053 /*
Johannes Berg238814f2008-01-28 17:19:37 +01002054 * Drop unicast frames to unauthorised stations unless they are
2055 * EAPOL frames from the local station.
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002056 */
Johannes Berg55182e42011-10-12 17:28:21 +02002057 if (unlikely(!ieee80211_vif_is_mesh(&sdata->vif) &&
Sergey Ryazanova6ececf2013-08-30 01:35:09 +04002058 !multicast && !authorized &&
Johannes Berg55182e42011-10-12 17:28:21 +02002059 (cpu_to_be16(ethertype) != sdata->control_port_protocol ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002060 !ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN)))) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002061#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002062 net_info_ratelimited("%s: dropped frame to %pM (unauthorized port)\n",
Joe Perchese87cc472012-05-13 21:56:26 +00002063 dev->name, hdr.addr1);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002064#endif
2065
2066 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
2067
Johannes Berg55de9082012-07-26 17:24:39 +02002068 goto fail_rcu;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002069 }
2070
Johannes Berga729cff2011-11-06 14:13:34 +01002071 if (unlikely(!multicast && skb->sk &&
2072 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS)) {
2073 struct sk_buff *orig_skb = skb;
2074
2075 skb = skb_clone(skb, GFP_ATOMIC);
2076 if (skb) {
2077 unsigned long flags;
Tejun Heo9475af62013-02-27 17:04:59 -08002078 int id;
Johannes Berga729cff2011-11-06 14:13:34 +01002079
2080 spin_lock_irqsave(&local->ack_status_lock, flags);
Tejun Heo9475af62013-02-27 17:04:59 -08002081 id = idr_alloc(&local->ack_status_frames, orig_skb,
2082 1, 0x10000, GFP_ATOMIC);
Johannes Berga729cff2011-11-06 14:13:34 +01002083 spin_unlock_irqrestore(&local->ack_status_lock, flags);
2084
Tejun Heo9475af62013-02-27 17:04:59 -08002085 if (id >= 0) {
Johannes Berga729cff2011-11-06 14:13:34 +01002086 info_id = id;
2087 info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
2088 } else if (skb_shared(skb)) {
2089 kfree_skb(orig_skb);
2090 } else {
2091 kfree_skb(skb);
2092 skb = orig_skb;
2093 }
2094 } else {
2095 /* couldn't clone -- lose tx status ... */
2096 skb = orig_skb;
2097 }
2098 }
2099
Helmut Schaa7e244702010-12-02 18:44:09 +01002100 /*
2101 * If the skb is shared we need to obtain our own copy.
2102 */
2103 if (skb_shared(skb)) {
Johannes Berga729cff2011-11-06 14:13:34 +01002104 struct sk_buff *tmp_skb = skb;
2105
2106 /* can't happen -- skb is a clone if info_id != 0 */
2107 WARN_ON(info_id);
2108
Felix Fietkauf8a0a782010-12-18 19:30:50 +01002109 skb = skb_clone(skb, GFP_ATOMIC);
Helmut Schaa7e244702010-12-02 18:44:09 +01002110 kfree_skb(tmp_skb);
2111
Johannes Bergdcf33962012-07-30 15:11:56 +02002112 if (!skb)
Johannes Berg55de9082012-07-26 17:24:39 +02002113 goto fail_rcu;
Helmut Schaa7e244702010-12-02 18:44:09 +01002114 }
2115
Harvey Harrison065e96052008-06-22 16:45:27 -07002116 hdr.frame_control = fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02002117 hdr.duration_id = 0;
2118 hdr.seq_ctrl = 0;
2119
2120 skip_header_bytes = ETH_HLEN;
2121 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
2122 encaps_data = bridge_tunnel_header;
2123 encaps_len = sizeof(bridge_tunnel_header);
2124 skip_header_bytes -= 2;
Simon Hormane5c5d222013-03-28 13:38:25 +09002125 } else if (ethertype >= ETH_P_802_3_MIN) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002126 encaps_data = rfc1042_header;
2127 encaps_len = sizeof(rfc1042_header);
2128 skip_header_bytes -= 2;
2129 } else {
2130 encaps_data = NULL;
2131 encaps_len = 0;
2132 }
2133
Helmut Schaa7e244702010-12-02 18:44:09 +01002134 nh_pos = skb_network_header(skb) - skb->data;
2135 h_pos = skb_transport_header(skb) - skb->data;
2136
Johannes Berge2ebc742007-07-27 15:43:22 +02002137 skb_pull(skb, skip_header_bytes);
2138 nh_pos -= skip_header_bytes;
2139 h_pos -= skip_header_bytes;
2140
Johannes Berg23c07522008-05-29 10:38:53 +02002141 head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002142
Johannes Berg23c07522008-05-29 10:38:53 +02002143 /*
2144 * So we need to modify the skb header and hence need a copy of
2145 * that. The head_need variable above doesn't, so far, include
2146 * the needed header space that we don't need right away. If we
2147 * can, then we don't reallocate right now but only after the
2148 * frame arrives at the master device (if it does...)
2149 *
2150 * If we cannot, however, then we will reallocate to include all
2151 * the ever needed space. Also, if we need to reallocate it anyway,
2152 * make it big enough for everything we may ever need.
2153 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002154
David S. Miller3a5be7d2008-06-18 01:19:51 -07002155 if (head_need > 0 || skb_cloned(skb)) {
Max Stepanov2475b1cc2013-03-24 14:23:27 +02002156 head_need += sdata->encrypt_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02002157 head_need += local->tx_headroom;
2158 head_need = max_t(int, 0, head_need);
Felix Fietkauc3e77242012-10-08 14:39:33 +02002159 if (ieee80211_skb_resize(sdata, skb, head_need, true)) {
2160 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg1c963be2012-11-07 14:02:30 +01002161 skb = NULL;
Johannes Berg55de9082012-07-26 17:24:39 +02002162 goto fail_rcu;
Felix Fietkauc3e77242012-10-08 14:39:33 +02002163 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002164 }
2165
2166 if (encaps_data) {
2167 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
2168 nh_pos += encaps_len;
2169 h_pos += encaps_len;
2170 }
Johannes Bergc29b9b92007-09-14 11:10:24 -04002171
Yuri Ershove4ab7eb2010-06-29 15:08:06 +04002172#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002173 if (meshhdrlen > 0) {
2174 memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
2175 nh_pos += meshhdrlen;
2176 h_pos += meshhdrlen;
2177 }
Yuri Ershove4ab7eb2010-06-29 15:08:06 +04002178#endif
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002179
Harvey Harrison065e96052008-06-22 16:45:27 -07002180 if (ieee80211_is_data_qos(fc)) {
Johannes Bergc29b9b92007-09-14 11:10:24 -04002181 __le16 *qos_control;
2182
Weilong Chenf359d3f2013-12-18 15:44:16 +08002183 qos_control = (__le16 *) skb_push(skb, 2);
Johannes Bergc29b9b92007-09-14 11:10:24 -04002184 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
2185 /*
2186 * Maybe we could actually set some fields here, for now just
2187 * initialise to zero to indicate no special operation.
2188 */
2189 *qos_control = 0;
2190 } else
2191 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
2192
Johannes Berge2ebc742007-07-27 15:43:22 +02002193 nh_pos += hdrlen;
2194 h_pos += hdrlen;
2195
Stephen Hemminger68aae112007-08-24 11:29:34 -07002196 dev->stats.tx_packets++;
2197 dev->stats.tx_bytes += skb->len;
Johannes Berge2ebc742007-07-27 15:43:22 +02002198
2199 /* Update skb pointers to various headers since this modified frame
2200 * is going to go through Linux networking code that may potentially
2201 * need things like pointer to IP header. */
2202 skb_set_mac_header(skb, 0);
2203 skb_set_network_header(skb, nh_pos);
2204 skb_set_transport_header(skb, h_pos);
2205
Felix Fietkau489ee912010-12-18 19:30:48 +01002206 info = IEEE80211_SKB_CB(skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002207 memset(info, 0, sizeof(*info));
2208
Johannes Berge2ebc742007-07-27 15:43:22 +02002209 dev->trans_start = jiffies;
Johannes Berga729cff2011-11-06 14:13:34 +01002210
2211 info->flags = info_flags;
2212 info->ack_frame_id = info_id;
2213
Johannes Berg55de9082012-07-26 17:24:39 +02002214 ieee80211_xmit(sdata, skb, band);
2215 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002216
Patrick McHardyec634fe2009-07-05 19:23:38 -07002217 return NETDEV_TX_OK;
Johannes Berge2ebc742007-07-27 15:43:22 +02002218
Johannes Berg55de9082012-07-26 17:24:39 +02002219 fail_rcu:
2220 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002221 fail:
Johannes Bergdcf33962012-07-30 15:11:56 +02002222 dev_kfree_skb(skb);
2223 return NETDEV_TX_OK;
Johannes Berge2ebc742007-07-27 15:43:22 +02002224}
2225
Johannes Berge2ebc742007-07-27 15:43:22 +02002226
Johannes Berge2530082008-05-17 00:57:14 +02002227/*
2228 * ieee80211_clear_tx_pending may not be called in a context where
2229 * it is possible that it packets could come in again.
2230 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002231void ieee80211_clear_tx_pending(struct ieee80211_local *local)
2232{
Felix Fietkau1f98ab72012-11-10 03:44:14 +01002233 struct sk_buff *skb;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01002234 int i;
Johannes Berge2ebc742007-07-27 15:43:22 +02002235
Felix Fietkau1f98ab72012-11-10 03:44:14 +01002236 for (i = 0; i < local->hw.queues; i++) {
2237 while ((skb = skb_dequeue(&local->pending[i])) != NULL)
2238 ieee80211_free_txskb(&local->hw, skb);
2239 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002240}
2241
Johannes Berg7bb45682011-02-24 14:42:06 +01002242/*
2243 * Returns false if the frame couldn't be transmitted but was queued instead,
2244 * which in this case means re-queued -- take as an indication to stop sending
2245 * more pending frames.
2246 */
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002247static bool ieee80211_tx_pending_skb(struct ieee80211_local *local,
2248 struct sk_buff *skb)
2249{
2250 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2251 struct ieee80211_sub_if_data *sdata;
2252 struct sta_info *sta;
2253 struct ieee80211_hdr *hdr;
Johannes Berg7bb45682011-02-24 14:42:06 +01002254 bool result;
Johannes Berg55de9082012-07-26 17:24:39 +02002255 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002256
Johannes Berg5061b0c2009-07-14 00:33:34 +02002257 sdata = vif_to_sdata(info->control.vif);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002258
2259 if (info->flags & IEEE80211_TX_INTFL_NEED_TXPROCESSING) {
Johannes Berg55de9082012-07-26 17:24:39 +02002260 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2261 if (unlikely(!chanctx_conf)) {
2262 dev_kfree_skb(skb);
2263 return true;
2264 }
2265 result = ieee80211_tx(sdata, skb, true,
Johannes Berg4bf88532012-11-09 11:39:59 +01002266 chanctx_conf->def.chan->band);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002267 } else {
Johannes Berg252b86c2011-11-16 15:28:55 +01002268 struct sk_buff_head skbs;
2269
2270 __skb_queue_head_init(&skbs);
2271 __skb_queue_tail(&skbs, skb);
2272
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002273 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Bergabe60632009-11-25 17:46:18 +01002274 sta = sta_info_get(sdata, hdr->addr1);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002275
Johannes Berg74e4dbf2011-11-16 15:28:57 +01002276 result = __ieee80211_tx(local, &skbs, skb->len, sta, true);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002277 }
2278
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002279 return result;
2280}
2281
Johannes Berge2530082008-05-17 00:57:14 +02002282/*
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002283 * Transmit all pending packets. Called from tasklet.
Johannes Berge2530082008-05-17 00:57:14 +02002284 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002285void ieee80211_tx_pending(unsigned long data)
2286{
2287 struct ieee80211_local *local = (struct ieee80211_local *)data;
Johannes Berg2a577d92009-03-23 17:28:37 +01002288 unsigned long flags;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002289 int i;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002290 bool txok;
Johannes Berge2ebc742007-07-27 15:43:22 +02002291
Johannes Bergf0e72852009-03-23 17:28:36 +01002292 rcu_read_lock();
Johannes Berg2a577d92009-03-23 17:28:37 +01002293
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002294 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Berg176be722009-03-12 23:49:28 +01002295 for (i = 0; i < local->hw.queues; i++) {
Johannes Berg2a577d92009-03-23 17:28:37 +01002296 /*
2297 * If queue is stopped by something other than due to pending
2298 * frames, or we have no pending frames, proceed to next queue.
2299 */
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002300 if (local->queue_stop_reasons[i] ||
Johannes Berg2a577d92009-03-23 17:28:37 +01002301 skb_queue_empty(&local->pending[i]))
Johannes Berge2ebc742007-07-27 15:43:22 +02002302 continue;
Johannes Berge2530082008-05-17 00:57:14 +02002303
Johannes Berg2a577d92009-03-23 17:28:37 +01002304 while (!skb_queue_empty(&local->pending[i])) {
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002305 struct sk_buff *skb = __skb_dequeue(&local->pending[i]);
Johannes Berg5061b0c2009-07-14 00:33:34 +02002306 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg5061b0c2009-07-14 00:33:34 +02002307
Johannes Berga7bc3762009-07-27 10:33:31 +02002308 if (WARN_ON(!info->control.vif)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02002309 ieee80211_free_txskb(&local->hw, skb);
Johannes Berga7bc3762009-07-27 10:33:31 +02002310 continue;
2311 }
2312
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002313 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
2314 flags);
Johannes Berg2a577d92009-03-23 17:28:37 +01002315
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002316 txok = ieee80211_tx_pending_skb(local, skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002317 spin_lock_irqsave(&local->queue_stop_reason_lock,
2318 flags);
2319 if (!txok)
Johannes Berg2a577d92009-03-23 17:28:37 +01002320 break;
Johannes Berge2ebc742007-07-27 15:43:22 +02002321 }
Johannes Berg7236fe22010-03-22 13:42:43 -07002322
2323 if (skb_queue_empty(&local->pending[i]))
Johannes Berg3a25a8c2012-04-03 16:28:50 +02002324 ieee80211_propagate_queue_wake(local, i);
Johannes Berge2ebc742007-07-27 15:43:22 +02002325 }
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002326 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Johannes Berg2a577d92009-03-23 17:28:37 +01002327
Johannes Bergf0e72852009-03-23 17:28:36 +01002328 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002329}
2330
2331/* functions for drivers to get certain frames */
2332
Marco Porscheac70c12013-01-07 16:04:50 +01002333static void __ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002334 struct ps_data *ps, struct sk_buff *skb,
2335 bool is_template)
Johannes Berge2ebc742007-07-27 15:43:22 +02002336{
2337 u8 *pos, *tim;
2338 int aid0 = 0;
2339 int i, have_bits = 0, n1, n2;
2340
2341 /* Generate bitmap for TIM only if there are any STAs in power save
2342 * mode. */
Marco Porschd012a602012-10-10 12:39:50 -07002343 if (atomic_read(&ps->num_sta_ps) > 0)
Johannes Berge2ebc742007-07-27 15:43:22 +02002344 /* in the hope that this is faster than
2345 * checking byte-for-byte */
Weilong Chenf359d3f2013-12-18 15:44:16 +08002346 have_bits = !bitmap_empty((unsigned long *)ps->tim,
Johannes Berge2ebc742007-07-27 15:43:22 +02002347 IEEE80211_MAX_AID+1);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002348 if (!is_template) {
2349 if (ps->dtim_count == 0)
2350 ps->dtim_count = sdata->vif.bss_conf.dtim_period - 1;
2351 else
2352 ps->dtim_count--;
2353 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002354
2355 tim = pos = (u8 *) skb_put(skb, 6);
2356 *pos++ = WLAN_EID_TIM;
2357 *pos++ = 4;
Marco Porschd012a602012-10-10 12:39:50 -07002358 *pos++ = ps->dtim_count;
Johannes Berg88600202012-02-13 15:17:18 +01002359 *pos++ = sdata->vif.bss_conf.dtim_period;
Johannes Berge2ebc742007-07-27 15:43:22 +02002360
Marco Porschd012a602012-10-10 12:39:50 -07002361 if (ps->dtim_count == 0 && !skb_queue_empty(&ps->bc_buf))
Johannes Berge2ebc742007-07-27 15:43:22 +02002362 aid0 = 1;
2363
Marco Porschd012a602012-10-10 12:39:50 -07002364 ps->dtim_bc_mc = aid0 == 1;
Christian Lamparter512119b2011-01-31 20:48:44 +02002365
Johannes Berge2ebc742007-07-27 15:43:22 +02002366 if (have_bits) {
2367 /* Find largest even number N1 so that bits numbered 1 through
2368 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
2369 * (N2 + 1) x 8 through 2007 are 0. */
2370 n1 = 0;
2371 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
Marco Porschd012a602012-10-10 12:39:50 -07002372 if (ps->tim[i]) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002373 n1 = i & 0xfe;
2374 break;
2375 }
2376 }
2377 n2 = n1;
2378 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
Marco Porschd012a602012-10-10 12:39:50 -07002379 if (ps->tim[i]) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002380 n2 = i;
2381 break;
2382 }
2383 }
2384
2385 /* Bitmap control */
2386 *pos++ = n1 | aid0;
2387 /* Part Virt Bitmap */
Eliad Peller5220da32011-11-24 16:50:00 +02002388 skb_put(skb, n2 - n1);
Marco Porschd012a602012-10-10 12:39:50 -07002389 memcpy(pos, ps->tim + n1, n2 - n1 + 1);
Johannes Berge2ebc742007-07-27 15:43:22 +02002390
2391 tim[1] = n2 - n1 + 4;
Johannes Berge2ebc742007-07-27 15:43:22 +02002392 } else {
2393 *pos++ = aid0; /* Bitmap control */
2394 *pos++ = 0; /* Part Virt Bitmap */
2395 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002396}
2397
Marco Porscheac70c12013-01-07 16:04:50 +01002398static int ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002399 struct ps_data *ps, struct sk_buff *skb,
2400 bool is_template)
Marco Porscheac70c12013-01-07 16:04:50 +01002401{
2402 struct ieee80211_local *local = sdata->local;
2403
2404 /*
2405 * Not very nice, but we want to allow the driver to call
2406 * ieee80211_beacon_get() as a response to the set_tim()
2407 * callback. That, however, is already invoked under the
2408 * sta_lock to guarantee consistent and race-free update
2409 * of the tim bitmap in mac80211 and the driver.
2410 */
2411 if (local->tim_in_locked_section) {
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002412 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
Marco Porscheac70c12013-01-07 16:04:50 +01002413 } else {
Johannes Berg1b917312013-02-22 12:55:01 +01002414 spin_lock_bh(&local->tim_lock);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002415 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
Johannes Berg1b917312013-02-22 12:55:01 +01002416 spin_unlock_bh(&local->tim_lock);
Marco Porscheac70c12013-01-07 16:04:50 +01002417 }
2418
2419 return 0;
2420}
2421
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002422static void ieee80211_set_csa(struct ieee80211_sub_if_data *sdata,
2423 struct beacon_data *beacon)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002424{
2425 struct probe_resp *resp;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002426 u8 *beacon_data;
2427 size_t beacon_data_len;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002428 int i;
Michal Kazioraf296bd2014-06-05 14:21:36 +02002429 u8 count = beacon->csa_current_counter;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002430
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002431 switch (sdata->vif.type) {
2432 case NL80211_IFTYPE_AP:
2433 beacon_data = beacon->tail;
2434 beacon_data_len = beacon->tail_len;
2435 break;
2436 case NL80211_IFTYPE_ADHOC:
2437 beacon_data = beacon->head;
2438 beacon_data_len = beacon->head_len;
2439 break;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002440 case NL80211_IFTYPE_MESH_POINT:
2441 beacon_data = beacon->head;
2442 beacon_data_len = beacon->head_len;
2443 break;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002444 default:
2445 return;
2446 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002447
Michal Kazioraf296bd2014-06-05 14:21:36 +02002448 rcu_read_lock();
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002449 for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; ++i) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02002450 resp = rcu_dereference(sdata->u.ap.probe_resp);
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002451
Michal Kazioraf296bd2014-06-05 14:21:36 +02002452 if (beacon->csa_counter_offsets[i]) {
2453 if (WARN_ON_ONCE(beacon->csa_counter_offsets[i] >=
2454 beacon_data_len)) {
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002455 rcu_read_unlock();
2456 return;
2457 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02002458
2459 beacon_data[beacon->csa_counter_offsets[i]] = count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002460 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02002461
2462 if (sdata->vif.type == NL80211_IFTYPE_AP && resp)
2463 resp->data[resp->csa_counter_offsets[i]] = count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002464 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02002465 rcu_read_unlock();
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002466}
2467
2468u8 ieee80211_csa_update_counter(struct ieee80211_vif *vif)
2469{
2470 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002471 struct beacon_data *beacon = NULL;
2472 u8 count = 0;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002473
Michal Kazioraf296bd2014-06-05 14:21:36 +02002474 rcu_read_lock();
2475
2476 if (sdata->vif.type == NL80211_IFTYPE_AP)
2477 beacon = rcu_dereference(sdata->u.ap.beacon);
2478 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
2479 beacon = rcu_dereference(sdata->u.ibss.presp);
2480 else if (ieee80211_vif_is_mesh(&sdata->vif))
2481 beacon = rcu_dereference(sdata->u.mesh.beacon);
2482
2483 if (!beacon)
2484 goto unlock;
2485
2486 beacon->csa_current_counter--;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002487
2488 /* the counter should never reach 0 */
Michal Kazioraf296bd2014-06-05 14:21:36 +02002489 WARN_ON_ONCE(!beacon->csa_current_counter);
2490 count = beacon->csa_current_counter;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002491
Michal Kazioraf296bd2014-06-05 14:21:36 +02002492unlock:
2493 rcu_read_unlock();
2494 return count;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002495}
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002496EXPORT_SYMBOL(ieee80211_csa_update_counter);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002497
2498bool ieee80211_csa_is_complete(struct ieee80211_vif *vif)
2499{
2500 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2501 struct beacon_data *beacon = NULL;
2502 u8 *beacon_data;
2503 size_t beacon_data_len;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002504 int ret = false;
2505
2506 if (!ieee80211_sdata_running(sdata))
2507 return false;
2508
2509 rcu_read_lock();
2510 if (vif->type == NL80211_IFTYPE_AP) {
2511 struct ieee80211_if_ap *ap = &sdata->u.ap;
2512
2513 beacon = rcu_dereference(ap->beacon);
2514 if (WARN_ON(!beacon || !beacon->tail))
2515 goto out;
2516 beacon_data = beacon->tail;
2517 beacon_data_len = beacon->tail_len;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002518 } else if (vif->type == NL80211_IFTYPE_ADHOC) {
2519 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
2520
2521 beacon = rcu_dereference(ifibss->presp);
2522 if (!beacon)
2523 goto out;
2524
2525 beacon_data = beacon->head;
2526 beacon_data_len = beacon->head_len;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002527 } else if (vif->type == NL80211_IFTYPE_MESH_POINT) {
2528 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
2529
2530 beacon = rcu_dereference(ifmsh->beacon);
2531 if (!beacon)
2532 goto out;
2533
2534 beacon_data = beacon->head;
2535 beacon_data_len = beacon->head_len;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002536 } else {
2537 WARN_ON(1);
2538 goto out;
2539 }
2540
Michal Kazior10d78f22014-06-05 14:21:37 +02002541 if (!beacon->csa_counter_offsets[0])
2542 goto out;
2543
Michal Kazioraf296bd2014-06-05 14:21:36 +02002544 if (WARN_ON_ONCE(beacon->csa_counter_offsets[0] > beacon_data_len))
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002545 goto out;
2546
Michal Kazioraf296bd2014-06-05 14:21:36 +02002547 if (beacon_data[beacon->csa_counter_offsets[0]] == 1)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002548 ret = true;
2549 out:
2550 rcu_read_unlock();
2551
2552 return ret;
2553}
2554EXPORT_SYMBOL(ieee80211_csa_is_complete);
2555
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002556static struct sk_buff *
2557__ieee80211_beacon_get(struct ieee80211_hw *hw,
2558 struct ieee80211_vif *vif,
2559 struct ieee80211_mutable_offsets *offs,
2560 bool is_template)
Johannes Berge2ebc742007-07-27 15:43:22 +02002561{
2562 struct ieee80211_local *local = hw_to_local(hw);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002563 struct beacon_data *beacon = NULL;
Johannes Berg9d139c82008-07-09 14:40:37 +02002564 struct sk_buff *skb = NULL;
Johannes Berge039fa42008-05-15 12:55:29 +02002565 struct ieee80211_tx_info *info;
Johannes Berge2ebc742007-07-27 15:43:22 +02002566 struct ieee80211_sub_if_data *sdata = NULL;
Johannes Berg55de9082012-07-26 17:24:39 +02002567 enum ieee80211_band band;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002568 struct ieee80211_tx_rate_control txrc;
Johannes Berg55de9082012-07-26 17:24:39 +02002569 struct ieee80211_chanctx_conf *chanctx_conf;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002570 int csa_off_base = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002571
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002572 rcu_read_lock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002573
Johannes Berg32bfd352007-12-19 01:31:26 +01002574 sdata = vif_to_sdata(vif);
Johannes Berg55de9082012-07-26 17:24:39 +02002575 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berge2ebc742007-07-27 15:43:22 +02002576
Johannes Berg55de9082012-07-26 17:24:39 +02002577 if (!ieee80211_sdata_running(sdata) || !chanctx_conf)
Felix Fietkaueb3e5542011-01-24 19:28:49 +01002578 goto out;
2579
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002580 if (offs)
2581 memset(offs, 0, sizeof(*offs));
Johannes Bergeddcbb92009-10-29 08:30:35 +01002582
Johannes Berg05c914f2008-09-11 00:01:58 +02002583 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Marco Porschd012a602012-10-10 12:39:50 -07002584 struct ieee80211_if_ap *ap = &sdata->u.ap;
Marco Porschd012a602012-10-10 12:39:50 -07002585
Michal Kazioraf296bd2014-06-05 14:21:36 +02002586 beacon = rcu_dereference(ap->beacon);
Dan Carpenter3ad97fb2011-02-07 22:03:35 +03002587 if (beacon) {
Michal Kazior10d78f22014-06-05 14:21:37 +02002588 if (beacon->csa_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002589 if (!is_template)
2590 ieee80211_csa_update_counter(vif);
2591
2592 ieee80211_set_csa(sdata, beacon);
2593 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002594
Johannes Berg902acc72008-02-23 15:17:19 +01002595 /*
2596 * headroom, head length,
2597 * tail length and maximum TIM length
2598 */
2599 skb = dev_alloc_skb(local->tx_headroom +
2600 beacon->head_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002601 beacon->tail_len + 256 +
2602 local->hw.extra_beacon_tailroom);
Johannes Berg902acc72008-02-23 15:17:19 +01002603 if (!skb)
2604 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002605
Johannes Berg902acc72008-02-23 15:17:19 +01002606 skb_reserve(skb, local->tx_headroom);
2607 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2608 beacon->head_len);
2609
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002610 ieee80211_beacon_add_tim(sdata, &ap->ps, skb,
2611 is_template);
Johannes Berg902acc72008-02-23 15:17:19 +01002612
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002613 if (offs) {
2614 offs->tim_offset = beacon->head_len;
2615 offs->tim_length = skb->len - beacon->head_len;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002616
2617 /* for AP the csa offsets are from tail */
2618 csa_off_base = skb->len;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002619 }
Johannes Bergeddcbb92009-10-29 08:30:35 +01002620
Johannes Berg902acc72008-02-23 15:17:19 +01002621 if (beacon->tail)
2622 memcpy(skb_put(skb, beacon->tail_len),
2623 beacon->tail, beacon->tail_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002624 } else
2625 goto out;
Johannes Berg05c914f2008-09-11 00:01:58 +02002626 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg46900292009-02-15 12:44:28 +01002627 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg9d139c82008-07-09 14:40:37 +02002628 struct ieee80211_hdr *hdr;
Johannes Berg902acc72008-02-23 15:17:19 +01002629
Michal Kazioraf296bd2014-06-05 14:21:36 +02002630 beacon = rcu_dereference(ifibss->presp);
2631 if (!beacon)
Johannes Berg9d139c82008-07-09 14:40:37 +02002632 goto out;
2633
Michal Kazior10d78f22014-06-05 14:21:37 +02002634 if (beacon->csa_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002635 if (!is_template)
2636 ieee80211_csa_update_counter(vif);
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002637
Michal Kazioraf296bd2014-06-05 14:21:36 +02002638 ieee80211_set_csa(sdata, beacon);
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002639 }
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002640
Michal Kazioraf296bd2014-06-05 14:21:36 +02002641 skb = dev_alloc_skb(local->tx_headroom + beacon->head_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002642 local->hw.extra_beacon_tailroom);
Johannes Berg9d139c82008-07-09 14:40:37 +02002643 if (!skb)
2644 goto out;
Johannes Bergc3ffeab2013-03-07 20:54:29 +01002645 skb_reserve(skb, local->tx_headroom);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002646 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2647 beacon->head_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002648
2649 hdr = (struct ieee80211_hdr *) skb->data;
Harvey Harrisone7827a72008-07-15 18:44:13 -07002650 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2651 IEEE80211_STYPE_BEACON);
Johannes Berg902acc72008-02-23 15:17:19 +01002652 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
Javier Cardonadbf498f2012-03-31 11:31:32 -07002653 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02002654
Michal Kazioraf296bd2014-06-05 14:21:36 +02002655 beacon = rcu_dereference(ifmsh->beacon);
2656 if (!beacon)
Johannes Bergac1bd842011-01-18 13:45:32 +01002657 goto out;
Johannes Bergac1bd842011-01-18 13:45:32 +01002658
Michal Kazior10d78f22014-06-05 14:21:37 +02002659 if (beacon->csa_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002660 if (!is_template)
2661 /* TODO: For mesh csa_counter is in TU, so
2662 * decrementing it by one isn't correct, but
2663 * for now we leave it consistent with overall
2664 * mac80211's behavior.
2665 */
2666 ieee80211_csa_update_counter(vif);
2667
Michal Kazioraf296bd2014-06-05 14:21:36 +02002668 ieee80211_set_csa(sdata, beacon);
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002669 }
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002670
Javier Cardonadbf498f2012-03-31 11:31:32 -07002671 if (ifmsh->sync_ops)
Michal Kazioraf296bd2014-06-05 14:21:36 +02002672 ifmsh->sync_ops->adjust_tbtt(sdata, beacon);
Javier Cardonadbf498f2012-03-31 11:31:32 -07002673
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -07002674 skb = dev_alloc_skb(local->tx_headroom +
Michal Kazioraf296bd2014-06-05 14:21:36 +02002675 beacon->head_len +
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002676 256 + /* TIM IE */
Michal Kazioraf296bd2014-06-05 14:21:36 +02002677 beacon->tail_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002678 local->hw.extra_beacon_tailroom);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002679 if (!skb)
2680 goto out;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08002681 skb_reserve(skb, local->tx_headroom);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002682 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2683 beacon->head_len);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002684 ieee80211_beacon_add_tim(sdata, &ifmsh->ps, skb, is_template);
2685
2686 if (offs) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02002687 offs->tim_offset = beacon->head_len;
2688 offs->tim_length = skb->len - beacon->head_len;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002689 }
2690
Michal Kazioraf296bd2014-06-05 14:21:36 +02002691 memcpy(skb_put(skb, beacon->tail_len), beacon->tail,
2692 beacon->tail_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002693 } else {
2694 WARN_ON(1);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002695 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02002696 }
2697
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002698 /* CSA offsets */
Michal Kazioraf296bd2014-06-05 14:21:36 +02002699 if (offs && beacon) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002700 int i;
2701
2702 for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; i++) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02002703 u16 csa_off = beacon->csa_counter_offsets[i];
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002704
2705 if (!csa_off)
2706 continue;
2707
2708 offs->csa_counter_offs[i] = csa_off_base + csa_off;
2709 }
2710 }
2711
Johannes Berg4bf88532012-11-09 11:39:59 +01002712 band = chanctx_conf->def.chan->band;
Johannes Berg55de9082012-07-26 17:24:39 +02002713
Johannes Berge039fa42008-05-15 12:55:29 +02002714 info = IEEE80211_SKB_CB(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002715
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002716 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002717 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Johannes Berge039fa42008-05-15 12:55:29 +02002718 info->band = band;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002719
2720 memset(&txrc, 0, sizeof(txrc));
2721 txrc.hw = hw;
Johannes Berge31583c2012-07-26 14:07:46 +02002722 txrc.sband = local->hw.wiphy->bands[band];
Jouni Malinene00cfce2009-12-29 12:59:19 +02002723 txrc.bss_conf = &sdata->vif.bss_conf;
2724 txrc.skb = skb;
2725 txrc.reported_rate.idx = -1;
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002726 txrc.rate_idx_mask = sdata->rc_rateidx_mask[band];
Johannes Berge31583c2012-07-26 14:07:46 +02002727 if (txrc.rate_idx_mask == (1 << txrc.sband->n_bitrates) - 1)
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002728 txrc.max_rate_idx = -1;
2729 else
2730 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
Felix Fietkau8f0729b2010-11-11 15:07:23 +01002731 txrc.bss = true;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002732 rate_control_get_rate(sdata, NULL, &txrc);
Johannes Berge039fa42008-05-15 12:55:29 +02002733
2734 info->control.vif = vif;
Johannes Bergf591fa52008-07-10 11:21:26 +02002735
John W. Linvillea472e712010-05-06 14:45:17 -04002736 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT |
2737 IEEE80211_TX_CTL_ASSIGN_SEQ |
2738 IEEE80211_TX_CTL_FIRST_FRAGMENT;
Johannes Berge6a98542008-10-21 12:40:02 +02002739 out:
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002740 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002741 return skb;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002742
2743}
2744
2745struct sk_buff *
2746ieee80211_beacon_get_template(struct ieee80211_hw *hw,
2747 struct ieee80211_vif *vif,
2748 struct ieee80211_mutable_offsets *offs)
2749{
2750 return __ieee80211_beacon_get(hw, vif, offs, true);
2751}
2752EXPORT_SYMBOL(ieee80211_beacon_get_template);
2753
2754struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
2755 struct ieee80211_vif *vif,
2756 u16 *tim_offset, u16 *tim_length)
2757{
2758 struct ieee80211_mutable_offsets offs = {};
2759 struct sk_buff *bcn = __ieee80211_beacon_get(hw, vif, &offs, false);
2760
2761 if (tim_offset)
2762 *tim_offset = offs.tim_offset;
2763
2764 if (tim_length)
2765 *tim_length = offs.tim_length;
2766
2767 return bcn;
Johannes Berge2ebc742007-07-27 15:43:22 +02002768}
Johannes Bergeddcbb92009-10-29 08:30:35 +01002769EXPORT_SYMBOL(ieee80211_beacon_get_tim);
Johannes Berge2ebc742007-07-27 15:43:22 +02002770
Arik Nemtsov02945822011-11-10 11:28:57 +02002771struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw,
2772 struct ieee80211_vif *vif)
2773{
2774 struct ieee80211_if_ap *ap = NULL;
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002775 struct sk_buff *skb = NULL;
2776 struct probe_resp *presp = NULL;
Arik Nemtsov02945822011-11-10 11:28:57 +02002777 struct ieee80211_hdr *hdr;
2778 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2779
2780 if (sdata->vif.type != NL80211_IFTYPE_AP)
2781 return NULL;
2782
2783 rcu_read_lock();
2784
2785 ap = &sdata->u.ap;
2786 presp = rcu_dereference(ap->probe_resp);
2787 if (!presp)
2788 goto out;
2789
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002790 skb = dev_alloc_skb(presp->len);
Arik Nemtsov02945822011-11-10 11:28:57 +02002791 if (!skb)
2792 goto out;
2793
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002794 memcpy(skb_put(skb, presp->len), presp->data, presp->len);
2795
Arik Nemtsov02945822011-11-10 11:28:57 +02002796 hdr = (struct ieee80211_hdr *) skb->data;
2797 memset(hdr->addr1, 0, sizeof(hdr->addr1));
2798
2799out:
2800 rcu_read_unlock();
2801 return skb;
2802}
2803EXPORT_SYMBOL(ieee80211_proberesp_get);
2804
Kalle Valo7044cc52010-01-05 20:16:19 +02002805struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw,
2806 struct ieee80211_vif *vif)
2807{
2808 struct ieee80211_sub_if_data *sdata;
2809 struct ieee80211_if_managed *ifmgd;
2810 struct ieee80211_pspoll *pspoll;
2811 struct ieee80211_local *local;
2812 struct sk_buff *skb;
2813
2814 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2815 return NULL;
2816
2817 sdata = vif_to_sdata(vif);
2818 ifmgd = &sdata->u.mgd;
2819 local = sdata->local;
2820
2821 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
Joe Perchesd15b8452011-08-29 14:17:31 -07002822 if (!skb)
Kalle Valo7044cc52010-01-05 20:16:19 +02002823 return NULL;
Joe Perchesd15b8452011-08-29 14:17:31 -07002824
Kalle Valo7044cc52010-01-05 20:16:19 +02002825 skb_reserve(skb, local->hw.extra_tx_headroom);
2826
2827 pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll));
2828 memset(pspoll, 0, sizeof(*pspoll));
2829 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
2830 IEEE80211_STYPE_PSPOLL);
2831 pspoll->aid = cpu_to_le16(ifmgd->aid);
2832
2833 /* aid in PS-Poll has its two MSBs each set to 1 */
2834 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
2835
2836 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
2837 memcpy(pspoll->ta, vif->addr, ETH_ALEN);
2838
2839 return skb;
2840}
2841EXPORT_SYMBOL(ieee80211_pspoll_get);
2842
2843struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw,
2844 struct ieee80211_vif *vif)
2845{
2846 struct ieee80211_hdr_3addr *nullfunc;
2847 struct ieee80211_sub_if_data *sdata;
2848 struct ieee80211_if_managed *ifmgd;
2849 struct ieee80211_local *local;
2850 struct sk_buff *skb;
2851
2852 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2853 return NULL;
2854
2855 sdata = vif_to_sdata(vif);
2856 ifmgd = &sdata->u.mgd;
2857 local = sdata->local;
2858
2859 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*nullfunc));
Joe Perchesd15b8452011-08-29 14:17:31 -07002860 if (!skb)
Kalle Valo7044cc52010-01-05 20:16:19 +02002861 return NULL;
Joe Perchesd15b8452011-08-29 14:17:31 -07002862
Kalle Valo7044cc52010-01-05 20:16:19 +02002863 skb_reserve(skb, local->hw.extra_tx_headroom);
2864
2865 nullfunc = (struct ieee80211_hdr_3addr *) skb_put(skb,
2866 sizeof(*nullfunc));
2867 memset(nullfunc, 0, sizeof(*nullfunc));
2868 nullfunc->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
2869 IEEE80211_STYPE_NULLFUNC |
2870 IEEE80211_FCTL_TODS);
2871 memcpy(nullfunc->addr1, ifmgd->bssid, ETH_ALEN);
2872 memcpy(nullfunc->addr2, vif->addr, ETH_ALEN);
2873 memcpy(nullfunc->addr3, ifmgd->bssid, ETH_ALEN);
2874
2875 return skb;
2876}
2877EXPORT_SYMBOL(ieee80211_nullfunc_get);
2878
Kalle Valo05e54ea2010-01-05 20:16:38 +02002879struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw,
2880 struct ieee80211_vif *vif,
2881 const u8 *ssid, size_t ssid_len,
Johannes Bergb9a9ada2012-11-29 13:00:10 +01002882 size_t tailroom)
Kalle Valo05e54ea2010-01-05 20:16:38 +02002883{
2884 struct ieee80211_sub_if_data *sdata;
2885 struct ieee80211_local *local;
2886 struct ieee80211_hdr_3addr *hdr;
2887 struct sk_buff *skb;
2888 size_t ie_ssid_len;
2889 u8 *pos;
2890
2891 sdata = vif_to_sdata(vif);
2892 local = sdata->local;
2893 ie_ssid_len = 2 + ssid_len;
2894
2895 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*hdr) +
Johannes Bergb9a9ada2012-11-29 13:00:10 +01002896 ie_ssid_len + tailroom);
Joe Perchesd15b8452011-08-29 14:17:31 -07002897 if (!skb)
Kalle Valo05e54ea2010-01-05 20:16:38 +02002898 return NULL;
Kalle Valo05e54ea2010-01-05 20:16:38 +02002899
2900 skb_reserve(skb, local->hw.extra_tx_headroom);
2901
2902 hdr = (struct ieee80211_hdr_3addr *) skb_put(skb, sizeof(*hdr));
2903 memset(hdr, 0, sizeof(*hdr));
2904 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2905 IEEE80211_STYPE_PROBE_REQ);
Johannes Berge83e6542012-07-13 16:23:07 +02002906 eth_broadcast_addr(hdr->addr1);
Kalle Valo05e54ea2010-01-05 20:16:38 +02002907 memcpy(hdr->addr2, vif->addr, ETH_ALEN);
Johannes Berge83e6542012-07-13 16:23:07 +02002908 eth_broadcast_addr(hdr->addr3);
Kalle Valo05e54ea2010-01-05 20:16:38 +02002909
2910 pos = skb_put(skb, ie_ssid_len);
2911 *pos++ = WLAN_EID_SSID;
2912 *pos++ = ssid_len;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002913 if (ssid_len)
Kalle Valo05e54ea2010-01-05 20:16:38 +02002914 memcpy(pos, ssid, ssid_len);
2915 pos += ssid_len;
2916
Kalle Valo05e54ea2010-01-05 20:16:38 +02002917 return skb;
2918}
2919EXPORT_SYMBOL(ieee80211_probereq_get);
2920
Johannes Berg32bfd352007-12-19 01:31:26 +01002921void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02002922 const void *frame, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +02002923 const struct ieee80211_tx_info *frame_txctl,
Johannes Berge2ebc742007-07-27 15:43:22 +02002924 struct ieee80211_rts *rts)
2925{
2926 const struct ieee80211_hdr *hdr = frame;
Johannes Berge2ebc742007-07-27 15:43:22 +02002927
Harvey Harrison065e96052008-06-22 16:45:27 -07002928 rts->frame_control =
2929 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
Johannes Berg32bfd352007-12-19 01:31:26 +01002930 rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
2931 frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02002932 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
2933 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
2934}
2935EXPORT_SYMBOL(ieee80211_rts_get);
2936
Johannes Berg32bfd352007-12-19 01:31:26 +01002937void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02002938 const void *frame, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +02002939 const struct ieee80211_tx_info *frame_txctl,
Johannes Berge2ebc742007-07-27 15:43:22 +02002940 struct ieee80211_cts *cts)
2941{
2942 const struct ieee80211_hdr *hdr = frame;
Johannes Berge2ebc742007-07-27 15:43:22 +02002943
Harvey Harrison065e96052008-06-22 16:45:27 -07002944 cts->frame_control =
2945 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
Johannes Berg32bfd352007-12-19 01:31:26 +01002946 cts->duration = ieee80211_ctstoself_duration(hw, vif,
2947 frame_len, frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02002948 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
2949}
2950EXPORT_SYMBOL(ieee80211_ctstoself_get);
2951
2952struct sk_buff *
Johannes Berg32bfd352007-12-19 01:31:26 +01002953ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
Johannes Berge039fa42008-05-15 12:55:29 +02002954 struct ieee80211_vif *vif)
Johannes Berge2ebc742007-07-27 15:43:22 +02002955{
2956 struct ieee80211_local *local = hw_to_local(hw);
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002957 struct sk_buff *skb = NULL;
Johannes Berg5cf121c2008-02-25 16:27:43 +01002958 struct ieee80211_tx_data tx;
Johannes Berge2ebc742007-07-27 15:43:22 +02002959 struct ieee80211_sub_if_data *sdata;
Marco Porschd012a602012-10-10 12:39:50 -07002960 struct ps_data *ps;
Johannes Berge039fa42008-05-15 12:55:29 +02002961 struct ieee80211_tx_info *info;
Johannes Berg55de9082012-07-26 17:24:39 +02002962 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berge2ebc742007-07-27 15:43:22 +02002963
Johannes Berg32bfd352007-12-19 01:31:26 +01002964 sdata = vif_to_sdata(vif);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002965
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002966 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02002967 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002968
Marco Porschd012a602012-10-10 12:39:50 -07002969 if (!chanctx_conf)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002970 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002971
Marco Porschd012a602012-10-10 12:39:50 -07002972 if (sdata->vif.type == NL80211_IFTYPE_AP) {
2973 struct beacon_data *beacon =
2974 rcu_dereference(sdata->u.ap.beacon);
2975
2976 if (!beacon || !beacon->head)
2977 goto out;
2978
2979 ps = &sdata->u.ap.ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002980 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
2981 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -07002982 } else {
2983 goto out;
2984 }
2985
2986 if (ps->dtim_count != 0 || !ps->dtim_bc_mc)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002987 goto out; /* send buffered bc/mc only after DTIM beacon */
Johannes Berge039fa42008-05-15 12:55:29 +02002988
Johannes Berge2ebc742007-07-27 15:43:22 +02002989 while (1) {
Marco Porschd012a602012-10-10 12:39:50 -07002990 skb = skb_dequeue(&ps->bc_buf);
Johannes Berge2ebc742007-07-27 15:43:22 +02002991 if (!skb)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002992 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02002993 local->total_ps_buffered--;
2994
Marco Porschd012a602012-10-10 12:39:50 -07002995 if (!skb_queue_empty(&ps->bc_buf) && skb->len >= 2) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002996 struct ieee80211_hdr *hdr =
2997 (struct ieee80211_hdr *) skb->data;
2998 /* more buffered multicast/broadcast frames ==> set
2999 * MoreData flag in IEEE 802.11 header to inform PS
3000 * STAs */
3001 hdr->frame_control |=
3002 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
3003 }
3004
Michael Braun112c44b2014-03-06 15:08:43 +01003005 if (sdata->vif.type == NL80211_IFTYPE_AP)
Marco Porsch7cbf9d02013-03-01 16:01:18 +01003006 sdata = IEEE80211_DEV_TO_SUB_IF(skb->dev);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003007 if (!ieee80211_tx_prepare(sdata, &tx, skb))
Johannes Berge2ebc742007-07-27 15:43:22 +02003008 break;
3009 dev_kfree_skb_any(skb);
3010 }
Johannes Berge039fa42008-05-15 12:55:29 +02003011
3012 info = IEEE80211_SKB_CB(skb);
3013
Johannes Berg5cf121c2008-02-25 16:27:43 +01003014 tx.flags |= IEEE80211_TX_PS_BUFFERED;
Johannes Berg4bf88532012-11-09 11:39:59 +01003015 info->band = chanctx_conf->def.chan->band;
Johannes Berge2ebc742007-07-27 15:43:22 +02003016
Johannes Berg97b045d2008-06-20 01:22:30 +02003017 if (invoke_tx_handlers(&tx))
Johannes Berge2ebc742007-07-27 15:43:22 +02003018 skb = NULL;
Johannes Berg97b045d2008-06-20 01:22:30 +02003019 out:
Johannes Bergd0709a62008-02-25 16:27:46 +01003020 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02003021
3022 return skb;
3023}
3024EXPORT_SYMBOL(ieee80211_get_buffered_bc);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003025
Johannes Berg55de9082012-07-26 17:24:39 +02003026void __ieee80211_tx_skb_tid_band(struct ieee80211_sub_if_data *sdata,
3027 struct sk_buff *skb, int tid,
3028 enum ieee80211_band band)
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003029{
Christian Lamparter353d09c2012-07-07 15:07:13 +02003030 int ac = ieee802_1d_to_ac[tid & 7];
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003031
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003032 skb_set_mac_header(skb, 0);
3033 skb_set_network_header(skb, 0);
3034 skb_set_transport_header(skb, 0);
3035
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003036 skb_set_queue_mapping(skb, ac);
Helmut Schaacf6bb792011-12-15 10:18:34 +01003037 skb->priority = tid;
Johannes Bergcf0277e2010-01-05 18:00:58 +01003038
Johannes Berg89afe612013-02-13 15:39:57 +01003039 skb->dev = sdata->dev;
3040
Johannes Berg3d34deb2009-06-18 17:25:11 +02003041 /*
3042 * The other path calling ieee80211_xmit is from the tasklet,
3043 * and while we can handle concurrent transmissions locking
3044 * requirements are that we do not come into tx with bhs on.
3045 */
3046 local_bh_disable();
Johannes Berg55de9082012-07-26 17:24:39 +02003047 ieee80211_xmit(sdata, skb, band);
Johannes Berg3d34deb2009-06-18 17:25:11 +02003048 local_bh_enable();
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003049}