blob: 9b3d94e7c4be122b66f729d0b40f9b3d7fb1154d [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{
Matti Gottliebad38bfc2013-11-18 19:06:45 +02001773 struct ieee80211_tx_latency_bin_ranges *tx_latency;
1774
1775 tx_latency = rcu_dereference(local->tx_latency);
1776 if (!tx_latency)
1777 return;
Thomas Gleixner8d7b70f2014-06-11 23:59:18 +00001778 skb->tstamp = ktime_get();
Matti Gottliebad38bfc2013-11-18 19:06:45 +02001779}
1780
Johannes Berge2ebc742007-07-27 15:43:22 +02001781/**
1782 * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type
1783 * subinterfaces (wlan#, WDS, and VLAN interfaces)
1784 * @skb: packet to be sent
1785 * @dev: incoming interface
1786 *
1787 * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will
1788 * not be freed, and caller is responsible for either retrying later or freeing
1789 * skb).
1790 *
1791 * This function takes in an Ethernet header and encapsulates it with suitable
1792 * IEEE 802.11 header based on which interface the packet is coming in. The
1793 * encapsulated packet will then be passed to master interface, wlan#.11, for
1794 * transmission (through low-level driver).
1795 */
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00001796netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb,
1797 struct net_device *dev)
Johannes Berge2ebc742007-07-27 15:43:22 +02001798{
Johannes Berg133b8222008-09-16 14:18:59 +02001799 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1800 struct ieee80211_local *local = sdata->local;
Felix Fietkau489ee912010-12-18 19:30:48 +01001801 struct ieee80211_tx_info *info;
Johannes Bergdcf33962012-07-30 15:11:56 +02001802 int head_need;
Harvey Harrison065e96052008-06-22 16:45:27 -07001803 u16 ethertype, hdrlen, meshhdrlen = 0;
1804 __le16 fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02001805 struct ieee80211_hdr hdr;
Wey-Yi Guyff67bb82010-08-21 07:23:29 -07001806 struct ieee80211s_hdr mesh_hdr __maybe_unused;
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001807 struct mesh_path __maybe_unused *mppath = NULL, *mpath = NULL;
Johannes Berge2ebc742007-07-27 15:43:22 +02001808 const u8 *encaps_data;
1809 int encaps_len, skip_header_bytes;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001810 int nh_pos, h_pos;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001811 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001812 bool wme_sta = false, authorized = false, tdls_auth = false;
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001813 bool tdls_direct = false;
Johannes Berga729cff2011-11-06 14:13:34 +01001814 bool multicast;
1815 u32 info_flags = 0;
1816 u16 info_id = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02001817 struct ieee80211_chanctx_conf *chanctx_conf;
1818 struct ieee80211_sub_if_data *ap_sdata;
1819 enum ieee80211_band band;
Johannes Berge2ebc742007-07-27 15:43:22 +02001820
Johannes Bergdcf33962012-07-30 15:11:56 +02001821 if (unlikely(skb->len < ETH_HLEN))
Johannes Berge2ebc742007-07-27 15:43:22 +02001822 goto fail;
Johannes Berge2ebc742007-07-27 15:43:22 +02001823
Johannes Berge2ebc742007-07-27 15:43:22 +02001824 /* convert Ethernet header to proper 802.11 header (based on
1825 * operation mode) */
1826 ethertype = (skb->data[12] << 8) | skb->data[13];
Harvey Harrison065e96052008-06-22 16:45:27 -07001827 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
Johannes Berge2ebc742007-07-27 15:43:22 +02001828
Johannes Berg55de9082012-07-26 17:24:39 +02001829 rcu_read_lock();
1830
Matti Gottliebad38bfc2013-11-18 19:06:45 +02001831 /* Measure frame arrival for Tx latency statistics calculation */
1832 ieee80211_tx_latency_start_msrmnt(local, skb);
1833
Johannes Berg51fb61e2007-12-19 01:31:27 +01001834 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001835 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg9bc383d2009-11-19 11:55:19 +01001836 sta = rcu_dereference(sdata->u.vlan.sta);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001837 if (sta) {
1838 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
1839 /* RA TA DA SA */
1840 memcpy(hdr.addr1, sta->sta.addr, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001841 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001842 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1843 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1844 hdrlen = 30;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001845 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
1846 wme_sta = test_sta_flag(sta, WLAN_STA_WME);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001847 }
Johannes Berg55de9082012-07-26 17:24:39 +02001848 ap_sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
1849 u.ap);
1850 chanctx_conf = rcu_dereference(ap_sdata->vif.chanctx_conf);
1851 if (!chanctx_conf)
1852 goto fail_rcu;
Johannes Berg4bf88532012-11-09 11:39:59 +01001853 band = chanctx_conf->def.chan->band;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001854 if (sta)
1855 break;
1856 /* fall through */
1857 case NL80211_IFTYPE_AP:
Arnd Bergmannfe801232013-01-25 14:14:33 +00001858 if (sdata->vif.type == NL80211_IFTYPE_AP)
1859 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1860 if (!chanctx_conf)
1861 goto fail_rcu;
Harvey Harrison065e96052008-06-22 16:45:27 -07001862 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
Johannes Berge2ebc742007-07-27 15:43:22 +02001863 /* DA BSSID SA */
1864 memcpy(hdr.addr1, skb->data, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001865 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02001866 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1867 hdrlen = 24;
Johannes Berg4bf88532012-11-09 11:39:59 +01001868 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04001869 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001870 case NL80211_IFTYPE_WDS:
Harvey Harrison065e96052008-06-22 16:45:27 -07001871 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
Johannes Berge2ebc742007-07-27 15:43:22 +02001872 /* RA TA DA SA */
1873 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001874 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02001875 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1876 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1877 hdrlen = 30;
Johannes Berg55de9082012-07-26 17:24:39 +02001878 /*
1879 * This is the exception! WDS style interfaces are prohibited
1880 * when channel contexts are in used so this must be valid
1881 */
Karl Beldan675a0b02013-03-25 16:26:57 +01001882 band = local->hw.conf.chandef.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04001883 break;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001884#ifdef CONFIG_MAC80211_MESH
Johannes Berg05c914f2008-09-11 00:01:58 +02001885 case NL80211_IFTYPE_MESH_POINT:
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001886 if (!is_multicast_ether_addr(skb->data)) {
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001887 struct sta_info *next_hop;
1888 bool mpp_lookup = true;
1889
Johannes Bergbf7cd942013-02-15 14:40:31 +01001890 mpath = mesh_path_lookup(sdata, skb->data);
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001891 if (mpath) {
1892 mpp_lookup = false;
1893 next_hop = rcu_dereference(mpath->next_hop);
1894 if (!next_hop ||
1895 !(mpath->flags & (MESH_PATH_ACTIVE |
1896 MESH_PATH_RESOLVING)))
1897 mpp_lookup = true;
1898 }
1899
1900 if (mpp_lookup)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001901 mppath = mpp_path_lookup(sdata, skb->data);
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001902
1903 if (mppath && mpath)
1904 mesh_path_del(mpath->sdata, mpath->dst);
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001905 }
YanBo79617de2008-09-22 13:30:32 +08001906
Joel A Fernandesf76b57b2010-12-28 19:28:11 -06001907 /*
Joel A Fernandes9d525012011-01-10 00:44:23 -06001908 * Use address extension if it is a packet from
1909 * another interface or if we know the destination
1910 * is being proxied by a portal (i.e. portal address
1911 * differs from proxied address)
Joel A Fernandesf76b57b2010-12-28 19:28:11 -06001912 */
Joe Perchesb203ca32012-05-08 18:56:52 +00001913 if (ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN) &&
1914 !(mppath && !ether_addr_equal(mppath->mpp, skb->data))) {
Javier Cardona3c5772a2009-08-10 12:15:48 -07001915 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
1916 skb->data, skb->data + ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +01001917 meshhdrlen = ieee80211_new_mesh_header(sdata, &mesh_hdr,
1918 NULL, NULL);
YanBo79617de2008-09-22 13:30:32 +08001919 } else {
Thomas Pedersen27f01122012-08-20 11:28:25 -07001920 /* DS -> MBSS (802.11-2012 13.11.3.3).
1921 * For unicast with unknown forwarding information,
1922 * destination might be in the MBSS or if that fails
1923 * forwarded to another mesh gate. In either case
1924 * resolution will be handled in ieee80211_xmit(), so
1925 * leave the original DA. This also works for mcast */
1926 const u8 *mesh_da = skb->data;
YanBo79617de2008-09-22 13:30:32 +08001927
Thomas Pedersen27f01122012-08-20 11:28:25 -07001928 if (mppath)
1929 mesh_da = mppath->mpp;
1930 else if (mpath)
1931 mesh_da = mpath->dst;
Thomas Pedersen27f01122012-08-20 11:28:25 -07001932
Javier Cardona3c5772a2009-08-10 12:15:48 -07001933 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
Johannes Berg47846c92009-11-25 17:46:19 +01001934 mesh_da, sdata->vif.addr);
Thomas Pedersen27f01122012-08-20 11:28:25 -07001935 if (is_multicast_ether_addr(mesh_da))
1936 /* DA TA mSA AE:SA */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001937 meshhdrlen = ieee80211_new_mesh_header(
1938 sdata, &mesh_hdr,
1939 skb->data + ETH_ALEN, NULL);
Javier Cardona3c5772a2009-08-10 12:15:48 -07001940 else
Thomas Pedersen27f01122012-08-20 11:28:25 -07001941 /* RA TA mDA mSA AE:DA SA */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001942 meshhdrlen = ieee80211_new_mesh_header(
1943 sdata, &mesh_hdr, skb->data,
1944 skb->data + ETH_ALEN);
YanBo79617de2008-09-22 13:30:32 +08001945
YanBo79617de2008-09-22 13:30:32 +08001946 }
Johannes Berg55de9082012-07-26 17:24:39 +02001947 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1948 if (!chanctx_conf)
1949 goto fail_rcu;
Johannes Berg4bf88532012-11-09 11:39:59 +01001950 band = chanctx_conf->def.chan->band;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001951 break;
1952#endif
Johannes Berg05c914f2008-09-11 00:01:58 +02001953 case NL80211_IFTYPE_STATION:
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001954 if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001955 bool tdls_peer = false;
1956
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001957 sta = sta_info_get(sdata, skb->data);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001958 if (sta) {
1959 authorized = test_sta_flag(sta,
1960 WLAN_STA_AUTHORIZED);
1961 wme_sta = test_sta_flag(sta, WLAN_STA_WME);
1962 tdls_peer = test_sta_flag(sta,
1963 WLAN_STA_TDLS_PEER);
1964 tdls_auth = test_sta_flag(sta,
1965 WLAN_STA_TDLS_PEER_AUTH);
1966 }
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001967
1968 /*
1969 * If the TDLS link is enabled, send everything
1970 * directly. Otherwise, allow TDLS setup frames
1971 * to be transmitted indirectly.
1972 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001973 tdls_direct = tdls_peer && (tdls_auth ||
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001974 !(ethertype == ETH_P_TDLS && skb->len > 14 &&
1975 skb->data[14] == WLAN_TDLS_SNAP_RFTYPE));
1976 }
1977
1978 if (tdls_direct) {
1979 /* link during setup - throw out frames to peer */
Johannes Bergdcf33962012-07-30 15:11:56 +02001980 if (!tdls_auth)
Johannes Berg55de9082012-07-26 17:24:39 +02001981 goto fail_rcu;
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001982
1983 /* DA SA BSSID */
1984 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1985 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1986 memcpy(hdr.addr3, sdata->u.mgd.bssid, ETH_ALEN);
1987 hdrlen = 24;
1988 } else if (sdata->u.mgd.use_4addr &&
1989 cpu_to_be16(ethertype) != sdata->control_port_protocol) {
1990 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
1991 IEEE80211_FCTL_TODS);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001992 /* RA TA DA SA */
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001993 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001994 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001995 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1996 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1997 hdrlen = 30;
1998 } else {
1999 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
2000 /* BSSID SA DA */
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002001 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002002 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2003 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2004 hdrlen = 24;
2005 }
Johannes Berg55de9082012-07-26 17:24:39 +02002006 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2007 if (!chanctx_conf)
2008 goto fail_rcu;
Johannes Berg4bf88532012-11-09 11:39:59 +01002009 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04002010 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002011 case NL80211_IFTYPE_ADHOC:
Johannes Berge2ebc742007-07-27 15:43:22 +02002012 /* DA SA BSSID */
2013 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2014 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01002015 memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02002016 hdrlen = 24;
Johannes Berg55de9082012-07-26 17:24:39 +02002017 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2018 if (!chanctx_conf)
2019 goto fail_rcu;
Johannes Berg4bf88532012-11-09 11:39:59 +01002020 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04002021 break;
2022 default:
Johannes Berg55de9082012-07-26 17:24:39 +02002023 goto fail_rcu;
Johannes Berge2ebc742007-07-27 15:43:22 +02002024 }
2025
Johannes Berg7d185b82008-01-28 17:11:43 +01002026 /*
2027 * There's no need to try to look up the destination
2028 * if it is a multicast address (which can only happen
2029 * in AP mode)
2030 */
Johannes Berga729cff2011-11-06 14:13:34 +01002031 multicast = is_multicast_ether_addr(hdr.addr1);
2032 if (!multicast) {
Johannes Bergabe60632009-11-25 17:46:18 +01002033 sta = sta_info_get(sdata, hdr.addr1);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002034 if (sta) {
2035 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
2036 wme_sta = test_sta_flag(sta, WLAN_STA_WME);
2037 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002038 }
2039
Javier Cardona4777be42011-09-07 17:49:52 -07002040 /* For mesh, the use of the QoS header is mandatory */
2041 if (ieee80211_vif_is_mesh(&sdata->vif))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002042 wme_sta = true;
Javier Cardona4777be42011-09-07 17:49:52 -07002043
Johannes Berg3434fbd2008-05-03 00:59:37 +02002044 /* receiver and we are QoS enabled, use a QoS type frame */
Johannes Berg32c50572012-03-28 11:04:29 +02002045 if (wme_sta && local->hw.queues >= IEEE80211_NUM_ACS) {
Harvey Harrison065e96052008-06-22 16:45:27 -07002046 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002047 hdrlen += 2;
2048 }
2049
2050 /*
Johannes Berg238814f2008-01-28 17:19:37 +01002051 * Drop unicast frames to unauthorised stations unless they are
2052 * EAPOL frames from the local station.
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002053 */
Johannes Berg55182e42011-10-12 17:28:21 +02002054 if (unlikely(!ieee80211_vif_is_mesh(&sdata->vif) &&
Sergey Ryazanova6ececf2013-08-30 01:35:09 +04002055 !multicast && !authorized &&
Johannes Berg55182e42011-10-12 17:28:21 +02002056 (cpu_to_be16(ethertype) != sdata->control_port_protocol ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002057 !ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN)))) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002058#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002059 net_info_ratelimited("%s: dropped frame to %pM (unauthorized port)\n",
Joe Perchese87cc472012-05-13 21:56:26 +00002060 dev->name, hdr.addr1);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002061#endif
2062
2063 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
2064
Johannes Berg55de9082012-07-26 17:24:39 +02002065 goto fail_rcu;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002066 }
2067
Johannes Berga729cff2011-11-06 14:13:34 +01002068 if (unlikely(!multicast && skb->sk &&
2069 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS)) {
2070 struct sk_buff *orig_skb = skb;
2071
2072 skb = skb_clone(skb, GFP_ATOMIC);
2073 if (skb) {
2074 unsigned long flags;
Tejun Heo9475af62013-02-27 17:04:59 -08002075 int id;
Johannes Berga729cff2011-11-06 14:13:34 +01002076
2077 spin_lock_irqsave(&local->ack_status_lock, flags);
Tejun Heo9475af62013-02-27 17:04:59 -08002078 id = idr_alloc(&local->ack_status_frames, orig_skb,
2079 1, 0x10000, GFP_ATOMIC);
Johannes Berga729cff2011-11-06 14:13:34 +01002080 spin_unlock_irqrestore(&local->ack_status_lock, flags);
2081
Tejun Heo9475af62013-02-27 17:04:59 -08002082 if (id >= 0) {
Johannes Berga729cff2011-11-06 14:13:34 +01002083 info_id = id;
2084 info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
2085 } else if (skb_shared(skb)) {
2086 kfree_skb(orig_skb);
2087 } else {
2088 kfree_skb(skb);
2089 skb = orig_skb;
2090 }
2091 } else {
2092 /* couldn't clone -- lose tx status ... */
2093 skb = orig_skb;
2094 }
2095 }
2096
Helmut Schaa7e244702010-12-02 18:44:09 +01002097 /*
2098 * If the skb is shared we need to obtain our own copy.
2099 */
2100 if (skb_shared(skb)) {
Johannes Berga729cff2011-11-06 14:13:34 +01002101 struct sk_buff *tmp_skb = skb;
2102
2103 /* can't happen -- skb is a clone if info_id != 0 */
2104 WARN_ON(info_id);
2105
Felix Fietkauf8a0a782010-12-18 19:30:50 +01002106 skb = skb_clone(skb, GFP_ATOMIC);
Helmut Schaa7e244702010-12-02 18:44:09 +01002107 kfree_skb(tmp_skb);
2108
Johannes Bergdcf33962012-07-30 15:11:56 +02002109 if (!skb)
Johannes Berg55de9082012-07-26 17:24:39 +02002110 goto fail_rcu;
Helmut Schaa7e244702010-12-02 18:44:09 +01002111 }
2112
Harvey Harrison065e96052008-06-22 16:45:27 -07002113 hdr.frame_control = fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02002114 hdr.duration_id = 0;
2115 hdr.seq_ctrl = 0;
2116
2117 skip_header_bytes = ETH_HLEN;
2118 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
2119 encaps_data = bridge_tunnel_header;
2120 encaps_len = sizeof(bridge_tunnel_header);
2121 skip_header_bytes -= 2;
Simon Hormane5c5d222013-03-28 13:38:25 +09002122 } else if (ethertype >= ETH_P_802_3_MIN) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002123 encaps_data = rfc1042_header;
2124 encaps_len = sizeof(rfc1042_header);
2125 skip_header_bytes -= 2;
2126 } else {
2127 encaps_data = NULL;
2128 encaps_len = 0;
2129 }
2130
Helmut Schaa7e244702010-12-02 18:44:09 +01002131 nh_pos = skb_network_header(skb) - skb->data;
2132 h_pos = skb_transport_header(skb) - skb->data;
2133
Johannes Berge2ebc742007-07-27 15:43:22 +02002134 skb_pull(skb, skip_header_bytes);
2135 nh_pos -= skip_header_bytes;
2136 h_pos -= skip_header_bytes;
2137
Johannes Berg23c07522008-05-29 10:38:53 +02002138 head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002139
Johannes Berg23c07522008-05-29 10:38:53 +02002140 /*
2141 * So we need to modify the skb header and hence need a copy of
2142 * that. The head_need variable above doesn't, so far, include
2143 * the needed header space that we don't need right away. If we
2144 * can, then we don't reallocate right now but only after the
2145 * frame arrives at the master device (if it does...)
2146 *
2147 * If we cannot, however, then we will reallocate to include all
2148 * the ever needed space. Also, if we need to reallocate it anyway,
2149 * make it big enough for everything we may ever need.
2150 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002151
David S. Miller3a5be7d2008-06-18 01:19:51 -07002152 if (head_need > 0 || skb_cloned(skb)) {
Max Stepanov2475b1cc2013-03-24 14:23:27 +02002153 head_need += sdata->encrypt_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02002154 head_need += local->tx_headroom;
2155 head_need = max_t(int, 0, head_need);
Felix Fietkauc3e77242012-10-08 14:39:33 +02002156 if (ieee80211_skb_resize(sdata, skb, head_need, true)) {
2157 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg1c963be2012-11-07 14:02:30 +01002158 skb = NULL;
Johannes Berg55de9082012-07-26 17:24:39 +02002159 goto fail_rcu;
Felix Fietkauc3e77242012-10-08 14:39:33 +02002160 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002161 }
2162
2163 if (encaps_data) {
2164 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
2165 nh_pos += encaps_len;
2166 h_pos += encaps_len;
2167 }
Johannes Bergc29b9b92007-09-14 11:10:24 -04002168
Yuri Ershove4ab7eb2010-06-29 15:08:06 +04002169#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002170 if (meshhdrlen > 0) {
2171 memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
2172 nh_pos += meshhdrlen;
2173 h_pos += meshhdrlen;
2174 }
Yuri Ershove4ab7eb2010-06-29 15:08:06 +04002175#endif
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002176
Harvey Harrison065e96052008-06-22 16:45:27 -07002177 if (ieee80211_is_data_qos(fc)) {
Johannes Bergc29b9b92007-09-14 11:10:24 -04002178 __le16 *qos_control;
2179
Weilong Chenf359d3f2013-12-18 15:44:16 +08002180 qos_control = (__le16 *) skb_push(skb, 2);
Johannes Bergc29b9b92007-09-14 11:10:24 -04002181 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
2182 /*
2183 * Maybe we could actually set some fields here, for now just
2184 * initialise to zero to indicate no special operation.
2185 */
2186 *qos_control = 0;
2187 } else
2188 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
2189
Johannes Berge2ebc742007-07-27 15:43:22 +02002190 nh_pos += hdrlen;
2191 h_pos += hdrlen;
2192
Stephen Hemminger68aae112007-08-24 11:29:34 -07002193 dev->stats.tx_packets++;
2194 dev->stats.tx_bytes += skb->len;
Johannes Berge2ebc742007-07-27 15:43:22 +02002195
2196 /* Update skb pointers to various headers since this modified frame
2197 * is going to go through Linux networking code that may potentially
2198 * need things like pointer to IP header. */
2199 skb_set_mac_header(skb, 0);
2200 skb_set_network_header(skb, nh_pos);
2201 skb_set_transport_header(skb, h_pos);
2202
Felix Fietkau489ee912010-12-18 19:30:48 +01002203 info = IEEE80211_SKB_CB(skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002204 memset(info, 0, sizeof(*info));
2205
Johannes Berge2ebc742007-07-27 15:43:22 +02002206 dev->trans_start = jiffies;
Johannes Berga729cff2011-11-06 14:13:34 +01002207
2208 info->flags = info_flags;
2209 info->ack_frame_id = info_id;
2210
Johannes Berg55de9082012-07-26 17:24:39 +02002211 ieee80211_xmit(sdata, skb, band);
2212 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002213
Patrick McHardyec634fe2009-07-05 19:23:38 -07002214 return NETDEV_TX_OK;
Johannes Berge2ebc742007-07-27 15:43:22 +02002215
Johannes Berg55de9082012-07-26 17:24:39 +02002216 fail_rcu:
2217 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002218 fail:
Johannes Bergdcf33962012-07-30 15:11:56 +02002219 dev_kfree_skb(skb);
2220 return NETDEV_TX_OK;
Johannes Berge2ebc742007-07-27 15:43:22 +02002221}
2222
Johannes Berge2ebc742007-07-27 15:43:22 +02002223
Johannes Berge2530082008-05-17 00:57:14 +02002224/*
2225 * ieee80211_clear_tx_pending may not be called in a context where
2226 * it is possible that it packets could come in again.
2227 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002228void ieee80211_clear_tx_pending(struct ieee80211_local *local)
2229{
Felix Fietkau1f98ab72012-11-10 03:44:14 +01002230 struct sk_buff *skb;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01002231 int i;
Johannes Berge2ebc742007-07-27 15:43:22 +02002232
Felix Fietkau1f98ab72012-11-10 03:44:14 +01002233 for (i = 0; i < local->hw.queues; i++) {
2234 while ((skb = skb_dequeue(&local->pending[i])) != NULL)
2235 ieee80211_free_txskb(&local->hw, skb);
2236 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002237}
2238
Johannes Berg7bb45682011-02-24 14:42:06 +01002239/*
2240 * Returns false if the frame couldn't be transmitted but was queued instead,
2241 * which in this case means re-queued -- take as an indication to stop sending
2242 * more pending frames.
2243 */
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002244static bool ieee80211_tx_pending_skb(struct ieee80211_local *local,
2245 struct sk_buff *skb)
2246{
2247 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2248 struct ieee80211_sub_if_data *sdata;
2249 struct sta_info *sta;
2250 struct ieee80211_hdr *hdr;
Johannes Berg7bb45682011-02-24 14:42:06 +01002251 bool result;
Johannes Berg55de9082012-07-26 17:24:39 +02002252 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002253
Johannes Berg5061b0c2009-07-14 00:33:34 +02002254 sdata = vif_to_sdata(info->control.vif);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002255
2256 if (info->flags & IEEE80211_TX_INTFL_NEED_TXPROCESSING) {
Johannes Berg55de9082012-07-26 17:24:39 +02002257 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2258 if (unlikely(!chanctx_conf)) {
2259 dev_kfree_skb(skb);
2260 return true;
2261 }
2262 result = ieee80211_tx(sdata, skb, true,
Johannes Berg4bf88532012-11-09 11:39:59 +01002263 chanctx_conf->def.chan->band);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002264 } else {
Johannes Berg252b86c2011-11-16 15:28:55 +01002265 struct sk_buff_head skbs;
2266
2267 __skb_queue_head_init(&skbs);
2268 __skb_queue_tail(&skbs, skb);
2269
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002270 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Bergabe60632009-11-25 17:46:18 +01002271 sta = sta_info_get(sdata, hdr->addr1);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002272
Johannes Berg74e4dbf2011-11-16 15:28:57 +01002273 result = __ieee80211_tx(local, &skbs, skb->len, sta, true);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002274 }
2275
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002276 return result;
2277}
2278
Johannes Berge2530082008-05-17 00:57:14 +02002279/*
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002280 * Transmit all pending packets. Called from tasklet.
Johannes Berge2530082008-05-17 00:57:14 +02002281 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002282void ieee80211_tx_pending(unsigned long data)
2283{
2284 struct ieee80211_local *local = (struct ieee80211_local *)data;
Johannes Berg2a577d92009-03-23 17:28:37 +01002285 unsigned long flags;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002286 int i;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002287 bool txok;
Johannes Berge2ebc742007-07-27 15:43:22 +02002288
Johannes Bergf0e72852009-03-23 17:28:36 +01002289 rcu_read_lock();
Johannes Berg2a577d92009-03-23 17:28:37 +01002290
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002291 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Berg176be722009-03-12 23:49:28 +01002292 for (i = 0; i < local->hw.queues; i++) {
Johannes Berg2a577d92009-03-23 17:28:37 +01002293 /*
2294 * If queue is stopped by something other than due to pending
2295 * frames, or we have no pending frames, proceed to next queue.
2296 */
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002297 if (local->queue_stop_reasons[i] ||
Johannes Berg2a577d92009-03-23 17:28:37 +01002298 skb_queue_empty(&local->pending[i]))
Johannes Berge2ebc742007-07-27 15:43:22 +02002299 continue;
Johannes Berge2530082008-05-17 00:57:14 +02002300
Johannes Berg2a577d92009-03-23 17:28:37 +01002301 while (!skb_queue_empty(&local->pending[i])) {
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002302 struct sk_buff *skb = __skb_dequeue(&local->pending[i]);
Johannes Berg5061b0c2009-07-14 00:33:34 +02002303 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg5061b0c2009-07-14 00:33:34 +02002304
Johannes Berga7bc3762009-07-27 10:33:31 +02002305 if (WARN_ON(!info->control.vif)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02002306 ieee80211_free_txskb(&local->hw, skb);
Johannes Berga7bc3762009-07-27 10:33:31 +02002307 continue;
2308 }
2309
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002310 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
2311 flags);
Johannes Berg2a577d92009-03-23 17:28:37 +01002312
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002313 txok = ieee80211_tx_pending_skb(local, skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002314 spin_lock_irqsave(&local->queue_stop_reason_lock,
2315 flags);
2316 if (!txok)
Johannes Berg2a577d92009-03-23 17:28:37 +01002317 break;
Johannes Berge2ebc742007-07-27 15:43:22 +02002318 }
Johannes Berg7236fe22010-03-22 13:42:43 -07002319
2320 if (skb_queue_empty(&local->pending[i]))
Johannes Berg3a25a8c2012-04-03 16:28:50 +02002321 ieee80211_propagate_queue_wake(local, i);
Johannes Berge2ebc742007-07-27 15:43:22 +02002322 }
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002323 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Johannes Berg2a577d92009-03-23 17:28:37 +01002324
Johannes Bergf0e72852009-03-23 17:28:36 +01002325 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002326}
2327
2328/* functions for drivers to get certain frames */
2329
Marco Porscheac70c12013-01-07 16:04:50 +01002330static void __ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002331 struct ps_data *ps, struct sk_buff *skb,
2332 bool is_template)
Johannes Berge2ebc742007-07-27 15:43:22 +02002333{
2334 u8 *pos, *tim;
2335 int aid0 = 0;
2336 int i, have_bits = 0, n1, n2;
2337
2338 /* Generate bitmap for TIM only if there are any STAs in power save
2339 * mode. */
Marco Porschd012a602012-10-10 12:39:50 -07002340 if (atomic_read(&ps->num_sta_ps) > 0)
Johannes Berge2ebc742007-07-27 15:43:22 +02002341 /* in the hope that this is faster than
2342 * checking byte-for-byte */
Weilong Chenf359d3f2013-12-18 15:44:16 +08002343 have_bits = !bitmap_empty((unsigned long *)ps->tim,
Johannes Berge2ebc742007-07-27 15:43:22 +02002344 IEEE80211_MAX_AID+1);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002345 if (!is_template) {
2346 if (ps->dtim_count == 0)
2347 ps->dtim_count = sdata->vif.bss_conf.dtim_period - 1;
2348 else
2349 ps->dtim_count--;
2350 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002351
2352 tim = pos = (u8 *) skb_put(skb, 6);
2353 *pos++ = WLAN_EID_TIM;
2354 *pos++ = 4;
Marco Porschd012a602012-10-10 12:39:50 -07002355 *pos++ = ps->dtim_count;
Johannes Berg88600202012-02-13 15:17:18 +01002356 *pos++ = sdata->vif.bss_conf.dtim_period;
Johannes Berge2ebc742007-07-27 15:43:22 +02002357
Marco Porschd012a602012-10-10 12:39:50 -07002358 if (ps->dtim_count == 0 && !skb_queue_empty(&ps->bc_buf))
Johannes Berge2ebc742007-07-27 15:43:22 +02002359 aid0 = 1;
2360
Marco Porschd012a602012-10-10 12:39:50 -07002361 ps->dtim_bc_mc = aid0 == 1;
Christian Lamparter512119b2011-01-31 20:48:44 +02002362
Johannes Berge2ebc742007-07-27 15:43:22 +02002363 if (have_bits) {
2364 /* Find largest even number N1 so that bits numbered 1 through
2365 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
2366 * (N2 + 1) x 8 through 2007 are 0. */
2367 n1 = 0;
2368 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
Marco Porschd012a602012-10-10 12:39:50 -07002369 if (ps->tim[i]) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002370 n1 = i & 0xfe;
2371 break;
2372 }
2373 }
2374 n2 = n1;
2375 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
Marco Porschd012a602012-10-10 12:39:50 -07002376 if (ps->tim[i]) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002377 n2 = i;
2378 break;
2379 }
2380 }
2381
2382 /* Bitmap control */
2383 *pos++ = n1 | aid0;
2384 /* Part Virt Bitmap */
Eliad Peller5220da32011-11-24 16:50:00 +02002385 skb_put(skb, n2 - n1);
Marco Porschd012a602012-10-10 12:39:50 -07002386 memcpy(pos, ps->tim + n1, n2 - n1 + 1);
Johannes Berge2ebc742007-07-27 15:43:22 +02002387
2388 tim[1] = n2 - n1 + 4;
Johannes Berge2ebc742007-07-27 15:43:22 +02002389 } else {
2390 *pos++ = aid0; /* Bitmap control */
2391 *pos++ = 0; /* Part Virt Bitmap */
2392 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002393}
2394
Marco Porscheac70c12013-01-07 16:04:50 +01002395static int ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002396 struct ps_data *ps, struct sk_buff *skb,
2397 bool is_template)
Marco Porscheac70c12013-01-07 16:04:50 +01002398{
2399 struct ieee80211_local *local = sdata->local;
2400
2401 /*
2402 * Not very nice, but we want to allow the driver to call
2403 * ieee80211_beacon_get() as a response to the set_tim()
2404 * callback. That, however, is already invoked under the
2405 * sta_lock to guarantee consistent and race-free update
2406 * of the tim bitmap in mac80211 and the driver.
2407 */
2408 if (local->tim_in_locked_section) {
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002409 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
Marco Porscheac70c12013-01-07 16:04:50 +01002410 } else {
Johannes Berg1b917312013-02-22 12:55:01 +01002411 spin_lock_bh(&local->tim_lock);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002412 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
Johannes Berg1b917312013-02-22 12:55:01 +01002413 spin_unlock_bh(&local->tim_lock);
Marco Porscheac70c12013-01-07 16:04:50 +01002414 }
2415
2416 return 0;
2417}
2418
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002419static void ieee80211_set_csa(struct ieee80211_sub_if_data *sdata,
2420 struct beacon_data *beacon)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002421{
2422 struct probe_resp *resp;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002423 u8 *beacon_data;
2424 size_t beacon_data_len;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002425 int i;
Michal Kazioraf296bd2014-06-05 14:21:36 +02002426 u8 count = beacon->csa_current_counter;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002427
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002428 switch (sdata->vif.type) {
2429 case NL80211_IFTYPE_AP:
2430 beacon_data = beacon->tail;
2431 beacon_data_len = beacon->tail_len;
2432 break;
2433 case NL80211_IFTYPE_ADHOC:
2434 beacon_data = beacon->head;
2435 beacon_data_len = beacon->head_len;
2436 break;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002437 case NL80211_IFTYPE_MESH_POINT:
2438 beacon_data = beacon->head;
2439 beacon_data_len = beacon->head_len;
2440 break;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002441 default:
2442 return;
2443 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002444
Michal Kazioraf296bd2014-06-05 14:21:36 +02002445 rcu_read_lock();
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002446 for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; ++i) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02002447 resp = rcu_dereference(sdata->u.ap.probe_resp);
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002448
Michal Kazioraf296bd2014-06-05 14:21:36 +02002449 if (beacon->csa_counter_offsets[i]) {
2450 if (WARN_ON_ONCE(beacon->csa_counter_offsets[i] >=
2451 beacon_data_len)) {
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002452 rcu_read_unlock();
2453 return;
2454 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02002455
2456 beacon_data[beacon->csa_counter_offsets[i]] = count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002457 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02002458
2459 if (sdata->vif.type == NL80211_IFTYPE_AP && resp)
2460 resp->data[resp->csa_counter_offsets[i]] = count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002461 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02002462 rcu_read_unlock();
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002463}
2464
2465u8 ieee80211_csa_update_counter(struct ieee80211_vif *vif)
2466{
2467 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002468 struct beacon_data *beacon = NULL;
2469 u8 count = 0;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002470
Michal Kazioraf296bd2014-06-05 14:21:36 +02002471 rcu_read_lock();
2472
2473 if (sdata->vif.type == NL80211_IFTYPE_AP)
2474 beacon = rcu_dereference(sdata->u.ap.beacon);
2475 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
2476 beacon = rcu_dereference(sdata->u.ibss.presp);
2477 else if (ieee80211_vif_is_mesh(&sdata->vif))
2478 beacon = rcu_dereference(sdata->u.mesh.beacon);
2479
2480 if (!beacon)
2481 goto unlock;
2482
2483 beacon->csa_current_counter--;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002484
2485 /* the counter should never reach 0 */
Michal Kazioraf296bd2014-06-05 14:21:36 +02002486 WARN_ON_ONCE(!beacon->csa_current_counter);
2487 count = beacon->csa_current_counter;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002488
Michal Kazioraf296bd2014-06-05 14:21:36 +02002489unlock:
2490 rcu_read_unlock();
2491 return count;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002492}
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002493EXPORT_SYMBOL(ieee80211_csa_update_counter);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002494
2495bool ieee80211_csa_is_complete(struct ieee80211_vif *vif)
2496{
2497 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2498 struct beacon_data *beacon = NULL;
2499 u8 *beacon_data;
2500 size_t beacon_data_len;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002501 int ret = false;
2502
2503 if (!ieee80211_sdata_running(sdata))
2504 return false;
2505
2506 rcu_read_lock();
2507 if (vif->type == NL80211_IFTYPE_AP) {
2508 struct ieee80211_if_ap *ap = &sdata->u.ap;
2509
2510 beacon = rcu_dereference(ap->beacon);
2511 if (WARN_ON(!beacon || !beacon->tail))
2512 goto out;
2513 beacon_data = beacon->tail;
2514 beacon_data_len = beacon->tail_len;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002515 } else if (vif->type == NL80211_IFTYPE_ADHOC) {
2516 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
2517
2518 beacon = rcu_dereference(ifibss->presp);
2519 if (!beacon)
2520 goto out;
2521
2522 beacon_data = beacon->head;
2523 beacon_data_len = beacon->head_len;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002524 } else if (vif->type == NL80211_IFTYPE_MESH_POINT) {
2525 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
2526
2527 beacon = rcu_dereference(ifmsh->beacon);
2528 if (!beacon)
2529 goto out;
2530
2531 beacon_data = beacon->head;
2532 beacon_data_len = beacon->head_len;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002533 } else {
2534 WARN_ON(1);
2535 goto out;
2536 }
2537
Michal Kazior10d78f22014-06-05 14:21:37 +02002538 if (!beacon->csa_counter_offsets[0])
2539 goto out;
2540
Michal Kazioraf296bd2014-06-05 14:21:36 +02002541 if (WARN_ON_ONCE(beacon->csa_counter_offsets[0] > beacon_data_len))
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002542 goto out;
2543
Michal Kazioraf296bd2014-06-05 14:21:36 +02002544 if (beacon_data[beacon->csa_counter_offsets[0]] == 1)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002545 ret = true;
2546 out:
2547 rcu_read_unlock();
2548
2549 return ret;
2550}
2551EXPORT_SYMBOL(ieee80211_csa_is_complete);
2552
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002553static struct sk_buff *
2554__ieee80211_beacon_get(struct ieee80211_hw *hw,
2555 struct ieee80211_vif *vif,
2556 struct ieee80211_mutable_offsets *offs,
2557 bool is_template)
Johannes Berge2ebc742007-07-27 15:43:22 +02002558{
2559 struct ieee80211_local *local = hw_to_local(hw);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002560 struct beacon_data *beacon = NULL;
Johannes Berg9d139c82008-07-09 14:40:37 +02002561 struct sk_buff *skb = NULL;
Johannes Berge039fa42008-05-15 12:55:29 +02002562 struct ieee80211_tx_info *info;
Johannes Berge2ebc742007-07-27 15:43:22 +02002563 struct ieee80211_sub_if_data *sdata = NULL;
Johannes Berg55de9082012-07-26 17:24:39 +02002564 enum ieee80211_band band;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002565 struct ieee80211_tx_rate_control txrc;
Johannes Berg55de9082012-07-26 17:24:39 +02002566 struct ieee80211_chanctx_conf *chanctx_conf;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002567 int csa_off_base = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002568
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002569 rcu_read_lock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002570
Johannes Berg32bfd352007-12-19 01:31:26 +01002571 sdata = vif_to_sdata(vif);
Johannes Berg55de9082012-07-26 17:24:39 +02002572 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berge2ebc742007-07-27 15:43:22 +02002573
Johannes Berg55de9082012-07-26 17:24:39 +02002574 if (!ieee80211_sdata_running(sdata) || !chanctx_conf)
Felix Fietkaueb3e5542011-01-24 19:28:49 +01002575 goto out;
2576
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002577 if (offs)
2578 memset(offs, 0, sizeof(*offs));
Johannes Bergeddcbb92009-10-29 08:30:35 +01002579
Johannes Berg05c914f2008-09-11 00:01:58 +02002580 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Marco Porschd012a602012-10-10 12:39:50 -07002581 struct ieee80211_if_ap *ap = &sdata->u.ap;
Marco Porschd012a602012-10-10 12:39:50 -07002582
Michal Kazioraf296bd2014-06-05 14:21:36 +02002583 beacon = rcu_dereference(ap->beacon);
Dan Carpenter3ad97fb2011-02-07 22:03:35 +03002584 if (beacon) {
Michal Kazior10d78f22014-06-05 14:21:37 +02002585 if (beacon->csa_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002586 if (!is_template)
2587 ieee80211_csa_update_counter(vif);
2588
2589 ieee80211_set_csa(sdata, beacon);
2590 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002591
Johannes Berg902acc72008-02-23 15:17:19 +01002592 /*
2593 * headroom, head length,
2594 * tail length and maximum TIM length
2595 */
2596 skb = dev_alloc_skb(local->tx_headroom +
2597 beacon->head_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002598 beacon->tail_len + 256 +
2599 local->hw.extra_beacon_tailroom);
Johannes Berg902acc72008-02-23 15:17:19 +01002600 if (!skb)
2601 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002602
Johannes Berg902acc72008-02-23 15:17:19 +01002603 skb_reserve(skb, local->tx_headroom);
2604 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2605 beacon->head_len);
2606
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002607 ieee80211_beacon_add_tim(sdata, &ap->ps, skb,
2608 is_template);
Johannes Berg902acc72008-02-23 15:17:19 +01002609
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002610 if (offs) {
2611 offs->tim_offset = beacon->head_len;
2612 offs->tim_length = skb->len - beacon->head_len;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002613
2614 /* for AP the csa offsets are from tail */
2615 csa_off_base = skb->len;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002616 }
Johannes Bergeddcbb92009-10-29 08:30:35 +01002617
Johannes Berg902acc72008-02-23 15:17:19 +01002618 if (beacon->tail)
2619 memcpy(skb_put(skb, beacon->tail_len),
2620 beacon->tail, beacon->tail_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002621 } else
2622 goto out;
Johannes Berg05c914f2008-09-11 00:01:58 +02002623 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg46900292009-02-15 12:44:28 +01002624 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg9d139c82008-07-09 14:40:37 +02002625 struct ieee80211_hdr *hdr;
Johannes Berg902acc72008-02-23 15:17:19 +01002626
Michal Kazioraf296bd2014-06-05 14:21:36 +02002627 beacon = rcu_dereference(ifibss->presp);
2628 if (!beacon)
Johannes Berg9d139c82008-07-09 14:40:37 +02002629 goto out;
2630
Michal Kazior10d78f22014-06-05 14:21:37 +02002631 if (beacon->csa_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002632 if (!is_template)
2633 ieee80211_csa_update_counter(vif);
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002634
Michal Kazioraf296bd2014-06-05 14:21:36 +02002635 ieee80211_set_csa(sdata, beacon);
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002636 }
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002637
Michal Kazioraf296bd2014-06-05 14:21:36 +02002638 skb = dev_alloc_skb(local->tx_headroom + beacon->head_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002639 local->hw.extra_beacon_tailroom);
Johannes Berg9d139c82008-07-09 14:40:37 +02002640 if (!skb)
2641 goto out;
Johannes Bergc3ffeab2013-03-07 20:54:29 +01002642 skb_reserve(skb, local->tx_headroom);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002643 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2644 beacon->head_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002645
2646 hdr = (struct ieee80211_hdr *) skb->data;
Harvey Harrisone7827a72008-07-15 18:44:13 -07002647 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2648 IEEE80211_STYPE_BEACON);
Johannes Berg902acc72008-02-23 15:17:19 +01002649 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
Javier Cardonadbf498f2012-03-31 11:31:32 -07002650 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02002651
Michal Kazioraf296bd2014-06-05 14:21:36 +02002652 beacon = rcu_dereference(ifmsh->beacon);
2653 if (!beacon)
Johannes Bergac1bd842011-01-18 13:45:32 +01002654 goto out;
Johannes Bergac1bd842011-01-18 13:45:32 +01002655
Michal Kazior10d78f22014-06-05 14:21:37 +02002656 if (beacon->csa_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002657 if (!is_template)
2658 /* TODO: For mesh csa_counter is in TU, so
2659 * decrementing it by one isn't correct, but
2660 * for now we leave it consistent with overall
2661 * mac80211's behavior.
2662 */
2663 ieee80211_csa_update_counter(vif);
2664
Michal Kazioraf296bd2014-06-05 14:21:36 +02002665 ieee80211_set_csa(sdata, beacon);
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002666 }
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002667
Javier Cardonadbf498f2012-03-31 11:31:32 -07002668 if (ifmsh->sync_ops)
Michal Kazioraf296bd2014-06-05 14:21:36 +02002669 ifmsh->sync_ops->adjust_tbtt(sdata, beacon);
Javier Cardonadbf498f2012-03-31 11:31:32 -07002670
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -07002671 skb = dev_alloc_skb(local->tx_headroom +
Michal Kazioraf296bd2014-06-05 14:21:36 +02002672 beacon->head_len +
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002673 256 + /* TIM IE */
Michal Kazioraf296bd2014-06-05 14:21:36 +02002674 beacon->tail_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002675 local->hw.extra_beacon_tailroom);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002676 if (!skb)
2677 goto out;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08002678 skb_reserve(skb, local->tx_headroom);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002679 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2680 beacon->head_len);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002681 ieee80211_beacon_add_tim(sdata, &ifmsh->ps, skb, is_template);
2682
2683 if (offs) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02002684 offs->tim_offset = beacon->head_len;
2685 offs->tim_length = skb->len - beacon->head_len;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002686 }
2687
Michal Kazioraf296bd2014-06-05 14:21:36 +02002688 memcpy(skb_put(skb, beacon->tail_len), beacon->tail,
2689 beacon->tail_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002690 } else {
2691 WARN_ON(1);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002692 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02002693 }
2694
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002695 /* CSA offsets */
Michal Kazioraf296bd2014-06-05 14:21:36 +02002696 if (offs && beacon) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002697 int i;
2698
2699 for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; i++) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02002700 u16 csa_off = beacon->csa_counter_offsets[i];
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002701
2702 if (!csa_off)
2703 continue;
2704
2705 offs->csa_counter_offs[i] = csa_off_base + csa_off;
2706 }
2707 }
2708
Johannes Berg4bf88532012-11-09 11:39:59 +01002709 band = chanctx_conf->def.chan->band;
Johannes Berg55de9082012-07-26 17:24:39 +02002710
Johannes Berge039fa42008-05-15 12:55:29 +02002711 info = IEEE80211_SKB_CB(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002712
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002713 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002714 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Johannes Berge039fa42008-05-15 12:55:29 +02002715 info->band = band;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002716
2717 memset(&txrc, 0, sizeof(txrc));
2718 txrc.hw = hw;
Johannes Berge31583c2012-07-26 14:07:46 +02002719 txrc.sband = local->hw.wiphy->bands[band];
Jouni Malinene00cfce2009-12-29 12:59:19 +02002720 txrc.bss_conf = &sdata->vif.bss_conf;
2721 txrc.skb = skb;
2722 txrc.reported_rate.idx = -1;
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002723 txrc.rate_idx_mask = sdata->rc_rateidx_mask[band];
Johannes Berge31583c2012-07-26 14:07:46 +02002724 if (txrc.rate_idx_mask == (1 << txrc.sband->n_bitrates) - 1)
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002725 txrc.max_rate_idx = -1;
2726 else
2727 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
Felix Fietkau8f0729b2010-11-11 15:07:23 +01002728 txrc.bss = true;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002729 rate_control_get_rate(sdata, NULL, &txrc);
Johannes Berge039fa42008-05-15 12:55:29 +02002730
2731 info->control.vif = vif;
Johannes Bergf591fa52008-07-10 11:21:26 +02002732
John W. Linvillea472e712010-05-06 14:45:17 -04002733 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT |
2734 IEEE80211_TX_CTL_ASSIGN_SEQ |
2735 IEEE80211_TX_CTL_FIRST_FRAGMENT;
Johannes Berge6a98542008-10-21 12:40:02 +02002736 out:
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002737 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002738 return skb;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002739
2740}
2741
2742struct sk_buff *
2743ieee80211_beacon_get_template(struct ieee80211_hw *hw,
2744 struct ieee80211_vif *vif,
2745 struct ieee80211_mutable_offsets *offs)
2746{
2747 return __ieee80211_beacon_get(hw, vif, offs, true);
2748}
2749EXPORT_SYMBOL(ieee80211_beacon_get_template);
2750
2751struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
2752 struct ieee80211_vif *vif,
2753 u16 *tim_offset, u16 *tim_length)
2754{
2755 struct ieee80211_mutable_offsets offs = {};
2756 struct sk_buff *bcn = __ieee80211_beacon_get(hw, vif, &offs, false);
2757
2758 if (tim_offset)
2759 *tim_offset = offs.tim_offset;
2760
2761 if (tim_length)
2762 *tim_length = offs.tim_length;
2763
2764 return bcn;
Johannes Berge2ebc742007-07-27 15:43:22 +02002765}
Johannes Bergeddcbb92009-10-29 08:30:35 +01002766EXPORT_SYMBOL(ieee80211_beacon_get_tim);
Johannes Berge2ebc742007-07-27 15:43:22 +02002767
Arik Nemtsov02945822011-11-10 11:28:57 +02002768struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw,
2769 struct ieee80211_vif *vif)
2770{
2771 struct ieee80211_if_ap *ap = NULL;
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002772 struct sk_buff *skb = NULL;
2773 struct probe_resp *presp = NULL;
Arik Nemtsov02945822011-11-10 11:28:57 +02002774 struct ieee80211_hdr *hdr;
2775 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2776
2777 if (sdata->vif.type != NL80211_IFTYPE_AP)
2778 return NULL;
2779
2780 rcu_read_lock();
2781
2782 ap = &sdata->u.ap;
2783 presp = rcu_dereference(ap->probe_resp);
2784 if (!presp)
2785 goto out;
2786
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002787 skb = dev_alloc_skb(presp->len);
Arik Nemtsov02945822011-11-10 11:28:57 +02002788 if (!skb)
2789 goto out;
2790
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002791 memcpy(skb_put(skb, presp->len), presp->data, presp->len);
2792
Arik Nemtsov02945822011-11-10 11:28:57 +02002793 hdr = (struct ieee80211_hdr *) skb->data;
2794 memset(hdr->addr1, 0, sizeof(hdr->addr1));
2795
2796out:
2797 rcu_read_unlock();
2798 return skb;
2799}
2800EXPORT_SYMBOL(ieee80211_proberesp_get);
2801
Kalle Valo7044cc52010-01-05 20:16:19 +02002802struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw,
2803 struct ieee80211_vif *vif)
2804{
2805 struct ieee80211_sub_if_data *sdata;
2806 struct ieee80211_if_managed *ifmgd;
2807 struct ieee80211_pspoll *pspoll;
2808 struct ieee80211_local *local;
2809 struct sk_buff *skb;
2810
2811 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2812 return NULL;
2813
2814 sdata = vif_to_sdata(vif);
2815 ifmgd = &sdata->u.mgd;
2816 local = sdata->local;
2817
2818 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
Joe Perchesd15b8452011-08-29 14:17:31 -07002819 if (!skb)
Kalle Valo7044cc52010-01-05 20:16:19 +02002820 return NULL;
Joe Perchesd15b8452011-08-29 14:17:31 -07002821
Kalle Valo7044cc52010-01-05 20:16:19 +02002822 skb_reserve(skb, local->hw.extra_tx_headroom);
2823
2824 pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll));
2825 memset(pspoll, 0, sizeof(*pspoll));
2826 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
2827 IEEE80211_STYPE_PSPOLL);
2828 pspoll->aid = cpu_to_le16(ifmgd->aid);
2829
2830 /* aid in PS-Poll has its two MSBs each set to 1 */
2831 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
2832
2833 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
2834 memcpy(pspoll->ta, vif->addr, ETH_ALEN);
2835
2836 return skb;
2837}
2838EXPORT_SYMBOL(ieee80211_pspoll_get);
2839
2840struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw,
2841 struct ieee80211_vif *vif)
2842{
2843 struct ieee80211_hdr_3addr *nullfunc;
2844 struct ieee80211_sub_if_data *sdata;
2845 struct ieee80211_if_managed *ifmgd;
2846 struct ieee80211_local *local;
2847 struct sk_buff *skb;
2848
2849 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2850 return NULL;
2851
2852 sdata = vif_to_sdata(vif);
2853 ifmgd = &sdata->u.mgd;
2854 local = sdata->local;
2855
2856 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*nullfunc));
Joe Perchesd15b8452011-08-29 14:17:31 -07002857 if (!skb)
Kalle Valo7044cc52010-01-05 20:16:19 +02002858 return NULL;
Joe Perchesd15b8452011-08-29 14:17:31 -07002859
Kalle Valo7044cc52010-01-05 20:16:19 +02002860 skb_reserve(skb, local->hw.extra_tx_headroom);
2861
2862 nullfunc = (struct ieee80211_hdr_3addr *) skb_put(skb,
2863 sizeof(*nullfunc));
2864 memset(nullfunc, 0, sizeof(*nullfunc));
2865 nullfunc->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
2866 IEEE80211_STYPE_NULLFUNC |
2867 IEEE80211_FCTL_TODS);
2868 memcpy(nullfunc->addr1, ifmgd->bssid, ETH_ALEN);
2869 memcpy(nullfunc->addr2, vif->addr, ETH_ALEN);
2870 memcpy(nullfunc->addr3, ifmgd->bssid, ETH_ALEN);
2871
2872 return skb;
2873}
2874EXPORT_SYMBOL(ieee80211_nullfunc_get);
2875
Kalle Valo05e54ea2010-01-05 20:16:38 +02002876struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw,
2877 struct ieee80211_vif *vif,
2878 const u8 *ssid, size_t ssid_len,
Johannes Bergb9a9ada2012-11-29 13:00:10 +01002879 size_t tailroom)
Kalle Valo05e54ea2010-01-05 20:16:38 +02002880{
2881 struct ieee80211_sub_if_data *sdata;
2882 struct ieee80211_local *local;
2883 struct ieee80211_hdr_3addr *hdr;
2884 struct sk_buff *skb;
2885 size_t ie_ssid_len;
2886 u8 *pos;
2887
2888 sdata = vif_to_sdata(vif);
2889 local = sdata->local;
2890 ie_ssid_len = 2 + ssid_len;
2891
2892 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*hdr) +
Johannes Bergb9a9ada2012-11-29 13:00:10 +01002893 ie_ssid_len + tailroom);
Joe Perchesd15b8452011-08-29 14:17:31 -07002894 if (!skb)
Kalle Valo05e54ea2010-01-05 20:16:38 +02002895 return NULL;
Kalle Valo05e54ea2010-01-05 20:16:38 +02002896
2897 skb_reserve(skb, local->hw.extra_tx_headroom);
2898
2899 hdr = (struct ieee80211_hdr_3addr *) skb_put(skb, sizeof(*hdr));
2900 memset(hdr, 0, sizeof(*hdr));
2901 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2902 IEEE80211_STYPE_PROBE_REQ);
Johannes Berge83e6542012-07-13 16:23:07 +02002903 eth_broadcast_addr(hdr->addr1);
Kalle Valo05e54ea2010-01-05 20:16:38 +02002904 memcpy(hdr->addr2, vif->addr, ETH_ALEN);
Johannes Berge83e6542012-07-13 16:23:07 +02002905 eth_broadcast_addr(hdr->addr3);
Kalle Valo05e54ea2010-01-05 20:16:38 +02002906
2907 pos = skb_put(skb, ie_ssid_len);
2908 *pos++ = WLAN_EID_SSID;
2909 *pos++ = ssid_len;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002910 if (ssid_len)
Kalle Valo05e54ea2010-01-05 20:16:38 +02002911 memcpy(pos, ssid, ssid_len);
2912 pos += ssid_len;
2913
Kalle Valo05e54ea2010-01-05 20:16:38 +02002914 return skb;
2915}
2916EXPORT_SYMBOL(ieee80211_probereq_get);
2917
Johannes Berg32bfd352007-12-19 01:31:26 +01002918void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02002919 const void *frame, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +02002920 const struct ieee80211_tx_info *frame_txctl,
Johannes Berge2ebc742007-07-27 15:43:22 +02002921 struct ieee80211_rts *rts)
2922{
2923 const struct ieee80211_hdr *hdr = frame;
Johannes Berge2ebc742007-07-27 15:43:22 +02002924
Harvey Harrison065e96052008-06-22 16:45:27 -07002925 rts->frame_control =
2926 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
Johannes Berg32bfd352007-12-19 01:31:26 +01002927 rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
2928 frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02002929 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
2930 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
2931}
2932EXPORT_SYMBOL(ieee80211_rts_get);
2933
Johannes Berg32bfd352007-12-19 01:31:26 +01002934void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02002935 const void *frame, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +02002936 const struct ieee80211_tx_info *frame_txctl,
Johannes Berge2ebc742007-07-27 15:43:22 +02002937 struct ieee80211_cts *cts)
2938{
2939 const struct ieee80211_hdr *hdr = frame;
Johannes Berge2ebc742007-07-27 15:43:22 +02002940
Harvey Harrison065e96052008-06-22 16:45:27 -07002941 cts->frame_control =
2942 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
Johannes Berg32bfd352007-12-19 01:31:26 +01002943 cts->duration = ieee80211_ctstoself_duration(hw, vif,
2944 frame_len, frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02002945 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
2946}
2947EXPORT_SYMBOL(ieee80211_ctstoself_get);
2948
2949struct sk_buff *
Johannes Berg32bfd352007-12-19 01:31:26 +01002950ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
Johannes Berge039fa42008-05-15 12:55:29 +02002951 struct ieee80211_vif *vif)
Johannes Berge2ebc742007-07-27 15:43:22 +02002952{
2953 struct ieee80211_local *local = hw_to_local(hw);
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002954 struct sk_buff *skb = NULL;
Johannes Berg5cf121c2008-02-25 16:27:43 +01002955 struct ieee80211_tx_data tx;
Johannes Berge2ebc742007-07-27 15:43:22 +02002956 struct ieee80211_sub_if_data *sdata;
Marco Porschd012a602012-10-10 12:39:50 -07002957 struct ps_data *ps;
Johannes Berge039fa42008-05-15 12:55:29 +02002958 struct ieee80211_tx_info *info;
Johannes Berg55de9082012-07-26 17:24:39 +02002959 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berge2ebc742007-07-27 15:43:22 +02002960
Johannes Berg32bfd352007-12-19 01:31:26 +01002961 sdata = vif_to_sdata(vif);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002962
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002963 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02002964 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002965
Marco Porschd012a602012-10-10 12:39:50 -07002966 if (!chanctx_conf)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002967 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002968
Marco Porschd012a602012-10-10 12:39:50 -07002969 if (sdata->vif.type == NL80211_IFTYPE_AP) {
2970 struct beacon_data *beacon =
2971 rcu_dereference(sdata->u.ap.beacon);
2972
2973 if (!beacon || !beacon->head)
2974 goto out;
2975
2976 ps = &sdata->u.ap.ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002977 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
2978 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -07002979 } else {
2980 goto out;
2981 }
2982
2983 if (ps->dtim_count != 0 || !ps->dtim_bc_mc)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002984 goto out; /* send buffered bc/mc only after DTIM beacon */
Johannes Berge039fa42008-05-15 12:55:29 +02002985
Johannes Berge2ebc742007-07-27 15:43:22 +02002986 while (1) {
Marco Porschd012a602012-10-10 12:39:50 -07002987 skb = skb_dequeue(&ps->bc_buf);
Johannes Berge2ebc742007-07-27 15:43:22 +02002988 if (!skb)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002989 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02002990 local->total_ps_buffered--;
2991
Marco Porschd012a602012-10-10 12:39:50 -07002992 if (!skb_queue_empty(&ps->bc_buf) && skb->len >= 2) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002993 struct ieee80211_hdr *hdr =
2994 (struct ieee80211_hdr *) skb->data;
2995 /* more buffered multicast/broadcast frames ==> set
2996 * MoreData flag in IEEE 802.11 header to inform PS
2997 * STAs */
2998 hdr->frame_control |=
2999 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
3000 }
3001
Michael Braun112c44b2014-03-06 15:08:43 +01003002 if (sdata->vif.type == NL80211_IFTYPE_AP)
Marco Porsch7cbf9d02013-03-01 16:01:18 +01003003 sdata = IEEE80211_DEV_TO_SUB_IF(skb->dev);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003004 if (!ieee80211_tx_prepare(sdata, &tx, skb))
Johannes Berge2ebc742007-07-27 15:43:22 +02003005 break;
3006 dev_kfree_skb_any(skb);
3007 }
Johannes Berge039fa42008-05-15 12:55:29 +02003008
3009 info = IEEE80211_SKB_CB(skb);
3010
Johannes Berg5cf121c2008-02-25 16:27:43 +01003011 tx.flags |= IEEE80211_TX_PS_BUFFERED;
Johannes Berg4bf88532012-11-09 11:39:59 +01003012 info->band = chanctx_conf->def.chan->band;
Johannes Berge2ebc742007-07-27 15:43:22 +02003013
Johannes Berg97b045d2008-06-20 01:22:30 +02003014 if (invoke_tx_handlers(&tx))
Johannes Berge2ebc742007-07-27 15:43:22 +02003015 skb = NULL;
Johannes Berg97b045d2008-06-20 01:22:30 +02003016 out:
Johannes Bergd0709a62008-02-25 16:27:46 +01003017 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02003018
3019 return skb;
3020}
3021EXPORT_SYMBOL(ieee80211_get_buffered_bc);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003022
Johannes Berg55de9082012-07-26 17:24:39 +02003023void __ieee80211_tx_skb_tid_band(struct ieee80211_sub_if_data *sdata,
3024 struct sk_buff *skb, int tid,
3025 enum ieee80211_band band)
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003026{
Christian Lamparter353d09c2012-07-07 15:07:13 +02003027 int ac = ieee802_1d_to_ac[tid & 7];
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003028
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003029 skb_set_mac_header(skb, 0);
3030 skb_set_network_header(skb, 0);
3031 skb_set_transport_header(skb, 0);
3032
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003033 skb_set_queue_mapping(skb, ac);
Helmut Schaacf6bb792011-12-15 10:18:34 +01003034 skb->priority = tid;
Johannes Bergcf0277e2010-01-05 18:00:58 +01003035
Johannes Berg89afe612013-02-13 15:39:57 +01003036 skb->dev = sdata->dev;
3037
Johannes Berg3d34deb2009-06-18 17:25:11 +02003038 /*
3039 * The other path calling ieee80211_xmit is from the tasklet,
3040 * and while we can handle concurrent transmissions locking
3041 * requirements are that we do not come into tx with bhs on.
3042 */
3043 local_bh_disable();
Johannes Berg55de9082012-07-26 17:24:39 +02003044 ieee80211_xmit(sdata, skb, band);
Johannes Berg3d34deb2009-06-18 17:25:11 +02003045 local_bh_enable();
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003046}