blob: 07bd8db00af84b820139c644da95eaf29e474b5f [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>
Johannes Bergd98ad832014-09-03 15:24:57 +03006 * Copyright 2013-2014 Intel Mobile Communications GmbH
Johannes Berge2ebc742007-07-27 15:43:22 +02007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 *
13 * Transmit and frame generation functions.
14 */
15
16#include <linux/kernel.h>
17#include <linux/slab.h>
18#include <linux/skbuff.h>
19#include <linux/etherdevice.h>
20#include <linux/bitmap.h>
Johannes Bergd4e46a32007-09-14 11:10:24 -040021#include <linux/rcupdate.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040022#include <linux/export.h>
Matti Gottliebad38bfc2013-11-18 19:06:45 +020023#include <linux/time.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070024#include <net/net_namespace.h>
Johannes Berge2ebc742007-07-27 15:43:22 +020025#include <net/ieee80211_radiotap.h>
26#include <net/cfg80211.h>
27#include <net/mac80211.h>
28#include <asm/unaligned.h>
29
30#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020031#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040032#include "led.h"
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +010033#include "mesh.h"
Johannes Berge2ebc742007-07-27 15:43:22 +020034#include "wep.h"
35#include "wpa.h"
36#include "wme.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040037#include "rate.h"
Johannes Berge2ebc742007-07-27 15:43:22 +020038
Johannes Berge2ebc742007-07-27 15:43:22 +020039/* misc utils */
40
Johannes Berg252b86c2011-11-16 15:28:55 +010041static __le16 ieee80211_duration(struct ieee80211_tx_data *tx,
42 struct sk_buff *skb, int group_addr,
Johannes Berg03f93c32008-06-25 14:36:27 +030043 int next_frag_len)
Johannes Berge2ebc742007-07-27 15:43:22 +020044{
Simon Wunderlich2103dec2013-07-08 16:55:53 +020045 int rate, mrate, erp, dur, i, shift = 0;
Johannes Berg2e92e6f2008-05-15 12:55:27 +020046 struct ieee80211_rate *txrate;
Johannes Berge2ebc742007-07-27 15:43:22 +020047 struct ieee80211_local *local = tx->local;
Johannes Berg8318d782008-01-24 19:38:38 +010048 struct ieee80211_supported_band *sband;
Harvey Harrison358c8d92008-07-15 18:44:13 -070049 struct ieee80211_hdr *hdr;
Johannes Berg252b86c2011-11-16 15:28:55 +010050 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Simon Wunderlich2103dec2013-07-08 16:55:53 +020051 struct ieee80211_chanctx_conf *chanctx_conf;
52 u32 rate_flags = 0;
53
54 rcu_read_lock();
55 chanctx_conf = rcu_dereference(tx->sdata->vif.chanctx_conf);
56 if (chanctx_conf) {
57 shift = ieee80211_chandef_get_shift(&chanctx_conf->def);
58 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
59 }
60 rcu_read_unlock();
Johannes Berge6a98542008-10-21 12:40:02 +020061
62 /* assume HW handles this */
Felix Fietkau336004e2014-11-21 23:29:14 +010063 if (tx->rate.flags & (IEEE80211_TX_RC_MCS | IEEE80211_TX_RC_VHT_MCS))
Johannes Berge6a98542008-10-21 12:40:02 +020064 return 0;
65
66 /* uh huh? */
Felix Fietkau0d528d82013-04-22 16:14:41 +020067 if (WARN_ON_ONCE(tx->rate.idx < 0))
Johannes Berge6a98542008-10-21 12:40:02 +020068 return 0;
Johannes Berge2ebc742007-07-27 15:43:22 +020069
Johannes Berg2d565772012-07-23 15:12:51 +020070 sband = local->hw.wiphy->bands[info->band];
Felix Fietkau0d528d82013-04-22 16:14:41 +020071 txrate = &sband->bitrates[tx->rate.idx];
Johannes Berg8318d782008-01-24 19:38:38 +010072
Johannes Berge6a98542008-10-21 12:40:02 +020073 erp = txrate->flags & IEEE80211_RATE_ERP_G;
Johannes Berge2ebc742007-07-27 15:43:22 +020074
75 /*
76 * data and mgmt (except PS Poll):
77 * - during CFP: 32768
78 * - during contention period:
79 * if addr1 is group address: 0
80 * if more fragments = 0 and addr1 is individual address: time to
81 * transmit one ACK plus SIFS
82 * if more fragments = 1 and addr1 is individual address: time to
83 * transmit next fragment plus 2 x ACK plus 3 x SIFS
84 *
85 * IEEE 802.11, 9.6:
86 * - control response frame (CTS or ACK) shall be transmitted using the
87 * same rate as the immediately previous frame in the frame exchange
88 * sequence, if this rate belongs to the PHY mandatory rates, or else
89 * at the highest possible rate belonging to the PHY rates in the
90 * BSSBasicRateSet
91 */
Johannes Berg252b86c2011-11-16 15:28:55 +010092 hdr = (struct ieee80211_hdr *)skb->data;
Harvey Harrison358c8d92008-07-15 18:44:13 -070093 if (ieee80211_is_ctl(hdr->frame_control)) {
Johannes Berge2ebc742007-07-27 15:43:22 +020094 /* TODO: These control frames are not currently sent by
Johannes Bergccd7b362008-09-11 00:01:56 +020095 * mac80211, but should they be implemented, this function
Johannes Berge2ebc742007-07-27 15:43:22 +020096 * needs to be updated to support duration field calculation.
97 *
98 * RTS: time needed to transmit pending data/mgmt frame plus
99 * one CTS frame plus one ACK frame plus 3 x SIFS
100 * CTS: duration of immediately previous RTS minus time
101 * required to transmit CTS and its SIFS
102 * ACK: 0 if immediately previous directed data/mgmt had
103 * more=0, with more=1 duration in ACK frame is duration
104 * from previous frame minus time needed to transmit ACK
105 * and its SIFS
106 * PS Poll: BIT(15) | BIT(14) | aid
107 */
108 return 0;
109 }
110
111 /* data/mgmt */
112 if (0 /* FIX: data/mgmt during CFP */)
Johannes Berg03f93c32008-06-25 14:36:27 +0300113 return cpu_to_le16(32768);
Johannes Berge2ebc742007-07-27 15:43:22 +0200114
115 if (group_addr) /* Group address as the destination - no ACK */
116 return 0;
117
118 /* Individual destination address:
119 * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
120 * CTS and ACK frames shall be transmitted using the highest rate in
121 * basic rate set that is less than or equal to the rate of the
122 * immediately previous frame and that is using the same modulation
123 * (CCK or OFDM). If no basic rate set matches with these requirements,
124 * the highest mandatory rate of the PHY that is less than or equal to
125 * the rate of the previous frame is used.
126 * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
127 */
128 rate = -1;
Johannes Berg8318d782008-01-24 19:38:38 +0100129 /* use lowest available if everything fails */
130 mrate = sband->bitrates[0].bitrate;
131 for (i = 0; i < sband->n_bitrates; i++) {
132 struct ieee80211_rate *r = &sband->bitrates[i];
133
134 if (r->bitrate > txrate->bitrate)
Johannes Berge2ebc742007-07-27 15:43:22 +0200135 break;
136
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200137 if ((rate_flags & r->flags) != rate_flags)
138 continue;
139
Johannes Bergbda39332008-10-11 01:51:51 +0200140 if (tx->sdata->vif.bss_conf.basic_rates & BIT(i))
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200141 rate = DIV_ROUND_UP(r->bitrate, 1 << shift);
Johannes Berge2ebc742007-07-27 15:43:22 +0200142
Johannes Berg8318d782008-01-24 19:38:38 +0100143 switch (sband->band) {
144 case IEEE80211_BAND_2GHZ: {
145 u32 flag;
146 if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
147 flag = IEEE80211_RATE_MANDATORY_G;
148 else
149 flag = IEEE80211_RATE_MANDATORY_B;
150 if (r->flags & flag)
151 mrate = r->bitrate;
152 break;
153 }
154 case IEEE80211_BAND_5GHZ:
155 if (r->flags & IEEE80211_RATE_MANDATORY_A)
156 mrate = r->bitrate;
157 break;
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +0300158 case IEEE80211_BAND_60GHZ:
159 /* TODO, for now fall through */
Johannes Berg8318d782008-01-24 19:38:38 +0100160 case IEEE80211_NUM_BANDS:
161 WARN_ON(1);
162 break;
163 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200164 }
165 if (rate == -1) {
166 /* No matching basic rate found; use highest suitable mandatory
167 * PHY rate */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200168 rate = DIV_ROUND_UP(mrate, 1 << shift);
Johannes Berge2ebc742007-07-27 15:43:22 +0200169 }
170
Simon Wunderlich6674f212011-11-21 21:34:30 +0100171 /* Don't calculate ACKs for QoS Frames with NoAck Policy set */
172 if (ieee80211_is_data_qos(hdr->frame_control) &&
Claudio Pisac26a0e12012-05-28 13:06:25 +0100173 *(ieee80211_get_qos_ctl(hdr)) & IEEE80211_QOS_CTL_ACK_POLICY_NOACK)
Simon Wunderlich6674f212011-11-21 21:34:30 +0100174 dur = 0;
175 else
176 /* Time needed to transmit ACK
177 * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
178 * to closest integer */
Michal Kazior4ee73f32012-04-11 08:47:56 +0200179 dur = ieee80211_frame_duration(sband->band, 10, rate, erp,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200180 tx->sdata->vif.bss_conf.use_short_preamble,
181 shift);
Johannes Berge2ebc742007-07-27 15:43:22 +0200182
183 if (next_frag_len) {
184 /* Frame is fragmented: duration increases with time needed to
185 * transmit next fragment plus ACK and 2 x SIFS. */
186 dur *= 2; /* ACK + SIFS */
187 /* next fragment */
Michal Kazior4ee73f32012-04-11 08:47:56 +0200188 dur += ieee80211_frame_duration(sband->band, next_frag_len,
Johannes Berg8318d782008-01-24 19:38:38 +0100189 txrate->bitrate, erp,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200190 tx->sdata->vif.bss_conf.use_short_preamble,
191 shift);
Johannes Berge2ebc742007-07-27 15:43:22 +0200192 }
193
Johannes Berg03f93c32008-06-25 14:36:27 +0300194 return cpu_to_le16(dur);
Johannes Berge2ebc742007-07-27 15:43:22 +0200195}
196
Johannes Berge2ebc742007-07-27 15:43:22 +0200197/* tx handlers */
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200198static ieee80211_tx_result debug_noinline
199ieee80211_tx_h_dynamic_ps(struct ieee80211_tx_data *tx)
200{
201 struct ieee80211_local *local = tx->local;
Kalle Valo0c742112010-01-12 10:42:53 +0200202 struct ieee80211_if_managed *ifmgd;
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200203
204 /* driver doesn't support power save */
205 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
206 return TX_CONTINUE;
207
208 /* hardware does dynamic power save */
209 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
210 return TX_CONTINUE;
211
212 /* dynamic power save disabled */
213 if (local->hw.conf.dynamic_ps_timeout <= 0)
214 return TX_CONTINUE;
215
216 /* we are scanning, don't enable power save */
217 if (local->scanning)
218 return TX_CONTINUE;
219
220 if (!local->ps_sdata)
221 return TX_CONTINUE;
222
223 /* No point if we're going to suspend */
224 if (local->quiescing)
225 return TX_CONTINUE;
226
Kalle Valo0c742112010-01-12 10:42:53 +0200227 /* dynamic ps is supported only in managed mode */
228 if (tx->sdata->vif.type != NL80211_IFTYPE_STATION)
229 return TX_CONTINUE;
230
231 ifmgd = &tx->sdata->u.mgd;
232
233 /*
234 * Don't wakeup from power save if u-apsd is enabled, voip ac has
235 * u-apsd enabled and the frame is in voip class. This effectively
236 * means that even if all access categories have u-apsd enabled, in
237 * practise u-apsd is only used with the voip ac. This is a
238 * workaround for the case when received voip class packets do not
239 * have correct qos tag for some reason, due the network or the
240 * peer application.
241 *
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200242 * Note: ifmgd->uapsd_queues access is racy here. If the value is
Kalle Valo0c742112010-01-12 10:42:53 +0200243 * changed via debugfs, user needs to reassociate manually to have
244 * everything in sync.
245 */
Johannes Berg4875d30d2012-03-27 14:18:37 +0200246 if ((ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED) &&
247 (ifmgd->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO) &&
248 skb_get_queue_mapping(tx->skb) == IEEE80211_AC_VO)
Kalle Valo0c742112010-01-12 10:42:53 +0200249 return TX_CONTINUE;
250
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200251 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
252 ieee80211_stop_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +0100253 IEEE80211_MAX_QUEUE_MAP,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300254 IEEE80211_QUEUE_STOP_REASON_PS,
255 false);
Vivek Natarajandb285692011-02-18 17:18:03 +0530256 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200257 ieee80211_queue_work(&local->hw,
258 &local->dynamic_ps_disable_work);
259 }
260
Luciano Coelho5db1c072011-05-03 21:40:08 +0300261 /* Don't restart the timer if we're not disassociated */
262 if (!ifmgd->associated)
263 return TX_CONTINUE;
264
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200265 mod_timer(&local->dynamic_ps_timer, jiffies +
266 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
267
268 return TX_CONTINUE;
269}
Johannes Berge2ebc742007-07-27 15:43:22 +0200270
Johannes Bergd9e8a702008-06-30 15:10:44 +0200271static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100272ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200273{
Harvey Harrison358c8d92008-07-15 18:44:13 -0700274
Johannes Berge039fa42008-05-15 12:55:29 +0200275 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200276 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200277 bool assoc = false;
Johannes Berge2ebc742007-07-27 15:43:22 +0200278
Johannes Berge039fa42008-05-15 12:55:29 +0200279 if (unlikely(info->flags & IEEE80211_TX_CTL_INJECTED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100280 return TX_CONTINUE;
Johannes Berg58d41852007-09-26 17:53:18 +0200281
Ben Greearb23b0252011-02-04 11:54:17 -0800282 if (unlikely(test_bit(SCAN_SW_SCANNING, &tx->local->scanning)) &&
283 test_bit(SDATA_STATE_OFFCHANNEL, &tx->sdata->state) &&
Kalle Valoa9a6fff2009-03-18 14:06:44 +0200284 !ieee80211_is_probe_req(hdr->frame_control) &&
285 !ieee80211_is_nullfunc(hdr->frame_control))
286 /*
287 * When software scanning only nullfunc frames (to notify
288 * the sleep state to the AP) and probe requests (for the
289 * active scan) are allowed, all other frames should not be
290 * sent and we should not get here, but if we do
291 * nonetheless, drop them to avoid sending them
292 * off-channel. See the link below and
293 * ieee80211_start_scan() for more.
294 *
295 * http://article.gmane.org/gmane.linux.kernel.wireless.general/30089
296 */
Johannes Berg9ae54c82008-01-31 19:48:20 +0100297 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200298
Rostislav Lisovy239281f2014-11-03 10:33:19 +0100299 if (tx->sdata->vif.type == NL80211_IFTYPE_OCB)
300 return TX_CONTINUE;
301
Bill Jordan1be7fe82010-10-01 11:20:41 -0400302 if (tx->sdata->vif.type == NL80211_IFTYPE_WDS)
303 return TX_CONTINUE;
304
Johannes Berg05c914f2008-09-11 00:01:58 +0200305 if (tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100306 return TX_CONTINUE;
307
Johannes Berg5cf121c2008-02-25 16:27:43 +0100308 if (tx->flags & IEEE80211_TX_PS_BUFFERED)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100309 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200310
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200311 if (tx->sta)
312 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
Johannes Berge2ebc742007-07-27 15:43:22 +0200313
Johannes Berg5cf121c2008-02-25 16:27:43 +0100314 if (likely(tx->flags & IEEE80211_TX_UNICAST)) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200315 if (unlikely(!assoc &&
Harvey Harrison358c8d92008-07-15 18:44:13 -0700316 ieee80211_is_data(hdr->frame_control))) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200317#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200318 sdata_info(tx->sdata,
319 "dropped data frame to not associated station %pM\n",
320 hdr->addr1);
321#endif
Johannes Berge2ebc742007-07-27 15:43:22 +0200322 I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100323 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200324 }
Johannes Berg29623892011-12-14 12:20:31 +0100325 } else if (unlikely(tx->sdata->vif.type == NL80211_IFTYPE_AP &&
326 ieee80211_is_data(hdr->frame_control) &&
Felix Fietkau030ef8f2012-04-23 19:49:02 +0200327 !atomic_read(&tx->sdata->u.ap.num_mcast_sta))) {
Johannes Berg29623892011-12-14 12:20:31 +0100328 /*
329 * No associated STAs - no need to send multicast
330 * frames.
331 */
332 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200333 }
334
Johannes Berg9ae54c82008-01-31 19:48:20 +0100335 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200336}
337
Johannes Berge2ebc742007-07-27 15:43:22 +0200338/* This function is called whenever the AP is about to exceed the maximum limit
339 * of buffered frames for power saving STAs. This situation should not really
340 * happen often during normal operation, so dropping the oldest buffered packet
341 * from each queue should be OK to make some room for new frames. */
342static void purge_old_ps_buffers(struct ieee80211_local *local)
343{
344 int total = 0, purged = 0;
345 struct sk_buff *skb;
346 struct ieee80211_sub_if_data *sdata;
347 struct sta_info *sta;
348
Johannes Berg79010422007-09-18 17:29:21 -0400349 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Marco Porschd012a602012-10-10 12:39:50 -0700350 struct ps_data *ps;
351
352 if (sdata->vif.type == NL80211_IFTYPE_AP)
353 ps = &sdata->u.ap.ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100354 else if (ieee80211_vif_is_mesh(&sdata->vif))
355 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -0700356 else
Johannes Berge2ebc742007-07-27 15:43:22 +0200357 continue;
Marco Porschd012a602012-10-10 12:39:50 -0700358
359 skb = skb_dequeue(&ps->bc_buf);
Johannes Berge2ebc742007-07-27 15:43:22 +0200360 if (skb) {
361 purged++;
362 dev_kfree_skb(skb);
363 }
Marco Porschd012a602012-10-10 12:39:50 -0700364 total += skb_queue_len(&ps->bc_buf);
Johannes Berge2ebc742007-07-27 15:43:22 +0200365 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200366
Johannes Berg948d8872011-09-29 16:04:29 +0200367 /*
368 * Drop one frame from each station from the lowest-priority
369 * AC that has frames at all.
370 */
Johannes Bergd0709a62008-02-25 16:27:46 +0100371 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Johannes Berg948d8872011-09-29 16:04:29 +0200372 int ac;
373
374 for (ac = IEEE80211_AC_BK; ac >= IEEE80211_AC_VO; ac--) {
375 skb = skb_dequeue(&sta->ps_tx_buf[ac]);
376 total += skb_queue_len(&sta->ps_tx_buf[ac]);
377 if (skb) {
378 purged++;
Felix Fietkauc3e77242012-10-08 14:39:33 +0200379 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg948d8872011-09-29 16:04:29 +0200380 break;
381 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200382 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200383 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100384
Johannes Berge2ebc742007-07-27 15:43:22 +0200385 local->total_ps_buffered = total;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200386 ps_dbg_hw(&local->hw, "PS buffers full - purged %d frames\n", purged);
Johannes Berge2ebc742007-07-27 15:43:22 +0200387}
388
Johannes Berg9ae54c82008-01-31 19:48:20 +0100389static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100390ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200391{
Johannes Berge039fa42008-05-15 12:55:29 +0200392 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Harvey Harrison358c8d92008-07-15 18:44:13 -0700393 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Marco Porschd012a602012-10-10 12:39:50 -0700394 struct ps_data *ps;
Johannes Berge039fa42008-05-15 12:55:29 +0200395
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100396 /*
397 * broadcast/multicast frame
398 *
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100399 * If any of the associated/peer stations is in power save mode,
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100400 * the frame is buffered to be sent after DTIM beacon frame.
401 * This is done either by the hardware or us.
402 */
403
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100404 /* powersaving STAs currently only in AP/VLAN/mesh mode */
Marco Porschd012a602012-10-10 12:39:50 -0700405 if (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
406 tx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
407 if (!tx->sdata->bss)
408 return TX_CONTINUE;
409
410 ps = &tx->sdata->bss->ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100411 } else if (ieee80211_vif_is_mesh(&tx->sdata->vif)) {
412 ps = &tx->sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -0700413 } else {
Johannes Berg3e122be2008-07-09 14:40:34 +0200414 return TX_CONTINUE;
Marco Porschd012a602012-10-10 12:39:50 -0700415 }
416
Johannes Berg3e122be2008-07-09 14:40:34 +0200417
418 /* no buffering for ordered frames */
Harvey Harrison358c8d92008-07-15 18:44:13 -0700419 if (ieee80211_has_order(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100420 return TX_CONTINUE;
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100421
Johannes Berg08b99392014-07-07 12:01:11 +0200422 if (ieee80211_is_probe_req(hdr->frame_control))
423 return TX_CONTINUE;
424
Johannes Bergf4d57942013-05-28 17:24:15 +0200425 if (tx->local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
426 info->hw_queue = tx->sdata->vif.cab_queue;
427
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100428 /* no stations in PS mode */
Marco Porschd012a602012-10-10 12:39:50 -0700429 if (!atomic_read(&ps->num_sta_ps))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100430 return TX_CONTINUE;
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100431
Johannes Berg62b517c2009-10-29 12:19:21 +0100432 info->flags |= IEEE80211_TX_CTL_SEND_AFTER_DTIM;
Johannes Berg62b12082009-08-10 16:04:15 +0200433
Johannes Berg62b517c2009-10-29 12:19:21 +0100434 /* device releases frame after DTIM beacon */
435 if (!(tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING))
Johannes Berg62b12082009-08-10 16:04:15 +0200436 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200437
Johannes Berg62b12082009-08-10 16:04:15 +0200438 /* buffered in mac80211 */
439 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
440 purge_old_ps_buffers(tx->local);
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100441
Marco Porschd012a602012-10-10 12:39:50 -0700442 if (skb_queue_len(&ps->bc_buf) >= AP_MAX_BC_BUFFER) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200443 ps_dbg(tx->sdata,
444 "BC TX buffer full - dropping the oldest frame\n");
Marco Porschd012a602012-10-10 12:39:50 -0700445 dev_kfree_skb(skb_dequeue(&ps->bc_buf));
Johannes Berg62b12082009-08-10 16:04:15 +0200446 } else
447 tx->local->total_ps_buffered++;
448
Marco Porschd012a602012-10-10 12:39:50 -0700449 skb_queue_tail(&ps->bc_buf, tx->skb);
Johannes Berg62b12082009-08-10 16:04:15 +0200450
451 return TX_QUEUED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200452}
453
Jouni Malinenfb733332009-01-08 13:32:00 +0200454static int ieee80211_use_mfp(__le16 fc, struct sta_info *sta,
455 struct sk_buff *skb)
456{
457 if (!ieee80211_is_mgmt(fc))
458 return 0;
459
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200460 if (sta == NULL || !test_sta_flag(sta, WLAN_STA_MFP))
Jouni Malinenfb733332009-01-08 13:32:00 +0200461 return 0;
462
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100463 if (!ieee80211_is_robust_mgmt_frame(skb))
Jouni Malinenfb733332009-01-08 13:32:00 +0200464 return 0;
465
466 return 1;
467}
468
Johannes Berg9ae54c82008-01-31 19:48:20 +0100469static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100470ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200471{
472 struct sta_info *sta = tx->sta;
Johannes Berge039fa42008-05-15 12:55:29 +0200473 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Berg08b99392014-07-07 12:01:11 +0200474 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300475 struct ieee80211_local *local = tx->local;
Johannes Berge2ebc742007-07-27 15:43:22 +0200476
Johannes Berg02f2f1a2012-02-27 12:18:30 +0100477 if (unlikely(!sta))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100478 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200479
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200480 if (unlikely((test_sta_flag(sta, WLAN_STA_PS_STA) ||
Johannes Berg5ac2e352014-05-27 16:32:27 +0200481 test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
482 test_sta_flag(sta, WLAN_STA_PS_DELIVER)) &&
Johannes Berg02f2f1a2012-02-27 12:18:30 +0100483 !(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER))) {
Johannes Berg948d8872011-09-29 16:04:29 +0200484 int ac = skb_get_queue_mapping(tx->skb);
485
Johannes Berg08b99392014-07-07 12:01:11 +0200486 if (ieee80211_is_mgmt(hdr->frame_control) &&
487 !ieee80211_is_bufferable_mmpdu(hdr->frame_control)) {
488 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
489 return TX_CONTINUE;
490 }
491
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200492 ps_dbg(sta->sdata, "STA %pM aid %d: PS buffer for AC %d\n",
493 sta->sta.addr, sta->sta.aid, ac);
Johannes Berge2ebc742007-07-27 15:43:22 +0200494 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
495 purge_old_ps_buffers(tx->local);
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +0200496
497 /* sync with ieee80211_sta_ps_deliver_wakeup */
498 spin_lock(&sta->ps_lock);
499 /*
500 * STA woke up the meantime and all the frames on ps_tx_buf have
501 * been queued to pending queue. No reordering can happen, go
502 * ahead and Tx the packet.
503 */
504 if (!test_sta_flag(sta, WLAN_STA_PS_STA) &&
Johannes Berg5ac2e352014-05-27 16:32:27 +0200505 !test_sta_flag(sta, WLAN_STA_PS_DRIVER) &&
506 !test_sta_flag(sta, WLAN_STA_PS_DELIVER)) {
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +0200507 spin_unlock(&sta->ps_lock);
508 return TX_CONTINUE;
509 }
510
Johannes Berg948d8872011-09-29 16:04:29 +0200511 if (skb_queue_len(&sta->ps_tx_buf[ac]) >= STA_MAX_TX_BUFFER) {
512 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf[ac]);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200513 ps_dbg(tx->sdata,
514 "STA %pM TX buffer for AC %d full - dropping oldest frame\n",
515 sta->sta.addr, ac);
Felix Fietkauc3e77242012-10-08 14:39:33 +0200516 ieee80211_free_txskb(&local->hw, old);
Johannes Berge2ebc742007-07-27 15:43:22 +0200517 } else
518 tx->local->total_ps_buffered++;
Johannes Berg004c8722008-02-20 11:21:35 +0100519
Johannes Berge039fa42008-05-15 12:55:29 +0200520 info->control.jiffies = jiffies;
Johannes Berg5061b0c2009-07-14 00:33:34 +0200521 info->control.vif = &tx->sdata->vif;
Johannes Berg8f77f382009-06-07 21:58:37 +0200522 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
Johannes Berg03c8c062014-01-09 01:45:28 +0100523 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
Johannes Berg948d8872011-09-29 16:04:29 +0200524 skb_queue_tail(&sta->ps_tx_buf[ac], tx->skb);
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +0200525 spin_unlock(&sta->ps_lock);
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300526
527 if (!timer_pending(&local->sta_cleanup))
528 mod_timer(&local->sta_cleanup,
529 round_jiffies(jiffies +
530 STA_INFO_CLEANUP_INTERVAL));
531
Johannes Bergc868cb352011-09-29 16:04:27 +0200532 /*
533 * We queued up some frames, so the TIM bit might
534 * need to be set, recalculate it.
535 */
536 sta_info_recalc_tim(sta);
537
Johannes Berg9ae54c82008-01-31 19:48:20 +0100538 return TX_QUEUED;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200539 } else if (unlikely(test_sta_flag(sta, WLAN_STA_PS_STA))) {
540 ps_dbg(tx->sdata,
541 "STA %pM in PS mode, but polling/in SP -> send frame\n",
542 sta->sta.addr);
Johannes Berge2ebc742007-07-27 15:43:22 +0200543 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200544
Johannes Berg9ae54c82008-01-31 19:48:20 +0100545 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200546}
547
Johannes Bergd9e8a702008-06-30 15:10:44 +0200548static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100549ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200550{
Johannes Berg5cf121c2008-02-25 16:27:43 +0100551 if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100552 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200553
Johannes Berg5cf121c2008-02-25 16:27:43 +0100554 if (tx->flags & IEEE80211_TX_UNICAST)
Johannes Berge2ebc742007-07-27 15:43:22 +0200555 return ieee80211_tx_h_unicast_ps_buf(tx);
556 else
557 return ieee80211_tx_h_multicast_ps_buf(tx);
558}
559
Johannes Bergd9e8a702008-06-30 15:10:44 +0200560static ieee80211_tx_result debug_noinline
Johannes Berga621fa42010-08-27 14:26:54 +0300561ieee80211_tx_h_check_control_port_protocol(struct ieee80211_tx_data *tx)
562{
563 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
564
Johannes Bergaf61a162013-07-02 18:09:12 +0200565 if (unlikely(tx->sdata->control_port_protocol == tx->skb->protocol)) {
566 if (tx->sdata->control_port_no_encrypt)
567 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
568 info->control.flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO;
Jouni Malinen9c1c98a2015-02-26 15:50:50 +0200569 info->flags |= IEEE80211_TX_CTL_USE_MINRATE;
Johannes Bergaf61a162013-07-02 18:09:12 +0200570 }
Johannes Berga621fa42010-08-27 14:26:54 +0300571
572 return TX_CONTINUE;
573}
574
575static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100576ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200577{
Johannes Berg46e6de12012-07-04 18:10:07 +0200578 struct ieee80211_key *key;
Johannes Berge039fa42008-05-15 12:55:29 +0200579 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Harvey Harrison358c8d92008-07-15 18:44:13 -0700580 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400581
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200582 if (unlikely(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT))
Johannes Berge2ebc742007-07-27 15:43:22 +0200583 tx->key = NULL;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200584 else if (tx->sta &&
585 (key = rcu_dereference(tx->sta->ptk[tx->sta->ptk_idx])))
Johannes Bergd4e46a32007-09-14 11:10:24 -0400586 tx->key = key;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200587 else if (ieee80211_is_mgmt(hdr->frame_control) &&
Jouni Malinenecbcd322010-03-29 23:35:23 -0700588 is_multicast_ether_addr(hdr->addr1) &&
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100589 ieee80211_is_robust_mgmt_frame(tx->skb) &&
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200590 (key = rcu_dereference(tx->sdata->default_mgmt_key)))
591 tx->key = key;
Johannes Bergf7e01042010-12-09 19:49:02 +0100592 else if (is_multicast_ether_addr(hdr->addr1) &&
593 (key = rcu_dereference(tx->sdata->default_multicast_key)))
594 tx->key = key;
595 else if (!is_multicast_ether_addr(hdr->addr1) &&
596 (key = rcu_dereference(tx->sdata->default_unicast_key)))
Johannes Bergd4e46a32007-09-14 11:10:24 -0400597 tx->key = key;
Johannes Berg46e6de12012-07-04 18:10:07 +0200598 else if (info->flags & IEEE80211_TX_CTL_INJECTED)
599 tx->key = NULL;
600 else if (!tx->sdata->drop_unencrypted)
601 tx->key = NULL;
602 else if (tx->skb->protocol == tx->sdata->control_port_protocol)
603 tx->key = NULL;
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100604 else if (ieee80211_is_robust_mgmt_frame(tx->skb) &&
Johannes Berg46e6de12012-07-04 18:10:07 +0200605 !(ieee80211_is_action(hdr->frame_control) &&
606 tx->sta && test_sta_flag(tx->sta, WLAN_STA_MFP)))
607 tx->key = NULL;
Nicolas Cavallari4922f712012-07-04 18:10:08 +0200608 else if (ieee80211_is_mgmt(hdr->frame_control) &&
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100609 !ieee80211_is_robust_mgmt_frame(tx->skb))
Nicolas Cavallari4922f712012-07-04 18:10:08 +0200610 tx->key = NULL;
Johannes Berg46e6de12012-07-04 18:10:07 +0200611 else {
Johannes Berge2ebc742007-07-27 15:43:22 +0200612 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100613 return TX_DROP;
Johannes Berg46e6de12012-07-04 18:10:07 +0200614 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200615
616 if (tx->key) {
Johannes Berg813d7662010-01-17 01:47:58 +0100617 bool skip_hw = false;
618
Johannes Berge2ebc742007-07-27 15:43:22 +0200619 tx->key->tx_rx_count++;
Johannes Berg011bfcc2007-09-17 01:29:25 -0400620 /* TODO: add threshold stuff again */
Johannes Berg176e4f82007-12-18 15:27:47 +0100621
Johannes Berg97359d12010-08-10 09:46:38 +0200622 switch (tx->key->conf.cipher) {
623 case WLAN_CIPHER_SUITE_WEP40:
624 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berg97359d12010-08-10 09:46:38 +0200625 case WLAN_CIPHER_SUITE_TKIP:
Harvey Harrison358c8d92008-07-15 18:44:13 -0700626 if (!ieee80211_is_data_present(hdr->frame_control))
Johannes Berg176e4f82007-12-18 15:27:47 +0100627 tx->key = NULL;
628 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200629 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200630 case WLAN_CIPHER_SUITE_CCMP_256:
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200631 case WLAN_CIPHER_SUITE_GCMP:
632 case WLAN_CIPHER_SUITE_GCMP_256:
Jouni Malinenfb733332009-01-08 13:32:00 +0200633 if (!ieee80211_is_data_present(hdr->frame_control) &&
634 !ieee80211_use_mfp(hdr->frame_control, tx->sta,
635 tx->skb))
636 tx->key = NULL;
Kalle Valo3b43a182010-01-23 20:27:14 +0200637 else
638 skip_hw = (tx->key->conf.flags &
Johannes Berge548c492012-09-04 17:08:23 +0200639 IEEE80211_KEY_FLAG_SW_MGMT_TX) &&
Kalle Valo3b43a182010-01-23 20:27:14 +0200640 ieee80211_is_mgmt(hdr->frame_control);
Jouni Malinenfb733332009-01-08 13:32:00 +0200641 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200642 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200643 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Jouni Malinen8ade5382015-01-24 19:52:09 +0200644 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
645 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200646 if (!ieee80211_is_mgmt(hdr->frame_control))
647 tx->key = NULL;
648 break;
Johannes Berg176e4f82007-12-18 15:27:47 +0100649 }
Johannes Berg813d7662010-01-17 01:47:58 +0100650
Johannes Berge54faf22013-01-29 11:41:38 +0100651 if (unlikely(tx->key && tx->key->flags & KEY_FLAG_TAINTED &&
652 !ieee80211_is_deauth(hdr->frame_control)))
Johannes Berg95acac62011-07-12 12:30:59 +0200653 return TX_DROP;
654
Johannes Bergf12553e2010-01-22 22:07:59 +0100655 if (!skip_hw && tx->key &&
Johannes Berg382b1652010-01-25 11:36:16 +0100656 tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
Johannes Berg813d7662010-01-17 01:47:58 +0100657 info->control.hw_key = &tx->key->conf;
Johannes Berge2ebc742007-07-27 15:43:22 +0200658 }
659
Johannes Berg9ae54c82008-01-31 19:48:20 +0100660 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200661}
662
Johannes Bergd9e8a702008-06-30 15:10:44 +0200663static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100664ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200665{
Johannes Berge039fa42008-05-15 12:55:29 +0200666 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200667 struct ieee80211_hdr *hdr = (void *)tx->skb->data;
668 struct ieee80211_supported_band *sband;
Shanyu Zhaoa2c40242010-04-27 11:15:12 -0700669 u32 len;
Johannes Berge6a98542008-10-21 12:40:02 +0200670 struct ieee80211_tx_rate_control txrc;
Felix Fietkau0d528d82013-04-22 16:14:41 +0200671 struct ieee80211_sta_rates *ratetbl = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200672 bool assoc = false;
Johannes Berge6a98542008-10-21 12:40:02 +0200673
674 memset(&txrc, 0, sizeof(txrc));
Johannes Berg8318d782008-01-24 19:38:38 +0100675
Johannes Berg2d565772012-07-23 15:12:51 +0200676 sband = tx->local->hw.wiphy->bands[info->band];
Johannes Berge2ebc742007-07-27 15:43:22 +0200677
Shanyu Zhaoa2c40242010-04-27 11:15:12 -0700678 len = min_t(u32, tx->skb->len + FCS_LEN,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200679 tx->local->hw.wiphy->frag_threshold);
Johannes Berg58d41852007-09-26 17:53:18 +0200680
Johannes Berge6a98542008-10-21 12:40:02 +0200681 /* set up the tx rate control struct we give the RC algo */
Johannes Berg005e4722012-02-26 11:24:35 +0100682 txrc.hw = &tx->local->hw;
Johannes Berge6a98542008-10-21 12:40:02 +0200683 txrc.sband = sband;
684 txrc.bss_conf = &tx->sdata->vif.bss_conf;
685 txrc.skb = tx->skb;
686 txrc.reported_rate.idx = -1;
Johannes Berg2d565772012-07-23 15:12:51 +0200687 txrc.rate_idx_mask = tx->sdata->rc_rateidx_mask[info->band];
Jouni Malinen37eb0b12010-01-06 13:09:08 +0200688 if (txrc.rate_idx_mask == (1 << sband->n_bitrates) - 1)
689 txrc.max_rate_idx = -1;
690 else
691 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +0200692
693 if (tx->sdata->rc_has_mcs_mask[info->band])
694 txrc.rate_idx_mcs_mask =
695 tx->sdata->rc_rateidx_mcs_mask[info->band];
696
Felix Fietkau8f0729b2010-11-11 15:07:23 +0100697 txrc.bss = (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -0800698 tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT ||
Felix Fietkau8f0729b2010-11-11 15:07:23 +0100699 tx->sdata->vif.type == NL80211_IFTYPE_ADHOC);
Johannes Berg58d41852007-09-26 17:53:18 +0200700
Johannes Berge6a98542008-10-21 12:40:02 +0200701 /* set up RTS protection if desired */
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200702 if (len > tx->local->hw.wiphy->rts_threshold) {
Felix Fietkau0d528d82013-04-22 16:14:41 +0200703 txrc.rts = true;
Johannes Berge2ebc742007-07-27 15:43:22 +0200704 }
Johannes Berge6a98542008-10-21 12:40:02 +0200705
Felix Fietkau0d528d82013-04-22 16:14:41 +0200706 info->control.use_rts = txrc.rts;
Felix Fietkau991fec02013-04-16 13:38:43 +0200707 info->control.use_cts_prot = tx->sdata->vif.bss_conf.use_cts_prot;
708
Johannes Berge6a98542008-10-21 12:40:02 +0200709 /*
710 * Use short preamble if the BSS can handle it, but not for
711 * management frames unless we know the receiver can handle
712 * that -- the management frame might be to a station that
713 * just wants a probe response.
714 */
715 if (tx->sdata->vif.bss_conf.use_short_preamble &&
716 (ieee80211_is_data(hdr->frame_control) ||
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200717 (tx->sta && test_sta_flag(tx->sta, WLAN_STA_SHORT_PREAMBLE))))
Felix Fietkau0d528d82013-04-22 16:14:41 +0200718 txrc.short_preamble = true;
719
720 info->control.short_preamble = txrc.short_preamble;
Johannes Berge6a98542008-10-21 12:40:02 +0200721
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200722 if (tx->sta)
723 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
Johannes Berge6a98542008-10-21 12:40:02 +0200724
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700725 /*
726 * Lets not bother rate control if we're associated and cannot
727 * talk to the sta. This should not happen.
728 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200729 if (WARN(test_bit(SCAN_SW_SCANNING, &tx->local->scanning) && assoc &&
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700730 !rate_usable_index_exists(sband, &tx->sta->sta),
731 "%s: Dropped data frame as no usable bitrate found while "
732 "scanning and associated. Target station: "
733 "%pM on %d GHz band\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100734 tx->sdata->name, hdr->addr1,
Johannes Berg2d565772012-07-23 15:12:51 +0200735 info->band ? 5 : 2))
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700736 return TX_DROP;
737
738 /*
739 * If we're associated with the sta at this point we know we can at
740 * least send the frame at the lowest bit rate.
741 */
Johannes Berge6a98542008-10-21 12:40:02 +0200742 rate_control_get_rate(tx->sdata, tx->sta, &txrc);
743
Felix Fietkau0d528d82013-04-22 16:14:41 +0200744 if (tx->sta && !info->control.skip_table)
745 ratetbl = rcu_dereference(tx->sta->sta.rates);
746
747 if (unlikely(info->control.rates[0].idx < 0)) {
748 if (ratetbl) {
749 struct ieee80211_tx_rate rate = {
750 .idx = ratetbl->rate[0].idx,
751 .flags = ratetbl->rate[0].flags,
752 .count = ratetbl->rate[0].count
753 };
754
755 if (ratetbl->rate[0].idx < 0)
756 return TX_DROP;
757
758 tx->rate = rate;
759 } else {
760 return TX_DROP;
761 }
762 } else {
763 tx->rate = info->control.rates[0];
764 }
Johannes Berge6a98542008-10-21 12:40:02 +0200765
Helmut Schaac1ce5a72010-12-01 16:34:45 +0100766 if (txrc.reported_rate.idx < 0) {
Felix Fietkau0d528d82013-04-22 16:14:41 +0200767 txrc.reported_rate = tx->rate;
Helmut Schaac1ce5a72010-12-01 16:34:45 +0100768 if (tx->sta && ieee80211_is_data(hdr->frame_control))
769 tx->sta->last_tx_rate = txrc.reported_rate;
770 } else if (tx->sta)
Johannes Berge6a98542008-10-21 12:40:02 +0200771 tx->sta->last_tx_rate = txrc.reported_rate;
772
Felix Fietkau0d528d82013-04-22 16:14:41 +0200773 if (ratetbl)
774 return TX_CONTINUE;
775
Johannes Berge6a98542008-10-21 12:40:02 +0200776 if (unlikely(!info->control.rates[0].count))
777 info->control.rates[0].count = 1;
778
Gábor Stefanik99551512009-04-23 19:36:14 +0200779 if (WARN_ON_ONCE((info->control.rates[0].count > 1) &&
780 (info->flags & IEEE80211_TX_CTL_NO_ACK)))
781 info->control.rates[0].count = 1;
782
Johannes Berg9ae54c82008-01-31 19:48:20 +0100783 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200784}
785
Johannes Bergd9e8a702008-06-30 15:10:44 +0200786static ieee80211_tx_result debug_noinline
Johannes Bergf591fa52008-07-10 11:21:26 +0200787ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
788{
789 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
790 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
791 u16 *seq;
792 u8 *qc;
793 int tid;
794
Johannes Berg25d834e2008-09-12 22:52:47 +0200795 /*
796 * Packet injection may want to control the sequence
797 * number, if we have no matching interface then we
798 * neither assign one ourselves nor ask the driver to.
799 */
Johannes Berg5061b0c2009-07-14 00:33:34 +0200800 if (unlikely(info->control.vif->type == NL80211_IFTYPE_MONITOR))
Johannes Berg25d834e2008-09-12 22:52:47 +0200801 return TX_CONTINUE;
802
Johannes Bergf591fa52008-07-10 11:21:26 +0200803 if (unlikely(ieee80211_is_ctl(hdr->frame_control)))
804 return TX_CONTINUE;
805
806 if (ieee80211_hdrlen(hdr->frame_control) < 24)
807 return TX_CONTINUE;
808
Johannes Berg49a59542011-09-29 16:04:41 +0200809 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
810 return TX_CONTINUE;
811
Johannes Berg94778282008-10-10 13:21:59 +0200812 /*
813 * Anything but QoS data that has a sequence number field
814 * (is long enough) gets a sequence number from the global
Bob Copelandc4c205f2013-08-23 09:35:38 -0400815 * counter. QoS data frames with a multicast destination
816 * also use the global counter (802.11-2012 9.3.2.10).
Johannes Berg94778282008-10-10 13:21:59 +0200817 */
Bob Copelandc4c205f2013-08-23 09:35:38 -0400818 if (!ieee80211_is_data_qos(hdr->frame_control) ||
819 is_multicast_ether_addr(hdr->addr1)) {
Johannes Berg94778282008-10-10 13:21:59 +0200820 /* driver should assign sequence number */
Johannes Bergf591fa52008-07-10 11:21:26 +0200821 info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
Johannes Berg94778282008-10-10 13:21:59 +0200822 /* for pure STA mode without beacons, we can do it */
823 hdr->seq_ctrl = cpu_to_le16(tx->sdata->sequence_number);
824 tx->sdata->sequence_number += 0x10;
Johannes Berg79c892b2014-11-21 14:26:31 +0100825 if (tx->sta)
826 tx->sta->tx_msdu[IEEE80211_NUM_TIDS]++;
Johannes Bergf591fa52008-07-10 11:21:26 +0200827 return TX_CONTINUE;
828 }
829
830 /*
831 * This should be true for injected/management frames only, for
832 * management frames we have set the IEEE80211_TX_CTL_ASSIGN_SEQ
833 * above since they are not QoS-data frames.
834 */
835 if (!tx->sta)
836 return TX_CONTINUE;
837
838 /* include per-STA, per-TID sequence counter */
839
840 qc = ieee80211_get_qos_ctl(hdr);
841 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
842 seq = &tx->sta->tid_seq[tid];
Johannes Berg79c892b2014-11-21 14:26:31 +0100843 tx->sta->tx_msdu[tid]++;
Johannes Bergf591fa52008-07-10 11:21:26 +0200844
845 hdr->seq_ctrl = cpu_to_le16(*seq);
846
847 /* Increase the sequence number. */
848 *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ;
849
850 return TX_CONTINUE;
851}
852
Johannes Berg252b86c2011-11-16 15:28:55 +0100853static int ieee80211_fragment(struct ieee80211_tx_data *tx,
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100854 struct sk_buff *skb, int hdrlen,
855 int frag_threshold)
856{
Johannes Berg252b86c2011-11-16 15:28:55 +0100857 struct ieee80211_local *local = tx->local;
Johannes Berga1a3fce2011-11-16 15:28:56 +0100858 struct ieee80211_tx_info *info;
Johannes Berg252b86c2011-11-16 15:28:55 +0100859 struct sk_buff *tmp;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100860 int per_fragm = frag_threshold - hdrlen - FCS_LEN;
861 int pos = hdrlen + per_fragm;
862 int rem = skb->len - hdrlen - per_fragm;
863
864 if (WARN_ON(rem < 0))
865 return -EINVAL;
866
Johannes Berg252b86c2011-11-16 15:28:55 +0100867 /* first fragment was already added to queue by caller */
868
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100869 while (rem) {
870 int fraglen = per_fragm;
871
872 if (fraglen > rem)
873 fraglen = rem;
874 rem -= fraglen;
875 tmp = dev_alloc_skb(local->tx_headroom +
876 frag_threshold +
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200877 tx->sdata->encrypt_headroom +
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100878 IEEE80211_ENCRYPT_TAILROOM);
879 if (!tmp)
880 return -ENOMEM;
Johannes Berg252b86c2011-11-16 15:28:55 +0100881
882 __skb_queue_tail(&tx->skbs, tmp);
883
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200884 skb_reserve(tmp,
885 local->tx_headroom + tx->sdata->encrypt_headroom);
886
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100887 /* copy control information */
888 memcpy(tmp->cb, skb->cb, sizeof(tmp->cb));
Johannes Berga1a3fce2011-11-16 15:28:56 +0100889
890 info = IEEE80211_SKB_CB(tmp);
891 info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT |
892 IEEE80211_TX_CTL_FIRST_FRAGMENT);
893
894 if (rem)
895 info->flags |= IEEE80211_TX_CTL_MORE_FRAMES;
896
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100897 skb_copy_queue_mapping(tmp, skb);
898 tmp->priority = skb->priority;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100899 tmp->dev = skb->dev;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100900
901 /* copy header and data */
902 memcpy(skb_put(tmp, hdrlen), skb->data, hdrlen);
903 memcpy(skb_put(tmp, fraglen), skb->data + pos, fraglen);
904
905 pos += fraglen;
906 }
907
Johannes Berg252b86c2011-11-16 15:28:55 +0100908 /* adjust first fragment's length */
Johannes Berg338f9772014-02-01 00:16:23 +0100909 skb_trim(skb, hdrlen + per_fragm);
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100910 return 0;
911}
912
Johannes Bergf591fa52008-07-10 11:21:26 +0200913static ieee80211_tx_result debug_noinline
Johannes Berge2454942008-05-15 12:55:28 +0200914ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
915{
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100916 struct sk_buff *skb = tx->skb;
917 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
918 struct ieee80211_hdr *hdr = (void *)skb->data;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200919 int frag_threshold = tx->local->hw.wiphy->frag_threshold;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100920 int hdrlen;
921 int fragnum;
Johannes Berge2454942008-05-15 12:55:28 +0200922
Johannes Berg252b86c2011-11-16 15:28:55 +0100923 /* no matter what happens, tx->skb moves to tx->skbs */
924 __skb_queue_tail(&tx->skbs, skb);
925 tx->skb = NULL;
926
Johannes Berga26eb272011-10-07 14:01:25 +0200927 if (info->flags & IEEE80211_TX_CTL_DONTFRAG)
928 return TX_CONTINUE;
929
930 if (tx->local->ops->set_frag_threshold)
Johannes Berge2454942008-05-15 12:55:28 +0200931 return TX_CONTINUE;
932
Johannes Bergeefce912008-05-17 00:57:13 +0200933 /*
934 * Warn when submitting a fragmented A-MPDU frame and drop it.
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200935 * This scenario is handled in ieee80211_tx_prepare but extra
Ron Rindjunsky8d5e0d52008-06-12 15:42:29 +0300936 * caution taken here as fragmented ampdu may cause Tx stop.
Johannes Bergeefce912008-05-17 00:57:13 +0200937 */
Sujith8b30b1f2008-10-24 09:55:27 +0530938 if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU))
Johannes Bergeefce912008-05-17 00:57:13 +0200939 return TX_DROP;
940
Harvey Harrison065e96052008-06-22 16:45:27 -0700941 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berge2454942008-05-15 12:55:28 +0200942
Johannes Berga26eb272011-10-07 14:01:25 +0200943 /* internal error, why isn't DONTFRAG set? */
Johannes Berg8ccd8f22009-04-29 23:35:56 +0200944 if (WARN_ON(skb->len + FCS_LEN <= frag_threshold))
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100945 return TX_DROP;
Johannes Berge2454942008-05-15 12:55:28 +0200946
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100947 /*
948 * Now fragment the frame. This will allocate all the fragments and
949 * chain them (using skb as the first fragment) to skb->next.
950 * During transmission, we will remove the successfully transmitted
951 * fragments from this list. When the low-level driver rejects one
952 * of the fragments then we will simply pretend to accept the skb
953 * but store it away as pending.
954 */
Johannes Berg252b86c2011-11-16 15:28:55 +0100955 if (ieee80211_fragment(tx, skb, hdrlen, frag_threshold))
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100956 return TX_DROP;
Johannes Berge2454942008-05-15 12:55:28 +0200957
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100958 /* update duration/seq/flags of fragments */
959 fragnum = 0;
Johannes Berg252b86c2011-11-16 15:28:55 +0100960
961 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100962 const __le16 morefrags = cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
Johannes Berge2454942008-05-15 12:55:28 +0200963
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100964 hdr = (void *)skb->data;
965 info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200966
Johannes Berg252b86c2011-11-16 15:28:55 +0100967 if (!skb_queue_is_last(&tx->skbs, skb)) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100968 hdr->frame_control |= morefrags;
Johannes Berge6a98542008-10-21 12:40:02 +0200969 /*
970 * No multi-rate retries for fragmented frames, that
971 * would completely throw off the NAV at other STAs.
972 */
973 info->control.rates[1].idx = -1;
974 info->control.rates[2].idx = -1;
975 info->control.rates[3].idx = -1;
Thomas Huehne3e1a0b2012-07-02 19:46:16 +0200976 BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 4);
Johannes Berge6a98542008-10-21 12:40:02 +0200977 info->flags &= ~IEEE80211_TX_CTL_RATE_CTRL_PROBE;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100978 } else {
979 hdr->frame_control &= ~morefrags;
Johannes Berge6a98542008-10-21 12:40:02 +0200980 }
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100981 hdr->seq_ctrl |= cpu_to_le16(fragnum & IEEE80211_SCTL_FRAG);
982 fragnum++;
Johannes Berg252b86c2011-11-16 15:28:55 +0100983 }
Johannes Berge2454942008-05-15 12:55:28 +0200984
985 return TX_CONTINUE;
Johannes Berge2454942008-05-15 12:55:28 +0200986}
987
Johannes Bergd9e8a702008-06-30 15:10:44 +0200988static ieee80211_tx_result debug_noinline
Johannes Bergfeff1f22009-08-10 16:01:54 +0200989ieee80211_tx_h_stats(struct ieee80211_tx_data *tx)
990{
Johannes Berg252b86c2011-11-16 15:28:55 +0100991 struct sk_buff *skb;
Johannes Berg560d2682013-02-05 10:55:21 +0100992 int ac = -1;
Johannes Bergfeff1f22009-08-10 16:01:54 +0200993
994 if (!tx->sta)
995 return TX_CONTINUE;
996
Johannes Berg252b86c2011-11-16 15:28:55 +0100997 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg560d2682013-02-05 10:55:21 +0100998 ac = skb_get_queue_mapping(skb);
Johannes Bergfeff1f22009-08-10 16:01:54 +0200999 tx->sta->tx_fragments++;
Johannes Berg560d2682013-02-05 10:55:21 +01001000 tx->sta->tx_bytes[ac] += skb->len;
Johannes Berg252b86c2011-11-16 15:28:55 +01001001 }
Johannes Berg560d2682013-02-05 10:55:21 +01001002 if (ac >= 0)
1003 tx->sta->tx_packets[ac]++;
Johannes Bergfeff1f22009-08-10 16:01:54 +02001004
1005 return TX_CONTINUE;
1006}
1007
1008static ieee80211_tx_result debug_noinline
Johannes Berge2454942008-05-15 12:55:28 +02001009ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
1010{
1011 if (!tx->key)
1012 return TX_CONTINUE;
1013
Johannes Berg97359d12010-08-10 09:46:38 +02001014 switch (tx->key->conf.cipher) {
1015 case WLAN_CIPHER_SUITE_WEP40:
1016 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berge2454942008-05-15 12:55:28 +02001017 return ieee80211_crypto_wep_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +02001018 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berge2454942008-05-15 12:55:28 +02001019 return ieee80211_crypto_tkip_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +02001020 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001021 return ieee80211_crypto_ccmp_encrypt(
1022 tx, IEEE80211_CCMP_MIC_LEN);
1023 case WLAN_CIPHER_SUITE_CCMP_256:
1024 return ieee80211_crypto_ccmp_encrypt(
1025 tx, IEEE80211_CCMP_256_MIC_LEN);
Johannes Berg97359d12010-08-10 09:46:38 +02001026 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02001027 return ieee80211_crypto_aes_cmac_encrypt(tx);
Jouni Malinen56c52da2015-01-24 19:52:08 +02001028 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1029 return ieee80211_crypto_aes_cmac_256_encrypt(tx);
Jouni Malinen8ade5382015-01-24 19:52:09 +02001030 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1031 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1032 return ieee80211_crypto_aes_gmac_encrypt(tx);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +02001033 case WLAN_CIPHER_SUITE_GCMP:
1034 case WLAN_CIPHER_SUITE_GCMP_256:
1035 return ieee80211_crypto_gcmp_encrypt(tx);
Johannes Berg3ffc2a92010-08-27 14:26:52 +03001036 default:
Yoni Divinskyd32a1022012-01-16 15:18:59 +02001037 return ieee80211_crypto_hw_encrypt(tx);
Johannes Berge2454942008-05-15 12:55:28 +02001038 }
1039
Johannes Berge2454942008-05-15 12:55:28 +02001040 return TX_DROP;
1041}
1042
Johannes Bergd9e8a702008-06-30 15:10:44 +02001043static ieee80211_tx_result debug_noinline
Johannes Berg03f93c32008-06-25 14:36:27 +03001044ieee80211_tx_h_calculate_duration(struct ieee80211_tx_data *tx)
1045{
Johannes Berg252b86c2011-11-16 15:28:55 +01001046 struct sk_buff *skb;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001047 struct ieee80211_hdr *hdr;
1048 int next_len;
1049 bool group_addr;
Johannes Berg03f93c32008-06-25 14:36:27 +03001050
Johannes Berg252b86c2011-11-16 15:28:55 +01001051 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001052 hdr = (void *) skb->data;
Jouni Malinen7e0aae42009-05-19 19:25:58 +03001053 if (unlikely(ieee80211_is_pspoll(hdr->frame_control)))
1054 break; /* must not overwrite AID */
Johannes Berg252b86c2011-11-16 15:28:55 +01001055 if (!skb_queue_is_last(&tx->skbs, skb)) {
1056 struct sk_buff *next = skb_queue_next(&tx->skbs, skb);
1057 next_len = next->len;
1058 } else
1059 next_len = 0;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001060 group_addr = is_multicast_ether_addr(hdr->addr1);
Johannes Berg03f93c32008-06-25 14:36:27 +03001061
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001062 hdr->duration_id =
Johannes Berg252b86c2011-11-16 15:28:55 +01001063 ieee80211_duration(tx, skb, group_addr, next_len);
1064 }
Johannes Berg03f93c32008-06-25 14:36:27 +03001065
1066 return TX_CONTINUE;
1067}
1068
Johannes Berge2ebc742007-07-27 15:43:22 +02001069/* actual transmit path */
1070
Johannes Berga622ab72010-06-10 10:21:39 +02001071static bool ieee80211_tx_prep_agg(struct ieee80211_tx_data *tx,
1072 struct sk_buff *skb,
1073 struct ieee80211_tx_info *info,
1074 struct tid_ampdu_tx *tid_tx,
1075 int tid)
1076{
1077 bool queued = false;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001078 bool reset_agg_timer = false;
Helmut Schaaaa454582012-03-07 17:20:30 +01001079 struct sk_buff *purge_skb = NULL;
Johannes Berga622ab72010-06-10 10:21:39 +02001080
1081 if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1082 info->flags |= IEEE80211_TX_CTL_AMPDU;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001083 reset_agg_timer = true;
Johannes Berg0ab33702010-06-10 10:21:42 +02001084 } else if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
1085 /*
1086 * nothing -- this aggregation session is being started
1087 * but that might still fail with the driver
1088 */
Johannes Berga622ab72010-06-10 10:21:39 +02001089 } else {
1090 spin_lock(&tx->sta->lock);
1091 /*
1092 * Need to re-check now, because we may get here
1093 *
1094 * 1) in the window during which the setup is actually
1095 * already done, but not marked yet because not all
1096 * packets are spliced over to the driver pending
1097 * queue yet -- if this happened we acquire the lock
1098 * either before or after the splice happens, but
1099 * need to recheck which of these cases happened.
1100 *
1101 * 2) during session teardown, if the OPERATIONAL bit
1102 * was cleared due to the teardown but the pointer
1103 * hasn't been assigned NULL yet (or we loaded it
1104 * before it was assigned) -- in this case it may
1105 * now be NULL which means we should just let the
1106 * packet pass through because splicing the frames
1107 * back is already done.
1108 */
Johannes Berg40b275b2011-05-13 14:15:49 +02001109 tid_tx = rcu_dereference_protected_tid_tx(tx->sta, tid);
Johannes Berga622ab72010-06-10 10:21:39 +02001110
1111 if (!tid_tx) {
1112 /* do nothing, let packet pass through */
1113 } else if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1114 info->flags |= IEEE80211_TX_CTL_AMPDU;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001115 reset_agg_timer = true;
Johannes Berga622ab72010-06-10 10:21:39 +02001116 } else {
1117 queued = true;
1118 info->control.vif = &tx->sdata->vif;
1119 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
Johannes Berg03c8c062014-01-09 01:45:28 +01001120 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
Johannes Berga622ab72010-06-10 10:21:39 +02001121 __skb_queue_tail(&tid_tx->pending, skb);
Helmut Schaaaa454582012-03-07 17:20:30 +01001122 if (skb_queue_len(&tid_tx->pending) > STA_MAX_TX_BUFFER)
1123 purge_skb = __skb_dequeue(&tid_tx->pending);
Johannes Berga622ab72010-06-10 10:21:39 +02001124 }
1125 spin_unlock(&tx->sta->lock);
Helmut Schaaaa454582012-03-07 17:20:30 +01001126
1127 if (purge_skb)
Felix Fietkauc3e77242012-10-08 14:39:33 +02001128 ieee80211_free_txskb(&tx->local->hw, purge_skb);
Johannes Berga622ab72010-06-10 10:21:39 +02001129 }
1130
Nikolay Martynov285fa692011-11-22 21:50:28 -05001131 /* reset session timer */
1132 if (reset_agg_timer && tid_tx->timeout)
Felix Fietkau12d3952f2012-03-18 22:58:06 +01001133 tid_tx->last_tx = jiffies;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001134
Johannes Berga622ab72010-06-10 10:21:39 +02001135 return queued;
1136}
1137
Johannes Berg58d41852007-09-26 17:53:18 +02001138/*
1139 * initialises @tx
1140 */
Johannes Berg9ae54c82008-01-31 19:48:20 +01001141static ieee80211_tx_result
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001142ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
1143 struct ieee80211_tx_data *tx,
1144 struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +02001145{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001146 struct ieee80211_local *local = sdata->local;
Johannes Berg58d41852007-09-26 17:53:18 +02001147 struct ieee80211_hdr *hdr;
Johannes Berge039fa42008-05-15 12:55:29 +02001148 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg68f2b512011-10-07 14:01:24 +02001149 int tid;
Johannes Berga622ab72010-06-10 10:21:39 +02001150 u8 *qc;
Johannes Berge2ebc742007-07-27 15:43:22 +02001151
1152 memset(tx, 0, sizeof(*tx));
1153 tx->skb = skb;
Johannes Berge2ebc742007-07-27 15:43:22 +02001154 tx->local = local;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001155 tx->sdata = sdata;
Johannes Berg252b86c2011-11-16 15:28:55 +01001156 __skb_queue_head_init(&tx->skbs);
Johannes Berge2ebc742007-07-27 15:43:22 +02001157
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001158 /*
1159 * If this flag is set to true anywhere, and we get here,
1160 * we are doing the needed processing, so remove the flag
1161 * now.
1162 */
1163 info->flags &= ~IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1164
Johannes Berg58d41852007-09-26 17:53:18 +02001165 hdr = (struct ieee80211_hdr *) skb->data;
1166
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001167 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001168 tx->sta = rcu_dereference(sdata->u.vlan.sta);
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001169 if (!tx->sta && sdata->dev->ieee80211_ptr->use_4addr)
1170 return TX_DROP;
Felix Fietkau03bb7f42013-09-29 21:39:33 +02001171 } else if (info->flags & (IEEE80211_TX_CTL_INJECTED |
1172 IEEE80211_TX_INTFL_NL80211_FRAME_TX) ||
Felix Fietkau66f2c992012-04-29 15:44:16 +02001173 tx->sdata->control_port_protocol == tx->skb->protocol) {
Felix Fietkaub4d57ad2010-01-31 23:25:24 +01001174 tx->sta = sta_info_get_bss(sdata, hdr->addr1);
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001175 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001176 if (!tx->sta)
Johannes Bergabe60632009-11-25 17:46:18 +01001177 tx->sta = sta_info_get(sdata, hdr->addr1);
Johannes Berg58d41852007-09-26 17:53:18 +02001178
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001179 if (tx->sta && ieee80211_is_data_qos(hdr->frame_control) &&
Johannes Berg49a59542011-09-29 16:04:41 +02001180 !ieee80211_is_qos_nullfunc(hdr->frame_control) &&
Arik Nemtsovedf6b782011-08-30 09:32:38 +03001181 (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION) &&
1182 !(local->hw.flags & IEEE80211_HW_TX_AMPDU_SETUP_IN_HW)) {
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001183 struct tid_ampdu_tx *tid_tx;
1184
Sujith8b30b1f2008-10-24 09:55:27 +05301185 qc = ieee80211_get_qos_ctl(hdr);
1186 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
1187
Johannes Berga622ab72010-06-10 10:21:39 +02001188 tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]);
1189 if (tid_tx) {
1190 bool queued;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001191
Johannes Berga622ab72010-06-10 10:21:39 +02001192 queued = ieee80211_tx_prep_agg(tx, skb, info,
1193 tid_tx, tid);
1194
1195 if (unlikely(queued))
1196 return TX_QUEUED;
1197 }
Sujith8b30b1f2008-10-24 09:55:27 +05301198 }
1199
Jiri Slabybadffb72007-08-28 17:01:54 -04001200 if (is_multicast_ether_addr(hdr->addr1)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001201 tx->flags &= ~IEEE80211_TX_UNICAST;
Johannes Berge039fa42008-05-15 12:55:29 +02001202 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Simon Wunderlich6fd67e92011-11-18 14:20:42 +01001203 } else
Johannes Berg5cf121c2008-02-25 16:27:43 +01001204 tx->flags |= IEEE80211_TX_UNICAST;
Johannes Berg58d41852007-09-26 17:53:18 +02001205
Johannes Berga26eb272011-10-07 14:01:25 +02001206 if (!(info->flags & IEEE80211_TX_CTL_DONTFRAG)) {
1207 if (!(tx->flags & IEEE80211_TX_UNICAST) ||
1208 skb->len + FCS_LEN <= local->hw.wiphy->frag_threshold ||
1209 info->flags & IEEE80211_TX_CTL_AMPDU)
1210 info->flags |= IEEE80211_TX_CTL_DONTFRAG;
Johannes Berg58d41852007-09-26 17:53:18 +02001211 }
1212
Johannes Berge2ebc742007-07-27 15:43:22 +02001213 if (!tx->sta)
Johannes Berge039fa42008-05-15 12:55:29 +02001214 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001215 else if (test_and_clear_sta_flag(tx->sta, WLAN_STA_CLEAR_PS_FILT))
Johannes Berge039fa42008-05-15 12:55:29 +02001216 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
Johannes Berg58d41852007-09-26 17:53:18 +02001217
Johannes Berge039fa42008-05-15 12:55:29 +02001218 info->flags |= IEEE80211_TX_CTL_FIRST_FRAGMENT;
Johannes Berge2ebc742007-07-27 15:43:22 +02001219
Johannes Berg9ae54c82008-01-31 19:48:20 +01001220 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +02001221}
1222
Johannes Berg11127e92011-11-16 16:02:47 +01001223static bool ieee80211_tx_frags(struct ieee80211_local *local,
1224 struct ieee80211_vif *vif,
1225 struct ieee80211_sta *sta,
1226 struct sk_buff_head *skbs,
1227 bool txpending)
Johannes Berge2ebc742007-07-27 15:43:22 +02001228{
Thomas Huehn36323f82012-07-23 21:33:42 +02001229 struct ieee80211_tx_control control;
Johannes Berg252b86c2011-11-16 15:28:55 +01001230 struct sk_buff *skb, *tmp;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001231 unsigned long flags;
Johannes Berge2ebc742007-07-27 15:43:22 +02001232
Johannes Berg252b86c2011-11-16 15:28:55 +01001233 skb_queue_walk_safe(skbs, skb, tmp) {
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001234 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1235 int q = info->hw_queue;
1236
1237#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1238 if (WARN_ON_ONCE(q >= local->hw.queues)) {
1239 __skb_unlink(skb, skbs);
Felix Fietkauc3e77242012-10-08 14:39:33 +02001240 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001241 continue;
1242 }
1243#endif
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001244
1245 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001246 if (local->queue_stop_reasons[q] ||
Johannes Berg7bb45682011-02-24 14:42:06 +01001247 (!txpending && !skb_queue_empty(&local->pending[q]))) {
Seth Forshee6c17b772013-02-11 11:21:07 -06001248 if (unlikely(info->flags &
Seth Forsheea7679ed2013-02-25 14:58:05 -06001249 IEEE80211_TX_INTFL_OFFCHAN_TX_OK)) {
1250 if (local->queue_stop_reasons[q] &
1251 ~BIT(IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL)) {
1252 /*
1253 * Drop off-channel frames if queues
1254 * are stopped for any reason other
1255 * than off-channel operation. Never
1256 * queue them.
1257 */
1258 spin_unlock_irqrestore(
1259 &local->queue_stop_reason_lock,
1260 flags);
1261 ieee80211_purge_tx_queue(&local->hw,
1262 skbs);
1263 return true;
1264 }
1265 } else {
1266
Seth Forshee6c17b772013-02-11 11:21:07 -06001267 /*
Seth Forsheea7679ed2013-02-25 14:58:05 -06001268 * Since queue is stopped, queue up frames for
1269 * later transmission from the tx-pending
1270 * tasklet when the queue is woken again.
Seth Forshee6c17b772013-02-11 11:21:07 -06001271 */
Seth Forsheea7679ed2013-02-25 14:58:05 -06001272 if (txpending)
1273 skb_queue_splice_init(skbs,
1274 &local->pending[q]);
1275 else
1276 skb_queue_splice_tail_init(skbs,
1277 &local->pending[q]);
1278
1279 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1280 flags);
1281 return false;
Seth Forshee6c17b772013-02-11 11:21:07 -06001282 }
Johannes Berg7bb45682011-02-24 14:42:06 +01001283 }
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001284 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Tomas Winklerf8e79dd2008-07-24 18:46:44 +03001285
Johannes Berg11127e92011-11-16 16:02:47 +01001286 info->control.vif = vif;
Thomas Huehn36323f82012-07-23 21:33:42 +02001287 control.sta = sta;
Johannes Bergec25acc2010-07-22 17:11:28 +02001288
Johannes Berg252b86c2011-11-16 15:28:55 +01001289 __skb_unlink(skb, skbs);
Thomas Huehn36323f82012-07-23 21:33:42 +02001290 drv_tx(local, &control, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001291 }
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001292
Johannes Berg11127e92011-11-16 16:02:47 +01001293 return true;
1294}
1295
1296/*
1297 * Returns false if the frame couldn't be transmitted but was queued instead.
1298 */
1299static bool __ieee80211_tx(struct ieee80211_local *local,
1300 struct sk_buff_head *skbs, int led_len,
1301 struct sta_info *sta, bool txpending)
1302{
1303 struct ieee80211_tx_info *info;
1304 struct ieee80211_sub_if_data *sdata;
1305 struct ieee80211_vif *vif;
1306 struct ieee80211_sta *pubsta;
1307 struct sk_buff *skb;
1308 bool result = true;
1309 __le16 fc;
1310
1311 if (WARN_ON(skb_queue_empty(skbs)))
1312 return true;
1313
1314 skb = skb_peek(skbs);
1315 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
1316 info = IEEE80211_SKB_CB(skb);
1317 sdata = vif_to_sdata(info->control.vif);
1318 if (sta && !sta->uploaded)
1319 sta = NULL;
1320
1321 if (sta)
1322 pubsta = &sta->sta;
1323 else
1324 pubsta = NULL;
1325
1326 switch (sdata->vif.type) {
1327 case NL80211_IFTYPE_MONITOR:
Johannes Bergc82b5a72013-07-14 23:39:20 +03001328 if (sdata->u.mntr_flags & MONITOR_FLAG_ACTIVE) {
1329 vif = &sdata->vif;
1330 break;
1331 }
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001332 sdata = rcu_dereference(local->monitor_sdata);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001333 if (sdata) {
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001334 vif = &sdata->vif;
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001335 info->hw_queue =
1336 vif->hw_queue[skb_get_queue_mapping(skb)];
1337 } else if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL) {
1338 dev_kfree_skb(skb);
1339 return true;
1340 } else
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001341 vif = NULL;
Johannes Berg11127e92011-11-16 16:02:47 +01001342 break;
1343 case NL80211_IFTYPE_AP_VLAN:
1344 sdata = container_of(sdata->bss,
1345 struct ieee80211_sub_if_data, u.ap);
1346 /* fall through */
1347 default:
1348 vif = &sdata->vif;
1349 break;
1350 }
1351
Johannes Bergcb831b52012-07-02 15:40:18 +02001352 result = ieee80211_tx_frags(local, vif, pubsta, skbs,
1353 txpending);
Johannes Berg11127e92011-11-16 16:02:47 +01001354
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001355 ieee80211_tpt_led_trig_tx(local, fc, led_len);
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001356
Johannes Berg4db4e0a2011-11-24 14:47:36 +01001357 WARN_ON_ONCE(!skb_queue_empty(skbs));
Johannes Berg252b86c2011-11-16 15:28:55 +01001358
Johannes Berg11127e92011-11-16 16:02:47 +01001359 return result;
Johannes Berge2ebc742007-07-27 15:43:22 +02001360}
1361
Johannes Berg97b045d2008-06-20 01:22:30 +02001362/*
1363 * Invoke TX handlers, return 0 on success and non-zero if the
1364 * frame was dropped or queued.
1365 */
1366static int invoke_tx_handlers(struct ieee80211_tx_data *tx)
1367{
Johannes Berg252b86c2011-11-16 15:28:55 +01001368 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Berg97b045d2008-06-20 01:22:30 +02001369 ieee80211_tx_result res = TX_DROP;
Johannes Berg97b045d2008-06-20 01:22:30 +02001370
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001371#define CALL_TXH(txh) \
1372 do { \
1373 res = txh(tx); \
1374 if (res != TX_CONTINUE) \
1375 goto txh_done; \
1376 } while (0)
Johannes Berg97b045d2008-06-20 01:22:30 +02001377
Kalle Valo5c1b98a2010-01-12 10:42:46 +02001378 CALL_TXH(ieee80211_tx_h_dynamic_ps);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001379 CALL_TXH(ieee80211_tx_h_check_assoc);
1380 CALL_TXH(ieee80211_tx_h_ps_buf);
Johannes Berga621fa42010-08-27 14:26:54 +03001381 CALL_TXH(ieee80211_tx_h_check_control_port_protocol);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001382 CALL_TXH(ieee80211_tx_h_select_key);
Johannes Bergaf65cd962009-11-17 18:18:36 +01001383 if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL))
1384 CALL_TXH(ieee80211_tx_h_rate_ctrl);
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001385
Johannes Bergaa5b5492011-12-02 22:08:52 +01001386 if (unlikely(info->flags & IEEE80211_TX_INTFL_RETRANSMISSION)) {
1387 __skb_queue_tail(&tx->skbs, tx->skb);
1388 tx->skb = NULL;
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001389 goto txh_done;
Johannes Bergaa5b5492011-12-02 22:08:52 +01001390 }
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001391
1392 CALL_TXH(ieee80211_tx_h_michael_mic_add);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001393 CALL_TXH(ieee80211_tx_h_sequence);
1394 CALL_TXH(ieee80211_tx_h_fragment);
Johannes Bergd9e8a702008-06-30 15:10:44 +02001395 /* handlers after fragment must be aware of tx info fragmentation! */
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001396 CALL_TXH(ieee80211_tx_h_stats);
1397 CALL_TXH(ieee80211_tx_h_encrypt);
Arik Nemtsov8fd369e2011-01-31 22:29:12 +02001398 if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL))
1399 CALL_TXH(ieee80211_tx_h_calculate_duration);
Johannes Bergd9e8a702008-06-30 15:10:44 +02001400#undef CALL_TXH
1401
1402 txh_done:
Johannes Berg97b045d2008-06-20 01:22:30 +02001403 if (unlikely(res == TX_DROP)) {
Tomas Winkler5479d0e2008-06-28 03:15:03 +03001404 I802_DEBUG_INC(tx->local->tx_handlers_drop);
Johannes Berg252b86c2011-11-16 15:28:55 +01001405 if (tx->skb)
Felix Fietkauc3e77242012-10-08 14:39:33 +02001406 ieee80211_free_txskb(&tx->local->hw, tx->skb);
Johannes Berg252b86c2011-11-16 15:28:55 +01001407 else
Felix Fietkau1f98ab72012-11-10 03:44:14 +01001408 ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs);
Johannes Berg97b045d2008-06-20 01:22:30 +02001409 return -1;
1410 } else if (unlikely(res == TX_QUEUED)) {
Tomas Winkler5479d0e2008-06-28 03:15:03 +03001411 I802_DEBUG_INC(tx->local->tx_handlers_queued);
Johannes Berg97b045d2008-06-20 01:22:30 +02001412 return -1;
1413 }
1414
1415 return 0;
1416}
1417
Felix Fietkau06be6b12013-10-14 18:01:00 +02001418bool ieee80211_tx_prepare_skb(struct ieee80211_hw *hw,
1419 struct ieee80211_vif *vif, struct sk_buff *skb,
1420 int band, struct ieee80211_sta **sta)
1421{
1422 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1423 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1424 struct ieee80211_tx_data tx;
1425
1426 if (ieee80211_tx_prepare(sdata, &tx, skb) == TX_DROP)
1427 return false;
1428
1429 info->band = band;
1430 info->control.vif = vif;
1431 info->hw_queue = vif->hw_queue[skb_get_queue_mapping(skb)];
1432
1433 if (invoke_tx_handlers(&tx))
1434 return false;
1435
1436 if (sta) {
1437 if (tx.sta)
1438 *sta = &tx.sta->sta;
1439 else
1440 *sta = NULL;
1441 }
1442
1443 return true;
1444}
1445EXPORT_SYMBOL(ieee80211_tx_prepare_skb);
1446
Johannes Berg7bb45682011-02-24 14:42:06 +01001447/*
1448 * Returns false if the frame couldn't be transmitted but was queued instead.
1449 */
1450static bool ieee80211_tx(struct ieee80211_sub_if_data *sdata,
Johannes Berg73c4e192014-11-09 18:50:09 +02001451 struct sk_buff *skb, bool txpending)
Johannes Berge2ebc742007-07-27 15:43:22 +02001452{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001453 struct ieee80211_local *local = sdata->local;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001454 struct ieee80211_tx_data tx;
Johannes Berg97b045d2008-06-20 01:22:30 +02001455 ieee80211_tx_result res_prepare;
Johannes Berge039fa42008-05-15 12:55:29 +02001456 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001457 bool result = true;
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001458 int led_len;
Johannes Berge2ebc742007-07-27 15:43:22 +02001459
Johannes Berge2ebc742007-07-27 15:43:22 +02001460 if (unlikely(skb->len < 10)) {
1461 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001462 return true;
Johannes Berge2ebc742007-07-27 15:43:22 +02001463 }
1464
Johannes Berg58d41852007-09-26 17:53:18 +02001465 /* initialises tx */
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001466 led_len = skb->len;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001467 res_prepare = ieee80211_tx_prepare(sdata, &tx, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001468
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001469 if (unlikely(res_prepare == TX_DROP)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02001470 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg55de9082012-07-26 17:24:39 +02001471 return true;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001472 } else if (unlikely(res_prepare == TX_QUEUED)) {
Johannes Berg55de9082012-07-26 17:24:39 +02001473 return true;
Johannes Berge2ebc742007-07-27 15:43:22 +02001474 }
1475
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001476 /* set up hw_queue value early */
1477 if (!(info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) ||
1478 !(local->hw.flags & IEEE80211_HW_QUEUE_CONTROL))
1479 info->hw_queue =
1480 sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
1481
Johannes Berg7bb45682011-02-24 14:42:06 +01001482 if (!invoke_tx_handlers(&tx))
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001483 result = __ieee80211_tx(local, &tx.skbs, led_len,
1484 tx.sta, txpending);
Johannes Berg55de9082012-07-26 17:24:39 +02001485
Johannes Berg7bb45682011-02-24 14:42:06 +01001486 return result;
Johannes Berge2ebc742007-07-27 15:43:22 +02001487}
1488
1489/* device xmit handlers */
1490
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301491static int ieee80211_skb_resize(struct ieee80211_sub_if_data *sdata,
Johannes Berg23c07522008-05-29 10:38:53 +02001492 struct sk_buff *skb,
1493 int head_need, bool may_encrypt)
1494{
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301495 struct ieee80211_local *local = sdata->local;
Johannes Berg23c07522008-05-29 10:38:53 +02001496 int tail_need = 0;
1497
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301498 if (may_encrypt && sdata->crypto_tx_tailroom_needed_cnt) {
Johannes Berg23c07522008-05-29 10:38:53 +02001499 tail_need = IEEE80211_ENCRYPT_TAILROOM;
1500 tail_need -= skb_tailroom(skb);
1501 tail_need = max_t(int, tail_need, 0);
1502 }
1503
Ido Yarivc70f59a2014-07-29 15:39:14 +03001504 if (skb_cloned(skb) &&
1505 (!(local->hw.flags & IEEE80211_HW_SUPPORTS_CLONED_SKBS) ||
1506 !skb_clone_writable(skb, ETH_HLEN) ||
1507 sdata->crypto_tx_tailroom_needed_cnt))
Johannes Berg23c07522008-05-29 10:38:53 +02001508 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
Felix Fietkau4cd06a32010-12-18 19:30:49 +01001509 else if (head_need || tail_need)
Johannes Berg23c07522008-05-29 10:38:53 +02001510 I802_DEBUG_INC(local->tx_expand_skb_head);
Felix Fietkau4cd06a32010-12-18 19:30:49 +01001511 else
1512 return 0;
Johannes Berg23c07522008-05-29 10:38:53 +02001513
1514 if (pskb_expand_head(skb, head_need, tail_need, GFP_ATOMIC)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07001515 wiphy_debug(local->hw.wiphy,
1516 "failed to reallocate TX buffer\n");
Johannes Berg23c07522008-05-29 10:38:53 +02001517 return -ENOMEM;
1518 }
1519
Johannes Berg23c07522008-05-29 10:38:53 +02001520 return 0;
1521}
1522
Johannes Berg73c4e192014-11-09 18:50:09 +02001523void ieee80211_xmit(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +02001524{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001525 struct ieee80211_local *local = sdata->local;
Johannes Berge039fa42008-05-15 12:55:29 +02001526 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001527 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berge2ebc742007-07-27 15:43:22 +02001528 int headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001529 bool may_encrypt;
Johannes Berge2ebc742007-07-27 15:43:22 +02001530
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001531 may_encrypt = !(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT);
Johannes Berg23c07522008-05-29 10:38:53 +02001532
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001533 headroom = local->tx_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001534 if (may_encrypt)
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001535 headroom += sdata->encrypt_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001536 headroom -= skb_headroom(skb);
1537 headroom = max_t(int, 0, headroom);
1538
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301539 if (ieee80211_skb_resize(sdata, skb, headroom, may_encrypt)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02001540 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001541 return;
Johannes Berge2ebc742007-07-27 15:43:22 +02001542 }
1543
Steve deRosier740c1aa2010-09-11 20:01:31 -07001544 hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berg5061b0c2009-07-14 00:33:34 +02001545 info->control.vif = &sdata->vif;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001546
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001547 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1548 if (ieee80211_is_data(hdr->frame_control) &&
1549 is_unicast_ether_addr(hdr->addr1)) {
Johannes Bergbf7cd942013-02-15 14:40:31 +01001550 if (mesh_nexthop_resolve(sdata, skb))
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001551 return; /* skb queued: don't free */
1552 } else {
1553 ieee80211_mps_set_frame_flags(sdata, NULL, hdr);
1554 }
Johannes Berg98aed9f2012-03-27 14:18:36 +02001555 }
Javier Cardonacca89492009-08-10 17:29:29 -07001556
Javier Cardona2154c812011-09-07 17:49:53 -07001557 ieee80211_set_qos_hdr(sdata, skb);
Johannes Berg73c4e192014-11-09 18:50:09 +02001558 ieee80211_tx(sdata, skb, false);
Johannes Berge2ebc742007-07-27 15:43:22 +02001559}
1560
Johannes Berg73b9f032011-10-07 14:01:26 +02001561static bool ieee80211_parse_tx_radiotap(struct sk_buff *skb)
1562{
1563 struct ieee80211_radiotap_iterator iterator;
1564 struct ieee80211_radiotap_header *rthdr =
1565 (struct ieee80211_radiotap_header *) skb->data;
1566 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1567 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len,
1568 NULL);
1569 u16 txflags;
1570
1571 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
1572 IEEE80211_TX_CTL_DONTFRAG;
1573
1574 /*
1575 * for every radiotap entry that is present
1576 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
1577 * entries present, or -EINVAL on error)
1578 */
1579
1580 while (!ret) {
1581 ret = ieee80211_radiotap_iterator_next(&iterator);
1582
1583 if (ret)
1584 continue;
1585
1586 /* see if this argument is something we can use */
1587 switch (iterator.this_arg_index) {
1588 /*
1589 * You must take care when dereferencing iterator.this_arg
1590 * for multibyte types... the pointer is not aligned. Use
1591 * get_unaligned((type *)iterator.this_arg) to dereference
1592 * iterator.this_arg for type "type" safely on all arches.
1593 */
1594 case IEEE80211_RADIOTAP_FLAGS:
1595 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
1596 /*
1597 * this indicates that the skb we have been
1598 * handed has the 32-bit FCS CRC at the end...
1599 * we should react to that by snipping it off
1600 * because it will be recomputed and added
1601 * on transmission
1602 */
1603 if (skb->len < (iterator._max_length + FCS_LEN))
1604 return false;
1605
1606 skb_trim(skb, skb->len - FCS_LEN);
1607 }
1608 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
1609 info->flags &= ~IEEE80211_TX_INTFL_DONT_ENCRYPT;
1610 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
1611 info->flags &= ~IEEE80211_TX_CTL_DONTFRAG;
1612 break;
1613
1614 case IEEE80211_RADIOTAP_TX_FLAGS:
1615 txflags = get_unaligned_le16(iterator.this_arg);
1616 if (txflags & IEEE80211_RADIOTAP_F_TX_NOACK)
1617 info->flags |= IEEE80211_TX_CTL_NO_ACK;
1618 break;
1619
1620 /*
1621 * Please update the file
1622 * Documentation/networking/mac80211-injection.txt
1623 * when parsing new fields here.
1624 */
1625
1626 default:
1627 break;
1628 }
1629 }
1630
1631 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
1632 return false;
1633
1634 /*
1635 * remove the radiotap header
1636 * iterator->_max_length was sanity-checked against
1637 * skb->len by iterator init
1638 */
1639 skb_pull(skb, iterator._max_length);
1640
1641 return true;
1642}
1643
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00001644netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
1645 struct net_device *dev)
Johannes Berge2ebc742007-07-27 15:43:22 +02001646{
1647 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg55de9082012-07-26 17:24:39 +02001648 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berge2ebc742007-07-27 15:43:22 +02001649 struct ieee80211_radiotap_header *prthdr =
1650 (struct ieee80211_radiotap_header *)skb->data;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001651 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001652 struct ieee80211_hdr *hdr;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001653 struct ieee80211_sub_if_data *tmp_sdata, *sdata;
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001654 struct cfg80211_chan_def *chandef;
Andy Green9b8a74e2007-07-27 15:43:24 +02001655 u16 len_rthdr;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001656 int hdrlen;
Johannes Berge2ebc742007-07-27 15:43:22 +02001657
Andy Green9b8a74e2007-07-27 15:43:24 +02001658 /* check for not even having the fixed radiotap header part */
1659 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1660 goto fail; /* too short to be possibly valid */
1661
1662 /* is it a header version we can trust to find length from? */
1663 if (unlikely(prthdr->it_version))
1664 goto fail; /* only version 0 is supported */
1665
1666 /* then there must be a radiotap header with a length we can use */
1667 len_rthdr = ieee80211_get_radiotap_len(skb->data);
1668
1669 /* does the skb contain enough to deliver on the alleged length? */
1670 if (unlikely(skb->len < len_rthdr))
1671 goto fail; /* skb too short for claimed rt header extent */
Johannes Berge2ebc742007-07-27 15:43:22 +02001672
Johannes Berge2ebc742007-07-27 15:43:22 +02001673 /*
1674 * fix up the pointers accounting for the radiotap
1675 * header still being in there. We are being given
1676 * a precooked IEEE80211 header so no need for
1677 * normal processing
1678 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001679 skb_set_mac_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001680 /*
Andy Green9b8a74e2007-07-27 15:43:24 +02001681 * these are just fixed to the end of the rt area since we
1682 * don't have any better information and at this point, nobody cares
Johannes Berge2ebc742007-07-27 15:43:22 +02001683 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001684 skb_set_network_header(skb, len_rthdr);
1685 skb_set_transport_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001686
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001687 if (skb->len < len_rthdr + 2)
1688 goto fail;
1689
1690 hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr);
1691 hdrlen = ieee80211_hdrlen(hdr->frame_control);
1692
1693 if (skb->len < len_rthdr + hdrlen)
1694 goto fail;
1695
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001696 /*
1697 * Initialize skb->protocol if the injected frame is a data frame
1698 * carrying a rfc1042 header
1699 */
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001700 if (ieee80211_is_data(hdr->frame_control) &&
1701 skb->len >= len_rthdr + hdrlen + sizeof(rfc1042_header) + 2) {
1702 u8 *payload = (u8 *)hdr + hdrlen;
1703
Joe Perchesb203ca32012-05-08 18:56:52 +00001704 if (ether_addr_equal(payload, rfc1042_header))
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001705 skb->protocol = cpu_to_be16((payload[6] << 8) |
1706 payload[7]);
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001707 }
1708
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001709 memset(info, 0, sizeof(*info));
1710
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001711 info->flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
Johannes Berg73b9f032011-10-07 14:01:26 +02001712 IEEE80211_TX_CTL_INJECTED;
1713
1714 /* process and remove the injection radiotap header */
1715 if (!ieee80211_parse_tx_radiotap(skb))
1716 goto fail;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001717
1718 rcu_read_lock();
1719
1720 /*
1721 * We process outgoing injected frames that have a local address
1722 * we handle as though they are non-injected frames.
1723 * This code here isn't entirely correct, the local MAC address
1724 * isn't always enough to find the interface to use; for proper
1725 * VLAN/WDS support we will need a different mechanism (which
1726 * likely isn't going to be monitor interfaces).
1727 */
1728 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1729
1730 list_for_each_entry_rcu(tmp_sdata, &local->interfaces, list) {
1731 if (!ieee80211_sdata_running(tmp_sdata))
1732 continue;
1733 if (tmp_sdata->vif.type == NL80211_IFTYPE_MONITOR ||
1734 tmp_sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1735 tmp_sdata->vif.type == NL80211_IFTYPE_WDS)
1736 continue;
Joe Perchesb203ca32012-05-08 18:56:52 +00001737 if (ether_addr_equal(tmp_sdata->vif.addr, hdr->addr2)) {
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001738 sdata = tmp_sdata;
1739 break;
1740 }
1741 }
Johannes Berg7351c6b2009-11-19 01:08:30 +01001742
Johannes Berg55de9082012-07-26 17:24:39 +02001743 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1744 if (!chanctx_conf) {
1745 tmp_sdata = rcu_dereference(local->monitor_sdata);
1746 if (tmp_sdata)
1747 chanctx_conf =
1748 rcu_dereference(tmp_sdata->vif.chanctx_conf);
1749 }
Johannes Berg55de9082012-07-26 17:24:39 +02001750
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01001751 if (chanctx_conf)
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001752 chandef = &chanctx_conf->def;
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01001753 else if (!local->use_chanctx)
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001754 chandef = &local->_oper_chandef;
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01001755 else
1756 goto fail_rcu;
Johannes Berg55de9082012-07-26 17:24:39 +02001757
1758 /*
1759 * Frame injection is not allowed if beaconing is not allowed
1760 * or if we need radar detection. Beaconing is usually not allowed when
1761 * the mode or operation (Adhoc, AP, Mesh) does not support DFS.
1762 * Passive scan is also used in world regulatory domains where
1763 * your country is not known and as such it should be treated as
1764 * NO TX unless the channel is explicitly allowed in which case
1765 * your current regulatory domain would not have the passive scan
1766 * flag.
1767 *
1768 * Since AP mode uses monitor interfaces to inject/TX management
1769 * frames we can make AP mode the exception to this rule once it
1770 * supports radar detection as its implementation can deal with
1771 * radar detection by itself. We can do that later by adding a
1772 * monitor flag interfaces used for AP support.
1773 */
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001774 if (!cfg80211_reg_can_beacon(local->hw.wiphy, chandef,
1775 sdata->vif.type))
Johannes Berg55de9082012-07-26 17:24:39 +02001776 goto fail_rcu;
1777
Johannes Berg73c4e192014-11-09 18:50:09 +02001778 info->band = chandef->chan->band;
1779 ieee80211_xmit(sdata, skb);
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001780 rcu_read_unlock();
1781
Johannes Berge2ebc742007-07-27 15:43:22 +02001782 return NETDEV_TX_OK;
Andy Green9b8a74e2007-07-27 15:43:24 +02001783
Johannes Berg55de9082012-07-26 17:24:39 +02001784fail_rcu:
1785 rcu_read_unlock();
Andy Green9b8a74e2007-07-27 15:43:24 +02001786fail:
1787 dev_kfree_skb(skb);
1788 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
Johannes Berge2ebc742007-07-27 15:43:22 +02001789}
1790
Matti Gottliebad38bfc2013-11-18 19:06:45 +02001791/*
1792 * Measure Tx frame arrival time for Tx latency statistics calculation
1793 * A single Tx frame latency should be measured from when it is entering the
1794 * Kernel until we receive Tx complete confirmation indication and the skb is
1795 * freed.
1796 */
1797static void ieee80211_tx_latency_start_msrmnt(struct ieee80211_local *local,
1798 struct sk_buff *skb)
1799{
Matti Gottliebad38bfc2013-11-18 19:06:45 +02001800 struct ieee80211_tx_latency_bin_ranges *tx_latency;
1801
1802 tx_latency = rcu_dereference(local->tx_latency);
1803 if (!tx_latency)
1804 return;
Thomas Gleixner8d7b70f2014-06-11 23:59:18 +00001805 skb->tstamp = ktime_get();
Matti Gottliebad38bfc2013-11-18 19:06:45 +02001806}
1807
Johannes Berge2ebc742007-07-27 15:43:22 +02001808/**
Johannes Berg4c9451e2014-11-09 18:50:10 +02001809 * ieee80211_build_hdr - build 802.11 header in the given frame
1810 * @sdata: virtual interface to build the header for
1811 * @skb: the skb to build the header in
Liad Kaufman24d342c2014-11-09 18:50:07 +02001812 * @info_flags: skb flags to set
Johannes Berge2ebc742007-07-27 15:43:22 +02001813 *
Johannes Berg4c9451e2014-11-09 18:50:10 +02001814 * This function takes the skb with 802.3 header and reformats the header to
1815 * the appropriate IEEE 802.11 header based on which interface the packet is
1816 * being transmitted on.
Johannes Berge2ebc742007-07-27 15:43:22 +02001817 *
Johannes Berg4c9451e2014-11-09 18:50:10 +02001818 * Note that this function also takes care of the TX status request and
1819 * potential unsharing of the SKB - this needs to be interleaved with the
1820 * header building.
1821 *
1822 * The function requires the read-side RCU lock held
1823 *
1824 * Returns: the (possibly reallocated) skb or an ERR_PTR() code
Johannes Berge2ebc742007-07-27 15:43:22 +02001825 */
Johannes Berg4c9451e2014-11-09 18:50:10 +02001826static struct sk_buff *ieee80211_build_hdr(struct ieee80211_sub_if_data *sdata,
1827 struct sk_buff *skb, u32 info_flags)
Johannes Berge2ebc742007-07-27 15:43:22 +02001828{
Johannes Berg133b8222008-09-16 14:18:59 +02001829 struct ieee80211_local *local = sdata->local;
Felix Fietkau489ee912010-12-18 19:30:48 +01001830 struct ieee80211_tx_info *info;
Johannes Bergdcf33962012-07-30 15:11:56 +02001831 int head_need;
Harvey Harrison065e96052008-06-22 16:45:27 -07001832 u16 ethertype, hdrlen, meshhdrlen = 0;
1833 __le16 fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02001834 struct ieee80211_hdr hdr;
Wey-Yi Guyff67bb82010-08-21 07:23:29 -07001835 struct ieee80211s_hdr mesh_hdr __maybe_unused;
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001836 struct mesh_path __maybe_unused *mppath = NULL, *mpath = NULL;
Johannes Berge2ebc742007-07-27 15:43:22 +02001837 const u8 *encaps_data;
1838 int encaps_len, skip_header_bytes;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001839 int nh_pos, h_pos;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001840 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001841 bool wme_sta = false, authorized = false, tdls_auth = false;
Arik Nemtsov9deba042014-06-11 17:18:18 +03001842 bool tdls_peer = false, tdls_setup_frame = false;
Johannes Berga729cff2011-11-06 14:13:34 +01001843 bool multicast;
Johannes Berga729cff2011-11-06 14:13:34 +01001844 u16 info_id = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02001845 struct ieee80211_chanctx_conf *chanctx_conf;
1846 struct ieee80211_sub_if_data *ap_sdata;
1847 enum ieee80211_band band;
Johannes Berg4c9451e2014-11-09 18:50:10 +02001848 int ret;
Johannes Berge2ebc742007-07-27 15:43:22 +02001849
Johannes Berge2ebc742007-07-27 15:43:22 +02001850 /* convert Ethernet header to proper 802.11 header (based on
1851 * operation mode) */
1852 ethertype = (skb->data[12] << 8) | skb->data[13];
Harvey Harrison065e96052008-06-22 16:45:27 -07001853 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
Johannes Berge2ebc742007-07-27 15:43:22 +02001854
Johannes Berg51fb61e2007-12-19 01:31:27 +01001855 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001856 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg9bc383d2009-11-19 11:55:19 +01001857 sta = rcu_dereference(sdata->u.vlan.sta);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001858 if (sta) {
1859 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
1860 /* RA TA DA SA */
1861 memcpy(hdr.addr1, sta->sta.addr, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001862 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001863 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1864 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1865 hdrlen = 30;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001866 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Johannes Berga74a8c82014-07-22 14:50:47 +02001867 wme_sta = sta->sta.wme;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001868 }
Johannes Berg55de9082012-07-26 17:24:39 +02001869 ap_sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
1870 u.ap);
1871 chanctx_conf = rcu_dereference(ap_sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02001872 if (!chanctx_conf) {
1873 ret = -ENOTCONN;
1874 goto free;
1875 }
Johannes Berg4bf88532012-11-09 11:39:59 +01001876 band = chanctx_conf->def.chan->band;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001877 if (sta)
1878 break;
1879 /* fall through */
1880 case NL80211_IFTYPE_AP:
Arnd Bergmannfe801232013-01-25 14:14:33 +00001881 if (sdata->vif.type == NL80211_IFTYPE_AP)
1882 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02001883 if (!chanctx_conf) {
1884 ret = -ENOTCONN;
1885 goto free;
1886 }
Harvey Harrison065e96052008-06-22 16:45:27 -07001887 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
Johannes Berge2ebc742007-07-27 15:43:22 +02001888 /* DA BSSID SA */
1889 memcpy(hdr.addr1, skb->data, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001890 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02001891 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1892 hdrlen = 24;
Johannes Berg4bf88532012-11-09 11:39:59 +01001893 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04001894 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001895 case NL80211_IFTYPE_WDS:
Harvey Harrison065e96052008-06-22 16:45:27 -07001896 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
Johannes Berge2ebc742007-07-27 15:43:22 +02001897 /* RA TA DA SA */
1898 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001899 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02001900 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1901 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1902 hdrlen = 30;
Johannes Berg55de9082012-07-26 17:24:39 +02001903 /*
1904 * This is the exception! WDS style interfaces are prohibited
1905 * when channel contexts are in used so this must be valid
1906 */
Karl Beldan675a0b02013-03-25 16:26:57 +01001907 band = local->hw.conf.chandef.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04001908 break;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001909#ifdef CONFIG_MAC80211_MESH
Johannes Berg05c914f2008-09-11 00:01:58 +02001910 case NL80211_IFTYPE_MESH_POINT:
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001911 if (!is_multicast_ether_addr(skb->data)) {
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001912 struct sta_info *next_hop;
1913 bool mpp_lookup = true;
1914
Johannes Bergbf7cd942013-02-15 14:40:31 +01001915 mpath = mesh_path_lookup(sdata, skb->data);
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001916 if (mpath) {
1917 mpp_lookup = false;
1918 next_hop = rcu_dereference(mpath->next_hop);
1919 if (!next_hop ||
1920 !(mpath->flags & (MESH_PATH_ACTIVE |
1921 MESH_PATH_RESOLVING)))
1922 mpp_lookup = true;
1923 }
1924
1925 if (mpp_lookup)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001926 mppath = mpp_path_lookup(sdata, skb->data);
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001927
1928 if (mppath && mpath)
1929 mesh_path_del(mpath->sdata, mpath->dst);
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001930 }
YanBo79617de2008-09-22 13:30:32 +08001931
Joel A Fernandesf76b57b2010-12-28 19:28:11 -06001932 /*
Joel A Fernandes9d525012011-01-10 00:44:23 -06001933 * Use address extension if it is a packet from
1934 * another interface or if we know the destination
1935 * is being proxied by a portal (i.e. portal address
1936 * differs from proxied address)
Joel A Fernandesf76b57b2010-12-28 19:28:11 -06001937 */
Joe Perchesb203ca32012-05-08 18:56:52 +00001938 if (ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN) &&
1939 !(mppath && !ether_addr_equal(mppath->mpp, skb->data))) {
Javier Cardona3c5772a2009-08-10 12:15:48 -07001940 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
1941 skb->data, skb->data + ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +01001942 meshhdrlen = ieee80211_new_mesh_header(sdata, &mesh_hdr,
1943 NULL, NULL);
YanBo79617de2008-09-22 13:30:32 +08001944 } else {
Thomas Pedersen27f01122012-08-20 11:28:25 -07001945 /* DS -> MBSS (802.11-2012 13.11.3.3).
1946 * For unicast with unknown forwarding information,
1947 * destination might be in the MBSS or if that fails
1948 * forwarded to another mesh gate. In either case
1949 * resolution will be handled in ieee80211_xmit(), so
1950 * leave the original DA. This also works for mcast */
1951 const u8 *mesh_da = skb->data;
YanBo79617de2008-09-22 13:30:32 +08001952
Thomas Pedersen27f01122012-08-20 11:28:25 -07001953 if (mppath)
1954 mesh_da = mppath->mpp;
1955 else if (mpath)
1956 mesh_da = mpath->dst;
Thomas Pedersen27f01122012-08-20 11:28:25 -07001957
Javier Cardona3c5772a2009-08-10 12:15:48 -07001958 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
Johannes Berg47846c92009-11-25 17:46:19 +01001959 mesh_da, sdata->vif.addr);
Thomas Pedersen27f01122012-08-20 11:28:25 -07001960 if (is_multicast_ether_addr(mesh_da))
1961 /* DA TA mSA AE:SA */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001962 meshhdrlen = ieee80211_new_mesh_header(
1963 sdata, &mesh_hdr,
1964 skb->data + ETH_ALEN, NULL);
Javier Cardona3c5772a2009-08-10 12:15:48 -07001965 else
Thomas Pedersen27f01122012-08-20 11:28:25 -07001966 /* RA TA mDA mSA AE:DA SA */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001967 meshhdrlen = ieee80211_new_mesh_header(
1968 sdata, &mesh_hdr, skb->data,
1969 skb->data + ETH_ALEN);
YanBo79617de2008-09-22 13:30:32 +08001970
YanBo79617de2008-09-22 13:30:32 +08001971 }
Johannes Berg55de9082012-07-26 17:24:39 +02001972 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02001973 if (!chanctx_conf) {
1974 ret = -ENOTCONN;
1975 goto free;
1976 }
Johannes Berg4bf88532012-11-09 11:39:59 +01001977 band = chanctx_conf->def.chan->band;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001978 break;
1979#endif
Johannes Berg05c914f2008-09-11 00:01:58 +02001980 case NL80211_IFTYPE_STATION:
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001981 if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) {
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001982 sta = sta_info_get(sdata, skb->data);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001983 if (sta) {
1984 authorized = test_sta_flag(sta,
1985 WLAN_STA_AUTHORIZED);
Johannes Berga74a8c82014-07-22 14:50:47 +02001986 wme_sta = sta->sta.wme;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001987 tdls_peer = test_sta_flag(sta,
Arik Nemtsov9deba042014-06-11 17:18:18 +03001988 WLAN_STA_TDLS_PEER);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001989 tdls_auth = test_sta_flag(sta,
1990 WLAN_STA_TDLS_PEER_AUTH);
1991 }
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001992
Arik Nemtsov9deba042014-06-11 17:18:18 +03001993 if (tdls_peer)
1994 tdls_setup_frame =
1995 ethertype == ETH_P_TDLS &&
1996 skb->len > 14 &&
1997 skb->data[14] == WLAN_TDLS_SNAP_RFTYPE;
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001998 }
1999
Arik Nemtsov9deba042014-06-11 17:18:18 +03002000 /*
2001 * TDLS link during setup - throw out frames to peer. We allow
2002 * TDLS-setup frames to unauthorized peers for the special case
2003 * of a link teardown after a TDLS sta is removed due to being
2004 * unreachable.
2005 */
Johannes Berg4c9451e2014-11-09 18:50:10 +02002006 if (tdls_peer && !tdls_auth && !tdls_setup_frame) {
2007 ret = -EINVAL;
2008 goto free;
2009 }
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002010
Arik Nemtsov9deba042014-06-11 17:18:18 +03002011 /* send direct packets to authorized TDLS peers */
2012 if (tdls_peer && tdls_auth) {
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002013 /* DA SA BSSID */
2014 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2015 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2016 memcpy(hdr.addr3, sdata->u.mgd.bssid, ETH_ALEN);
2017 hdrlen = 24;
2018 } else if (sdata->u.mgd.use_4addr &&
2019 cpu_to_be16(ethertype) != sdata->control_port_protocol) {
2020 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
2021 IEEE80211_FCTL_TODS);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002022 /* RA TA DA SA */
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002023 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01002024 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002025 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2026 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2027 hdrlen = 30;
2028 } else {
2029 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
2030 /* BSSID SA DA */
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002031 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002032 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2033 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2034 hdrlen = 24;
2035 }
Johannes Berg55de9082012-07-26 17:24:39 +02002036 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02002037 if (!chanctx_conf) {
2038 ret = -ENOTCONN;
2039 goto free;
2040 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002041 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04002042 break;
Rostislav Lisovy239281f2014-11-03 10:33:19 +01002043 case NL80211_IFTYPE_OCB:
2044 /* DA SA BSSID */
2045 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2046 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2047 eth_broadcast_addr(hdr.addr3);
2048 hdrlen = 24;
2049 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02002050 if (!chanctx_conf) {
2051 ret = -ENOTCONN;
2052 goto free;
2053 }
Rostislav Lisovy239281f2014-11-03 10:33:19 +01002054 band = chanctx_conf->def.chan->band;
2055 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002056 case NL80211_IFTYPE_ADHOC:
Johannes Berge2ebc742007-07-27 15:43:22 +02002057 /* DA SA BSSID */
2058 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2059 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01002060 memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02002061 hdrlen = 24;
Johannes Berg55de9082012-07-26 17:24:39 +02002062 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02002063 if (!chanctx_conf) {
2064 ret = -ENOTCONN;
2065 goto free;
2066 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002067 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04002068 break;
2069 default:
Johannes Berg4c9451e2014-11-09 18:50:10 +02002070 ret = -EINVAL;
2071 goto free;
Johannes Berge2ebc742007-07-27 15:43:22 +02002072 }
2073
Johannes Berg7d185b82008-01-28 17:11:43 +01002074 /*
2075 * There's no need to try to look up the destination
2076 * if it is a multicast address (which can only happen
2077 * in AP mode)
2078 */
Johannes Berga729cff2011-11-06 14:13:34 +01002079 multicast = is_multicast_ether_addr(hdr.addr1);
2080 if (!multicast) {
Johannes Bergabe60632009-11-25 17:46:18 +01002081 sta = sta_info_get(sdata, hdr.addr1);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002082 if (sta) {
2083 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Johannes Berga74a8c82014-07-22 14:50:47 +02002084 wme_sta = sta->sta.wme;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002085 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002086 }
2087
Javier Cardona4777be42011-09-07 17:49:52 -07002088 /* For mesh, the use of the QoS header is mandatory */
2089 if (ieee80211_vif_is_mesh(&sdata->vif))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002090 wme_sta = true;
Javier Cardona4777be42011-09-07 17:49:52 -07002091
Johannes Berg3434fbd2008-05-03 00:59:37 +02002092 /* receiver and we are QoS enabled, use a QoS type frame */
Johannes Berg32c50572012-03-28 11:04:29 +02002093 if (wme_sta && local->hw.queues >= IEEE80211_NUM_ACS) {
Harvey Harrison065e96052008-06-22 16:45:27 -07002094 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002095 hdrlen += 2;
2096 }
2097
2098 /*
Johannes Berg238814f2008-01-28 17:19:37 +01002099 * Drop unicast frames to unauthorised stations unless they are
2100 * EAPOL frames from the local station.
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002101 */
Johannes Berg55182e42011-10-12 17:28:21 +02002102 if (unlikely(!ieee80211_vif_is_mesh(&sdata->vif) &&
Rostislav Lisovy239281f2014-11-03 10:33:19 +01002103 (sdata->vif.type != NL80211_IFTYPE_OCB) &&
Sergey Ryazanova6ececf2013-08-30 01:35:09 +04002104 !multicast && !authorized &&
Johannes Berg55182e42011-10-12 17:28:21 +02002105 (cpu_to_be16(ethertype) != sdata->control_port_protocol ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002106 !ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN)))) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002107#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002108 net_info_ratelimited("%s: dropped frame to %pM (unauthorized port)\n",
Johannes Berg4c9451e2014-11-09 18:50:10 +02002109 sdata->name, hdr.addr1);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002110#endif
2111
2112 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
2113
Johannes Berg4c9451e2014-11-09 18:50:10 +02002114 ret = -EPERM;
2115 goto free;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002116 }
2117
Johannes Berga729cff2011-11-06 14:13:34 +01002118 if (unlikely(!multicast && skb->sk &&
2119 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS)) {
Alexander Duyckbf7fa552014-09-10 18:05:42 -04002120 struct sk_buff *ack_skb = skb_clone_sk(skb);
Johannes Berga729cff2011-11-06 14:13:34 +01002121
Alexander Duyckbf7fa552014-09-10 18:05:42 -04002122 if (ack_skb) {
Johannes Berga729cff2011-11-06 14:13:34 +01002123 unsigned long flags;
Tejun Heo9475af62013-02-27 17:04:59 -08002124 int id;
Johannes Berga729cff2011-11-06 14:13:34 +01002125
2126 spin_lock_irqsave(&local->ack_status_lock, flags);
Alexander Duyckbf7fa552014-09-10 18:05:42 -04002127 id = idr_alloc(&local->ack_status_frames, ack_skb,
Tejun Heo9475af62013-02-27 17:04:59 -08002128 1, 0x10000, GFP_ATOMIC);
Johannes Berga729cff2011-11-06 14:13:34 +01002129 spin_unlock_irqrestore(&local->ack_status_lock, flags);
2130
Tejun Heo9475af62013-02-27 17:04:59 -08002131 if (id >= 0) {
Johannes Berga729cff2011-11-06 14:13:34 +01002132 info_id = id;
2133 info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
Johannes Berga729cff2011-11-06 14:13:34 +01002134 } else {
Alexander Duyckbf7fa552014-09-10 18:05:42 -04002135 kfree_skb(ack_skb);
Johannes Berga729cff2011-11-06 14:13:34 +01002136 }
Johannes Berga729cff2011-11-06 14:13:34 +01002137 }
2138 }
2139
Helmut Schaa7e244702010-12-02 18:44:09 +01002140 /*
2141 * If the skb is shared we need to obtain our own copy.
2142 */
2143 if (skb_shared(skb)) {
Johannes Berga729cff2011-11-06 14:13:34 +01002144 struct sk_buff *tmp_skb = skb;
2145
2146 /* can't happen -- skb is a clone if info_id != 0 */
2147 WARN_ON(info_id);
2148
Felix Fietkauf8a0a782010-12-18 19:30:50 +01002149 skb = skb_clone(skb, GFP_ATOMIC);
Helmut Schaa7e244702010-12-02 18:44:09 +01002150 kfree_skb(tmp_skb);
2151
Johannes Berg4c9451e2014-11-09 18:50:10 +02002152 if (!skb) {
2153 ret = -ENOMEM;
2154 goto free;
2155 }
Helmut Schaa7e244702010-12-02 18:44:09 +01002156 }
2157
Harvey Harrison065e96052008-06-22 16:45:27 -07002158 hdr.frame_control = fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02002159 hdr.duration_id = 0;
2160 hdr.seq_ctrl = 0;
2161
2162 skip_header_bytes = ETH_HLEN;
2163 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
2164 encaps_data = bridge_tunnel_header;
2165 encaps_len = sizeof(bridge_tunnel_header);
2166 skip_header_bytes -= 2;
Simon Hormane5c5d222013-03-28 13:38:25 +09002167 } else if (ethertype >= ETH_P_802_3_MIN) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002168 encaps_data = rfc1042_header;
2169 encaps_len = sizeof(rfc1042_header);
2170 skip_header_bytes -= 2;
2171 } else {
2172 encaps_data = NULL;
2173 encaps_len = 0;
2174 }
2175
Helmut Schaa7e244702010-12-02 18:44:09 +01002176 nh_pos = skb_network_header(skb) - skb->data;
2177 h_pos = skb_transport_header(skb) - skb->data;
2178
Johannes Berge2ebc742007-07-27 15:43:22 +02002179 skb_pull(skb, skip_header_bytes);
2180 nh_pos -= skip_header_bytes;
2181 h_pos -= skip_header_bytes;
2182
Johannes Berg23c07522008-05-29 10:38:53 +02002183 head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002184
Johannes Berg23c07522008-05-29 10:38:53 +02002185 /*
2186 * So we need to modify the skb header and hence need a copy of
2187 * that. The head_need variable above doesn't, so far, include
2188 * the needed header space that we don't need right away. If we
2189 * can, then we don't reallocate right now but only after the
2190 * frame arrives at the master device (if it does...)
2191 *
2192 * If we cannot, however, then we will reallocate to include all
2193 * the ever needed space. Also, if we need to reallocate it anyway,
2194 * make it big enough for everything we may ever need.
2195 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002196
David S. Miller3a5be7d2008-06-18 01:19:51 -07002197 if (head_need > 0 || skb_cloned(skb)) {
Max Stepanov2475b1cc2013-03-24 14:23:27 +02002198 head_need += sdata->encrypt_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02002199 head_need += local->tx_headroom;
2200 head_need = max_t(int, 0, head_need);
Felix Fietkauc3e77242012-10-08 14:39:33 +02002201 if (ieee80211_skb_resize(sdata, skb, head_need, true)) {
2202 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg1c963be2012-11-07 14:02:30 +01002203 skb = NULL;
Johannes Berg4c9451e2014-11-09 18:50:10 +02002204 return ERR_PTR(-ENOMEM);
Felix Fietkauc3e77242012-10-08 14:39:33 +02002205 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002206 }
2207
2208 if (encaps_data) {
2209 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
2210 nh_pos += encaps_len;
2211 h_pos += encaps_len;
2212 }
Johannes Bergc29b9b92007-09-14 11:10:24 -04002213
Yuri Ershove4ab7eb2010-06-29 15:08:06 +04002214#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002215 if (meshhdrlen > 0) {
2216 memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
2217 nh_pos += meshhdrlen;
2218 h_pos += meshhdrlen;
2219 }
Yuri Ershove4ab7eb2010-06-29 15:08:06 +04002220#endif
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002221
Harvey Harrison065e96052008-06-22 16:45:27 -07002222 if (ieee80211_is_data_qos(fc)) {
Johannes Bergc29b9b92007-09-14 11:10:24 -04002223 __le16 *qos_control;
2224
Weilong Chenf359d3f2013-12-18 15:44:16 +08002225 qos_control = (__le16 *) skb_push(skb, 2);
Johannes Bergc29b9b92007-09-14 11:10:24 -04002226 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
2227 /*
2228 * Maybe we could actually set some fields here, for now just
2229 * initialise to zero to indicate no special operation.
2230 */
2231 *qos_control = 0;
2232 } else
2233 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
2234
Johannes Berge2ebc742007-07-27 15:43:22 +02002235 nh_pos += hdrlen;
2236 h_pos += hdrlen;
2237
Johannes Berge2ebc742007-07-27 15:43:22 +02002238 /* Update skb pointers to various headers since this modified frame
2239 * is going to go through Linux networking code that may potentially
2240 * need things like pointer to IP header. */
2241 skb_set_mac_header(skb, 0);
2242 skb_set_network_header(skb, nh_pos);
2243 skb_set_transport_header(skb, h_pos);
2244
Felix Fietkau489ee912010-12-18 19:30:48 +01002245 info = IEEE80211_SKB_CB(skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002246 memset(info, 0, sizeof(*info));
2247
Johannes Berga729cff2011-11-06 14:13:34 +01002248 info->flags = info_flags;
2249 info->ack_frame_id = info_id;
Johannes Berg73c4e192014-11-09 18:50:09 +02002250 info->band = band;
Johannes Berga729cff2011-11-06 14:13:34 +01002251
Johannes Berg4c9451e2014-11-09 18:50:10 +02002252 return skb;
2253 free:
2254 kfree_skb(skb);
2255 return ERR_PTR(ret);
Johannes Berge2ebc742007-07-27 15:43:22 +02002256}
2257
Johannes Berg4c9451e2014-11-09 18:50:10 +02002258void __ieee80211_subif_start_xmit(struct sk_buff *skb,
2259 struct net_device *dev,
2260 u32 info_flags)
2261{
2262 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2263 struct ieee80211_local *local = sdata->local;
2264
2265 if (unlikely(skb->len < ETH_HLEN)) {
2266 kfree_skb(skb);
2267 return;
2268 }
2269
2270 rcu_read_lock();
2271
2272 /* Measure frame arrival for Tx latency statistics calculation */
2273 ieee80211_tx_latency_start_msrmnt(local, skb);
2274
2275 skb = ieee80211_build_hdr(sdata, skb, info_flags);
2276 if (IS_ERR(skb))
2277 goto out;
2278
2279 dev->stats.tx_packets++;
2280 dev->stats.tx_bytes += skb->len;
2281 dev->trans_start = jiffies;
2282
2283 ieee80211_xmit(sdata, skb);
2284 out:
2285 rcu_read_unlock();
2286}
2287
2288/**
2289 * ieee80211_subif_start_xmit - netif start_xmit function for 802.3 vifs
2290 * @skb: packet to be sent
2291 * @dev: incoming interface
2292 *
2293 * On failure skb will be freed.
2294 */
Liad Kaufman24d342c2014-11-09 18:50:07 +02002295netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb,
2296 struct net_device *dev)
2297{
2298 __ieee80211_subif_start_xmit(skb, dev, 0);
2299 return NETDEV_TX_OK;
2300}
Johannes Berge2ebc742007-07-27 15:43:22 +02002301
Johannes Berg7528ec52014-11-09 18:50:11 +02002302struct sk_buff *
2303ieee80211_build_data_template(struct ieee80211_sub_if_data *sdata,
2304 struct sk_buff *skb, u32 info_flags)
2305{
2306 struct ieee80211_hdr *hdr;
2307 struct ieee80211_tx_data tx = {
2308 .local = sdata->local,
2309 .sdata = sdata,
2310 };
2311
2312 rcu_read_lock();
2313
2314 skb = ieee80211_build_hdr(sdata, skb, info_flags);
2315 if (IS_ERR(skb))
2316 goto out;
2317
2318 hdr = (void *)skb->data;
2319 tx.sta = sta_info_get(sdata, hdr->addr1);
2320 tx.skb = skb;
2321
2322 if (ieee80211_tx_h_select_key(&tx) != TX_CONTINUE) {
2323 rcu_read_unlock();
2324 kfree_skb(skb);
2325 return ERR_PTR(-EINVAL);
2326 }
2327
2328out:
2329 rcu_read_unlock();
2330 return skb;
2331}
2332
Johannes Berge2530082008-05-17 00:57:14 +02002333/*
2334 * ieee80211_clear_tx_pending may not be called in a context where
2335 * it is possible that it packets could come in again.
2336 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002337void ieee80211_clear_tx_pending(struct ieee80211_local *local)
2338{
Felix Fietkau1f98ab72012-11-10 03:44:14 +01002339 struct sk_buff *skb;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01002340 int i;
Johannes Berge2ebc742007-07-27 15:43:22 +02002341
Felix Fietkau1f98ab72012-11-10 03:44:14 +01002342 for (i = 0; i < local->hw.queues; i++) {
2343 while ((skb = skb_dequeue(&local->pending[i])) != NULL)
2344 ieee80211_free_txskb(&local->hw, skb);
2345 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002346}
2347
Johannes Berg7bb45682011-02-24 14:42:06 +01002348/*
2349 * Returns false if the frame couldn't be transmitted but was queued instead,
2350 * which in this case means re-queued -- take as an indication to stop sending
2351 * more pending frames.
2352 */
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002353static bool ieee80211_tx_pending_skb(struct ieee80211_local *local,
2354 struct sk_buff *skb)
2355{
2356 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2357 struct ieee80211_sub_if_data *sdata;
2358 struct sta_info *sta;
2359 struct ieee80211_hdr *hdr;
Johannes Berg7bb45682011-02-24 14:42:06 +01002360 bool result;
Johannes Berg55de9082012-07-26 17:24:39 +02002361 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002362
Johannes Berg5061b0c2009-07-14 00:33:34 +02002363 sdata = vif_to_sdata(info->control.vif);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002364
2365 if (info->flags & IEEE80211_TX_INTFL_NEED_TXPROCESSING) {
Johannes Berg55de9082012-07-26 17:24:39 +02002366 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2367 if (unlikely(!chanctx_conf)) {
2368 dev_kfree_skb(skb);
2369 return true;
2370 }
Johannes Berg73c4e192014-11-09 18:50:09 +02002371 info->band = chanctx_conf->def.chan->band;
2372 result = ieee80211_tx(sdata, skb, true);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002373 } else {
Johannes Berg252b86c2011-11-16 15:28:55 +01002374 struct sk_buff_head skbs;
2375
2376 __skb_queue_head_init(&skbs);
2377 __skb_queue_tail(&skbs, skb);
2378
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002379 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Bergabe60632009-11-25 17:46:18 +01002380 sta = sta_info_get(sdata, hdr->addr1);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002381
Johannes Berg74e4dbf2011-11-16 15:28:57 +01002382 result = __ieee80211_tx(local, &skbs, skb->len, sta, true);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002383 }
2384
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002385 return result;
2386}
2387
Johannes Berge2530082008-05-17 00:57:14 +02002388/*
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002389 * Transmit all pending packets. Called from tasklet.
Johannes Berge2530082008-05-17 00:57:14 +02002390 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002391void ieee80211_tx_pending(unsigned long data)
2392{
2393 struct ieee80211_local *local = (struct ieee80211_local *)data;
Johannes Berg2a577d92009-03-23 17:28:37 +01002394 unsigned long flags;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002395 int i;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002396 bool txok;
Johannes Berge2ebc742007-07-27 15:43:22 +02002397
Johannes Bergf0e72852009-03-23 17:28:36 +01002398 rcu_read_lock();
Johannes Berg2a577d92009-03-23 17:28:37 +01002399
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002400 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Berg176be722009-03-12 23:49:28 +01002401 for (i = 0; i < local->hw.queues; i++) {
Johannes Berg2a577d92009-03-23 17:28:37 +01002402 /*
2403 * If queue is stopped by something other than due to pending
2404 * frames, or we have no pending frames, proceed to next queue.
2405 */
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002406 if (local->queue_stop_reasons[i] ||
Johannes Berg2a577d92009-03-23 17:28:37 +01002407 skb_queue_empty(&local->pending[i]))
Johannes Berge2ebc742007-07-27 15:43:22 +02002408 continue;
Johannes Berge2530082008-05-17 00:57:14 +02002409
Johannes Berg2a577d92009-03-23 17:28:37 +01002410 while (!skb_queue_empty(&local->pending[i])) {
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002411 struct sk_buff *skb = __skb_dequeue(&local->pending[i]);
Johannes Berg5061b0c2009-07-14 00:33:34 +02002412 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg5061b0c2009-07-14 00:33:34 +02002413
Johannes Berga7bc3762009-07-27 10:33:31 +02002414 if (WARN_ON(!info->control.vif)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02002415 ieee80211_free_txskb(&local->hw, skb);
Johannes Berga7bc3762009-07-27 10:33:31 +02002416 continue;
2417 }
2418
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002419 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
2420 flags);
Johannes Berg2a577d92009-03-23 17:28:37 +01002421
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002422 txok = ieee80211_tx_pending_skb(local, skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002423 spin_lock_irqsave(&local->queue_stop_reason_lock,
2424 flags);
2425 if (!txok)
Johannes Berg2a577d92009-03-23 17:28:37 +01002426 break;
Johannes Berge2ebc742007-07-27 15:43:22 +02002427 }
Johannes Berg7236fe22010-03-22 13:42:43 -07002428
2429 if (skb_queue_empty(&local->pending[i]))
Johannes Berg3a25a8c2012-04-03 16:28:50 +02002430 ieee80211_propagate_queue_wake(local, i);
Johannes Berge2ebc742007-07-27 15:43:22 +02002431 }
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002432 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Johannes Berg2a577d92009-03-23 17:28:37 +01002433
Johannes Bergf0e72852009-03-23 17:28:36 +01002434 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002435}
2436
2437/* functions for drivers to get certain frames */
2438
Marco Porscheac70c12013-01-07 16:04:50 +01002439static void __ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002440 struct ps_data *ps, struct sk_buff *skb,
2441 bool is_template)
Johannes Berge2ebc742007-07-27 15:43:22 +02002442{
2443 u8 *pos, *tim;
2444 int aid0 = 0;
2445 int i, have_bits = 0, n1, n2;
2446
2447 /* Generate bitmap for TIM only if there are any STAs in power save
2448 * mode. */
Marco Porschd012a602012-10-10 12:39:50 -07002449 if (atomic_read(&ps->num_sta_ps) > 0)
Johannes Berge2ebc742007-07-27 15:43:22 +02002450 /* in the hope that this is faster than
2451 * checking byte-for-byte */
Weilong Chenf359d3f2013-12-18 15:44:16 +08002452 have_bits = !bitmap_empty((unsigned long *)ps->tim,
Johannes Berge2ebc742007-07-27 15:43:22 +02002453 IEEE80211_MAX_AID+1);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002454 if (!is_template) {
2455 if (ps->dtim_count == 0)
2456 ps->dtim_count = sdata->vif.bss_conf.dtim_period - 1;
2457 else
2458 ps->dtim_count--;
2459 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002460
2461 tim = pos = (u8 *) skb_put(skb, 6);
2462 *pos++ = WLAN_EID_TIM;
2463 *pos++ = 4;
Marco Porschd012a602012-10-10 12:39:50 -07002464 *pos++ = ps->dtim_count;
Johannes Berg88600202012-02-13 15:17:18 +01002465 *pos++ = sdata->vif.bss_conf.dtim_period;
Johannes Berge2ebc742007-07-27 15:43:22 +02002466
Marco Porschd012a602012-10-10 12:39:50 -07002467 if (ps->dtim_count == 0 && !skb_queue_empty(&ps->bc_buf))
Johannes Berge2ebc742007-07-27 15:43:22 +02002468 aid0 = 1;
2469
Marco Porschd012a602012-10-10 12:39:50 -07002470 ps->dtim_bc_mc = aid0 == 1;
Christian Lamparter512119b2011-01-31 20:48:44 +02002471
Johannes Berge2ebc742007-07-27 15:43:22 +02002472 if (have_bits) {
2473 /* Find largest even number N1 so that bits numbered 1 through
2474 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
2475 * (N2 + 1) x 8 through 2007 are 0. */
2476 n1 = 0;
2477 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
Marco Porschd012a602012-10-10 12:39:50 -07002478 if (ps->tim[i]) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002479 n1 = i & 0xfe;
2480 break;
2481 }
2482 }
2483 n2 = n1;
2484 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
Marco Porschd012a602012-10-10 12:39:50 -07002485 if (ps->tim[i]) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002486 n2 = i;
2487 break;
2488 }
2489 }
2490
2491 /* Bitmap control */
2492 *pos++ = n1 | aid0;
2493 /* Part Virt Bitmap */
Eliad Peller5220da32011-11-24 16:50:00 +02002494 skb_put(skb, n2 - n1);
Marco Porschd012a602012-10-10 12:39:50 -07002495 memcpy(pos, ps->tim + n1, n2 - n1 + 1);
Johannes Berge2ebc742007-07-27 15:43:22 +02002496
2497 tim[1] = n2 - n1 + 4;
Johannes Berge2ebc742007-07-27 15:43:22 +02002498 } else {
2499 *pos++ = aid0; /* Bitmap control */
2500 *pos++ = 0; /* Part Virt Bitmap */
2501 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002502}
2503
Marco Porscheac70c12013-01-07 16:04:50 +01002504static int ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002505 struct ps_data *ps, struct sk_buff *skb,
2506 bool is_template)
Marco Porscheac70c12013-01-07 16:04:50 +01002507{
2508 struct ieee80211_local *local = sdata->local;
2509
2510 /*
2511 * Not very nice, but we want to allow the driver to call
2512 * ieee80211_beacon_get() as a response to the set_tim()
2513 * callback. That, however, is already invoked under the
2514 * sta_lock to guarantee consistent and race-free update
2515 * of the tim bitmap in mac80211 and the driver.
2516 */
2517 if (local->tim_in_locked_section) {
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002518 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
Marco Porscheac70c12013-01-07 16:04:50 +01002519 } else {
Johannes Berg1b917312013-02-22 12:55:01 +01002520 spin_lock_bh(&local->tim_lock);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002521 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
Johannes Berg1b917312013-02-22 12:55:01 +01002522 spin_unlock_bh(&local->tim_lock);
Marco Porscheac70c12013-01-07 16:04:50 +01002523 }
2524
2525 return 0;
2526}
2527
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002528static void ieee80211_set_csa(struct ieee80211_sub_if_data *sdata,
2529 struct beacon_data *beacon)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002530{
2531 struct probe_resp *resp;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002532 u8 *beacon_data;
2533 size_t beacon_data_len;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002534 int i;
Michal Kazioraf296bd2014-06-05 14:21:36 +02002535 u8 count = beacon->csa_current_counter;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002536
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002537 switch (sdata->vif.type) {
2538 case NL80211_IFTYPE_AP:
2539 beacon_data = beacon->tail;
2540 beacon_data_len = beacon->tail_len;
2541 break;
2542 case NL80211_IFTYPE_ADHOC:
2543 beacon_data = beacon->head;
2544 beacon_data_len = beacon->head_len;
2545 break;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002546 case NL80211_IFTYPE_MESH_POINT:
2547 beacon_data = beacon->head;
2548 beacon_data_len = beacon->head_len;
2549 break;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002550 default:
2551 return;
2552 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002553
Michal Kazioraf296bd2014-06-05 14:21:36 +02002554 rcu_read_lock();
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002555 for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; ++i) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02002556 resp = rcu_dereference(sdata->u.ap.probe_resp);
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002557
Michal Kazioraf296bd2014-06-05 14:21:36 +02002558 if (beacon->csa_counter_offsets[i]) {
2559 if (WARN_ON_ONCE(beacon->csa_counter_offsets[i] >=
2560 beacon_data_len)) {
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002561 rcu_read_unlock();
2562 return;
2563 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02002564
2565 beacon_data[beacon->csa_counter_offsets[i]] = count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002566 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02002567
2568 if (sdata->vif.type == NL80211_IFTYPE_AP && resp)
2569 resp->data[resp->csa_counter_offsets[i]] = count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002570 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02002571 rcu_read_unlock();
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002572}
2573
2574u8 ieee80211_csa_update_counter(struct ieee80211_vif *vif)
2575{
2576 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002577 struct beacon_data *beacon = NULL;
2578 u8 count = 0;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002579
Michal Kazioraf296bd2014-06-05 14:21:36 +02002580 rcu_read_lock();
2581
2582 if (sdata->vif.type == NL80211_IFTYPE_AP)
2583 beacon = rcu_dereference(sdata->u.ap.beacon);
2584 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
2585 beacon = rcu_dereference(sdata->u.ibss.presp);
2586 else if (ieee80211_vif_is_mesh(&sdata->vif))
2587 beacon = rcu_dereference(sdata->u.mesh.beacon);
2588
2589 if (!beacon)
2590 goto unlock;
2591
2592 beacon->csa_current_counter--;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002593
2594 /* the counter should never reach 0 */
Michal Kazioraf296bd2014-06-05 14:21:36 +02002595 WARN_ON_ONCE(!beacon->csa_current_counter);
2596 count = beacon->csa_current_counter;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002597
Michal Kazioraf296bd2014-06-05 14:21:36 +02002598unlock:
2599 rcu_read_unlock();
2600 return count;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002601}
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002602EXPORT_SYMBOL(ieee80211_csa_update_counter);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002603
2604bool ieee80211_csa_is_complete(struct ieee80211_vif *vif)
2605{
2606 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2607 struct beacon_data *beacon = NULL;
2608 u8 *beacon_data;
2609 size_t beacon_data_len;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002610 int ret = false;
2611
2612 if (!ieee80211_sdata_running(sdata))
2613 return false;
2614
2615 rcu_read_lock();
2616 if (vif->type == NL80211_IFTYPE_AP) {
2617 struct ieee80211_if_ap *ap = &sdata->u.ap;
2618
2619 beacon = rcu_dereference(ap->beacon);
2620 if (WARN_ON(!beacon || !beacon->tail))
2621 goto out;
2622 beacon_data = beacon->tail;
2623 beacon_data_len = beacon->tail_len;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002624 } else if (vif->type == NL80211_IFTYPE_ADHOC) {
2625 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
2626
2627 beacon = rcu_dereference(ifibss->presp);
2628 if (!beacon)
2629 goto out;
2630
2631 beacon_data = beacon->head;
2632 beacon_data_len = beacon->head_len;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002633 } else if (vif->type == NL80211_IFTYPE_MESH_POINT) {
2634 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
2635
2636 beacon = rcu_dereference(ifmsh->beacon);
2637 if (!beacon)
2638 goto out;
2639
2640 beacon_data = beacon->head;
2641 beacon_data_len = beacon->head_len;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002642 } else {
2643 WARN_ON(1);
2644 goto out;
2645 }
2646
Michal Kazior10d78f22014-06-05 14:21:37 +02002647 if (!beacon->csa_counter_offsets[0])
2648 goto out;
2649
Michal Kazioraf296bd2014-06-05 14:21:36 +02002650 if (WARN_ON_ONCE(beacon->csa_counter_offsets[0] > beacon_data_len))
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002651 goto out;
2652
Michal Kazioraf296bd2014-06-05 14:21:36 +02002653 if (beacon_data[beacon->csa_counter_offsets[0]] == 1)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002654 ret = true;
2655 out:
2656 rcu_read_unlock();
2657
2658 return ret;
2659}
2660EXPORT_SYMBOL(ieee80211_csa_is_complete);
2661
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002662static struct sk_buff *
2663__ieee80211_beacon_get(struct ieee80211_hw *hw,
2664 struct ieee80211_vif *vif,
2665 struct ieee80211_mutable_offsets *offs,
2666 bool is_template)
Johannes Berge2ebc742007-07-27 15:43:22 +02002667{
2668 struct ieee80211_local *local = hw_to_local(hw);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002669 struct beacon_data *beacon = NULL;
Johannes Berg9d139c82008-07-09 14:40:37 +02002670 struct sk_buff *skb = NULL;
Johannes Berge039fa42008-05-15 12:55:29 +02002671 struct ieee80211_tx_info *info;
Johannes Berge2ebc742007-07-27 15:43:22 +02002672 struct ieee80211_sub_if_data *sdata = NULL;
Johannes Berg55de9082012-07-26 17:24:39 +02002673 enum ieee80211_band band;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002674 struct ieee80211_tx_rate_control txrc;
Johannes Berg55de9082012-07-26 17:24:39 +02002675 struct ieee80211_chanctx_conf *chanctx_conf;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002676 int csa_off_base = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002677
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002678 rcu_read_lock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002679
Johannes Berg32bfd352007-12-19 01:31:26 +01002680 sdata = vif_to_sdata(vif);
Johannes Berg55de9082012-07-26 17:24:39 +02002681 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berge2ebc742007-07-27 15:43:22 +02002682
Johannes Berg55de9082012-07-26 17:24:39 +02002683 if (!ieee80211_sdata_running(sdata) || !chanctx_conf)
Felix Fietkaueb3e5542011-01-24 19:28:49 +01002684 goto out;
2685
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002686 if (offs)
2687 memset(offs, 0, sizeof(*offs));
Johannes Bergeddcbb92009-10-29 08:30:35 +01002688
Johannes Berg05c914f2008-09-11 00:01:58 +02002689 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Marco Porschd012a602012-10-10 12:39:50 -07002690 struct ieee80211_if_ap *ap = &sdata->u.ap;
Marco Porschd012a602012-10-10 12:39:50 -07002691
Michal Kazioraf296bd2014-06-05 14:21:36 +02002692 beacon = rcu_dereference(ap->beacon);
Dan Carpenter3ad97fb2011-02-07 22:03:35 +03002693 if (beacon) {
Michal Kazior10d78f22014-06-05 14:21:37 +02002694 if (beacon->csa_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002695 if (!is_template)
2696 ieee80211_csa_update_counter(vif);
2697
2698 ieee80211_set_csa(sdata, beacon);
2699 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002700
Johannes Berg902acc72008-02-23 15:17:19 +01002701 /*
2702 * headroom, head length,
2703 * tail length and maximum TIM length
2704 */
2705 skb = dev_alloc_skb(local->tx_headroom +
2706 beacon->head_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002707 beacon->tail_len + 256 +
2708 local->hw.extra_beacon_tailroom);
Johannes Berg902acc72008-02-23 15:17:19 +01002709 if (!skb)
2710 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002711
Johannes Berg902acc72008-02-23 15:17:19 +01002712 skb_reserve(skb, local->tx_headroom);
2713 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2714 beacon->head_len);
2715
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002716 ieee80211_beacon_add_tim(sdata, &ap->ps, skb,
2717 is_template);
Johannes Berg902acc72008-02-23 15:17:19 +01002718
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002719 if (offs) {
2720 offs->tim_offset = beacon->head_len;
2721 offs->tim_length = skb->len - beacon->head_len;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002722
2723 /* for AP the csa offsets are from tail */
2724 csa_off_base = skb->len;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002725 }
Johannes Bergeddcbb92009-10-29 08:30:35 +01002726
Johannes Berg902acc72008-02-23 15:17:19 +01002727 if (beacon->tail)
2728 memcpy(skb_put(skb, beacon->tail_len),
2729 beacon->tail, beacon->tail_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002730 } else
2731 goto out;
Johannes Berg05c914f2008-09-11 00:01:58 +02002732 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg46900292009-02-15 12:44:28 +01002733 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg9d139c82008-07-09 14:40:37 +02002734 struct ieee80211_hdr *hdr;
Johannes Berg902acc72008-02-23 15:17:19 +01002735
Michal Kazioraf296bd2014-06-05 14:21:36 +02002736 beacon = rcu_dereference(ifibss->presp);
2737 if (!beacon)
Johannes Berg9d139c82008-07-09 14:40:37 +02002738 goto out;
2739
Michal Kazior10d78f22014-06-05 14:21:37 +02002740 if (beacon->csa_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002741 if (!is_template)
2742 ieee80211_csa_update_counter(vif);
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002743
Michal Kazioraf296bd2014-06-05 14:21:36 +02002744 ieee80211_set_csa(sdata, beacon);
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002745 }
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002746
Michal Kazioraf296bd2014-06-05 14:21:36 +02002747 skb = dev_alloc_skb(local->tx_headroom + beacon->head_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002748 local->hw.extra_beacon_tailroom);
Johannes Berg9d139c82008-07-09 14:40:37 +02002749 if (!skb)
2750 goto out;
Johannes Bergc3ffeab2013-03-07 20:54:29 +01002751 skb_reserve(skb, local->tx_headroom);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002752 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2753 beacon->head_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002754
2755 hdr = (struct ieee80211_hdr *) skb->data;
Harvey Harrisone7827a72008-07-15 18:44:13 -07002756 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2757 IEEE80211_STYPE_BEACON);
Johannes Berg902acc72008-02-23 15:17:19 +01002758 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
Javier Cardonadbf498f2012-03-31 11:31:32 -07002759 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02002760
Michal Kazioraf296bd2014-06-05 14:21:36 +02002761 beacon = rcu_dereference(ifmsh->beacon);
2762 if (!beacon)
Johannes Bergac1bd842011-01-18 13:45:32 +01002763 goto out;
Johannes Bergac1bd842011-01-18 13:45:32 +01002764
Michal Kazior10d78f22014-06-05 14:21:37 +02002765 if (beacon->csa_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002766 if (!is_template)
2767 /* TODO: For mesh csa_counter is in TU, so
2768 * decrementing it by one isn't correct, but
2769 * for now we leave it consistent with overall
2770 * mac80211's behavior.
2771 */
2772 ieee80211_csa_update_counter(vif);
2773
Michal Kazioraf296bd2014-06-05 14:21:36 +02002774 ieee80211_set_csa(sdata, beacon);
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002775 }
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002776
Javier Cardonadbf498f2012-03-31 11:31:32 -07002777 if (ifmsh->sync_ops)
Michal Kazioraf296bd2014-06-05 14:21:36 +02002778 ifmsh->sync_ops->adjust_tbtt(sdata, beacon);
Javier Cardonadbf498f2012-03-31 11:31:32 -07002779
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -07002780 skb = dev_alloc_skb(local->tx_headroom +
Michal Kazioraf296bd2014-06-05 14:21:36 +02002781 beacon->head_len +
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002782 256 + /* TIM IE */
Michal Kazioraf296bd2014-06-05 14:21:36 +02002783 beacon->tail_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002784 local->hw.extra_beacon_tailroom);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002785 if (!skb)
2786 goto out;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08002787 skb_reserve(skb, local->tx_headroom);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002788 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2789 beacon->head_len);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002790 ieee80211_beacon_add_tim(sdata, &ifmsh->ps, skb, is_template);
2791
2792 if (offs) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02002793 offs->tim_offset = beacon->head_len;
2794 offs->tim_length = skb->len - beacon->head_len;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002795 }
2796
Michal Kazioraf296bd2014-06-05 14:21:36 +02002797 memcpy(skb_put(skb, beacon->tail_len), beacon->tail,
2798 beacon->tail_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002799 } else {
2800 WARN_ON(1);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002801 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02002802 }
2803
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002804 /* CSA offsets */
Michal Kazioraf296bd2014-06-05 14:21:36 +02002805 if (offs && beacon) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002806 int i;
2807
2808 for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; i++) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02002809 u16 csa_off = beacon->csa_counter_offsets[i];
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002810
2811 if (!csa_off)
2812 continue;
2813
2814 offs->csa_counter_offs[i] = csa_off_base + csa_off;
2815 }
2816 }
2817
Johannes Berg4bf88532012-11-09 11:39:59 +01002818 band = chanctx_conf->def.chan->band;
Johannes Berg55de9082012-07-26 17:24:39 +02002819
Johannes Berge039fa42008-05-15 12:55:29 +02002820 info = IEEE80211_SKB_CB(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002821
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002822 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002823 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Johannes Berge039fa42008-05-15 12:55:29 +02002824 info->band = band;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002825
2826 memset(&txrc, 0, sizeof(txrc));
2827 txrc.hw = hw;
Johannes Berge31583c2012-07-26 14:07:46 +02002828 txrc.sband = local->hw.wiphy->bands[band];
Jouni Malinene00cfce2009-12-29 12:59:19 +02002829 txrc.bss_conf = &sdata->vif.bss_conf;
2830 txrc.skb = skb;
2831 txrc.reported_rate.idx = -1;
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002832 txrc.rate_idx_mask = sdata->rc_rateidx_mask[band];
Johannes Berge31583c2012-07-26 14:07:46 +02002833 if (txrc.rate_idx_mask == (1 << txrc.sband->n_bitrates) - 1)
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002834 txrc.max_rate_idx = -1;
2835 else
2836 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
Felix Fietkau8f0729b2010-11-11 15:07:23 +01002837 txrc.bss = true;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002838 rate_control_get_rate(sdata, NULL, &txrc);
Johannes Berge039fa42008-05-15 12:55:29 +02002839
2840 info->control.vif = vif;
Johannes Bergf591fa52008-07-10 11:21:26 +02002841
John W. Linvillea472e712010-05-06 14:45:17 -04002842 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT |
2843 IEEE80211_TX_CTL_ASSIGN_SEQ |
2844 IEEE80211_TX_CTL_FIRST_FRAGMENT;
Johannes Berge6a98542008-10-21 12:40:02 +02002845 out:
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002846 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002847 return skb;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002848
2849}
2850
2851struct sk_buff *
2852ieee80211_beacon_get_template(struct ieee80211_hw *hw,
2853 struct ieee80211_vif *vif,
2854 struct ieee80211_mutable_offsets *offs)
2855{
2856 return __ieee80211_beacon_get(hw, vif, offs, true);
2857}
2858EXPORT_SYMBOL(ieee80211_beacon_get_template);
2859
2860struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
2861 struct ieee80211_vif *vif,
2862 u16 *tim_offset, u16 *tim_length)
2863{
2864 struct ieee80211_mutable_offsets offs = {};
2865 struct sk_buff *bcn = __ieee80211_beacon_get(hw, vif, &offs, false);
2866
2867 if (tim_offset)
2868 *tim_offset = offs.tim_offset;
2869
2870 if (tim_length)
2871 *tim_length = offs.tim_length;
2872
2873 return bcn;
Johannes Berge2ebc742007-07-27 15:43:22 +02002874}
Johannes Bergeddcbb92009-10-29 08:30:35 +01002875EXPORT_SYMBOL(ieee80211_beacon_get_tim);
Johannes Berge2ebc742007-07-27 15:43:22 +02002876
Arik Nemtsov02945822011-11-10 11:28:57 +02002877struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw,
2878 struct ieee80211_vif *vif)
2879{
2880 struct ieee80211_if_ap *ap = NULL;
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002881 struct sk_buff *skb = NULL;
2882 struct probe_resp *presp = NULL;
Arik Nemtsov02945822011-11-10 11:28:57 +02002883 struct ieee80211_hdr *hdr;
2884 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2885
2886 if (sdata->vif.type != NL80211_IFTYPE_AP)
2887 return NULL;
2888
2889 rcu_read_lock();
2890
2891 ap = &sdata->u.ap;
2892 presp = rcu_dereference(ap->probe_resp);
2893 if (!presp)
2894 goto out;
2895
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002896 skb = dev_alloc_skb(presp->len);
Arik Nemtsov02945822011-11-10 11:28:57 +02002897 if (!skb)
2898 goto out;
2899
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002900 memcpy(skb_put(skb, presp->len), presp->data, presp->len);
2901
Arik Nemtsov02945822011-11-10 11:28:57 +02002902 hdr = (struct ieee80211_hdr *) skb->data;
2903 memset(hdr->addr1, 0, sizeof(hdr->addr1));
2904
2905out:
2906 rcu_read_unlock();
2907 return skb;
2908}
2909EXPORT_SYMBOL(ieee80211_proberesp_get);
2910
Kalle Valo7044cc52010-01-05 20:16:19 +02002911struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw,
2912 struct ieee80211_vif *vif)
2913{
2914 struct ieee80211_sub_if_data *sdata;
2915 struct ieee80211_if_managed *ifmgd;
2916 struct ieee80211_pspoll *pspoll;
2917 struct ieee80211_local *local;
2918 struct sk_buff *skb;
2919
2920 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2921 return NULL;
2922
2923 sdata = vif_to_sdata(vif);
2924 ifmgd = &sdata->u.mgd;
2925 local = sdata->local;
2926
2927 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
Joe Perchesd15b8452011-08-29 14:17:31 -07002928 if (!skb)
Kalle Valo7044cc52010-01-05 20:16:19 +02002929 return NULL;
Joe Perchesd15b8452011-08-29 14:17:31 -07002930
Kalle Valo7044cc52010-01-05 20:16:19 +02002931 skb_reserve(skb, local->hw.extra_tx_headroom);
2932
2933 pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll));
2934 memset(pspoll, 0, sizeof(*pspoll));
2935 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
2936 IEEE80211_STYPE_PSPOLL);
2937 pspoll->aid = cpu_to_le16(ifmgd->aid);
2938
2939 /* aid in PS-Poll has its two MSBs each set to 1 */
2940 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
2941
2942 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
2943 memcpy(pspoll->ta, vif->addr, ETH_ALEN);
2944
2945 return skb;
2946}
2947EXPORT_SYMBOL(ieee80211_pspoll_get);
2948
2949struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw,
2950 struct ieee80211_vif *vif)
2951{
2952 struct ieee80211_hdr_3addr *nullfunc;
2953 struct ieee80211_sub_if_data *sdata;
2954 struct ieee80211_if_managed *ifmgd;
2955 struct ieee80211_local *local;
2956 struct sk_buff *skb;
2957
2958 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2959 return NULL;
2960
2961 sdata = vif_to_sdata(vif);
2962 ifmgd = &sdata->u.mgd;
2963 local = sdata->local;
2964
2965 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*nullfunc));
Joe Perchesd15b8452011-08-29 14:17:31 -07002966 if (!skb)
Kalle Valo7044cc52010-01-05 20:16:19 +02002967 return NULL;
Joe Perchesd15b8452011-08-29 14:17:31 -07002968
Kalle Valo7044cc52010-01-05 20:16:19 +02002969 skb_reserve(skb, local->hw.extra_tx_headroom);
2970
2971 nullfunc = (struct ieee80211_hdr_3addr *) skb_put(skb,
2972 sizeof(*nullfunc));
2973 memset(nullfunc, 0, sizeof(*nullfunc));
2974 nullfunc->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
2975 IEEE80211_STYPE_NULLFUNC |
2976 IEEE80211_FCTL_TODS);
2977 memcpy(nullfunc->addr1, ifmgd->bssid, ETH_ALEN);
2978 memcpy(nullfunc->addr2, vif->addr, ETH_ALEN);
2979 memcpy(nullfunc->addr3, ifmgd->bssid, ETH_ALEN);
2980
2981 return skb;
2982}
2983EXPORT_SYMBOL(ieee80211_nullfunc_get);
2984
Kalle Valo05e54ea2010-01-05 20:16:38 +02002985struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw,
Johannes Berga344d672014-06-12 22:24:31 +02002986 const u8 *src_addr,
Kalle Valo05e54ea2010-01-05 20:16:38 +02002987 const u8 *ssid, size_t ssid_len,
Johannes Bergb9a9ada2012-11-29 13:00:10 +01002988 size_t tailroom)
Kalle Valo05e54ea2010-01-05 20:16:38 +02002989{
Johannes Berga344d672014-06-12 22:24:31 +02002990 struct ieee80211_local *local = hw_to_local(hw);
Kalle Valo05e54ea2010-01-05 20:16:38 +02002991 struct ieee80211_hdr_3addr *hdr;
2992 struct sk_buff *skb;
2993 size_t ie_ssid_len;
2994 u8 *pos;
2995
Kalle Valo05e54ea2010-01-05 20:16:38 +02002996 ie_ssid_len = 2 + ssid_len;
2997
2998 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*hdr) +
Johannes Bergb9a9ada2012-11-29 13:00:10 +01002999 ie_ssid_len + tailroom);
Joe Perchesd15b8452011-08-29 14:17:31 -07003000 if (!skb)
Kalle Valo05e54ea2010-01-05 20:16:38 +02003001 return NULL;
Kalle Valo05e54ea2010-01-05 20:16:38 +02003002
3003 skb_reserve(skb, local->hw.extra_tx_headroom);
3004
3005 hdr = (struct ieee80211_hdr_3addr *) skb_put(skb, sizeof(*hdr));
3006 memset(hdr, 0, sizeof(*hdr));
3007 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
3008 IEEE80211_STYPE_PROBE_REQ);
Johannes Berge83e6542012-07-13 16:23:07 +02003009 eth_broadcast_addr(hdr->addr1);
Johannes Berga344d672014-06-12 22:24:31 +02003010 memcpy(hdr->addr2, src_addr, ETH_ALEN);
Johannes Berge83e6542012-07-13 16:23:07 +02003011 eth_broadcast_addr(hdr->addr3);
Kalle Valo05e54ea2010-01-05 20:16:38 +02003012
3013 pos = skb_put(skb, ie_ssid_len);
3014 *pos++ = WLAN_EID_SSID;
3015 *pos++ = ssid_len;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02003016 if (ssid_len)
Kalle Valo05e54ea2010-01-05 20:16:38 +02003017 memcpy(pos, ssid, ssid_len);
3018 pos += ssid_len;
3019
Kalle Valo05e54ea2010-01-05 20:16:38 +02003020 return skb;
3021}
3022EXPORT_SYMBOL(ieee80211_probereq_get);
3023
Johannes Berg32bfd352007-12-19 01:31:26 +01003024void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02003025 const void *frame, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +02003026 const struct ieee80211_tx_info *frame_txctl,
Johannes Berge2ebc742007-07-27 15:43:22 +02003027 struct ieee80211_rts *rts)
3028{
3029 const struct ieee80211_hdr *hdr = frame;
Johannes Berge2ebc742007-07-27 15:43:22 +02003030
Harvey Harrison065e96052008-06-22 16:45:27 -07003031 rts->frame_control =
3032 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
Johannes Berg32bfd352007-12-19 01:31:26 +01003033 rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
3034 frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02003035 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
3036 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
3037}
3038EXPORT_SYMBOL(ieee80211_rts_get);
3039
Johannes Berg32bfd352007-12-19 01:31:26 +01003040void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02003041 const void *frame, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +02003042 const struct ieee80211_tx_info *frame_txctl,
Johannes Berge2ebc742007-07-27 15:43:22 +02003043 struct ieee80211_cts *cts)
3044{
3045 const struct ieee80211_hdr *hdr = frame;
Johannes Berge2ebc742007-07-27 15:43:22 +02003046
Harvey Harrison065e96052008-06-22 16:45:27 -07003047 cts->frame_control =
3048 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
Johannes Berg32bfd352007-12-19 01:31:26 +01003049 cts->duration = ieee80211_ctstoself_duration(hw, vif,
3050 frame_len, frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02003051 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
3052}
3053EXPORT_SYMBOL(ieee80211_ctstoself_get);
3054
3055struct sk_buff *
Johannes Berg32bfd352007-12-19 01:31:26 +01003056ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
Johannes Berge039fa42008-05-15 12:55:29 +02003057 struct ieee80211_vif *vif)
Johannes Berge2ebc742007-07-27 15:43:22 +02003058{
3059 struct ieee80211_local *local = hw_to_local(hw);
Tomas Winkler747cf5e2008-05-27 17:50:51 +03003060 struct sk_buff *skb = NULL;
Johannes Berg5cf121c2008-02-25 16:27:43 +01003061 struct ieee80211_tx_data tx;
Johannes Berge2ebc742007-07-27 15:43:22 +02003062 struct ieee80211_sub_if_data *sdata;
Marco Porschd012a602012-10-10 12:39:50 -07003063 struct ps_data *ps;
Johannes Berge039fa42008-05-15 12:55:29 +02003064 struct ieee80211_tx_info *info;
Johannes Berg55de9082012-07-26 17:24:39 +02003065 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berge2ebc742007-07-27 15:43:22 +02003066
Johannes Berg32bfd352007-12-19 01:31:26 +01003067 sdata = vif_to_sdata(vif);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01003068
Johannes Berg5dfdaf52007-12-19 02:03:33 +01003069 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02003070 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01003071
Marco Porschd012a602012-10-10 12:39:50 -07003072 if (!chanctx_conf)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03003073 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01003074
Marco Porschd012a602012-10-10 12:39:50 -07003075 if (sdata->vif.type == NL80211_IFTYPE_AP) {
3076 struct beacon_data *beacon =
3077 rcu_dereference(sdata->u.ap.beacon);
3078
3079 if (!beacon || !beacon->head)
3080 goto out;
3081
3082 ps = &sdata->u.ap.ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01003083 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
3084 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -07003085 } else {
3086 goto out;
3087 }
3088
3089 if (ps->dtim_count != 0 || !ps->dtim_bc_mc)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03003090 goto out; /* send buffered bc/mc only after DTIM beacon */
Johannes Berge039fa42008-05-15 12:55:29 +02003091
Johannes Berge2ebc742007-07-27 15:43:22 +02003092 while (1) {
Marco Porschd012a602012-10-10 12:39:50 -07003093 skb = skb_dequeue(&ps->bc_buf);
Johannes Berge2ebc742007-07-27 15:43:22 +02003094 if (!skb)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03003095 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02003096 local->total_ps_buffered--;
3097
Marco Porschd012a602012-10-10 12:39:50 -07003098 if (!skb_queue_empty(&ps->bc_buf) && skb->len >= 2) {
Johannes Berge2ebc742007-07-27 15:43:22 +02003099 struct ieee80211_hdr *hdr =
3100 (struct ieee80211_hdr *) skb->data;
3101 /* more buffered multicast/broadcast frames ==> set
3102 * MoreData flag in IEEE 802.11 header to inform PS
3103 * STAs */
3104 hdr->frame_control |=
3105 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
3106 }
3107
Michael Braun112c44b2014-03-06 15:08:43 +01003108 if (sdata->vif.type == NL80211_IFTYPE_AP)
Marco Porsch7cbf9d02013-03-01 16:01:18 +01003109 sdata = IEEE80211_DEV_TO_SUB_IF(skb->dev);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003110 if (!ieee80211_tx_prepare(sdata, &tx, skb))
Johannes Berge2ebc742007-07-27 15:43:22 +02003111 break;
3112 dev_kfree_skb_any(skb);
3113 }
Johannes Berge039fa42008-05-15 12:55:29 +02003114
3115 info = IEEE80211_SKB_CB(skb);
3116
Johannes Berg5cf121c2008-02-25 16:27:43 +01003117 tx.flags |= IEEE80211_TX_PS_BUFFERED;
Johannes Berg4bf88532012-11-09 11:39:59 +01003118 info->band = chanctx_conf->def.chan->band;
Johannes Berge2ebc742007-07-27 15:43:22 +02003119
Johannes Berg97b045d2008-06-20 01:22:30 +02003120 if (invoke_tx_handlers(&tx))
Johannes Berge2ebc742007-07-27 15:43:22 +02003121 skb = NULL;
Johannes Berg97b045d2008-06-20 01:22:30 +02003122 out:
Johannes Bergd0709a62008-02-25 16:27:46 +01003123 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02003124
3125 return skb;
3126}
3127EXPORT_SYMBOL(ieee80211_get_buffered_bc);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003128
Liad Kaufmanb6da9112014-11-19 13:47:38 +02003129int ieee80211_reserve_tid(struct ieee80211_sta *pubsta, u8 tid)
3130{
3131 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
3132 struct ieee80211_sub_if_data *sdata = sta->sdata;
3133 struct ieee80211_local *local = sdata->local;
3134 int ret;
3135 u32 queues;
3136
3137 lockdep_assert_held(&local->sta_mtx);
3138
3139 /* only some cases are supported right now */
3140 switch (sdata->vif.type) {
3141 case NL80211_IFTYPE_STATION:
3142 case NL80211_IFTYPE_AP:
3143 case NL80211_IFTYPE_AP_VLAN:
3144 break;
3145 default:
3146 WARN_ON(1);
3147 return -EINVAL;
3148 }
3149
3150 if (WARN_ON(tid >= IEEE80211_NUM_UPS))
3151 return -EINVAL;
3152
3153 if (sta->reserved_tid == tid) {
3154 ret = 0;
3155 goto out;
3156 }
3157
3158 if (sta->reserved_tid != IEEE80211_TID_UNRESERVED) {
3159 sdata_err(sdata, "TID reservation already active\n");
3160 ret = -EALREADY;
3161 goto out;
3162 }
3163
3164 ieee80211_stop_vif_queues(sdata->local, sdata,
3165 IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
3166
3167 synchronize_net();
3168
3169 /* Tear down BA sessions so we stop aggregating on this TID */
3170 if (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION) {
3171 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
3172 __ieee80211_stop_tx_ba_session(sta, tid,
3173 AGG_STOP_LOCAL_REQUEST);
3174 }
3175
3176 queues = BIT(sdata->vif.hw_queue[ieee802_1d_to_ac[tid]]);
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +02003177 __ieee80211_flush_queues(local, sdata, queues, false);
Liad Kaufmanb6da9112014-11-19 13:47:38 +02003178
3179 sta->reserved_tid = tid;
3180
3181 ieee80211_wake_vif_queues(local, sdata,
3182 IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
3183
3184 if (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION)
3185 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
3186
3187 ret = 0;
3188 out:
3189 return ret;
3190}
3191EXPORT_SYMBOL(ieee80211_reserve_tid);
3192
3193void ieee80211_unreserve_tid(struct ieee80211_sta *pubsta, u8 tid)
3194{
3195 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
3196 struct ieee80211_sub_if_data *sdata = sta->sdata;
3197
3198 lockdep_assert_held(&sdata->local->sta_mtx);
3199
3200 /* only some cases are supported right now */
3201 switch (sdata->vif.type) {
3202 case NL80211_IFTYPE_STATION:
3203 case NL80211_IFTYPE_AP:
3204 case NL80211_IFTYPE_AP_VLAN:
3205 break;
3206 default:
3207 WARN_ON(1);
3208 return;
3209 }
3210
3211 if (tid != sta->reserved_tid) {
3212 sdata_err(sdata, "TID to unreserve (%d) isn't reserved\n", tid);
3213 return;
3214 }
3215
3216 sta->reserved_tid = IEEE80211_TID_UNRESERVED;
3217}
3218EXPORT_SYMBOL(ieee80211_unreserve_tid);
3219
Johannes Berg55de9082012-07-26 17:24:39 +02003220void __ieee80211_tx_skb_tid_band(struct ieee80211_sub_if_data *sdata,
3221 struct sk_buff *skb, int tid,
3222 enum ieee80211_band band)
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003223{
Christian Lamparter353d09c2012-07-07 15:07:13 +02003224 int ac = ieee802_1d_to_ac[tid & 7];
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003225
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003226 skb_set_mac_header(skb, 0);
3227 skb_set_network_header(skb, 0);
3228 skb_set_transport_header(skb, 0);
3229
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003230 skb_set_queue_mapping(skb, ac);
Helmut Schaacf6bb792011-12-15 10:18:34 +01003231 skb->priority = tid;
Johannes Bergcf0277e2010-01-05 18:00:58 +01003232
Johannes Berg89afe612013-02-13 15:39:57 +01003233 skb->dev = sdata->dev;
3234
Johannes Berg3d34deb2009-06-18 17:25:11 +02003235 /*
3236 * The other path calling ieee80211_xmit is from the tasklet,
3237 * and while we can handle concurrent transmissions locking
3238 * requirements are that we do not come into tx with bhs on.
3239 */
3240 local_bh_disable();
Johannes Berg73c4e192014-11-09 18:50:09 +02003241 IEEE80211_SKB_CB(skb)->band = band;
3242 ieee80211_xmit(sdata, skb);
Johannes Berg3d34deb2009-06-18 17:25:11 +02003243 local_bh_enable();
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003244}