blob: 909c27be1fdcab11b6d5ce41f327ab667decf9d9 [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 Berg7d54d0dd2007-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 Berg7d54d0dd2007-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 Berg7d54d0dd2007-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 Berg7d54d0dd2007-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 Berg7d54d0dd2007-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 Berg7d54d0dd2007-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;
569 }
Johannes Berga621fa42010-08-27 14:26:54 +0300570
571 return TX_CONTINUE;
572}
573
574static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100575ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200576{
Johannes Berg46e6de12012-07-04 18:10:07 +0200577 struct ieee80211_key *key;
Johannes Berge039fa42008-05-15 12:55:29 +0200578 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Harvey Harrison358c8d92008-07-15 18:44:13 -0700579 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400580
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200581 if (unlikely(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT))
Johannes Berge2ebc742007-07-27 15:43:22 +0200582 tx->key = NULL;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200583 else if (tx->sta &&
584 (key = rcu_dereference(tx->sta->ptk[tx->sta->ptk_idx])))
Johannes Bergd4e46a32007-09-14 11:10:24 -0400585 tx->key = key;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200586 else if (ieee80211_is_mgmt(hdr->frame_control) &&
Jouni Malinenecbcd322010-03-29 23:35:23 -0700587 is_multicast_ether_addr(hdr->addr1) &&
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100588 ieee80211_is_robust_mgmt_frame(tx->skb) &&
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200589 (key = rcu_dereference(tx->sdata->default_mgmt_key)))
590 tx->key = key;
Johannes Bergf7e01042010-12-09 19:49:02 +0100591 else if (is_multicast_ether_addr(hdr->addr1) &&
592 (key = rcu_dereference(tx->sdata->default_multicast_key)))
593 tx->key = key;
594 else if (!is_multicast_ether_addr(hdr->addr1) &&
595 (key = rcu_dereference(tx->sdata->default_unicast_key)))
Johannes Bergd4e46a32007-09-14 11:10:24 -0400596 tx->key = key;
Johannes Berg46e6de12012-07-04 18:10:07 +0200597 else if (info->flags & IEEE80211_TX_CTL_INJECTED)
598 tx->key = NULL;
599 else if (!tx->sdata->drop_unencrypted)
600 tx->key = NULL;
601 else if (tx->skb->protocol == tx->sdata->control_port_protocol)
602 tx->key = NULL;
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100603 else if (ieee80211_is_robust_mgmt_frame(tx->skb) &&
Johannes Berg46e6de12012-07-04 18:10:07 +0200604 !(ieee80211_is_action(hdr->frame_control) &&
605 tx->sta && test_sta_flag(tx->sta, WLAN_STA_MFP)))
606 tx->key = NULL;
Nicolas Cavallari4922f712012-07-04 18:10:08 +0200607 else if (ieee80211_is_mgmt(hdr->frame_control) &&
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100608 !ieee80211_is_robust_mgmt_frame(tx->skb))
Nicolas Cavallari4922f712012-07-04 18:10:08 +0200609 tx->key = NULL;
Johannes Berg46e6de12012-07-04 18:10:07 +0200610 else {
Johannes Berge2ebc742007-07-27 15:43:22 +0200611 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100612 return TX_DROP;
Johannes Berg46e6de12012-07-04 18:10:07 +0200613 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200614
615 if (tx->key) {
Johannes Berg813d7662010-01-17 01:47:58 +0100616 bool skip_hw = false;
617
Johannes Berge2ebc742007-07-27 15:43:22 +0200618 tx->key->tx_rx_count++;
Johannes Berg011bfcc2007-09-17 01:29:25 -0400619 /* TODO: add threshold stuff again */
Johannes Berg176e4f82007-12-18 15:27:47 +0100620
Johannes Berg97359d12010-08-10 09:46:38 +0200621 switch (tx->key->conf.cipher) {
622 case WLAN_CIPHER_SUITE_WEP40:
623 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berg97359d12010-08-10 09:46:38 +0200624 case WLAN_CIPHER_SUITE_TKIP:
Harvey Harrison358c8d92008-07-15 18:44:13 -0700625 if (!ieee80211_is_data_present(hdr->frame_control))
Johannes Berg176e4f82007-12-18 15:27:47 +0100626 tx->key = NULL;
627 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200628 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200629 case WLAN_CIPHER_SUITE_CCMP_256:
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200630 case WLAN_CIPHER_SUITE_GCMP:
631 case WLAN_CIPHER_SUITE_GCMP_256:
Jouni Malinenfb733332009-01-08 13:32:00 +0200632 if (!ieee80211_is_data_present(hdr->frame_control) &&
633 !ieee80211_use_mfp(hdr->frame_control, tx->sta,
634 tx->skb))
635 tx->key = NULL;
Kalle Valo3b43a182010-01-23 20:27:14 +0200636 else
637 skip_hw = (tx->key->conf.flags &
Johannes Berge548c492012-09-04 17:08:23 +0200638 IEEE80211_KEY_FLAG_SW_MGMT_TX) &&
Kalle Valo3b43a182010-01-23 20:27:14 +0200639 ieee80211_is_mgmt(hdr->frame_control);
Jouni Malinenfb733332009-01-08 13:32:00 +0200640 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200641 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200642 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200643 if (!ieee80211_is_mgmt(hdr->frame_control))
644 tx->key = NULL;
645 break;
Johannes Berg176e4f82007-12-18 15:27:47 +0100646 }
Johannes Berg813d7662010-01-17 01:47:58 +0100647
Johannes Berge54faf22013-01-29 11:41:38 +0100648 if (unlikely(tx->key && tx->key->flags & KEY_FLAG_TAINTED &&
649 !ieee80211_is_deauth(hdr->frame_control)))
Johannes Berg95acac62011-07-12 12:30:59 +0200650 return TX_DROP;
651
Johannes Bergf12553e2010-01-22 22:07:59 +0100652 if (!skip_hw && tx->key &&
Johannes Berg382b1652010-01-25 11:36:16 +0100653 tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
Johannes Berg813d7662010-01-17 01:47:58 +0100654 info->control.hw_key = &tx->key->conf;
Johannes Berge2ebc742007-07-27 15:43:22 +0200655 }
656
Johannes Berg9ae54c82008-01-31 19:48:20 +0100657 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200658}
659
Johannes Bergd9e8a702008-06-30 15:10:44 +0200660static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100661ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200662{
Johannes Berge039fa42008-05-15 12:55:29 +0200663 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200664 struct ieee80211_hdr *hdr = (void *)tx->skb->data;
665 struct ieee80211_supported_band *sband;
Shanyu Zhaoa2c40242010-04-27 11:15:12 -0700666 u32 len;
Johannes Berge6a98542008-10-21 12:40:02 +0200667 struct ieee80211_tx_rate_control txrc;
Felix Fietkau0d528d82013-04-22 16:14:41 +0200668 struct ieee80211_sta_rates *ratetbl = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200669 bool assoc = false;
Johannes Berge6a98542008-10-21 12:40:02 +0200670
671 memset(&txrc, 0, sizeof(txrc));
Johannes Berg8318d782008-01-24 19:38:38 +0100672
Johannes Berg2d565772012-07-23 15:12:51 +0200673 sband = tx->local->hw.wiphy->bands[info->band];
Johannes Berge2ebc742007-07-27 15:43:22 +0200674
Shanyu Zhaoa2c40242010-04-27 11:15:12 -0700675 len = min_t(u32, tx->skb->len + FCS_LEN,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200676 tx->local->hw.wiphy->frag_threshold);
Johannes Berg58d41852007-09-26 17:53:18 +0200677
Johannes Berge6a98542008-10-21 12:40:02 +0200678 /* set up the tx rate control struct we give the RC algo */
Johannes Berg005e4722012-02-26 11:24:35 +0100679 txrc.hw = &tx->local->hw;
Johannes Berge6a98542008-10-21 12:40:02 +0200680 txrc.sband = sband;
681 txrc.bss_conf = &tx->sdata->vif.bss_conf;
682 txrc.skb = tx->skb;
683 txrc.reported_rate.idx = -1;
Johannes Berg2d565772012-07-23 15:12:51 +0200684 txrc.rate_idx_mask = tx->sdata->rc_rateidx_mask[info->band];
Jouni Malinen37eb0b12010-01-06 13:09:08 +0200685 if (txrc.rate_idx_mask == (1 << sband->n_bitrates) - 1)
686 txrc.max_rate_idx = -1;
687 else
688 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +0200689
690 if (tx->sdata->rc_has_mcs_mask[info->band])
691 txrc.rate_idx_mcs_mask =
692 tx->sdata->rc_rateidx_mcs_mask[info->band];
693
Felix Fietkau8f0729b2010-11-11 15:07:23 +0100694 txrc.bss = (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -0800695 tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT ||
Felix Fietkau8f0729b2010-11-11 15:07:23 +0100696 tx->sdata->vif.type == NL80211_IFTYPE_ADHOC);
Johannes Berg58d41852007-09-26 17:53:18 +0200697
Johannes Berge6a98542008-10-21 12:40:02 +0200698 /* set up RTS protection if desired */
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200699 if (len > tx->local->hw.wiphy->rts_threshold) {
Felix Fietkau0d528d82013-04-22 16:14:41 +0200700 txrc.rts = true;
Johannes Berge2ebc742007-07-27 15:43:22 +0200701 }
Johannes Berge6a98542008-10-21 12:40:02 +0200702
Felix Fietkau0d528d82013-04-22 16:14:41 +0200703 info->control.use_rts = txrc.rts;
Felix Fietkau991fec02013-04-16 13:38:43 +0200704 info->control.use_cts_prot = tx->sdata->vif.bss_conf.use_cts_prot;
705
Johannes Berge6a98542008-10-21 12:40:02 +0200706 /*
707 * Use short preamble if the BSS can handle it, but not for
708 * management frames unless we know the receiver can handle
709 * that -- the management frame might be to a station that
710 * just wants a probe response.
711 */
712 if (tx->sdata->vif.bss_conf.use_short_preamble &&
713 (ieee80211_is_data(hdr->frame_control) ||
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200714 (tx->sta && test_sta_flag(tx->sta, WLAN_STA_SHORT_PREAMBLE))))
Felix Fietkau0d528d82013-04-22 16:14:41 +0200715 txrc.short_preamble = true;
716
717 info->control.short_preamble = txrc.short_preamble;
Johannes Berge6a98542008-10-21 12:40:02 +0200718
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200719 if (tx->sta)
720 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
Johannes Berge6a98542008-10-21 12:40:02 +0200721
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700722 /*
723 * Lets not bother rate control if we're associated and cannot
724 * talk to the sta. This should not happen.
725 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200726 if (WARN(test_bit(SCAN_SW_SCANNING, &tx->local->scanning) && assoc &&
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700727 !rate_usable_index_exists(sband, &tx->sta->sta),
728 "%s: Dropped data frame as no usable bitrate found while "
729 "scanning and associated. Target station: "
730 "%pM on %d GHz band\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100731 tx->sdata->name, hdr->addr1,
Johannes Berg2d565772012-07-23 15:12:51 +0200732 info->band ? 5 : 2))
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700733 return TX_DROP;
734
735 /*
736 * If we're associated with the sta at this point we know we can at
737 * least send the frame at the lowest bit rate.
738 */
Johannes Berge6a98542008-10-21 12:40:02 +0200739 rate_control_get_rate(tx->sdata, tx->sta, &txrc);
740
Felix Fietkau0d528d82013-04-22 16:14:41 +0200741 if (tx->sta && !info->control.skip_table)
742 ratetbl = rcu_dereference(tx->sta->sta.rates);
743
744 if (unlikely(info->control.rates[0].idx < 0)) {
745 if (ratetbl) {
746 struct ieee80211_tx_rate rate = {
747 .idx = ratetbl->rate[0].idx,
748 .flags = ratetbl->rate[0].flags,
749 .count = ratetbl->rate[0].count
750 };
751
752 if (ratetbl->rate[0].idx < 0)
753 return TX_DROP;
754
755 tx->rate = rate;
756 } else {
757 return TX_DROP;
758 }
759 } else {
760 tx->rate = info->control.rates[0];
761 }
Johannes Berge6a98542008-10-21 12:40:02 +0200762
Helmut Schaac1ce5a72010-12-01 16:34:45 +0100763 if (txrc.reported_rate.idx < 0) {
Felix Fietkau0d528d82013-04-22 16:14:41 +0200764 txrc.reported_rate = tx->rate;
Helmut Schaac1ce5a72010-12-01 16:34:45 +0100765 if (tx->sta && ieee80211_is_data(hdr->frame_control))
766 tx->sta->last_tx_rate = txrc.reported_rate;
767 } else if (tx->sta)
Johannes Berge6a98542008-10-21 12:40:02 +0200768 tx->sta->last_tx_rate = txrc.reported_rate;
769
Felix Fietkau0d528d82013-04-22 16:14:41 +0200770 if (ratetbl)
771 return TX_CONTINUE;
772
Johannes Berge6a98542008-10-21 12:40:02 +0200773 if (unlikely(!info->control.rates[0].count))
774 info->control.rates[0].count = 1;
775
Gábor Stefanik99551512009-04-23 19:36:14 +0200776 if (WARN_ON_ONCE((info->control.rates[0].count > 1) &&
777 (info->flags & IEEE80211_TX_CTL_NO_ACK)))
778 info->control.rates[0].count = 1;
779
Johannes Berg9ae54c82008-01-31 19:48:20 +0100780 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200781}
782
Johannes Bergd9e8a702008-06-30 15:10:44 +0200783static ieee80211_tx_result debug_noinline
Johannes Bergf591fa52008-07-10 11:21:26 +0200784ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
785{
786 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
787 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
788 u16 *seq;
789 u8 *qc;
790 int tid;
791
Johannes Berg25d834e2008-09-12 22:52:47 +0200792 /*
793 * Packet injection may want to control the sequence
794 * number, if we have no matching interface then we
795 * neither assign one ourselves nor ask the driver to.
796 */
Johannes Berg5061b0c2009-07-14 00:33:34 +0200797 if (unlikely(info->control.vif->type == NL80211_IFTYPE_MONITOR))
Johannes Berg25d834e2008-09-12 22:52:47 +0200798 return TX_CONTINUE;
799
Johannes Bergf591fa52008-07-10 11:21:26 +0200800 if (unlikely(ieee80211_is_ctl(hdr->frame_control)))
801 return TX_CONTINUE;
802
803 if (ieee80211_hdrlen(hdr->frame_control) < 24)
804 return TX_CONTINUE;
805
Johannes Berg49a59542011-09-29 16:04:41 +0200806 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
807 return TX_CONTINUE;
808
Johannes Berg94778282008-10-10 13:21:59 +0200809 /*
810 * Anything but QoS data that has a sequence number field
811 * (is long enough) gets a sequence number from the global
Bob Copelandc4c205f2013-08-23 09:35:38 -0400812 * counter. QoS data frames with a multicast destination
813 * also use the global counter (802.11-2012 9.3.2.10).
Johannes Berg94778282008-10-10 13:21:59 +0200814 */
Bob Copelandc4c205f2013-08-23 09:35:38 -0400815 if (!ieee80211_is_data_qos(hdr->frame_control) ||
816 is_multicast_ether_addr(hdr->addr1)) {
Johannes Berg94778282008-10-10 13:21:59 +0200817 /* driver should assign sequence number */
Johannes Bergf591fa52008-07-10 11:21:26 +0200818 info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
Johannes Berg94778282008-10-10 13:21:59 +0200819 /* for pure STA mode without beacons, we can do it */
820 hdr->seq_ctrl = cpu_to_le16(tx->sdata->sequence_number);
821 tx->sdata->sequence_number += 0x10;
Johannes Berg79c892b2014-11-21 14:26:31 +0100822 if (tx->sta)
823 tx->sta->tx_msdu[IEEE80211_NUM_TIDS]++;
Johannes Bergf591fa52008-07-10 11:21:26 +0200824 return TX_CONTINUE;
825 }
826
827 /*
828 * This should be true for injected/management frames only, for
829 * management frames we have set the IEEE80211_TX_CTL_ASSIGN_SEQ
830 * above since they are not QoS-data frames.
831 */
832 if (!tx->sta)
833 return TX_CONTINUE;
834
835 /* include per-STA, per-TID sequence counter */
836
837 qc = ieee80211_get_qos_ctl(hdr);
838 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
839 seq = &tx->sta->tid_seq[tid];
Johannes Berg79c892b2014-11-21 14:26:31 +0100840 tx->sta->tx_msdu[tid]++;
Johannes Bergf591fa52008-07-10 11:21:26 +0200841
842 hdr->seq_ctrl = cpu_to_le16(*seq);
843
844 /* Increase the sequence number. */
845 *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ;
846
847 return TX_CONTINUE;
848}
849
Johannes Berg252b86c2011-11-16 15:28:55 +0100850static int ieee80211_fragment(struct ieee80211_tx_data *tx,
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100851 struct sk_buff *skb, int hdrlen,
852 int frag_threshold)
853{
Johannes Berg252b86c2011-11-16 15:28:55 +0100854 struct ieee80211_local *local = tx->local;
Johannes Berga1a3fce2011-11-16 15:28:56 +0100855 struct ieee80211_tx_info *info;
Johannes Berg252b86c2011-11-16 15:28:55 +0100856 struct sk_buff *tmp;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100857 int per_fragm = frag_threshold - hdrlen - FCS_LEN;
858 int pos = hdrlen + per_fragm;
859 int rem = skb->len - hdrlen - per_fragm;
860
861 if (WARN_ON(rem < 0))
862 return -EINVAL;
863
Johannes Berg252b86c2011-11-16 15:28:55 +0100864 /* first fragment was already added to queue by caller */
865
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100866 while (rem) {
867 int fraglen = per_fragm;
868
869 if (fraglen > rem)
870 fraglen = rem;
871 rem -= fraglen;
872 tmp = dev_alloc_skb(local->tx_headroom +
873 frag_threshold +
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200874 tx->sdata->encrypt_headroom +
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100875 IEEE80211_ENCRYPT_TAILROOM);
876 if (!tmp)
877 return -ENOMEM;
Johannes Berg252b86c2011-11-16 15:28:55 +0100878
879 __skb_queue_tail(&tx->skbs, tmp);
880
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200881 skb_reserve(tmp,
882 local->tx_headroom + tx->sdata->encrypt_headroom);
883
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100884 /* copy control information */
885 memcpy(tmp->cb, skb->cb, sizeof(tmp->cb));
Johannes Berga1a3fce2011-11-16 15:28:56 +0100886
887 info = IEEE80211_SKB_CB(tmp);
888 info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT |
889 IEEE80211_TX_CTL_FIRST_FRAGMENT);
890
891 if (rem)
892 info->flags |= IEEE80211_TX_CTL_MORE_FRAMES;
893
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100894 skb_copy_queue_mapping(tmp, skb);
895 tmp->priority = skb->priority;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100896 tmp->dev = skb->dev;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100897
898 /* copy header and data */
899 memcpy(skb_put(tmp, hdrlen), skb->data, hdrlen);
900 memcpy(skb_put(tmp, fraglen), skb->data + pos, fraglen);
901
902 pos += fraglen;
903 }
904
Johannes Berg252b86c2011-11-16 15:28:55 +0100905 /* adjust first fragment's length */
Johannes Berg338f9772014-02-01 00:16:23 +0100906 skb_trim(skb, hdrlen + per_fragm);
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100907 return 0;
908}
909
Johannes Bergf591fa52008-07-10 11:21:26 +0200910static ieee80211_tx_result debug_noinline
Johannes Berge2454942008-05-15 12:55:28 +0200911ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
912{
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100913 struct sk_buff *skb = tx->skb;
914 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
915 struct ieee80211_hdr *hdr = (void *)skb->data;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200916 int frag_threshold = tx->local->hw.wiphy->frag_threshold;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100917 int hdrlen;
918 int fragnum;
Johannes Berge2454942008-05-15 12:55:28 +0200919
Johannes Berg252b86c2011-11-16 15:28:55 +0100920 /* no matter what happens, tx->skb moves to tx->skbs */
921 __skb_queue_tail(&tx->skbs, skb);
922 tx->skb = NULL;
923
Johannes Berga26eb272011-10-07 14:01:25 +0200924 if (info->flags & IEEE80211_TX_CTL_DONTFRAG)
925 return TX_CONTINUE;
926
927 if (tx->local->ops->set_frag_threshold)
Johannes Berge2454942008-05-15 12:55:28 +0200928 return TX_CONTINUE;
929
Johannes Bergeefce912008-05-17 00:57:13 +0200930 /*
931 * Warn when submitting a fragmented A-MPDU frame and drop it.
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200932 * This scenario is handled in ieee80211_tx_prepare but extra
Ron Rindjunsky8d5e0d52008-06-12 15:42:29 +0300933 * caution taken here as fragmented ampdu may cause Tx stop.
Johannes Bergeefce912008-05-17 00:57:13 +0200934 */
Sujith8b30b1f2008-10-24 09:55:27 +0530935 if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU))
Johannes Bergeefce912008-05-17 00:57:13 +0200936 return TX_DROP;
937
Harvey Harrison065e96052008-06-22 16:45:27 -0700938 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berge2454942008-05-15 12:55:28 +0200939
Johannes Berga26eb272011-10-07 14:01:25 +0200940 /* internal error, why isn't DONTFRAG set? */
Johannes Berg8ccd8f22009-04-29 23:35:56 +0200941 if (WARN_ON(skb->len + FCS_LEN <= frag_threshold))
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100942 return TX_DROP;
Johannes Berge2454942008-05-15 12:55:28 +0200943
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100944 /*
945 * Now fragment the frame. This will allocate all the fragments and
946 * chain them (using skb as the first fragment) to skb->next.
947 * During transmission, we will remove the successfully transmitted
948 * fragments from this list. When the low-level driver rejects one
949 * of the fragments then we will simply pretend to accept the skb
950 * but store it away as pending.
951 */
Johannes Berg252b86c2011-11-16 15:28:55 +0100952 if (ieee80211_fragment(tx, skb, hdrlen, frag_threshold))
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100953 return TX_DROP;
Johannes Berge2454942008-05-15 12:55:28 +0200954
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100955 /* update duration/seq/flags of fragments */
956 fragnum = 0;
Johannes Berg252b86c2011-11-16 15:28:55 +0100957
958 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100959 const __le16 morefrags = cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
Johannes Berge2454942008-05-15 12:55:28 +0200960
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100961 hdr = (void *)skb->data;
962 info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200963
Johannes Berg252b86c2011-11-16 15:28:55 +0100964 if (!skb_queue_is_last(&tx->skbs, skb)) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100965 hdr->frame_control |= morefrags;
Johannes Berge6a98542008-10-21 12:40:02 +0200966 /*
967 * No multi-rate retries for fragmented frames, that
968 * would completely throw off the NAV at other STAs.
969 */
970 info->control.rates[1].idx = -1;
971 info->control.rates[2].idx = -1;
972 info->control.rates[3].idx = -1;
Thomas Huehne3e1a0b2012-07-02 19:46:16 +0200973 BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 4);
Johannes Berge6a98542008-10-21 12:40:02 +0200974 info->flags &= ~IEEE80211_TX_CTL_RATE_CTRL_PROBE;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100975 } else {
976 hdr->frame_control &= ~morefrags;
Johannes Berge6a98542008-10-21 12:40:02 +0200977 }
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100978 hdr->seq_ctrl |= cpu_to_le16(fragnum & IEEE80211_SCTL_FRAG);
979 fragnum++;
Johannes Berg252b86c2011-11-16 15:28:55 +0100980 }
Johannes Berge2454942008-05-15 12:55:28 +0200981
982 return TX_CONTINUE;
Johannes Berge2454942008-05-15 12:55:28 +0200983}
984
Johannes Bergd9e8a702008-06-30 15:10:44 +0200985static ieee80211_tx_result debug_noinline
Johannes Bergfeff1f22009-08-10 16:01:54 +0200986ieee80211_tx_h_stats(struct ieee80211_tx_data *tx)
987{
Johannes Berg252b86c2011-11-16 15:28:55 +0100988 struct sk_buff *skb;
Johannes Berg560d2682013-02-05 10:55:21 +0100989 int ac = -1;
Johannes Bergfeff1f22009-08-10 16:01:54 +0200990
991 if (!tx->sta)
992 return TX_CONTINUE;
993
Johannes Berg252b86c2011-11-16 15:28:55 +0100994 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg560d2682013-02-05 10:55:21 +0100995 ac = skb_get_queue_mapping(skb);
Johannes Bergfeff1f22009-08-10 16:01:54 +0200996 tx->sta->tx_fragments++;
Johannes Berg560d2682013-02-05 10:55:21 +0100997 tx->sta->tx_bytes[ac] += skb->len;
Johannes Berg252b86c2011-11-16 15:28:55 +0100998 }
Johannes Berg560d2682013-02-05 10:55:21 +0100999 if (ac >= 0)
1000 tx->sta->tx_packets[ac]++;
Johannes Bergfeff1f22009-08-10 16:01:54 +02001001
1002 return TX_CONTINUE;
1003}
1004
1005static ieee80211_tx_result debug_noinline
Johannes Berge2454942008-05-15 12:55:28 +02001006ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
1007{
1008 if (!tx->key)
1009 return TX_CONTINUE;
1010
Johannes Berg97359d12010-08-10 09:46:38 +02001011 switch (tx->key->conf.cipher) {
1012 case WLAN_CIPHER_SUITE_WEP40:
1013 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berge2454942008-05-15 12:55:28 +02001014 return ieee80211_crypto_wep_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +02001015 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berge2454942008-05-15 12:55:28 +02001016 return ieee80211_crypto_tkip_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +02001017 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001018 return ieee80211_crypto_ccmp_encrypt(
1019 tx, IEEE80211_CCMP_MIC_LEN);
1020 case WLAN_CIPHER_SUITE_CCMP_256:
1021 return ieee80211_crypto_ccmp_encrypt(
1022 tx, IEEE80211_CCMP_256_MIC_LEN);
Johannes Berg97359d12010-08-10 09:46:38 +02001023 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02001024 return ieee80211_crypto_aes_cmac_encrypt(tx);
Jouni Malinen56c52da2015-01-24 19:52:08 +02001025 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1026 return ieee80211_crypto_aes_cmac_256_encrypt(tx);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +02001027 case WLAN_CIPHER_SUITE_GCMP:
1028 case WLAN_CIPHER_SUITE_GCMP_256:
1029 return ieee80211_crypto_gcmp_encrypt(tx);
Johannes Berg3ffc2a92010-08-27 14:26:52 +03001030 default:
Yoni Divinskyd32a1022012-01-16 15:18:59 +02001031 return ieee80211_crypto_hw_encrypt(tx);
Johannes Berge2454942008-05-15 12:55:28 +02001032 }
1033
Johannes Berge2454942008-05-15 12:55:28 +02001034 return TX_DROP;
1035}
1036
Johannes Bergd9e8a702008-06-30 15:10:44 +02001037static ieee80211_tx_result debug_noinline
Johannes Berg03f93c32008-06-25 14:36:27 +03001038ieee80211_tx_h_calculate_duration(struct ieee80211_tx_data *tx)
1039{
Johannes Berg252b86c2011-11-16 15:28:55 +01001040 struct sk_buff *skb;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001041 struct ieee80211_hdr *hdr;
1042 int next_len;
1043 bool group_addr;
Johannes Berg03f93c32008-06-25 14:36:27 +03001044
Johannes Berg252b86c2011-11-16 15:28:55 +01001045 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001046 hdr = (void *) skb->data;
Jouni Malinen7e0aae42009-05-19 19:25:58 +03001047 if (unlikely(ieee80211_is_pspoll(hdr->frame_control)))
1048 break; /* must not overwrite AID */
Johannes Berg252b86c2011-11-16 15:28:55 +01001049 if (!skb_queue_is_last(&tx->skbs, skb)) {
1050 struct sk_buff *next = skb_queue_next(&tx->skbs, skb);
1051 next_len = next->len;
1052 } else
1053 next_len = 0;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001054 group_addr = is_multicast_ether_addr(hdr->addr1);
Johannes Berg03f93c32008-06-25 14:36:27 +03001055
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001056 hdr->duration_id =
Johannes Berg252b86c2011-11-16 15:28:55 +01001057 ieee80211_duration(tx, skb, group_addr, next_len);
1058 }
Johannes Berg03f93c32008-06-25 14:36:27 +03001059
1060 return TX_CONTINUE;
1061}
1062
Johannes Berge2ebc742007-07-27 15:43:22 +02001063/* actual transmit path */
1064
Johannes Berga622ab72010-06-10 10:21:39 +02001065static bool ieee80211_tx_prep_agg(struct ieee80211_tx_data *tx,
1066 struct sk_buff *skb,
1067 struct ieee80211_tx_info *info,
1068 struct tid_ampdu_tx *tid_tx,
1069 int tid)
1070{
1071 bool queued = false;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001072 bool reset_agg_timer = false;
Helmut Schaaaa454582012-03-07 17:20:30 +01001073 struct sk_buff *purge_skb = NULL;
Johannes Berga622ab72010-06-10 10:21:39 +02001074
1075 if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1076 info->flags |= IEEE80211_TX_CTL_AMPDU;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001077 reset_agg_timer = true;
Johannes Berg0ab33702010-06-10 10:21:42 +02001078 } else if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
1079 /*
1080 * nothing -- this aggregation session is being started
1081 * but that might still fail with the driver
1082 */
Johannes Berga622ab72010-06-10 10:21:39 +02001083 } else {
1084 spin_lock(&tx->sta->lock);
1085 /*
1086 * Need to re-check now, because we may get here
1087 *
1088 * 1) in the window during which the setup is actually
1089 * already done, but not marked yet because not all
1090 * packets are spliced over to the driver pending
1091 * queue yet -- if this happened we acquire the lock
1092 * either before or after the splice happens, but
1093 * need to recheck which of these cases happened.
1094 *
1095 * 2) during session teardown, if the OPERATIONAL bit
1096 * was cleared due to the teardown but the pointer
1097 * hasn't been assigned NULL yet (or we loaded it
1098 * before it was assigned) -- in this case it may
1099 * now be NULL which means we should just let the
1100 * packet pass through because splicing the frames
1101 * back is already done.
1102 */
Johannes Berg40b275b2011-05-13 14:15:49 +02001103 tid_tx = rcu_dereference_protected_tid_tx(tx->sta, tid);
Johannes Berga622ab72010-06-10 10:21:39 +02001104
1105 if (!tid_tx) {
1106 /* do nothing, let packet pass through */
1107 } else if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1108 info->flags |= IEEE80211_TX_CTL_AMPDU;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001109 reset_agg_timer = true;
Johannes Berga622ab72010-06-10 10:21:39 +02001110 } else {
1111 queued = true;
1112 info->control.vif = &tx->sdata->vif;
1113 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
Johannes Berg03c8c062014-01-09 01:45:28 +01001114 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
Johannes Berga622ab72010-06-10 10:21:39 +02001115 __skb_queue_tail(&tid_tx->pending, skb);
Helmut Schaaaa454582012-03-07 17:20:30 +01001116 if (skb_queue_len(&tid_tx->pending) > STA_MAX_TX_BUFFER)
1117 purge_skb = __skb_dequeue(&tid_tx->pending);
Johannes Berga622ab72010-06-10 10:21:39 +02001118 }
1119 spin_unlock(&tx->sta->lock);
Helmut Schaaaa454582012-03-07 17:20:30 +01001120
1121 if (purge_skb)
Felix Fietkauc3e77242012-10-08 14:39:33 +02001122 ieee80211_free_txskb(&tx->local->hw, purge_skb);
Johannes Berga622ab72010-06-10 10:21:39 +02001123 }
1124
Nikolay Martynov285fa692011-11-22 21:50:28 -05001125 /* reset session timer */
1126 if (reset_agg_timer && tid_tx->timeout)
Felix Fietkau12d3952f2012-03-18 22:58:06 +01001127 tid_tx->last_tx = jiffies;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001128
Johannes Berga622ab72010-06-10 10:21:39 +02001129 return queued;
1130}
1131
Johannes Berg58d41852007-09-26 17:53:18 +02001132/*
1133 * initialises @tx
1134 */
Johannes Berg9ae54c82008-01-31 19:48:20 +01001135static ieee80211_tx_result
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001136ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
1137 struct ieee80211_tx_data *tx,
1138 struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +02001139{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001140 struct ieee80211_local *local = sdata->local;
Johannes Berg58d41852007-09-26 17:53:18 +02001141 struct ieee80211_hdr *hdr;
Johannes Berge039fa42008-05-15 12:55:29 +02001142 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg68f2b512011-10-07 14:01:24 +02001143 int tid;
Johannes Berga622ab72010-06-10 10:21:39 +02001144 u8 *qc;
Johannes Berge2ebc742007-07-27 15:43:22 +02001145
1146 memset(tx, 0, sizeof(*tx));
1147 tx->skb = skb;
Johannes Berge2ebc742007-07-27 15:43:22 +02001148 tx->local = local;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001149 tx->sdata = sdata;
Johannes Berg252b86c2011-11-16 15:28:55 +01001150 __skb_queue_head_init(&tx->skbs);
Johannes Berge2ebc742007-07-27 15:43:22 +02001151
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001152 /*
1153 * If this flag is set to true anywhere, and we get here,
1154 * we are doing the needed processing, so remove the flag
1155 * now.
1156 */
1157 info->flags &= ~IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1158
Johannes Berg58d41852007-09-26 17:53:18 +02001159 hdr = (struct ieee80211_hdr *) skb->data;
1160
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001161 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001162 tx->sta = rcu_dereference(sdata->u.vlan.sta);
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001163 if (!tx->sta && sdata->dev->ieee80211_ptr->use_4addr)
1164 return TX_DROP;
Felix Fietkau03bb7f42013-09-29 21:39:33 +02001165 } else if (info->flags & (IEEE80211_TX_CTL_INJECTED |
1166 IEEE80211_TX_INTFL_NL80211_FRAME_TX) ||
Felix Fietkau66f2c992012-04-29 15:44:16 +02001167 tx->sdata->control_port_protocol == tx->skb->protocol) {
Felix Fietkaub4d57ad2010-01-31 23:25:24 +01001168 tx->sta = sta_info_get_bss(sdata, hdr->addr1);
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001169 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001170 if (!tx->sta)
Johannes Bergabe60632009-11-25 17:46:18 +01001171 tx->sta = sta_info_get(sdata, hdr->addr1);
Johannes Berg58d41852007-09-26 17:53:18 +02001172
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001173 if (tx->sta && ieee80211_is_data_qos(hdr->frame_control) &&
Johannes Berg49a59542011-09-29 16:04:41 +02001174 !ieee80211_is_qos_nullfunc(hdr->frame_control) &&
Arik Nemtsovedf6b782011-08-30 09:32:38 +03001175 (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION) &&
1176 !(local->hw.flags & IEEE80211_HW_TX_AMPDU_SETUP_IN_HW)) {
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001177 struct tid_ampdu_tx *tid_tx;
1178
Sujith8b30b1f2008-10-24 09:55:27 +05301179 qc = ieee80211_get_qos_ctl(hdr);
1180 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
1181
Johannes Berga622ab72010-06-10 10:21:39 +02001182 tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]);
1183 if (tid_tx) {
1184 bool queued;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001185
Johannes Berga622ab72010-06-10 10:21:39 +02001186 queued = ieee80211_tx_prep_agg(tx, skb, info,
1187 tid_tx, tid);
1188
1189 if (unlikely(queued))
1190 return TX_QUEUED;
1191 }
Sujith8b30b1f2008-10-24 09:55:27 +05301192 }
1193
Jiri Slabybadffb72007-08-28 17:01:54 -04001194 if (is_multicast_ether_addr(hdr->addr1)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001195 tx->flags &= ~IEEE80211_TX_UNICAST;
Johannes Berge039fa42008-05-15 12:55:29 +02001196 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Simon Wunderlich6fd67e92011-11-18 14:20:42 +01001197 } else
Johannes Berg5cf121c2008-02-25 16:27:43 +01001198 tx->flags |= IEEE80211_TX_UNICAST;
Johannes Berg58d41852007-09-26 17:53:18 +02001199
Johannes Berga26eb272011-10-07 14:01:25 +02001200 if (!(info->flags & IEEE80211_TX_CTL_DONTFRAG)) {
1201 if (!(tx->flags & IEEE80211_TX_UNICAST) ||
1202 skb->len + FCS_LEN <= local->hw.wiphy->frag_threshold ||
1203 info->flags & IEEE80211_TX_CTL_AMPDU)
1204 info->flags |= IEEE80211_TX_CTL_DONTFRAG;
Johannes Berg58d41852007-09-26 17:53:18 +02001205 }
1206
Johannes Berge2ebc742007-07-27 15:43:22 +02001207 if (!tx->sta)
Johannes Berge039fa42008-05-15 12:55:29 +02001208 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001209 else if (test_and_clear_sta_flag(tx->sta, WLAN_STA_CLEAR_PS_FILT))
Johannes Berge039fa42008-05-15 12:55:29 +02001210 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
Johannes Berg58d41852007-09-26 17:53:18 +02001211
Johannes Berge039fa42008-05-15 12:55:29 +02001212 info->flags |= IEEE80211_TX_CTL_FIRST_FRAGMENT;
Johannes Berge2ebc742007-07-27 15:43:22 +02001213
Johannes Berg9ae54c82008-01-31 19:48:20 +01001214 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +02001215}
1216
Johannes Berg11127e92011-11-16 16:02:47 +01001217static bool ieee80211_tx_frags(struct ieee80211_local *local,
1218 struct ieee80211_vif *vif,
1219 struct ieee80211_sta *sta,
1220 struct sk_buff_head *skbs,
1221 bool txpending)
Johannes Berge2ebc742007-07-27 15:43:22 +02001222{
Thomas Huehn36323f82012-07-23 21:33:42 +02001223 struct ieee80211_tx_control control;
Johannes Berg252b86c2011-11-16 15:28:55 +01001224 struct sk_buff *skb, *tmp;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001225 unsigned long flags;
Johannes Berge2ebc742007-07-27 15:43:22 +02001226
Johannes Berg252b86c2011-11-16 15:28:55 +01001227 skb_queue_walk_safe(skbs, skb, tmp) {
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001228 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1229 int q = info->hw_queue;
1230
1231#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1232 if (WARN_ON_ONCE(q >= local->hw.queues)) {
1233 __skb_unlink(skb, skbs);
Felix Fietkauc3e77242012-10-08 14:39:33 +02001234 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001235 continue;
1236 }
1237#endif
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001238
1239 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001240 if (local->queue_stop_reasons[q] ||
Johannes Berg7bb45682011-02-24 14:42:06 +01001241 (!txpending && !skb_queue_empty(&local->pending[q]))) {
Seth Forshee6c17b772013-02-11 11:21:07 -06001242 if (unlikely(info->flags &
Seth Forsheea7679ed2013-02-25 14:58:05 -06001243 IEEE80211_TX_INTFL_OFFCHAN_TX_OK)) {
1244 if (local->queue_stop_reasons[q] &
1245 ~BIT(IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL)) {
1246 /*
1247 * Drop off-channel frames if queues
1248 * are stopped for any reason other
1249 * than off-channel operation. Never
1250 * queue them.
1251 */
1252 spin_unlock_irqrestore(
1253 &local->queue_stop_reason_lock,
1254 flags);
1255 ieee80211_purge_tx_queue(&local->hw,
1256 skbs);
1257 return true;
1258 }
1259 } else {
1260
Seth Forshee6c17b772013-02-11 11:21:07 -06001261 /*
Seth Forsheea7679ed2013-02-25 14:58:05 -06001262 * Since queue is stopped, queue up frames for
1263 * later transmission from the tx-pending
1264 * tasklet when the queue is woken again.
Seth Forshee6c17b772013-02-11 11:21:07 -06001265 */
Seth Forsheea7679ed2013-02-25 14:58:05 -06001266 if (txpending)
1267 skb_queue_splice_init(skbs,
1268 &local->pending[q]);
1269 else
1270 skb_queue_splice_tail_init(skbs,
1271 &local->pending[q]);
1272
1273 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1274 flags);
1275 return false;
Seth Forshee6c17b772013-02-11 11:21:07 -06001276 }
Johannes Berg7bb45682011-02-24 14:42:06 +01001277 }
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001278 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Tomas Winklerf8e79dd2008-07-24 18:46:44 +03001279
Johannes Berg11127e92011-11-16 16:02:47 +01001280 info->control.vif = vif;
Thomas Huehn36323f82012-07-23 21:33:42 +02001281 control.sta = sta;
Johannes Bergec25acc2010-07-22 17:11:28 +02001282
Johannes Berg252b86c2011-11-16 15:28:55 +01001283 __skb_unlink(skb, skbs);
Thomas Huehn36323f82012-07-23 21:33:42 +02001284 drv_tx(local, &control, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001285 }
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001286
Johannes Berg11127e92011-11-16 16:02:47 +01001287 return true;
1288}
1289
1290/*
1291 * Returns false if the frame couldn't be transmitted but was queued instead.
1292 */
1293static bool __ieee80211_tx(struct ieee80211_local *local,
1294 struct sk_buff_head *skbs, int led_len,
1295 struct sta_info *sta, bool txpending)
1296{
1297 struct ieee80211_tx_info *info;
1298 struct ieee80211_sub_if_data *sdata;
1299 struct ieee80211_vif *vif;
1300 struct ieee80211_sta *pubsta;
1301 struct sk_buff *skb;
1302 bool result = true;
1303 __le16 fc;
1304
1305 if (WARN_ON(skb_queue_empty(skbs)))
1306 return true;
1307
1308 skb = skb_peek(skbs);
1309 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
1310 info = IEEE80211_SKB_CB(skb);
1311 sdata = vif_to_sdata(info->control.vif);
1312 if (sta && !sta->uploaded)
1313 sta = NULL;
1314
1315 if (sta)
1316 pubsta = &sta->sta;
1317 else
1318 pubsta = NULL;
1319
1320 switch (sdata->vif.type) {
1321 case NL80211_IFTYPE_MONITOR:
Johannes Bergc82b5a72013-07-14 23:39:20 +03001322 if (sdata->u.mntr_flags & MONITOR_FLAG_ACTIVE) {
1323 vif = &sdata->vif;
1324 break;
1325 }
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001326 sdata = rcu_dereference(local->monitor_sdata);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001327 if (sdata) {
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001328 vif = &sdata->vif;
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001329 info->hw_queue =
1330 vif->hw_queue[skb_get_queue_mapping(skb)];
1331 } else if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL) {
1332 dev_kfree_skb(skb);
1333 return true;
1334 } else
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001335 vif = NULL;
Johannes Berg11127e92011-11-16 16:02:47 +01001336 break;
1337 case NL80211_IFTYPE_AP_VLAN:
1338 sdata = container_of(sdata->bss,
1339 struct ieee80211_sub_if_data, u.ap);
1340 /* fall through */
1341 default:
1342 vif = &sdata->vif;
1343 break;
1344 }
1345
Johannes Bergcb831b52012-07-02 15:40:18 +02001346 result = ieee80211_tx_frags(local, vif, pubsta, skbs,
1347 txpending);
Johannes Berg11127e92011-11-16 16:02:47 +01001348
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001349 ieee80211_tpt_led_trig_tx(local, fc, led_len);
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001350
Johannes Berg4db4e0a2011-11-24 14:47:36 +01001351 WARN_ON_ONCE(!skb_queue_empty(skbs));
Johannes Berg252b86c2011-11-16 15:28:55 +01001352
Johannes Berg11127e92011-11-16 16:02:47 +01001353 return result;
Johannes Berge2ebc742007-07-27 15:43:22 +02001354}
1355
Johannes Berg97b045d2008-06-20 01:22:30 +02001356/*
1357 * Invoke TX handlers, return 0 on success and non-zero if the
1358 * frame was dropped or queued.
1359 */
1360static int invoke_tx_handlers(struct ieee80211_tx_data *tx)
1361{
Johannes Berg252b86c2011-11-16 15:28:55 +01001362 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Berg97b045d2008-06-20 01:22:30 +02001363 ieee80211_tx_result res = TX_DROP;
Johannes Berg97b045d2008-06-20 01:22:30 +02001364
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001365#define CALL_TXH(txh) \
1366 do { \
1367 res = txh(tx); \
1368 if (res != TX_CONTINUE) \
1369 goto txh_done; \
1370 } while (0)
Johannes Berg97b045d2008-06-20 01:22:30 +02001371
Kalle Valo5c1b98a2010-01-12 10:42:46 +02001372 CALL_TXH(ieee80211_tx_h_dynamic_ps);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001373 CALL_TXH(ieee80211_tx_h_check_assoc);
1374 CALL_TXH(ieee80211_tx_h_ps_buf);
Johannes Berga621fa42010-08-27 14:26:54 +03001375 CALL_TXH(ieee80211_tx_h_check_control_port_protocol);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001376 CALL_TXH(ieee80211_tx_h_select_key);
Johannes Bergaf65cd962009-11-17 18:18:36 +01001377 if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL))
1378 CALL_TXH(ieee80211_tx_h_rate_ctrl);
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001379
Johannes Bergaa5b5492011-12-02 22:08:52 +01001380 if (unlikely(info->flags & IEEE80211_TX_INTFL_RETRANSMISSION)) {
1381 __skb_queue_tail(&tx->skbs, tx->skb);
1382 tx->skb = NULL;
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001383 goto txh_done;
Johannes Bergaa5b5492011-12-02 22:08:52 +01001384 }
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001385
1386 CALL_TXH(ieee80211_tx_h_michael_mic_add);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001387 CALL_TXH(ieee80211_tx_h_sequence);
1388 CALL_TXH(ieee80211_tx_h_fragment);
Johannes Bergd9e8a702008-06-30 15:10:44 +02001389 /* handlers after fragment must be aware of tx info fragmentation! */
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001390 CALL_TXH(ieee80211_tx_h_stats);
1391 CALL_TXH(ieee80211_tx_h_encrypt);
Arik Nemtsov8fd369e2011-01-31 22:29:12 +02001392 if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL))
1393 CALL_TXH(ieee80211_tx_h_calculate_duration);
Johannes Bergd9e8a702008-06-30 15:10:44 +02001394#undef CALL_TXH
1395
1396 txh_done:
Johannes Berg97b045d2008-06-20 01:22:30 +02001397 if (unlikely(res == TX_DROP)) {
Tomas Winkler5479d0e2008-06-28 03:15:03 +03001398 I802_DEBUG_INC(tx->local->tx_handlers_drop);
Johannes Berg252b86c2011-11-16 15:28:55 +01001399 if (tx->skb)
Felix Fietkauc3e77242012-10-08 14:39:33 +02001400 ieee80211_free_txskb(&tx->local->hw, tx->skb);
Johannes Berg252b86c2011-11-16 15:28:55 +01001401 else
Felix Fietkau1f98ab72012-11-10 03:44:14 +01001402 ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs);
Johannes Berg97b045d2008-06-20 01:22:30 +02001403 return -1;
1404 } else if (unlikely(res == TX_QUEUED)) {
Tomas Winkler5479d0e2008-06-28 03:15:03 +03001405 I802_DEBUG_INC(tx->local->tx_handlers_queued);
Johannes Berg97b045d2008-06-20 01:22:30 +02001406 return -1;
1407 }
1408
1409 return 0;
1410}
1411
Felix Fietkau06be6b12013-10-14 18:01:00 +02001412bool ieee80211_tx_prepare_skb(struct ieee80211_hw *hw,
1413 struct ieee80211_vif *vif, struct sk_buff *skb,
1414 int band, struct ieee80211_sta **sta)
1415{
1416 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1417 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1418 struct ieee80211_tx_data tx;
1419
1420 if (ieee80211_tx_prepare(sdata, &tx, skb) == TX_DROP)
1421 return false;
1422
1423 info->band = band;
1424 info->control.vif = vif;
1425 info->hw_queue = vif->hw_queue[skb_get_queue_mapping(skb)];
1426
1427 if (invoke_tx_handlers(&tx))
1428 return false;
1429
1430 if (sta) {
1431 if (tx.sta)
1432 *sta = &tx.sta->sta;
1433 else
1434 *sta = NULL;
1435 }
1436
1437 return true;
1438}
1439EXPORT_SYMBOL(ieee80211_tx_prepare_skb);
1440
Johannes Berg7bb45682011-02-24 14:42:06 +01001441/*
1442 * Returns false if the frame couldn't be transmitted but was queued instead.
1443 */
1444static bool ieee80211_tx(struct ieee80211_sub_if_data *sdata,
Johannes Berg73c4e192014-11-09 18:50:09 +02001445 struct sk_buff *skb, bool txpending)
Johannes Berge2ebc742007-07-27 15:43:22 +02001446{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001447 struct ieee80211_local *local = sdata->local;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001448 struct ieee80211_tx_data tx;
Johannes Berg97b045d2008-06-20 01:22:30 +02001449 ieee80211_tx_result res_prepare;
Johannes Berge039fa42008-05-15 12:55:29 +02001450 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001451 bool result = true;
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001452 int led_len;
Johannes Berge2ebc742007-07-27 15:43:22 +02001453
Johannes Berge2ebc742007-07-27 15:43:22 +02001454 if (unlikely(skb->len < 10)) {
1455 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001456 return true;
Johannes Berge2ebc742007-07-27 15:43:22 +02001457 }
1458
Johannes Berg58d41852007-09-26 17:53:18 +02001459 /* initialises tx */
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001460 led_len = skb->len;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001461 res_prepare = ieee80211_tx_prepare(sdata, &tx, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001462
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001463 if (unlikely(res_prepare == TX_DROP)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02001464 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg55de9082012-07-26 17:24:39 +02001465 return true;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001466 } else if (unlikely(res_prepare == TX_QUEUED)) {
Johannes Berg55de9082012-07-26 17:24:39 +02001467 return true;
Johannes Berge2ebc742007-07-27 15:43:22 +02001468 }
1469
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001470 /* set up hw_queue value early */
1471 if (!(info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) ||
1472 !(local->hw.flags & IEEE80211_HW_QUEUE_CONTROL))
1473 info->hw_queue =
1474 sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
1475
Johannes Berg7bb45682011-02-24 14:42:06 +01001476 if (!invoke_tx_handlers(&tx))
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001477 result = __ieee80211_tx(local, &tx.skbs, led_len,
1478 tx.sta, txpending);
Johannes Berg55de9082012-07-26 17:24:39 +02001479
Johannes Berg7bb45682011-02-24 14:42:06 +01001480 return result;
Johannes Berge2ebc742007-07-27 15:43:22 +02001481}
1482
1483/* device xmit handlers */
1484
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301485static int ieee80211_skb_resize(struct ieee80211_sub_if_data *sdata,
Johannes Berg23c07522008-05-29 10:38:53 +02001486 struct sk_buff *skb,
1487 int head_need, bool may_encrypt)
1488{
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301489 struct ieee80211_local *local = sdata->local;
Johannes Berg23c07522008-05-29 10:38:53 +02001490 int tail_need = 0;
1491
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301492 if (may_encrypt && sdata->crypto_tx_tailroom_needed_cnt) {
Johannes Berg23c07522008-05-29 10:38:53 +02001493 tail_need = IEEE80211_ENCRYPT_TAILROOM;
1494 tail_need -= skb_tailroom(skb);
1495 tail_need = max_t(int, tail_need, 0);
1496 }
1497
Ido Yarivc70f59a2014-07-29 15:39:14 +03001498 if (skb_cloned(skb) &&
1499 (!(local->hw.flags & IEEE80211_HW_SUPPORTS_CLONED_SKBS) ||
1500 !skb_clone_writable(skb, ETH_HLEN) ||
1501 sdata->crypto_tx_tailroom_needed_cnt))
Johannes Berg23c07522008-05-29 10:38:53 +02001502 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
Felix Fietkau4cd06a32010-12-18 19:30:49 +01001503 else if (head_need || tail_need)
Johannes Berg23c07522008-05-29 10:38:53 +02001504 I802_DEBUG_INC(local->tx_expand_skb_head);
Felix Fietkau4cd06a32010-12-18 19:30:49 +01001505 else
1506 return 0;
Johannes Berg23c07522008-05-29 10:38:53 +02001507
1508 if (pskb_expand_head(skb, head_need, tail_need, GFP_ATOMIC)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07001509 wiphy_debug(local->hw.wiphy,
1510 "failed to reallocate TX buffer\n");
Johannes Berg23c07522008-05-29 10:38:53 +02001511 return -ENOMEM;
1512 }
1513
Johannes Berg23c07522008-05-29 10:38:53 +02001514 return 0;
1515}
1516
Johannes Berg73c4e192014-11-09 18:50:09 +02001517void ieee80211_xmit(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +02001518{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001519 struct ieee80211_local *local = sdata->local;
Johannes Berge039fa42008-05-15 12:55:29 +02001520 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001521 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berge2ebc742007-07-27 15:43:22 +02001522 int headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001523 bool may_encrypt;
Johannes Berge2ebc742007-07-27 15:43:22 +02001524
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001525 may_encrypt = !(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT);
Johannes Berg23c07522008-05-29 10:38:53 +02001526
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001527 headroom = local->tx_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001528 if (may_encrypt)
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001529 headroom += sdata->encrypt_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001530 headroom -= skb_headroom(skb);
1531 headroom = max_t(int, 0, headroom);
1532
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301533 if (ieee80211_skb_resize(sdata, skb, headroom, may_encrypt)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02001534 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001535 return;
Johannes Berge2ebc742007-07-27 15:43:22 +02001536 }
1537
Steve deRosier740c1aa2010-09-11 20:01:31 -07001538 hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berg5061b0c2009-07-14 00:33:34 +02001539 info->control.vif = &sdata->vif;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001540
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001541 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1542 if (ieee80211_is_data(hdr->frame_control) &&
1543 is_unicast_ether_addr(hdr->addr1)) {
Johannes Bergbf7cd942013-02-15 14:40:31 +01001544 if (mesh_nexthop_resolve(sdata, skb))
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001545 return; /* skb queued: don't free */
1546 } else {
1547 ieee80211_mps_set_frame_flags(sdata, NULL, hdr);
1548 }
Johannes Berg98aed9f2012-03-27 14:18:36 +02001549 }
Javier Cardonacca89492009-08-10 17:29:29 -07001550
Javier Cardona2154c81c2011-09-07 17:49:53 -07001551 ieee80211_set_qos_hdr(sdata, skb);
Johannes Berg73c4e192014-11-09 18:50:09 +02001552 ieee80211_tx(sdata, skb, false);
Johannes Berge2ebc742007-07-27 15:43:22 +02001553}
1554
Johannes Berg73b9f032011-10-07 14:01:26 +02001555static bool ieee80211_parse_tx_radiotap(struct sk_buff *skb)
1556{
1557 struct ieee80211_radiotap_iterator iterator;
1558 struct ieee80211_radiotap_header *rthdr =
1559 (struct ieee80211_radiotap_header *) skb->data;
1560 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1561 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len,
1562 NULL);
1563 u16 txflags;
1564
1565 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
1566 IEEE80211_TX_CTL_DONTFRAG;
1567
1568 /*
1569 * for every radiotap entry that is present
1570 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
1571 * entries present, or -EINVAL on error)
1572 */
1573
1574 while (!ret) {
1575 ret = ieee80211_radiotap_iterator_next(&iterator);
1576
1577 if (ret)
1578 continue;
1579
1580 /* see if this argument is something we can use */
1581 switch (iterator.this_arg_index) {
1582 /*
1583 * You must take care when dereferencing iterator.this_arg
1584 * for multibyte types... the pointer is not aligned. Use
1585 * get_unaligned((type *)iterator.this_arg) to dereference
1586 * iterator.this_arg for type "type" safely on all arches.
1587 */
1588 case IEEE80211_RADIOTAP_FLAGS:
1589 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
1590 /*
1591 * this indicates that the skb we have been
1592 * handed has the 32-bit FCS CRC at the end...
1593 * we should react to that by snipping it off
1594 * because it will be recomputed and added
1595 * on transmission
1596 */
1597 if (skb->len < (iterator._max_length + FCS_LEN))
1598 return false;
1599
1600 skb_trim(skb, skb->len - FCS_LEN);
1601 }
1602 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
1603 info->flags &= ~IEEE80211_TX_INTFL_DONT_ENCRYPT;
1604 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
1605 info->flags &= ~IEEE80211_TX_CTL_DONTFRAG;
1606 break;
1607
1608 case IEEE80211_RADIOTAP_TX_FLAGS:
1609 txflags = get_unaligned_le16(iterator.this_arg);
1610 if (txflags & IEEE80211_RADIOTAP_F_TX_NOACK)
1611 info->flags |= IEEE80211_TX_CTL_NO_ACK;
1612 break;
1613
1614 /*
1615 * Please update the file
1616 * Documentation/networking/mac80211-injection.txt
1617 * when parsing new fields here.
1618 */
1619
1620 default:
1621 break;
1622 }
1623 }
1624
1625 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
1626 return false;
1627
1628 /*
1629 * remove the radiotap header
1630 * iterator->_max_length was sanity-checked against
1631 * skb->len by iterator init
1632 */
1633 skb_pull(skb, iterator._max_length);
1634
1635 return true;
1636}
1637
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00001638netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
1639 struct net_device *dev)
Johannes Berge2ebc742007-07-27 15:43:22 +02001640{
1641 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg55de9082012-07-26 17:24:39 +02001642 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berge2ebc742007-07-27 15:43:22 +02001643 struct ieee80211_radiotap_header *prthdr =
1644 (struct ieee80211_radiotap_header *)skb->data;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001645 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001646 struct ieee80211_hdr *hdr;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001647 struct ieee80211_sub_if_data *tmp_sdata, *sdata;
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001648 struct cfg80211_chan_def *chandef;
Andy Green9b8a74e2007-07-27 15:43:24 +02001649 u16 len_rthdr;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001650 int hdrlen;
Johannes Berge2ebc742007-07-27 15:43:22 +02001651
Andy Green9b8a74e2007-07-27 15:43:24 +02001652 /* check for not even having the fixed radiotap header part */
1653 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1654 goto fail; /* too short to be possibly valid */
1655
1656 /* is it a header version we can trust to find length from? */
1657 if (unlikely(prthdr->it_version))
1658 goto fail; /* only version 0 is supported */
1659
1660 /* then there must be a radiotap header with a length we can use */
1661 len_rthdr = ieee80211_get_radiotap_len(skb->data);
1662
1663 /* does the skb contain enough to deliver on the alleged length? */
1664 if (unlikely(skb->len < len_rthdr))
1665 goto fail; /* skb too short for claimed rt header extent */
Johannes Berge2ebc742007-07-27 15:43:22 +02001666
Johannes Berge2ebc742007-07-27 15:43:22 +02001667 /*
1668 * fix up the pointers accounting for the radiotap
1669 * header still being in there. We are being given
1670 * a precooked IEEE80211 header so no need for
1671 * normal processing
1672 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001673 skb_set_mac_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001674 /*
Andy Green9b8a74e2007-07-27 15:43:24 +02001675 * these are just fixed to the end of the rt area since we
1676 * don't have any better information and at this point, nobody cares
Johannes Berge2ebc742007-07-27 15:43:22 +02001677 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001678 skb_set_network_header(skb, len_rthdr);
1679 skb_set_transport_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001680
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001681 if (skb->len < len_rthdr + 2)
1682 goto fail;
1683
1684 hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr);
1685 hdrlen = ieee80211_hdrlen(hdr->frame_control);
1686
1687 if (skb->len < len_rthdr + hdrlen)
1688 goto fail;
1689
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001690 /*
1691 * Initialize skb->protocol if the injected frame is a data frame
1692 * carrying a rfc1042 header
1693 */
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001694 if (ieee80211_is_data(hdr->frame_control) &&
1695 skb->len >= len_rthdr + hdrlen + sizeof(rfc1042_header) + 2) {
1696 u8 *payload = (u8 *)hdr + hdrlen;
1697
Joe Perchesb203ca32012-05-08 18:56:52 +00001698 if (ether_addr_equal(payload, rfc1042_header))
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001699 skb->protocol = cpu_to_be16((payload[6] << 8) |
1700 payload[7]);
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001701 }
1702
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001703 memset(info, 0, sizeof(*info));
1704
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001705 info->flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
Johannes Berg73b9f032011-10-07 14:01:26 +02001706 IEEE80211_TX_CTL_INJECTED;
1707
1708 /* process and remove the injection radiotap header */
1709 if (!ieee80211_parse_tx_radiotap(skb))
1710 goto fail;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001711
1712 rcu_read_lock();
1713
1714 /*
1715 * We process outgoing injected frames that have a local address
1716 * we handle as though they are non-injected frames.
1717 * This code here isn't entirely correct, the local MAC address
1718 * isn't always enough to find the interface to use; for proper
1719 * VLAN/WDS support we will need a different mechanism (which
1720 * likely isn't going to be monitor interfaces).
1721 */
1722 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1723
1724 list_for_each_entry_rcu(tmp_sdata, &local->interfaces, list) {
1725 if (!ieee80211_sdata_running(tmp_sdata))
1726 continue;
1727 if (tmp_sdata->vif.type == NL80211_IFTYPE_MONITOR ||
1728 tmp_sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1729 tmp_sdata->vif.type == NL80211_IFTYPE_WDS)
1730 continue;
Joe Perchesb203ca32012-05-08 18:56:52 +00001731 if (ether_addr_equal(tmp_sdata->vif.addr, hdr->addr2)) {
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001732 sdata = tmp_sdata;
1733 break;
1734 }
1735 }
Johannes Berg7351c6b2009-11-19 01:08:30 +01001736
Johannes Berg55de9082012-07-26 17:24:39 +02001737 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1738 if (!chanctx_conf) {
1739 tmp_sdata = rcu_dereference(local->monitor_sdata);
1740 if (tmp_sdata)
1741 chanctx_conf =
1742 rcu_dereference(tmp_sdata->vif.chanctx_conf);
1743 }
Johannes Berg55de9082012-07-26 17:24:39 +02001744
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01001745 if (chanctx_conf)
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001746 chandef = &chanctx_conf->def;
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01001747 else if (!local->use_chanctx)
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001748 chandef = &local->_oper_chandef;
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01001749 else
1750 goto fail_rcu;
Johannes Berg55de9082012-07-26 17:24:39 +02001751
1752 /*
1753 * Frame injection is not allowed if beaconing is not allowed
1754 * or if we need radar detection. Beaconing is usually not allowed when
1755 * the mode or operation (Adhoc, AP, Mesh) does not support DFS.
1756 * Passive scan is also used in world regulatory domains where
1757 * your country is not known and as such it should be treated as
1758 * NO TX unless the channel is explicitly allowed in which case
1759 * your current regulatory domain would not have the passive scan
1760 * flag.
1761 *
1762 * Since AP mode uses monitor interfaces to inject/TX management
1763 * frames we can make AP mode the exception to this rule once it
1764 * supports radar detection as its implementation can deal with
1765 * radar detection by itself. We can do that later by adding a
1766 * monitor flag interfaces used for AP support.
1767 */
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001768 if (!cfg80211_reg_can_beacon(local->hw.wiphy, chandef,
1769 sdata->vif.type))
Johannes Berg55de9082012-07-26 17:24:39 +02001770 goto fail_rcu;
1771
Johannes Berg73c4e192014-11-09 18:50:09 +02001772 info->band = chandef->chan->band;
1773 ieee80211_xmit(sdata, skb);
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001774 rcu_read_unlock();
1775
Johannes Berge2ebc742007-07-27 15:43:22 +02001776 return NETDEV_TX_OK;
Andy Green9b8a74e2007-07-27 15:43:24 +02001777
Johannes Berg55de9082012-07-26 17:24:39 +02001778fail_rcu:
1779 rcu_read_unlock();
Andy Green9b8a74e2007-07-27 15:43:24 +02001780fail:
1781 dev_kfree_skb(skb);
1782 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
Johannes Berge2ebc742007-07-27 15:43:22 +02001783}
1784
Matti Gottliebad38bfc2013-11-18 19:06:45 +02001785/*
1786 * Measure Tx frame arrival time for Tx latency statistics calculation
1787 * A single Tx frame latency should be measured from when it is entering the
1788 * Kernel until we receive Tx complete confirmation indication and the skb is
1789 * freed.
1790 */
1791static void ieee80211_tx_latency_start_msrmnt(struct ieee80211_local *local,
1792 struct sk_buff *skb)
1793{
Matti Gottliebad38bfc2013-11-18 19:06:45 +02001794 struct ieee80211_tx_latency_bin_ranges *tx_latency;
1795
1796 tx_latency = rcu_dereference(local->tx_latency);
1797 if (!tx_latency)
1798 return;
Thomas Gleixner8d7b70f2014-06-11 23:59:18 +00001799 skb->tstamp = ktime_get();
Matti Gottliebad38bfc2013-11-18 19:06:45 +02001800}
1801
Johannes Berge2ebc742007-07-27 15:43:22 +02001802/**
Johannes Berg4c9451e2014-11-09 18:50:10 +02001803 * ieee80211_build_hdr - build 802.11 header in the given frame
1804 * @sdata: virtual interface to build the header for
1805 * @skb: the skb to build the header in
Liad Kaufman24d342c2014-11-09 18:50:07 +02001806 * @info_flags: skb flags to set
Johannes Berge2ebc742007-07-27 15:43:22 +02001807 *
Johannes Berg4c9451e2014-11-09 18:50:10 +02001808 * This function takes the skb with 802.3 header and reformats the header to
1809 * the appropriate IEEE 802.11 header based on which interface the packet is
1810 * being transmitted on.
Johannes Berge2ebc742007-07-27 15:43:22 +02001811 *
Johannes Berg4c9451e2014-11-09 18:50:10 +02001812 * Note that this function also takes care of the TX status request and
1813 * potential unsharing of the SKB - this needs to be interleaved with the
1814 * header building.
1815 *
1816 * The function requires the read-side RCU lock held
1817 *
1818 * Returns: the (possibly reallocated) skb or an ERR_PTR() code
Johannes Berge2ebc742007-07-27 15:43:22 +02001819 */
Johannes Berg4c9451e2014-11-09 18:50:10 +02001820static struct sk_buff *ieee80211_build_hdr(struct ieee80211_sub_if_data *sdata,
1821 struct sk_buff *skb, u32 info_flags)
Johannes Berge2ebc742007-07-27 15:43:22 +02001822{
Johannes Berg133b8222008-09-16 14:18:59 +02001823 struct ieee80211_local *local = sdata->local;
Felix Fietkau489ee912010-12-18 19:30:48 +01001824 struct ieee80211_tx_info *info;
Johannes Bergdcf33962012-07-30 15:11:56 +02001825 int head_need;
Harvey Harrison065e96052008-06-22 16:45:27 -07001826 u16 ethertype, hdrlen, meshhdrlen = 0;
1827 __le16 fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02001828 struct ieee80211_hdr hdr;
Wey-Yi Guyff67bb82010-08-21 07:23:29 -07001829 struct ieee80211s_hdr mesh_hdr __maybe_unused;
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001830 struct mesh_path __maybe_unused *mppath = NULL, *mpath = NULL;
Johannes Berge2ebc742007-07-27 15:43:22 +02001831 const u8 *encaps_data;
1832 int encaps_len, skip_header_bytes;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001833 int nh_pos, h_pos;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001834 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001835 bool wme_sta = false, authorized = false, tdls_auth = false;
Arik Nemtsov9deba042014-06-11 17:18:18 +03001836 bool tdls_peer = false, tdls_setup_frame = false;
Johannes Berga729cff2011-11-06 14:13:34 +01001837 bool multicast;
Johannes Berga729cff2011-11-06 14:13:34 +01001838 u16 info_id = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02001839 struct ieee80211_chanctx_conf *chanctx_conf;
1840 struct ieee80211_sub_if_data *ap_sdata;
1841 enum ieee80211_band band;
Johannes Berg4c9451e2014-11-09 18:50:10 +02001842 int ret;
Johannes Berge2ebc742007-07-27 15:43:22 +02001843
Johannes Berge2ebc742007-07-27 15:43:22 +02001844 /* convert Ethernet header to proper 802.11 header (based on
1845 * operation mode) */
1846 ethertype = (skb->data[12] << 8) | skb->data[13];
Harvey Harrison065e96052008-06-22 16:45:27 -07001847 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
Johannes Berge2ebc742007-07-27 15:43:22 +02001848
Johannes Berg51fb61e2007-12-19 01:31:27 +01001849 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001850 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg9bc383d2009-11-19 11:55:19 +01001851 sta = rcu_dereference(sdata->u.vlan.sta);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001852 if (sta) {
1853 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
1854 /* RA TA DA SA */
1855 memcpy(hdr.addr1, sta->sta.addr, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001856 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001857 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1858 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1859 hdrlen = 30;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001860 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Johannes Berga74a8c82014-07-22 14:50:47 +02001861 wme_sta = sta->sta.wme;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001862 }
Johannes Berg55de9082012-07-26 17:24:39 +02001863 ap_sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
1864 u.ap);
1865 chanctx_conf = rcu_dereference(ap_sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02001866 if (!chanctx_conf) {
1867 ret = -ENOTCONN;
1868 goto free;
1869 }
Johannes Berg4bf88532012-11-09 11:39:59 +01001870 band = chanctx_conf->def.chan->band;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001871 if (sta)
1872 break;
1873 /* fall through */
1874 case NL80211_IFTYPE_AP:
Arnd Bergmannfe801232013-01-25 14:14:33 +00001875 if (sdata->vif.type == NL80211_IFTYPE_AP)
1876 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02001877 if (!chanctx_conf) {
1878 ret = -ENOTCONN;
1879 goto free;
1880 }
Harvey Harrison065e96052008-06-22 16:45:27 -07001881 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
Johannes Berge2ebc742007-07-27 15:43:22 +02001882 /* DA BSSID SA */
1883 memcpy(hdr.addr1, skb->data, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001884 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02001885 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1886 hdrlen = 24;
Johannes Berg4bf88532012-11-09 11:39:59 +01001887 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04001888 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001889 case NL80211_IFTYPE_WDS:
Harvey Harrison065e96052008-06-22 16:45:27 -07001890 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
Johannes Berge2ebc742007-07-27 15:43:22 +02001891 /* RA TA DA SA */
1892 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001893 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02001894 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1895 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1896 hdrlen = 30;
Johannes Berg55de9082012-07-26 17:24:39 +02001897 /*
1898 * This is the exception! WDS style interfaces are prohibited
1899 * when channel contexts are in used so this must be valid
1900 */
Karl Beldan675a0b02013-03-25 16:26:57 +01001901 band = local->hw.conf.chandef.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04001902 break;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001903#ifdef CONFIG_MAC80211_MESH
Johannes Berg05c914f2008-09-11 00:01:58 +02001904 case NL80211_IFTYPE_MESH_POINT:
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001905 if (!is_multicast_ether_addr(skb->data)) {
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001906 struct sta_info *next_hop;
1907 bool mpp_lookup = true;
1908
Johannes Bergbf7cd942013-02-15 14:40:31 +01001909 mpath = mesh_path_lookup(sdata, skb->data);
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001910 if (mpath) {
1911 mpp_lookup = false;
1912 next_hop = rcu_dereference(mpath->next_hop);
1913 if (!next_hop ||
1914 !(mpath->flags & (MESH_PATH_ACTIVE |
1915 MESH_PATH_RESOLVING)))
1916 mpp_lookup = true;
1917 }
1918
1919 if (mpp_lookup)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001920 mppath = mpp_path_lookup(sdata, skb->data);
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001921
1922 if (mppath && mpath)
1923 mesh_path_del(mpath->sdata, mpath->dst);
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001924 }
YanBo79617de2008-09-22 13:30:32 +08001925
Joel A Fernandesf76b57b2010-12-28 19:28:11 -06001926 /*
Joel A Fernandes9d525012011-01-10 00:44:23 -06001927 * Use address extension if it is a packet from
1928 * another interface or if we know the destination
1929 * is being proxied by a portal (i.e. portal address
1930 * differs from proxied address)
Joel A Fernandesf76b57b2010-12-28 19:28:11 -06001931 */
Joe Perchesb203ca32012-05-08 18:56:52 +00001932 if (ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN) &&
1933 !(mppath && !ether_addr_equal(mppath->mpp, skb->data))) {
Javier Cardona3c5772a2009-08-10 12:15:48 -07001934 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
1935 skb->data, skb->data + ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +01001936 meshhdrlen = ieee80211_new_mesh_header(sdata, &mesh_hdr,
1937 NULL, NULL);
YanBo79617de2008-09-22 13:30:32 +08001938 } else {
Thomas Pedersen27f01122012-08-20 11:28:25 -07001939 /* DS -> MBSS (802.11-2012 13.11.3.3).
1940 * For unicast with unknown forwarding information,
1941 * destination might be in the MBSS or if that fails
1942 * forwarded to another mesh gate. In either case
1943 * resolution will be handled in ieee80211_xmit(), so
1944 * leave the original DA. This also works for mcast */
1945 const u8 *mesh_da = skb->data;
YanBo79617de2008-09-22 13:30:32 +08001946
Thomas Pedersen27f01122012-08-20 11:28:25 -07001947 if (mppath)
1948 mesh_da = mppath->mpp;
1949 else if (mpath)
1950 mesh_da = mpath->dst;
Thomas Pedersen27f01122012-08-20 11:28:25 -07001951
Javier Cardona3c5772a2009-08-10 12:15:48 -07001952 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
Johannes Berg47846c92009-11-25 17:46:19 +01001953 mesh_da, sdata->vif.addr);
Thomas Pedersen27f01122012-08-20 11:28:25 -07001954 if (is_multicast_ether_addr(mesh_da))
1955 /* DA TA mSA AE:SA */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001956 meshhdrlen = ieee80211_new_mesh_header(
1957 sdata, &mesh_hdr,
1958 skb->data + ETH_ALEN, NULL);
Javier Cardona3c5772a2009-08-10 12:15:48 -07001959 else
Thomas Pedersen27f01122012-08-20 11:28:25 -07001960 /* RA TA mDA mSA AE:DA SA */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001961 meshhdrlen = ieee80211_new_mesh_header(
1962 sdata, &mesh_hdr, skb->data,
1963 skb->data + ETH_ALEN);
YanBo79617de2008-09-22 13:30:32 +08001964
YanBo79617de2008-09-22 13:30:32 +08001965 }
Johannes Berg55de9082012-07-26 17:24:39 +02001966 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02001967 if (!chanctx_conf) {
1968 ret = -ENOTCONN;
1969 goto free;
1970 }
Johannes Berg4bf88532012-11-09 11:39:59 +01001971 band = chanctx_conf->def.chan->band;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001972 break;
1973#endif
Johannes Berg05c914f2008-09-11 00:01:58 +02001974 case NL80211_IFTYPE_STATION:
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001975 if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) {
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001976 sta = sta_info_get(sdata, skb->data);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001977 if (sta) {
1978 authorized = test_sta_flag(sta,
1979 WLAN_STA_AUTHORIZED);
Johannes Berga74a8c82014-07-22 14:50:47 +02001980 wme_sta = sta->sta.wme;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001981 tdls_peer = test_sta_flag(sta,
Arik Nemtsov9deba042014-06-11 17:18:18 +03001982 WLAN_STA_TDLS_PEER);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001983 tdls_auth = test_sta_flag(sta,
1984 WLAN_STA_TDLS_PEER_AUTH);
1985 }
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001986
Arik Nemtsov9deba042014-06-11 17:18:18 +03001987 if (tdls_peer)
1988 tdls_setup_frame =
1989 ethertype == ETH_P_TDLS &&
1990 skb->len > 14 &&
1991 skb->data[14] == WLAN_TDLS_SNAP_RFTYPE;
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001992 }
1993
Arik Nemtsov9deba042014-06-11 17:18:18 +03001994 /*
1995 * TDLS link during setup - throw out frames to peer. We allow
1996 * TDLS-setup frames to unauthorized peers for the special case
1997 * of a link teardown after a TDLS sta is removed due to being
1998 * unreachable.
1999 */
Johannes Berg4c9451e2014-11-09 18:50:10 +02002000 if (tdls_peer && !tdls_auth && !tdls_setup_frame) {
2001 ret = -EINVAL;
2002 goto free;
2003 }
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002004
Arik Nemtsov9deba042014-06-11 17:18:18 +03002005 /* send direct packets to authorized TDLS peers */
2006 if (tdls_peer && tdls_auth) {
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002007 /* DA SA BSSID */
2008 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2009 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2010 memcpy(hdr.addr3, sdata->u.mgd.bssid, ETH_ALEN);
2011 hdrlen = 24;
2012 } else if (sdata->u.mgd.use_4addr &&
2013 cpu_to_be16(ethertype) != sdata->control_port_protocol) {
2014 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
2015 IEEE80211_FCTL_TODS);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002016 /* RA TA DA SA */
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002017 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01002018 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002019 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2020 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2021 hdrlen = 30;
2022 } else {
2023 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
2024 /* BSSID SA DA */
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002025 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002026 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2027 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2028 hdrlen = 24;
2029 }
Johannes Berg55de9082012-07-26 17:24:39 +02002030 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02002031 if (!chanctx_conf) {
2032 ret = -ENOTCONN;
2033 goto free;
2034 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002035 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04002036 break;
Rostislav Lisovy239281f2014-11-03 10:33:19 +01002037 case NL80211_IFTYPE_OCB:
2038 /* DA SA BSSID */
2039 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2040 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2041 eth_broadcast_addr(hdr.addr3);
2042 hdrlen = 24;
2043 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02002044 if (!chanctx_conf) {
2045 ret = -ENOTCONN;
2046 goto free;
2047 }
Rostislav Lisovy239281f2014-11-03 10:33:19 +01002048 band = chanctx_conf->def.chan->band;
2049 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002050 case NL80211_IFTYPE_ADHOC:
Johannes Berge2ebc742007-07-27 15:43:22 +02002051 /* DA SA BSSID */
2052 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2053 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01002054 memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02002055 hdrlen = 24;
Johannes Berg55de9082012-07-26 17:24:39 +02002056 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02002057 if (!chanctx_conf) {
2058 ret = -ENOTCONN;
2059 goto free;
2060 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002061 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04002062 break;
2063 default:
Johannes Berg4c9451e2014-11-09 18:50:10 +02002064 ret = -EINVAL;
2065 goto free;
Johannes Berge2ebc742007-07-27 15:43:22 +02002066 }
2067
Johannes Berg7d185b82008-01-28 17:11:43 +01002068 /*
2069 * There's no need to try to look up the destination
2070 * if it is a multicast address (which can only happen
2071 * in AP mode)
2072 */
Johannes Berga729cff2011-11-06 14:13:34 +01002073 multicast = is_multicast_ether_addr(hdr.addr1);
2074 if (!multicast) {
Johannes Bergabe60632009-11-25 17:46:18 +01002075 sta = sta_info_get(sdata, hdr.addr1);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002076 if (sta) {
2077 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Johannes Berga74a8c82014-07-22 14:50:47 +02002078 wme_sta = sta->sta.wme;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002079 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002080 }
2081
Javier Cardona4777be42011-09-07 17:49:52 -07002082 /* For mesh, the use of the QoS header is mandatory */
2083 if (ieee80211_vif_is_mesh(&sdata->vif))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002084 wme_sta = true;
Javier Cardona4777be42011-09-07 17:49:52 -07002085
Johannes Berg3434fbd2008-05-03 00:59:37 +02002086 /* receiver and we are QoS enabled, use a QoS type frame */
Johannes Berg32c50572012-03-28 11:04:29 +02002087 if (wme_sta && local->hw.queues >= IEEE80211_NUM_ACS) {
Harvey Harrison065e96052008-06-22 16:45:27 -07002088 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002089 hdrlen += 2;
2090 }
2091
2092 /*
Johannes Berg238814f2008-01-28 17:19:37 +01002093 * Drop unicast frames to unauthorised stations unless they are
2094 * EAPOL frames from the local station.
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002095 */
Johannes Berg55182e42011-10-12 17:28:21 +02002096 if (unlikely(!ieee80211_vif_is_mesh(&sdata->vif) &&
Rostislav Lisovy239281f2014-11-03 10:33:19 +01002097 (sdata->vif.type != NL80211_IFTYPE_OCB) &&
Sergey Ryazanova6ececf2013-08-30 01:35:09 +04002098 !multicast && !authorized &&
Johannes Berg55182e42011-10-12 17:28:21 +02002099 (cpu_to_be16(ethertype) != sdata->control_port_protocol ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002100 !ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN)))) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002101#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002102 net_info_ratelimited("%s: dropped frame to %pM (unauthorized port)\n",
Johannes Berg4c9451e2014-11-09 18:50:10 +02002103 sdata->name, hdr.addr1);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002104#endif
2105
2106 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
2107
Johannes Berg4c9451e2014-11-09 18:50:10 +02002108 ret = -EPERM;
2109 goto free;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002110 }
2111
Johannes Berga729cff2011-11-06 14:13:34 +01002112 if (unlikely(!multicast && skb->sk &&
2113 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS)) {
Alexander Duyckbf7fa552014-09-10 18:05:42 -04002114 struct sk_buff *ack_skb = skb_clone_sk(skb);
Johannes Berga729cff2011-11-06 14:13:34 +01002115
Alexander Duyckbf7fa552014-09-10 18:05:42 -04002116 if (ack_skb) {
Johannes Berga729cff2011-11-06 14:13:34 +01002117 unsigned long flags;
Tejun Heo9475af62013-02-27 17:04:59 -08002118 int id;
Johannes Berga729cff2011-11-06 14:13:34 +01002119
2120 spin_lock_irqsave(&local->ack_status_lock, flags);
Alexander Duyckbf7fa552014-09-10 18:05:42 -04002121 id = idr_alloc(&local->ack_status_frames, ack_skb,
Tejun Heo9475af62013-02-27 17:04:59 -08002122 1, 0x10000, GFP_ATOMIC);
Johannes Berga729cff2011-11-06 14:13:34 +01002123 spin_unlock_irqrestore(&local->ack_status_lock, flags);
2124
Tejun Heo9475af62013-02-27 17:04:59 -08002125 if (id >= 0) {
Johannes Berga729cff2011-11-06 14:13:34 +01002126 info_id = id;
2127 info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
Johannes Berga729cff2011-11-06 14:13:34 +01002128 } else {
Alexander Duyckbf7fa552014-09-10 18:05:42 -04002129 kfree_skb(ack_skb);
Johannes Berga729cff2011-11-06 14:13:34 +01002130 }
Johannes Berga729cff2011-11-06 14:13:34 +01002131 }
2132 }
2133
Helmut Schaa7e244702010-12-02 18:44:09 +01002134 /*
2135 * If the skb is shared we need to obtain our own copy.
2136 */
2137 if (skb_shared(skb)) {
Johannes Berga729cff2011-11-06 14:13:34 +01002138 struct sk_buff *tmp_skb = skb;
2139
2140 /* can't happen -- skb is a clone if info_id != 0 */
2141 WARN_ON(info_id);
2142
Felix Fietkauf8a0a782010-12-18 19:30:50 +01002143 skb = skb_clone(skb, GFP_ATOMIC);
Helmut Schaa7e244702010-12-02 18:44:09 +01002144 kfree_skb(tmp_skb);
2145
Johannes Berg4c9451e2014-11-09 18:50:10 +02002146 if (!skb) {
2147 ret = -ENOMEM;
2148 goto free;
2149 }
Helmut Schaa7e244702010-12-02 18:44:09 +01002150 }
2151
Harvey Harrison065e96052008-06-22 16:45:27 -07002152 hdr.frame_control = fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02002153 hdr.duration_id = 0;
2154 hdr.seq_ctrl = 0;
2155
2156 skip_header_bytes = ETH_HLEN;
2157 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
2158 encaps_data = bridge_tunnel_header;
2159 encaps_len = sizeof(bridge_tunnel_header);
2160 skip_header_bytes -= 2;
Simon Hormane5c5d222013-03-28 13:38:25 +09002161 } else if (ethertype >= ETH_P_802_3_MIN) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002162 encaps_data = rfc1042_header;
2163 encaps_len = sizeof(rfc1042_header);
2164 skip_header_bytes -= 2;
2165 } else {
2166 encaps_data = NULL;
2167 encaps_len = 0;
2168 }
2169
Helmut Schaa7e244702010-12-02 18:44:09 +01002170 nh_pos = skb_network_header(skb) - skb->data;
2171 h_pos = skb_transport_header(skb) - skb->data;
2172
Johannes Berge2ebc742007-07-27 15:43:22 +02002173 skb_pull(skb, skip_header_bytes);
2174 nh_pos -= skip_header_bytes;
2175 h_pos -= skip_header_bytes;
2176
Johannes Berg23c07522008-05-29 10:38:53 +02002177 head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002178
Johannes Berg23c07522008-05-29 10:38:53 +02002179 /*
2180 * So we need to modify the skb header and hence need a copy of
2181 * that. The head_need variable above doesn't, so far, include
2182 * the needed header space that we don't need right away. If we
2183 * can, then we don't reallocate right now but only after the
2184 * frame arrives at the master device (if it does...)
2185 *
2186 * If we cannot, however, then we will reallocate to include all
2187 * the ever needed space. Also, if we need to reallocate it anyway,
2188 * make it big enough for everything we may ever need.
2189 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002190
David S. Miller3a5be7d2008-06-18 01:19:51 -07002191 if (head_need > 0 || skb_cloned(skb)) {
Max Stepanov2475b1cc2013-03-24 14:23:27 +02002192 head_need += sdata->encrypt_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02002193 head_need += local->tx_headroom;
2194 head_need = max_t(int, 0, head_need);
Felix Fietkauc3e77242012-10-08 14:39:33 +02002195 if (ieee80211_skb_resize(sdata, skb, head_need, true)) {
2196 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg1c963be2012-11-07 14:02:30 +01002197 skb = NULL;
Johannes Berg4c9451e2014-11-09 18:50:10 +02002198 return ERR_PTR(-ENOMEM);
Felix Fietkauc3e77242012-10-08 14:39:33 +02002199 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002200 }
2201
2202 if (encaps_data) {
2203 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
2204 nh_pos += encaps_len;
2205 h_pos += encaps_len;
2206 }
Johannes Bergc29b9b92007-09-14 11:10:24 -04002207
Yuri Ershove4ab7eb2010-06-29 15:08:06 +04002208#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002209 if (meshhdrlen > 0) {
2210 memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
2211 nh_pos += meshhdrlen;
2212 h_pos += meshhdrlen;
2213 }
Yuri Ershove4ab7eb2010-06-29 15:08:06 +04002214#endif
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002215
Harvey Harrison065e96052008-06-22 16:45:27 -07002216 if (ieee80211_is_data_qos(fc)) {
Johannes Bergc29b9b92007-09-14 11:10:24 -04002217 __le16 *qos_control;
2218
Weilong Chenf359d3f2013-12-18 15:44:16 +08002219 qos_control = (__le16 *) skb_push(skb, 2);
Johannes Bergc29b9b92007-09-14 11:10:24 -04002220 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
2221 /*
2222 * Maybe we could actually set some fields here, for now just
2223 * initialise to zero to indicate no special operation.
2224 */
2225 *qos_control = 0;
2226 } else
2227 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
2228
Johannes Berge2ebc742007-07-27 15:43:22 +02002229 nh_pos += hdrlen;
2230 h_pos += hdrlen;
2231
Johannes Berge2ebc742007-07-27 15:43:22 +02002232 /* Update skb pointers to various headers since this modified frame
2233 * is going to go through Linux networking code that may potentially
2234 * need things like pointer to IP header. */
2235 skb_set_mac_header(skb, 0);
2236 skb_set_network_header(skb, nh_pos);
2237 skb_set_transport_header(skb, h_pos);
2238
Felix Fietkau489ee912010-12-18 19:30:48 +01002239 info = IEEE80211_SKB_CB(skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002240 memset(info, 0, sizeof(*info));
2241
Johannes Berga729cff2011-11-06 14:13:34 +01002242 info->flags = info_flags;
2243 info->ack_frame_id = info_id;
Johannes Berg73c4e192014-11-09 18:50:09 +02002244 info->band = band;
Johannes Berga729cff2011-11-06 14:13:34 +01002245
Johannes Berg4c9451e2014-11-09 18:50:10 +02002246 return skb;
2247 free:
2248 kfree_skb(skb);
2249 return ERR_PTR(ret);
Johannes Berge2ebc742007-07-27 15:43:22 +02002250}
2251
Johannes Berg4c9451e2014-11-09 18:50:10 +02002252void __ieee80211_subif_start_xmit(struct sk_buff *skb,
2253 struct net_device *dev,
2254 u32 info_flags)
2255{
2256 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2257 struct ieee80211_local *local = sdata->local;
2258
2259 if (unlikely(skb->len < ETH_HLEN)) {
2260 kfree_skb(skb);
2261 return;
2262 }
2263
2264 rcu_read_lock();
2265
2266 /* Measure frame arrival for Tx latency statistics calculation */
2267 ieee80211_tx_latency_start_msrmnt(local, skb);
2268
2269 skb = ieee80211_build_hdr(sdata, skb, info_flags);
2270 if (IS_ERR(skb))
2271 goto out;
2272
2273 dev->stats.tx_packets++;
2274 dev->stats.tx_bytes += skb->len;
2275 dev->trans_start = jiffies;
2276
2277 ieee80211_xmit(sdata, skb);
2278 out:
2279 rcu_read_unlock();
2280}
2281
2282/**
2283 * ieee80211_subif_start_xmit - netif start_xmit function for 802.3 vifs
2284 * @skb: packet to be sent
2285 * @dev: incoming interface
2286 *
2287 * On failure skb will be freed.
2288 */
Liad Kaufman24d342c2014-11-09 18:50:07 +02002289netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb,
2290 struct net_device *dev)
2291{
2292 __ieee80211_subif_start_xmit(skb, dev, 0);
2293 return NETDEV_TX_OK;
2294}
Johannes Berge2ebc742007-07-27 15:43:22 +02002295
Johannes Berg7528ec52014-11-09 18:50:11 +02002296struct sk_buff *
2297ieee80211_build_data_template(struct ieee80211_sub_if_data *sdata,
2298 struct sk_buff *skb, u32 info_flags)
2299{
2300 struct ieee80211_hdr *hdr;
2301 struct ieee80211_tx_data tx = {
2302 .local = sdata->local,
2303 .sdata = sdata,
2304 };
2305
2306 rcu_read_lock();
2307
2308 skb = ieee80211_build_hdr(sdata, skb, info_flags);
2309 if (IS_ERR(skb))
2310 goto out;
2311
2312 hdr = (void *)skb->data;
2313 tx.sta = sta_info_get(sdata, hdr->addr1);
2314 tx.skb = skb;
2315
2316 if (ieee80211_tx_h_select_key(&tx) != TX_CONTINUE) {
2317 rcu_read_unlock();
2318 kfree_skb(skb);
2319 return ERR_PTR(-EINVAL);
2320 }
2321
2322out:
2323 rcu_read_unlock();
2324 return skb;
2325}
2326
Johannes Berge2530082008-05-17 00:57:14 +02002327/*
2328 * ieee80211_clear_tx_pending may not be called in a context where
2329 * it is possible that it packets could come in again.
2330 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002331void ieee80211_clear_tx_pending(struct ieee80211_local *local)
2332{
Felix Fietkau1f98ab72012-11-10 03:44:14 +01002333 struct sk_buff *skb;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01002334 int i;
Johannes Berge2ebc742007-07-27 15:43:22 +02002335
Felix Fietkau1f98ab72012-11-10 03:44:14 +01002336 for (i = 0; i < local->hw.queues; i++) {
2337 while ((skb = skb_dequeue(&local->pending[i])) != NULL)
2338 ieee80211_free_txskb(&local->hw, skb);
2339 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002340}
2341
Johannes Berg7bb45682011-02-24 14:42:06 +01002342/*
2343 * Returns false if the frame couldn't be transmitted but was queued instead,
2344 * which in this case means re-queued -- take as an indication to stop sending
2345 * more pending frames.
2346 */
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002347static bool ieee80211_tx_pending_skb(struct ieee80211_local *local,
2348 struct sk_buff *skb)
2349{
2350 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2351 struct ieee80211_sub_if_data *sdata;
2352 struct sta_info *sta;
2353 struct ieee80211_hdr *hdr;
Johannes Berg7bb45682011-02-24 14:42:06 +01002354 bool result;
Johannes Berg55de9082012-07-26 17:24:39 +02002355 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002356
Johannes Berg5061b0c2009-07-14 00:33:34 +02002357 sdata = vif_to_sdata(info->control.vif);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002358
2359 if (info->flags & IEEE80211_TX_INTFL_NEED_TXPROCESSING) {
Johannes Berg55de9082012-07-26 17:24:39 +02002360 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2361 if (unlikely(!chanctx_conf)) {
2362 dev_kfree_skb(skb);
2363 return true;
2364 }
Johannes Berg73c4e192014-11-09 18:50:09 +02002365 info->band = chanctx_conf->def.chan->band;
2366 result = ieee80211_tx(sdata, skb, true);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002367 } else {
Johannes Berg252b86c2011-11-16 15:28:55 +01002368 struct sk_buff_head skbs;
2369
2370 __skb_queue_head_init(&skbs);
2371 __skb_queue_tail(&skbs, skb);
2372
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002373 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Bergabe60632009-11-25 17:46:18 +01002374 sta = sta_info_get(sdata, hdr->addr1);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002375
Johannes Berg74e4dbf2011-11-16 15:28:57 +01002376 result = __ieee80211_tx(local, &skbs, skb->len, sta, true);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002377 }
2378
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002379 return result;
2380}
2381
Johannes Berge2530082008-05-17 00:57:14 +02002382/*
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002383 * Transmit all pending packets. Called from tasklet.
Johannes Berge2530082008-05-17 00:57:14 +02002384 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002385void ieee80211_tx_pending(unsigned long data)
2386{
2387 struct ieee80211_local *local = (struct ieee80211_local *)data;
Johannes Berg2a577d92009-03-23 17:28:37 +01002388 unsigned long flags;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002389 int i;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002390 bool txok;
Johannes Berge2ebc742007-07-27 15:43:22 +02002391
Johannes Bergf0e72852009-03-23 17:28:36 +01002392 rcu_read_lock();
Johannes Berg2a577d92009-03-23 17:28:37 +01002393
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002394 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Berg176be722009-03-12 23:49:28 +01002395 for (i = 0; i < local->hw.queues; i++) {
Johannes Berg2a577d92009-03-23 17:28:37 +01002396 /*
2397 * If queue is stopped by something other than due to pending
2398 * frames, or we have no pending frames, proceed to next queue.
2399 */
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002400 if (local->queue_stop_reasons[i] ||
Johannes Berg2a577d92009-03-23 17:28:37 +01002401 skb_queue_empty(&local->pending[i]))
Johannes Berge2ebc742007-07-27 15:43:22 +02002402 continue;
Johannes Berge2530082008-05-17 00:57:14 +02002403
Johannes Berg2a577d92009-03-23 17:28:37 +01002404 while (!skb_queue_empty(&local->pending[i])) {
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002405 struct sk_buff *skb = __skb_dequeue(&local->pending[i]);
Johannes Berg5061b0c2009-07-14 00:33:34 +02002406 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg5061b0c2009-07-14 00:33:34 +02002407
Johannes Berga7bc3762009-07-27 10:33:31 +02002408 if (WARN_ON(!info->control.vif)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02002409 ieee80211_free_txskb(&local->hw, skb);
Johannes Berga7bc3762009-07-27 10:33:31 +02002410 continue;
2411 }
2412
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002413 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
2414 flags);
Johannes Berg2a577d92009-03-23 17:28:37 +01002415
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002416 txok = ieee80211_tx_pending_skb(local, skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002417 spin_lock_irqsave(&local->queue_stop_reason_lock,
2418 flags);
2419 if (!txok)
Johannes Berg2a577d92009-03-23 17:28:37 +01002420 break;
Johannes Berge2ebc742007-07-27 15:43:22 +02002421 }
Johannes Berg7236fe22010-03-22 13:42:43 -07002422
2423 if (skb_queue_empty(&local->pending[i]))
Johannes Berg3a25a8c2012-04-03 16:28:50 +02002424 ieee80211_propagate_queue_wake(local, i);
Johannes Berge2ebc742007-07-27 15:43:22 +02002425 }
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002426 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Johannes Berg2a577d92009-03-23 17:28:37 +01002427
Johannes Bergf0e72852009-03-23 17:28:36 +01002428 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002429}
2430
2431/* functions for drivers to get certain frames */
2432
Marco Porscheac70c12013-01-07 16:04:50 +01002433static void __ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002434 struct ps_data *ps, struct sk_buff *skb,
2435 bool is_template)
Johannes Berge2ebc742007-07-27 15:43:22 +02002436{
2437 u8 *pos, *tim;
2438 int aid0 = 0;
2439 int i, have_bits = 0, n1, n2;
2440
2441 /* Generate bitmap for TIM only if there are any STAs in power save
2442 * mode. */
Marco Porschd012a602012-10-10 12:39:50 -07002443 if (atomic_read(&ps->num_sta_ps) > 0)
Johannes Berge2ebc742007-07-27 15:43:22 +02002444 /* in the hope that this is faster than
2445 * checking byte-for-byte */
Weilong Chenf359d3f2013-12-18 15:44:16 +08002446 have_bits = !bitmap_empty((unsigned long *)ps->tim,
Johannes Berge2ebc742007-07-27 15:43:22 +02002447 IEEE80211_MAX_AID+1);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002448 if (!is_template) {
2449 if (ps->dtim_count == 0)
2450 ps->dtim_count = sdata->vif.bss_conf.dtim_period - 1;
2451 else
2452 ps->dtim_count--;
2453 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002454
2455 tim = pos = (u8 *) skb_put(skb, 6);
2456 *pos++ = WLAN_EID_TIM;
2457 *pos++ = 4;
Marco Porschd012a602012-10-10 12:39:50 -07002458 *pos++ = ps->dtim_count;
Johannes Berg88600202012-02-13 15:17:18 +01002459 *pos++ = sdata->vif.bss_conf.dtim_period;
Johannes Berge2ebc742007-07-27 15:43:22 +02002460
Marco Porschd012a602012-10-10 12:39:50 -07002461 if (ps->dtim_count == 0 && !skb_queue_empty(&ps->bc_buf))
Johannes Berge2ebc742007-07-27 15:43:22 +02002462 aid0 = 1;
2463
Marco Porschd012a602012-10-10 12:39:50 -07002464 ps->dtim_bc_mc = aid0 == 1;
Christian Lamparter512119b2011-01-31 20:48:44 +02002465
Johannes Berge2ebc742007-07-27 15:43:22 +02002466 if (have_bits) {
2467 /* Find largest even number N1 so that bits numbered 1 through
2468 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
2469 * (N2 + 1) x 8 through 2007 are 0. */
2470 n1 = 0;
2471 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
Marco Porschd012a602012-10-10 12:39:50 -07002472 if (ps->tim[i]) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002473 n1 = i & 0xfe;
2474 break;
2475 }
2476 }
2477 n2 = n1;
2478 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
Marco Porschd012a602012-10-10 12:39:50 -07002479 if (ps->tim[i]) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002480 n2 = i;
2481 break;
2482 }
2483 }
2484
2485 /* Bitmap control */
2486 *pos++ = n1 | aid0;
2487 /* Part Virt Bitmap */
Eliad Peller5220da32011-11-24 16:50:00 +02002488 skb_put(skb, n2 - n1);
Marco Porschd012a602012-10-10 12:39:50 -07002489 memcpy(pos, ps->tim + n1, n2 - n1 + 1);
Johannes Berge2ebc742007-07-27 15:43:22 +02002490
2491 tim[1] = n2 - n1 + 4;
Johannes Berge2ebc742007-07-27 15:43:22 +02002492 } else {
2493 *pos++ = aid0; /* Bitmap control */
2494 *pos++ = 0; /* Part Virt Bitmap */
2495 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002496}
2497
Marco Porscheac70c12013-01-07 16:04:50 +01002498static int ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002499 struct ps_data *ps, struct sk_buff *skb,
2500 bool is_template)
Marco Porscheac70c12013-01-07 16:04:50 +01002501{
2502 struct ieee80211_local *local = sdata->local;
2503
2504 /*
2505 * Not very nice, but we want to allow the driver to call
2506 * ieee80211_beacon_get() as a response to the set_tim()
2507 * callback. That, however, is already invoked under the
2508 * sta_lock to guarantee consistent and race-free update
2509 * of the tim bitmap in mac80211 and the driver.
2510 */
2511 if (local->tim_in_locked_section) {
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002512 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
Marco Porscheac70c12013-01-07 16:04:50 +01002513 } else {
Johannes Berg1b917312013-02-22 12:55:01 +01002514 spin_lock_bh(&local->tim_lock);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002515 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
Johannes Berg1b917312013-02-22 12:55:01 +01002516 spin_unlock_bh(&local->tim_lock);
Marco Porscheac70c12013-01-07 16:04:50 +01002517 }
2518
2519 return 0;
2520}
2521
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002522static void ieee80211_set_csa(struct ieee80211_sub_if_data *sdata,
2523 struct beacon_data *beacon)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002524{
2525 struct probe_resp *resp;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002526 u8 *beacon_data;
2527 size_t beacon_data_len;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002528 int i;
Michal Kazioraf296bd2014-06-05 14:21:36 +02002529 u8 count = beacon->csa_current_counter;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002530
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002531 switch (sdata->vif.type) {
2532 case NL80211_IFTYPE_AP:
2533 beacon_data = beacon->tail;
2534 beacon_data_len = beacon->tail_len;
2535 break;
2536 case NL80211_IFTYPE_ADHOC:
2537 beacon_data = beacon->head;
2538 beacon_data_len = beacon->head_len;
2539 break;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002540 case NL80211_IFTYPE_MESH_POINT:
2541 beacon_data = beacon->head;
2542 beacon_data_len = beacon->head_len;
2543 break;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002544 default:
2545 return;
2546 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002547
Michal Kazioraf296bd2014-06-05 14:21:36 +02002548 rcu_read_lock();
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002549 for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; ++i) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02002550 resp = rcu_dereference(sdata->u.ap.probe_resp);
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002551
Michal Kazioraf296bd2014-06-05 14:21:36 +02002552 if (beacon->csa_counter_offsets[i]) {
2553 if (WARN_ON_ONCE(beacon->csa_counter_offsets[i] >=
2554 beacon_data_len)) {
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002555 rcu_read_unlock();
2556 return;
2557 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02002558
2559 beacon_data[beacon->csa_counter_offsets[i]] = count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002560 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02002561
2562 if (sdata->vif.type == NL80211_IFTYPE_AP && resp)
2563 resp->data[resp->csa_counter_offsets[i]] = count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002564 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02002565 rcu_read_unlock();
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002566}
2567
2568u8 ieee80211_csa_update_counter(struct ieee80211_vif *vif)
2569{
2570 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002571 struct beacon_data *beacon = NULL;
2572 u8 count = 0;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002573
Michal Kazioraf296bd2014-06-05 14:21:36 +02002574 rcu_read_lock();
2575
2576 if (sdata->vif.type == NL80211_IFTYPE_AP)
2577 beacon = rcu_dereference(sdata->u.ap.beacon);
2578 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
2579 beacon = rcu_dereference(sdata->u.ibss.presp);
2580 else if (ieee80211_vif_is_mesh(&sdata->vif))
2581 beacon = rcu_dereference(sdata->u.mesh.beacon);
2582
2583 if (!beacon)
2584 goto unlock;
2585
2586 beacon->csa_current_counter--;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002587
2588 /* the counter should never reach 0 */
Michal Kazioraf296bd2014-06-05 14:21:36 +02002589 WARN_ON_ONCE(!beacon->csa_current_counter);
2590 count = beacon->csa_current_counter;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002591
Michal Kazioraf296bd2014-06-05 14:21:36 +02002592unlock:
2593 rcu_read_unlock();
2594 return count;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002595}
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002596EXPORT_SYMBOL(ieee80211_csa_update_counter);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002597
2598bool ieee80211_csa_is_complete(struct ieee80211_vif *vif)
2599{
2600 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2601 struct beacon_data *beacon = NULL;
2602 u8 *beacon_data;
2603 size_t beacon_data_len;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002604 int ret = false;
2605
2606 if (!ieee80211_sdata_running(sdata))
2607 return false;
2608
2609 rcu_read_lock();
2610 if (vif->type == NL80211_IFTYPE_AP) {
2611 struct ieee80211_if_ap *ap = &sdata->u.ap;
2612
2613 beacon = rcu_dereference(ap->beacon);
2614 if (WARN_ON(!beacon || !beacon->tail))
2615 goto out;
2616 beacon_data = beacon->tail;
2617 beacon_data_len = beacon->tail_len;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002618 } else if (vif->type == NL80211_IFTYPE_ADHOC) {
2619 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
2620
2621 beacon = rcu_dereference(ifibss->presp);
2622 if (!beacon)
2623 goto out;
2624
2625 beacon_data = beacon->head;
2626 beacon_data_len = beacon->head_len;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002627 } else if (vif->type == NL80211_IFTYPE_MESH_POINT) {
2628 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
2629
2630 beacon = rcu_dereference(ifmsh->beacon);
2631 if (!beacon)
2632 goto out;
2633
2634 beacon_data = beacon->head;
2635 beacon_data_len = beacon->head_len;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002636 } else {
2637 WARN_ON(1);
2638 goto out;
2639 }
2640
Michal Kazior10d78f22014-06-05 14:21:37 +02002641 if (!beacon->csa_counter_offsets[0])
2642 goto out;
2643
Michal Kazioraf296bd2014-06-05 14:21:36 +02002644 if (WARN_ON_ONCE(beacon->csa_counter_offsets[0] > beacon_data_len))
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002645 goto out;
2646
Michal Kazioraf296bd2014-06-05 14:21:36 +02002647 if (beacon_data[beacon->csa_counter_offsets[0]] == 1)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002648 ret = true;
2649 out:
2650 rcu_read_unlock();
2651
2652 return ret;
2653}
2654EXPORT_SYMBOL(ieee80211_csa_is_complete);
2655
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002656static struct sk_buff *
2657__ieee80211_beacon_get(struct ieee80211_hw *hw,
2658 struct ieee80211_vif *vif,
2659 struct ieee80211_mutable_offsets *offs,
2660 bool is_template)
Johannes Berge2ebc742007-07-27 15:43:22 +02002661{
2662 struct ieee80211_local *local = hw_to_local(hw);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002663 struct beacon_data *beacon = NULL;
Johannes Berg9d139c82008-07-09 14:40:37 +02002664 struct sk_buff *skb = NULL;
Johannes Berge039fa42008-05-15 12:55:29 +02002665 struct ieee80211_tx_info *info;
Johannes Berge2ebc742007-07-27 15:43:22 +02002666 struct ieee80211_sub_if_data *sdata = NULL;
Johannes Berg55de9082012-07-26 17:24:39 +02002667 enum ieee80211_band band;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002668 struct ieee80211_tx_rate_control txrc;
Johannes Berg55de9082012-07-26 17:24:39 +02002669 struct ieee80211_chanctx_conf *chanctx_conf;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002670 int csa_off_base = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002671
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002672 rcu_read_lock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002673
Johannes Berg32bfd352007-12-19 01:31:26 +01002674 sdata = vif_to_sdata(vif);
Johannes Berg55de9082012-07-26 17:24:39 +02002675 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berge2ebc742007-07-27 15:43:22 +02002676
Johannes Berg55de9082012-07-26 17:24:39 +02002677 if (!ieee80211_sdata_running(sdata) || !chanctx_conf)
Felix Fietkaueb3e5542011-01-24 19:28:49 +01002678 goto out;
2679
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002680 if (offs)
2681 memset(offs, 0, sizeof(*offs));
Johannes Bergeddcbb942009-10-29 08:30:35 +01002682
Johannes Berg05c914f2008-09-11 00:01:58 +02002683 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Marco Porschd012a602012-10-10 12:39:50 -07002684 struct ieee80211_if_ap *ap = &sdata->u.ap;
Marco Porschd012a602012-10-10 12:39:50 -07002685
Michal Kazioraf296bd2014-06-05 14:21:36 +02002686 beacon = rcu_dereference(ap->beacon);
Dan Carpenter3ad97fb2011-02-07 22:03:35 +03002687 if (beacon) {
Michal Kazior10d78f22014-06-05 14:21:37 +02002688 if (beacon->csa_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002689 if (!is_template)
2690 ieee80211_csa_update_counter(vif);
2691
2692 ieee80211_set_csa(sdata, beacon);
2693 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002694
Johannes Berg902acc72008-02-23 15:17:19 +01002695 /*
2696 * headroom, head length,
2697 * tail length and maximum TIM length
2698 */
2699 skb = dev_alloc_skb(local->tx_headroom +
2700 beacon->head_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002701 beacon->tail_len + 256 +
2702 local->hw.extra_beacon_tailroom);
Johannes Berg902acc72008-02-23 15:17:19 +01002703 if (!skb)
2704 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002705
Johannes Berg902acc72008-02-23 15:17:19 +01002706 skb_reserve(skb, local->tx_headroom);
2707 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2708 beacon->head_len);
2709
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002710 ieee80211_beacon_add_tim(sdata, &ap->ps, skb,
2711 is_template);
Johannes Berg902acc72008-02-23 15:17:19 +01002712
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002713 if (offs) {
2714 offs->tim_offset = beacon->head_len;
2715 offs->tim_length = skb->len - beacon->head_len;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002716
2717 /* for AP the csa offsets are from tail */
2718 csa_off_base = skb->len;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002719 }
Johannes Bergeddcbb942009-10-29 08:30:35 +01002720
Johannes Berg902acc72008-02-23 15:17:19 +01002721 if (beacon->tail)
2722 memcpy(skb_put(skb, beacon->tail_len),
2723 beacon->tail, beacon->tail_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002724 } else
2725 goto out;
Johannes Berg05c914f2008-09-11 00:01:58 +02002726 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg46900292009-02-15 12:44:28 +01002727 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg9d139c82008-07-09 14:40:37 +02002728 struct ieee80211_hdr *hdr;
Johannes Berg902acc72008-02-23 15:17:19 +01002729
Michal Kazioraf296bd2014-06-05 14:21:36 +02002730 beacon = rcu_dereference(ifibss->presp);
2731 if (!beacon)
Johannes Berg9d139c82008-07-09 14:40:37 +02002732 goto out;
2733
Michal Kazior10d78f22014-06-05 14:21:37 +02002734 if (beacon->csa_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002735 if (!is_template)
2736 ieee80211_csa_update_counter(vif);
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002737
Michal Kazioraf296bd2014-06-05 14:21:36 +02002738 ieee80211_set_csa(sdata, beacon);
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002739 }
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002740
Michal Kazioraf296bd2014-06-05 14:21:36 +02002741 skb = dev_alloc_skb(local->tx_headroom + beacon->head_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002742 local->hw.extra_beacon_tailroom);
Johannes Berg9d139c82008-07-09 14:40:37 +02002743 if (!skb)
2744 goto out;
Johannes Bergc3ffeab2013-03-07 20:54:29 +01002745 skb_reserve(skb, local->tx_headroom);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002746 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2747 beacon->head_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002748
2749 hdr = (struct ieee80211_hdr *) skb->data;
Harvey Harrisone7827a72008-07-15 18:44:13 -07002750 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2751 IEEE80211_STYPE_BEACON);
Johannes Berg902acc72008-02-23 15:17:19 +01002752 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
Javier Cardonadbf498f2012-03-31 11:31:32 -07002753 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02002754
Michal Kazioraf296bd2014-06-05 14:21:36 +02002755 beacon = rcu_dereference(ifmsh->beacon);
2756 if (!beacon)
Johannes Bergac1bd842011-01-18 13:45:32 +01002757 goto out;
Johannes Bergac1bd842011-01-18 13:45:32 +01002758
Michal Kazior10d78f22014-06-05 14:21:37 +02002759 if (beacon->csa_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002760 if (!is_template)
2761 /* TODO: For mesh csa_counter is in TU, so
2762 * decrementing it by one isn't correct, but
2763 * for now we leave it consistent with overall
2764 * mac80211's behavior.
2765 */
2766 ieee80211_csa_update_counter(vif);
2767
Michal Kazioraf296bd2014-06-05 14:21:36 +02002768 ieee80211_set_csa(sdata, beacon);
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002769 }
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002770
Javier Cardonadbf498f2012-03-31 11:31:32 -07002771 if (ifmsh->sync_ops)
Michal Kazioraf296bd2014-06-05 14:21:36 +02002772 ifmsh->sync_ops->adjust_tbtt(sdata, beacon);
Javier Cardonadbf498f2012-03-31 11:31:32 -07002773
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -07002774 skb = dev_alloc_skb(local->tx_headroom +
Michal Kazioraf296bd2014-06-05 14:21:36 +02002775 beacon->head_len +
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002776 256 + /* TIM IE */
Michal Kazioraf296bd2014-06-05 14:21:36 +02002777 beacon->tail_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002778 local->hw.extra_beacon_tailroom);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002779 if (!skb)
2780 goto out;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08002781 skb_reserve(skb, local->tx_headroom);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002782 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2783 beacon->head_len);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002784 ieee80211_beacon_add_tim(sdata, &ifmsh->ps, skb, is_template);
2785
2786 if (offs) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02002787 offs->tim_offset = beacon->head_len;
2788 offs->tim_length = skb->len - beacon->head_len;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002789 }
2790
Michal Kazioraf296bd2014-06-05 14:21:36 +02002791 memcpy(skb_put(skb, beacon->tail_len), beacon->tail,
2792 beacon->tail_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002793 } else {
2794 WARN_ON(1);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002795 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02002796 }
2797
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002798 /* CSA offsets */
Michal Kazioraf296bd2014-06-05 14:21:36 +02002799 if (offs && beacon) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002800 int i;
2801
2802 for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; i++) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02002803 u16 csa_off = beacon->csa_counter_offsets[i];
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002804
2805 if (!csa_off)
2806 continue;
2807
2808 offs->csa_counter_offs[i] = csa_off_base + csa_off;
2809 }
2810 }
2811
Johannes Berg4bf88532012-11-09 11:39:59 +01002812 band = chanctx_conf->def.chan->band;
Johannes Berg55de9082012-07-26 17:24:39 +02002813
Johannes Berge039fa42008-05-15 12:55:29 +02002814 info = IEEE80211_SKB_CB(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002815
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002816 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002817 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Johannes Berge039fa42008-05-15 12:55:29 +02002818 info->band = band;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002819
2820 memset(&txrc, 0, sizeof(txrc));
2821 txrc.hw = hw;
Johannes Berge31583c2012-07-26 14:07:46 +02002822 txrc.sband = local->hw.wiphy->bands[band];
Jouni Malinene00cfce2009-12-29 12:59:19 +02002823 txrc.bss_conf = &sdata->vif.bss_conf;
2824 txrc.skb = skb;
2825 txrc.reported_rate.idx = -1;
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002826 txrc.rate_idx_mask = sdata->rc_rateidx_mask[band];
Johannes Berge31583c2012-07-26 14:07:46 +02002827 if (txrc.rate_idx_mask == (1 << txrc.sband->n_bitrates) - 1)
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002828 txrc.max_rate_idx = -1;
2829 else
2830 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
Felix Fietkau8f0729b2010-11-11 15:07:23 +01002831 txrc.bss = true;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002832 rate_control_get_rate(sdata, NULL, &txrc);
Johannes Berge039fa42008-05-15 12:55:29 +02002833
2834 info->control.vif = vif;
Johannes Bergf591fa52008-07-10 11:21:26 +02002835
John W. Linvillea472e712010-05-06 14:45:17 -04002836 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT |
2837 IEEE80211_TX_CTL_ASSIGN_SEQ |
2838 IEEE80211_TX_CTL_FIRST_FRAGMENT;
Johannes Berge6a98542008-10-21 12:40:02 +02002839 out:
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002840 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002841 return skb;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002842
2843}
2844
2845struct sk_buff *
2846ieee80211_beacon_get_template(struct ieee80211_hw *hw,
2847 struct ieee80211_vif *vif,
2848 struct ieee80211_mutable_offsets *offs)
2849{
2850 return __ieee80211_beacon_get(hw, vif, offs, true);
2851}
2852EXPORT_SYMBOL(ieee80211_beacon_get_template);
2853
2854struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
2855 struct ieee80211_vif *vif,
2856 u16 *tim_offset, u16 *tim_length)
2857{
2858 struct ieee80211_mutable_offsets offs = {};
2859 struct sk_buff *bcn = __ieee80211_beacon_get(hw, vif, &offs, false);
2860
2861 if (tim_offset)
2862 *tim_offset = offs.tim_offset;
2863
2864 if (tim_length)
2865 *tim_length = offs.tim_length;
2866
2867 return bcn;
Johannes Berge2ebc742007-07-27 15:43:22 +02002868}
Johannes Bergeddcbb942009-10-29 08:30:35 +01002869EXPORT_SYMBOL(ieee80211_beacon_get_tim);
Johannes Berge2ebc742007-07-27 15:43:22 +02002870
Arik Nemtsov02945822011-11-10 11:28:57 +02002871struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw,
2872 struct ieee80211_vif *vif)
2873{
2874 struct ieee80211_if_ap *ap = NULL;
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002875 struct sk_buff *skb = NULL;
2876 struct probe_resp *presp = NULL;
Arik Nemtsov02945822011-11-10 11:28:57 +02002877 struct ieee80211_hdr *hdr;
2878 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2879
2880 if (sdata->vif.type != NL80211_IFTYPE_AP)
2881 return NULL;
2882
2883 rcu_read_lock();
2884
2885 ap = &sdata->u.ap;
2886 presp = rcu_dereference(ap->probe_resp);
2887 if (!presp)
2888 goto out;
2889
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002890 skb = dev_alloc_skb(presp->len);
Arik Nemtsov02945822011-11-10 11:28:57 +02002891 if (!skb)
2892 goto out;
2893
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002894 memcpy(skb_put(skb, presp->len), presp->data, presp->len);
2895
Arik Nemtsov02945822011-11-10 11:28:57 +02002896 hdr = (struct ieee80211_hdr *) skb->data;
2897 memset(hdr->addr1, 0, sizeof(hdr->addr1));
2898
2899out:
2900 rcu_read_unlock();
2901 return skb;
2902}
2903EXPORT_SYMBOL(ieee80211_proberesp_get);
2904
Kalle Valo7044cc52010-01-05 20:16:19 +02002905struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw,
2906 struct ieee80211_vif *vif)
2907{
2908 struct ieee80211_sub_if_data *sdata;
2909 struct ieee80211_if_managed *ifmgd;
2910 struct ieee80211_pspoll *pspoll;
2911 struct ieee80211_local *local;
2912 struct sk_buff *skb;
2913
2914 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2915 return NULL;
2916
2917 sdata = vif_to_sdata(vif);
2918 ifmgd = &sdata->u.mgd;
2919 local = sdata->local;
2920
2921 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
Joe Perchesd15b8452011-08-29 14:17:31 -07002922 if (!skb)
Kalle Valo7044cc52010-01-05 20:16:19 +02002923 return NULL;
Joe Perchesd15b8452011-08-29 14:17:31 -07002924
Kalle Valo7044cc52010-01-05 20:16:19 +02002925 skb_reserve(skb, local->hw.extra_tx_headroom);
2926
2927 pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll));
2928 memset(pspoll, 0, sizeof(*pspoll));
2929 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
2930 IEEE80211_STYPE_PSPOLL);
2931 pspoll->aid = cpu_to_le16(ifmgd->aid);
2932
2933 /* aid in PS-Poll has its two MSBs each set to 1 */
2934 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
2935
2936 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
2937 memcpy(pspoll->ta, vif->addr, ETH_ALEN);
2938
2939 return skb;
2940}
2941EXPORT_SYMBOL(ieee80211_pspoll_get);
2942
2943struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw,
2944 struct ieee80211_vif *vif)
2945{
2946 struct ieee80211_hdr_3addr *nullfunc;
2947 struct ieee80211_sub_if_data *sdata;
2948 struct ieee80211_if_managed *ifmgd;
2949 struct ieee80211_local *local;
2950 struct sk_buff *skb;
2951
2952 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2953 return NULL;
2954
2955 sdata = vif_to_sdata(vif);
2956 ifmgd = &sdata->u.mgd;
2957 local = sdata->local;
2958
2959 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*nullfunc));
Joe Perchesd15b8452011-08-29 14:17:31 -07002960 if (!skb)
Kalle Valo7044cc52010-01-05 20:16:19 +02002961 return NULL;
Joe Perchesd15b8452011-08-29 14:17:31 -07002962
Kalle Valo7044cc52010-01-05 20:16:19 +02002963 skb_reserve(skb, local->hw.extra_tx_headroom);
2964
2965 nullfunc = (struct ieee80211_hdr_3addr *) skb_put(skb,
2966 sizeof(*nullfunc));
2967 memset(nullfunc, 0, sizeof(*nullfunc));
2968 nullfunc->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
2969 IEEE80211_STYPE_NULLFUNC |
2970 IEEE80211_FCTL_TODS);
2971 memcpy(nullfunc->addr1, ifmgd->bssid, ETH_ALEN);
2972 memcpy(nullfunc->addr2, vif->addr, ETH_ALEN);
2973 memcpy(nullfunc->addr3, ifmgd->bssid, ETH_ALEN);
2974
2975 return skb;
2976}
2977EXPORT_SYMBOL(ieee80211_nullfunc_get);
2978
Kalle Valo05e54ea2010-01-05 20:16:38 +02002979struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw,
Johannes Berga344d672014-06-12 22:24:31 +02002980 const u8 *src_addr,
Kalle Valo05e54ea2010-01-05 20:16:38 +02002981 const u8 *ssid, size_t ssid_len,
Johannes Bergb9a9ada2012-11-29 13:00:10 +01002982 size_t tailroom)
Kalle Valo05e54ea2010-01-05 20:16:38 +02002983{
Johannes Berga344d672014-06-12 22:24:31 +02002984 struct ieee80211_local *local = hw_to_local(hw);
Kalle Valo05e54ea2010-01-05 20:16:38 +02002985 struct ieee80211_hdr_3addr *hdr;
2986 struct sk_buff *skb;
2987 size_t ie_ssid_len;
2988 u8 *pos;
2989
Kalle Valo05e54ea2010-01-05 20:16:38 +02002990 ie_ssid_len = 2 + ssid_len;
2991
2992 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*hdr) +
Johannes Bergb9a9ada2012-11-29 13:00:10 +01002993 ie_ssid_len + tailroom);
Joe Perchesd15b8452011-08-29 14:17:31 -07002994 if (!skb)
Kalle Valo05e54ea2010-01-05 20:16:38 +02002995 return NULL;
Kalle Valo05e54ea2010-01-05 20:16:38 +02002996
2997 skb_reserve(skb, local->hw.extra_tx_headroom);
2998
2999 hdr = (struct ieee80211_hdr_3addr *) skb_put(skb, sizeof(*hdr));
3000 memset(hdr, 0, sizeof(*hdr));
3001 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
3002 IEEE80211_STYPE_PROBE_REQ);
Johannes Berge83e6542012-07-13 16:23:07 +02003003 eth_broadcast_addr(hdr->addr1);
Johannes Berga344d672014-06-12 22:24:31 +02003004 memcpy(hdr->addr2, src_addr, ETH_ALEN);
Johannes Berge83e6542012-07-13 16:23:07 +02003005 eth_broadcast_addr(hdr->addr3);
Kalle Valo05e54ea2010-01-05 20:16:38 +02003006
3007 pos = skb_put(skb, ie_ssid_len);
3008 *pos++ = WLAN_EID_SSID;
3009 *pos++ = ssid_len;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02003010 if (ssid_len)
Kalle Valo05e54ea2010-01-05 20:16:38 +02003011 memcpy(pos, ssid, ssid_len);
3012 pos += ssid_len;
3013
Kalle Valo05e54ea2010-01-05 20:16:38 +02003014 return skb;
3015}
3016EXPORT_SYMBOL(ieee80211_probereq_get);
3017
Johannes Berg32bfd352007-12-19 01:31:26 +01003018void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02003019 const void *frame, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +02003020 const struct ieee80211_tx_info *frame_txctl,
Johannes Berge2ebc742007-07-27 15:43:22 +02003021 struct ieee80211_rts *rts)
3022{
3023 const struct ieee80211_hdr *hdr = frame;
Johannes Berge2ebc742007-07-27 15:43:22 +02003024
Harvey Harrison065e96052008-06-22 16:45:27 -07003025 rts->frame_control =
3026 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
Johannes Berg32bfd352007-12-19 01:31:26 +01003027 rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
3028 frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02003029 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
3030 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
3031}
3032EXPORT_SYMBOL(ieee80211_rts_get);
3033
Johannes Berg32bfd352007-12-19 01:31:26 +01003034void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02003035 const void *frame, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +02003036 const struct ieee80211_tx_info *frame_txctl,
Johannes Berge2ebc742007-07-27 15:43:22 +02003037 struct ieee80211_cts *cts)
3038{
3039 const struct ieee80211_hdr *hdr = frame;
Johannes Berge2ebc742007-07-27 15:43:22 +02003040
Harvey Harrison065e96052008-06-22 16:45:27 -07003041 cts->frame_control =
3042 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
Johannes Berg32bfd352007-12-19 01:31:26 +01003043 cts->duration = ieee80211_ctstoself_duration(hw, vif,
3044 frame_len, frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02003045 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
3046}
3047EXPORT_SYMBOL(ieee80211_ctstoself_get);
3048
3049struct sk_buff *
Johannes Berg32bfd352007-12-19 01:31:26 +01003050ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
Johannes Berge039fa42008-05-15 12:55:29 +02003051 struct ieee80211_vif *vif)
Johannes Berge2ebc742007-07-27 15:43:22 +02003052{
3053 struct ieee80211_local *local = hw_to_local(hw);
Tomas Winkler747cf5e2008-05-27 17:50:51 +03003054 struct sk_buff *skb = NULL;
Johannes Berg5cf121c2008-02-25 16:27:43 +01003055 struct ieee80211_tx_data tx;
Johannes Berge2ebc742007-07-27 15:43:22 +02003056 struct ieee80211_sub_if_data *sdata;
Marco Porschd012a602012-10-10 12:39:50 -07003057 struct ps_data *ps;
Johannes Berge039fa42008-05-15 12:55:29 +02003058 struct ieee80211_tx_info *info;
Johannes Berg55de9082012-07-26 17:24:39 +02003059 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berge2ebc742007-07-27 15:43:22 +02003060
Johannes Berg32bfd352007-12-19 01:31:26 +01003061 sdata = vif_to_sdata(vif);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01003062
Johannes Berg5dfdaf52007-12-19 02:03:33 +01003063 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02003064 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01003065
Marco Porschd012a602012-10-10 12:39:50 -07003066 if (!chanctx_conf)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03003067 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01003068
Marco Porschd012a602012-10-10 12:39:50 -07003069 if (sdata->vif.type == NL80211_IFTYPE_AP) {
3070 struct beacon_data *beacon =
3071 rcu_dereference(sdata->u.ap.beacon);
3072
3073 if (!beacon || !beacon->head)
3074 goto out;
3075
3076 ps = &sdata->u.ap.ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01003077 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
3078 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -07003079 } else {
3080 goto out;
3081 }
3082
3083 if (ps->dtim_count != 0 || !ps->dtim_bc_mc)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03003084 goto out; /* send buffered bc/mc only after DTIM beacon */
Johannes Berge039fa42008-05-15 12:55:29 +02003085
Johannes Berge2ebc742007-07-27 15:43:22 +02003086 while (1) {
Marco Porschd012a602012-10-10 12:39:50 -07003087 skb = skb_dequeue(&ps->bc_buf);
Johannes Berge2ebc742007-07-27 15:43:22 +02003088 if (!skb)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03003089 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02003090 local->total_ps_buffered--;
3091
Marco Porschd012a602012-10-10 12:39:50 -07003092 if (!skb_queue_empty(&ps->bc_buf) && skb->len >= 2) {
Johannes Berge2ebc742007-07-27 15:43:22 +02003093 struct ieee80211_hdr *hdr =
3094 (struct ieee80211_hdr *) skb->data;
3095 /* more buffered multicast/broadcast frames ==> set
3096 * MoreData flag in IEEE 802.11 header to inform PS
3097 * STAs */
3098 hdr->frame_control |=
3099 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
3100 }
3101
Michael Braun112c44b2014-03-06 15:08:43 +01003102 if (sdata->vif.type == NL80211_IFTYPE_AP)
Marco Porsch7cbf9d02013-03-01 16:01:18 +01003103 sdata = IEEE80211_DEV_TO_SUB_IF(skb->dev);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003104 if (!ieee80211_tx_prepare(sdata, &tx, skb))
Johannes Berge2ebc742007-07-27 15:43:22 +02003105 break;
3106 dev_kfree_skb_any(skb);
3107 }
Johannes Berge039fa42008-05-15 12:55:29 +02003108
3109 info = IEEE80211_SKB_CB(skb);
3110
Johannes Berg5cf121c2008-02-25 16:27:43 +01003111 tx.flags |= IEEE80211_TX_PS_BUFFERED;
Johannes Berg4bf88532012-11-09 11:39:59 +01003112 info->band = chanctx_conf->def.chan->band;
Johannes Berge2ebc742007-07-27 15:43:22 +02003113
Johannes Berg97b045d2008-06-20 01:22:30 +02003114 if (invoke_tx_handlers(&tx))
Johannes Berge2ebc742007-07-27 15:43:22 +02003115 skb = NULL;
Johannes Berg97b045d2008-06-20 01:22:30 +02003116 out:
Johannes Bergd0709a62008-02-25 16:27:46 +01003117 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02003118
3119 return skb;
3120}
3121EXPORT_SYMBOL(ieee80211_get_buffered_bc);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003122
Liad Kaufmanb6da9112014-11-19 13:47:38 +02003123int ieee80211_reserve_tid(struct ieee80211_sta *pubsta, u8 tid)
3124{
3125 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
3126 struct ieee80211_sub_if_data *sdata = sta->sdata;
3127 struct ieee80211_local *local = sdata->local;
3128 int ret;
3129 u32 queues;
3130
3131 lockdep_assert_held(&local->sta_mtx);
3132
3133 /* only some cases are supported right now */
3134 switch (sdata->vif.type) {
3135 case NL80211_IFTYPE_STATION:
3136 case NL80211_IFTYPE_AP:
3137 case NL80211_IFTYPE_AP_VLAN:
3138 break;
3139 default:
3140 WARN_ON(1);
3141 return -EINVAL;
3142 }
3143
3144 if (WARN_ON(tid >= IEEE80211_NUM_UPS))
3145 return -EINVAL;
3146
3147 if (sta->reserved_tid == tid) {
3148 ret = 0;
3149 goto out;
3150 }
3151
3152 if (sta->reserved_tid != IEEE80211_TID_UNRESERVED) {
3153 sdata_err(sdata, "TID reservation already active\n");
3154 ret = -EALREADY;
3155 goto out;
3156 }
3157
3158 ieee80211_stop_vif_queues(sdata->local, sdata,
3159 IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
3160
3161 synchronize_net();
3162
3163 /* Tear down BA sessions so we stop aggregating on this TID */
3164 if (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION) {
3165 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
3166 __ieee80211_stop_tx_ba_session(sta, tid,
3167 AGG_STOP_LOCAL_REQUEST);
3168 }
3169
3170 queues = BIT(sdata->vif.hw_queue[ieee802_1d_to_ac[tid]]);
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +02003171 __ieee80211_flush_queues(local, sdata, queues, false);
Liad Kaufmanb6da9112014-11-19 13:47:38 +02003172
3173 sta->reserved_tid = tid;
3174
3175 ieee80211_wake_vif_queues(local, sdata,
3176 IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
3177
3178 if (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION)
3179 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
3180
3181 ret = 0;
3182 out:
3183 return ret;
3184}
3185EXPORT_SYMBOL(ieee80211_reserve_tid);
3186
3187void ieee80211_unreserve_tid(struct ieee80211_sta *pubsta, u8 tid)
3188{
3189 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
3190 struct ieee80211_sub_if_data *sdata = sta->sdata;
3191
3192 lockdep_assert_held(&sdata->local->sta_mtx);
3193
3194 /* only some cases are supported right now */
3195 switch (sdata->vif.type) {
3196 case NL80211_IFTYPE_STATION:
3197 case NL80211_IFTYPE_AP:
3198 case NL80211_IFTYPE_AP_VLAN:
3199 break;
3200 default:
3201 WARN_ON(1);
3202 return;
3203 }
3204
3205 if (tid != sta->reserved_tid) {
3206 sdata_err(sdata, "TID to unreserve (%d) isn't reserved\n", tid);
3207 return;
3208 }
3209
3210 sta->reserved_tid = IEEE80211_TID_UNRESERVED;
3211}
3212EXPORT_SYMBOL(ieee80211_unreserve_tid);
3213
Johannes Berg55de9082012-07-26 17:24:39 +02003214void __ieee80211_tx_skb_tid_band(struct ieee80211_sub_if_data *sdata,
3215 struct sk_buff *skb, int tid,
3216 enum ieee80211_band band)
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003217{
Christian Lamparter353d09c2012-07-07 15:07:13 +02003218 int ac = ieee802_1d_to_ac[tid & 7];
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003219
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003220 skb_set_mac_header(skb, 0);
3221 skb_set_network_header(skb, 0);
3222 skb_set_transport_header(skb, 0);
3223
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003224 skb_set_queue_mapping(skb, ac);
Helmut Schaacf6bb792011-12-15 10:18:34 +01003225 skb->priority = tid;
Johannes Bergcf0277e2010-01-05 18:00:58 +01003226
Johannes Berg89afe612013-02-13 15:39:57 +01003227 skb->dev = sdata->dev;
3228
Johannes Berg3d34deb2009-06-18 17:25:11 +02003229 /*
3230 * The other path calling ieee80211_xmit is from the tasklet,
3231 * and while we can handle concurrent transmissions locking
3232 * requirements are that we do not come into tx with bhs on.
3233 */
3234 local_bh_disable();
Johannes Berg73c4e192014-11-09 18:50:09 +02003235 IEEE80211_SKB_CB(skb)->band = band;
3236 ieee80211_xmit(sdata, skb);
Johannes Berg3d34deb2009-06-18 17:25:11 +02003237 local_bh_enable();
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003238}