blob: be57e0afd019f2f04dc4500bf1da2fcb08baae63 [file] [log] [blame]
Johannes Berge2ebc742007-07-27 15:43:22 +02001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
5 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
Johannes Bergd98ad832014-09-03 15:24:57 +03006 * Copyright 2013-2014 Intel Mobile Communications GmbH
Johannes Berge2ebc742007-07-27 15:43:22 +02007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 *
13 * Transmit and frame generation functions.
14 */
15
16#include <linux/kernel.h>
17#include <linux/slab.h>
18#include <linux/skbuff.h>
19#include <linux/etherdevice.h>
20#include <linux/bitmap.h>
Johannes Bergd4e46a32007-09-14 11:10:24 -040021#include <linux/rcupdate.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040022#include <linux/export.h>
Matti Gottliebad38bfc2013-11-18 19:06:45 +020023#include <linux/time.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070024#include <net/net_namespace.h>
Johannes Berge2ebc742007-07-27 15:43:22 +020025#include <net/ieee80211_radiotap.h>
26#include <net/cfg80211.h>
27#include <net/mac80211.h>
28#include <asm/unaligned.h>
29
30#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020031#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040032#include "led.h"
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +010033#include "mesh.h"
Johannes Berge2ebc742007-07-27 15:43:22 +020034#include "wep.h"
35#include "wpa.h"
36#include "wme.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040037#include "rate.h"
Johannes Berge2ebc742007-07-27 15:43:22 +020038
Johannes Berge2ebc742007-07-27 15:43:22 +020039/* misc utils */
40
Johannes Berg252b86c2011-11-16 15:28:55 +010041static __le16 ieee80211_duration(struct ieee80211_tx_data *tx,
42 struct sk_buff *skb, int group_addr,
Johannes Berg03f93c32008-06-25 14:36:27 +030043 int next_frag_len)
Johannes Berge2ebc742007-07-27 15:43:22 +020044{
Simon Wunderlich2103dec2013-07-08 16:55:53 +020045 int rate, mrate, erp, dur, i, shift = 0;
Johannes Berg2e92e6f2008-05-15 12:55:27 +020046 struct ieee80211_rate *txrate;
Johannes Berge2ebc742007-07-27 15:43:22 +020047 struct ieee80211_local *local = tx->local;
Johannes Berg8318d782008-01-24 19:38:38 +010048 struct ieee80211_supported_band *sband;
Harvey Harrison358c8d92008-07-15 18:44:13 -070049 struct ieee80211_hdr *hdr;
Johannes Berg252b86c2011-11-16 15:28:55 +010050 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Simon Wunderlich2103dec2013-07-08 16:55:53 +020051 struct ieee80211_chanctx_conf *chanctx_conf;
52 u32 rate_flags = 0;
53
54 rcu_read_lock();
55 chanctx_conf = rcu_dereference(tx->sdata->vif.chanctx_conf);
56 if (chanctx_conf) {
57 shift = ieee80211_chandef_get_shift(&chanctx_conf->def);
58 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
59 }
60 rcu_read_unlock();
Johannes Berge6a98542008-10-21 12:40:02 +020061
62 /* assume HW handles this */
Felix Fietkau336004e2014-11-21 23:29:14 +010063 if (tx->rate.flags & (IEEE80211_TX_RC_MCS | IEEE80211_TX_RC_VHT_MCS))
Johannes Berge6a98542008-10-21 12:40:02 +020064 return 0;
65
66 /* uh huh? */
Felix Fietkau0d528d82013-04-22 16:14:41 +020067 if (WARN_ON_ONCE(tx->rate.idx < 0))
Johannes Berge6a98542008-10-21 12:40:02 +020068 return 0;
Johannes Berge2ebc742007-07-27 15:43:22 +020069
Johannes Berg2d565772012-07-23 15:12:51 +020070 sband = local->hw.wiphy->bands[info->band];
Felix Fietkau0d528d82013-04-22 16:14:41 +020071 txrate = &sband->bitrates[tx->rate.idx];
Johannes Berg8318d782008-01-24 19:38:38 +010072
Johannes Berge6a98542008-10-21 12:40:02 +020073 erp = txrate->flags & IEEE80211_RATE_ERP_G;
Johannes Berge2ebc742007-07-27 15:43:22 +020074
75 /*
76 * data and mgmt (except PS Poll):
77 * - during CFP: 32768
78 * - during contention period:
79 * if addr1 is group address: 0
80 * if more fragments = 0 and addr1 is individual address: time to
81 * transmit one ACK plus SIFS
82 * if more fragments = 1 and addr1 is individual address: time to
83 * transmit next fragment plus 2 x ACK plus 3 x SIFS
84 *
85 * IEEE 802.11, 9.6:
86 * - control response frame (CTS or ACK) shall be transmitted using the
87 * same rate as the immediately previous frame in the frame exchange
88 * sequence, if this rate belongs to the PHY mandatory rates, or else
89 * at the highest possible rate belonging to the PHY rates in the
90 * BSSBasicRateSet
91 */
Johannes Berg252b86c2011-11-16 15:28:55 +010092 hdr = (struct ieee80211_hdr *)skb->data;
Harvey Harrison358c8d92008-07-15 18:44:13 -070093 if (ieee80211_is_ctl(hdr->frame_control)) {
Johannes Berge2ebc742007-07-27 15:43:22 +020094 /* TODO: These control frames are not currently sent by
Johannes Bergccd7b362008-09-11 00:01:56 +020095 * mac80211, but should they be implemented, this function
Johannes Berge2ebc742007-07-27 15:43:22 +020096 * needs to be updated to support duration field calculation.
97 *
98 * RTS: time needed to transmit pending data/mgmt frame plus
99 * one CTS frame plus one ACK frame plus 3 x SIFS
100 * CTS: duration of immediately previous RTS minus time
101 * required to transmit CTS and its SIFS
102 * ACK: 0 if immediately previous directed data/mgmt had
103 * more=0, with more=1 duration in ACK frame is duration
104 * from previous frame minus time needed to transmit ACK
105 * and its SIFS
106 * PS Poll: BIT(15) | BIT(14) | aid
107 */
108 return 0;
109 }
110
111 /* data/mgmt */
112 if (0 /* FIX: data/mgmt during CFP */)
Johannes Berg03f93c32008-06-25 14:36:27 +0300113 return cpu_to_le16(32768);
Johannes Berge2ebc742007-07-27 15:43:22 +0200114
115 if (group_addr) /* Group address as the destination - no ACK */
116 return 0;
117
118 /* Individual destination address:
119 * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
120 * CTS and ACK frames shall be transmitted using the highest rate in
121 * basic rate set that is less than or equal to the rate of the
122 * immediately previous frame and that is using the same modulation
123 * (CCK or OFDM). If no basic rate set matches with these requirements,
124 * the highest mandatory rate of the PHY that is less than or equal to
125 * the rate of the previous frame is used.
126 * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
127 */
128 rate = -1;
Johannes Berg8318d782008-01-24 19:38:38 +0100129 /* use lowest available if everything fails */
130 mrate = sband->bitrates[0].bitrate;
131 for (i = 0; i < sband->n_bitrates; i++) {
132 struct ieee80211_rate *r = &sband->bitrates[i];
133
134 if (r->bitrate > txrate->bitrate)
Johannes Berge2ebc742007-07-27 15:43:22 +0200135 break;
136
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200137 if ((rate_flags & r->flags) != rate_flags)
138 continue;
139
Johannes Bergbda39332008-10-11 01:51:51 +0200140 if (tx->sdata->vif.bss_conf.basic_rates & BIT(i))
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200141 rate = DIV_ROUND_UP(r->bitrate, 1 << shift);
Johannes Berge2ebc742007-07-27 15:43:22 +0200142
Johannes Berg8318d782008-01-24 19:38:38 +0100143 switch (sband->band) {
144 case IEEE80211_BAND_2GHZ: {
145 u32 flag;
146 if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
147 flag = IEEE80211_RATE_MANDATORY_G;
148 else
149 flag = IEEE80211_RATE_MANDATORY_B;
150 if (r->flags & flag)
151 mrate = r->bitrate;
152 break;
153 }
154 case IEEE80211_BAND_5GHZ:
155 if (r->flags & IEEE80211_RATE_MANDATORY_A)
156 mrate = r->bitrate;
157 break;
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +0300158 case IEEE80211_BAND_60GHZ:
159 /* TODO, for now fall through */
Johannes Berg8318d782008-01-24 19:38:38 +0100160 case IEEE80211_NUM_BANDS:
161 WARN_ON(1);
162 break;
163 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200164 }
165 if (rate == -1) {
166 /* No matching basic rate found; use highest suitable mandatory
167 * PHY rate */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200168 rate = DIV_ROUND_UP(mrate, 1 << shift);
Johannes Berge2ebc742007-07-27 15:43:22 +0200169 }
170
Simon Wunderlich6674f212011-11-21 21:34:30 +0100171 /* Don't calculate ACKs for QoS Frames with NoAck Policy set */
172 if (ieee80211_is_data_qos(hdr->frame_control) &&
Claudio Pisac26a0e12012-05-28 13:06:25 +0100173 *(ieee80211_get_qos_ctl(hdr)) & IEEE80211_QOS_CTL_ACK_POLICY_NOACK)
Simon Wunderlich6674f212011-11-21 21:34:30 +0100174 dur = 0;
175 else
176 /* Time needed to transmit ACK
177 * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
178 * to closest integer */
Michal Kazior4ee73f32012-04-11 08:47:56 +0200179 dur = ieee80211_frame_duration(sband->band, 10, rate, erp,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200180 tx->sdata->vif.bss_conf.use_short_preamble,
181 shift);
Johannes Berge2ebc742007-07-27 15:43:22 +0200182
183 if (next_frag_len) {
184 /* Frame is fragmented: duration increases with time needed to
185 * transmit next fragment plus ACK and 2 x SIFS. */
186 dur *= 2; /* ACK + SIFS */
187 /* next fragment */
Michal Kazior4ee73f32012-04-11 08:47:56 +0200188 dur += ieee80211_frame_duration(sband->band, next_frag_len,
Johannes Berg8318d782008-01-24 19:38:38 +0100189 txrate->bitrate, erp,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200190 tx->sdata->vif.bss_conf.use_short_preamble,
191 shift);
Johannes Berge2ebc742007-07-27 15:43:22 +0200192 }
193
Johannes Berg03f93c32008-06-25 14:36:27 +0300194 return cpu_to_le16(dur);
Johannes Berge2ebc742007-07-27 15:43:22 +0200195}
196
Johannes Berge2ebc742007-07-27 15:43:22 +0200197/* tx handlers */
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200198static ieee80211_tx_result debug_noinline
199ieee80211_tx_h_dynamic_ps(struct ieee80211_tx_data *tx)
200{
201 struct ieee80211_local *local = tx->local;
Kalle Valo0c742112010-01-12 10:42:53 +0200202 struct ieee80211_if_managed *ifmgd;
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200203
204 /* driver doesn't support power save */
205 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
206 return TX_CONTINUE;
207
208 /* hardware does dynamic power save */
209 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
210 return TX_CONTINUE;
211
212 /* dynamic power save disabled */
213 if (local->hw.conf.dynamic_ps_timeout <= 0)
214 return TX_CONTINUE;
215
216 /* we are scanning, don't enable power save */
217 if (local->scanning)
218 return TX_CONTINUE;
219
220 if (!local->ps_sdata)
221 return TX_CONTINUE;
222
223 /* No point if we're going to suspend */
224 if (local->quiescing)
225 return TX_CONTINUE;
226
Kalle Valo0c742112010-01-12 10:42:53 +0200227 /* dynamic ps is supported only in managed mode */
228 if (tx->sdata->vif.type != NL80211_IFTYPE_STATION)
229 return TX_CONTINUE;
230
231 ifmgd = &tx->sdata->u.mgd;
232
233 /*
234 * Don't wakeup from power save if u-apsd is enabled, voip ac has
235 * u-apsd enabled and the frame is in voip class. This effectively
236 * means that even if all access categories have u-apsd enabled, in
237 * practise u-apsd is only used with the voip ac. This is a
238 * workaround for the case when received voip class packets do not
239 * have correct qos tag for some reason, due the network or the
240 * peer application.
241 *
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200242 * Note: ifmgd->uapsd_queues access is racy here. If the value is
Kalle Valo0c742112010-01-12 10:42:53 +0200243 * changed via debugfs, user needs to reassociate manually to have
244 * everything in sync.
245 */
Johannes Berg4875d30d2012-03-27 14:18:37 +0200246 if ((ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED) &&
247 (ifmgd->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO) &&
248 skb_get_queue_mapping(tx->skb) == IEEE80211_AC_VO)
Kalle Valo0c742112010-01-12 10:42:53 +0200249 return TX_CONTINUE;
250
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200251 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
252 ieee80211_stop_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +0100253 IEEE80211_MAX_QUEUE_MAP,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300254 IEEE80211_QUEUE_STOP_REASON_PS,
255 false);
Vivek Natarajandb285692011-02-18 17:18:03 +0530256 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200257 ieee80211_queue_work(&local->hw,
258 &local->dynamic_ps_disable_work);
259 }
260
Luciano Coelho5db1c072011-05-03 21:40:08 +0300261 /* Don't restart the timer if we're not disassociated */
262 if (!ifmgd->associated)
263 return TX_CONTINUE;
264
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200265 mod_timer(&local->dynamic_ps_timer, jiffies +
266 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
267
268 return TX_CONTINUE;
269}
Johannes Berge2ebc742007-07-27 15:43:22 +0200270
Johannes Bergd9e8a702008-06-30 15:10:44 +0200271static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100272ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200273{
Harvey Harrison358c8d92008-07-15 18:44:13 -0700274
Johannes Berge039fa42008-05-15 12:55:29 +0200275 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200276 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200277 bool assoc = false;
Johannes Berge2ebc742007-07-27 15:43:22 +0200278
Johannes Berge039fa42008-05-15 12:55:29 +0200279 if (unlikely(info->flags & IEEE80211_TX_CTL_INJECTED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100280 return TX_CONTINUE;
Johannes Berg58d41852007-09-26 17:53:18 +0200281
Ben Greearb23b0252011-02-04 11:54:17 -0800282 if (unlikely(test_bit(SCAN_SW_SCANNING, &tx->local->scanning)) &&
283 test_bit(SDATA_STATE_OFFCHANNEL, &tx->sdata->state) &&
Kalle Valoa9a6fff2009-03-18 14:06:44 +0200284 !ieee80211_is_probe_req(hdr->frame_control) &&
285 !ieee80211_is_nullfunc(hdr->frame_control))
286 /*
287 * When software scanning only nullfunc frames (to notify
288 * the sleep state to the AP) and probe requests (for the
289 * active scan) are allowed, all other frames should not be
290 * sent and we should not get here, but if we do
291 * nonetheless, drop them to avoid sending them
292 * off-channel. See the link below and
293 * ieee80211_start_scan() for more.
294 *
295 * http://article.gmane.org/gmane.linux.kernel.wireless.general/30089
296 */
Johannes Berg9ae54c82008-01-31 19:48:20 +0100297 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200298
Rostislav Lisovy239281f2014-11-03 10:33:19 +0100299 if (tx->sdata->vif.type == NL80211_IFTYPE_OCB)
300 return TX_CONTINUE;
301
Bill Jordan1be7fe82010-10-01 11:20:41 -0400302 if (tx->sdata->vif.type == NL80211_IFTYPE_WDS)
303 return TX_CONTINUE;
304
Johannes Berg05c914f2008-09-11 00:01:58 +0200305 if (tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100306 return TX_CONTINUE;
307
Johannes Berg5cf121c2008-02-25 16:27:43 +0100308 if (tx->flags & IEEE80211_TX_PS_BUFFERED)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100309 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200310
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200311 if (tx->sta)
312 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
Johannes Berge2ebc742007-07-27 15:43:22 +0200313
Johannes Berg5cf121c2008-02-25 16:27:43 +0100314 if (likely(tx->flags & IEEE80211_TX_UNICAST)) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200315 if (unlikely(!assoc &&
Harvey Harrison358c8d92008-07-15 18:44:13 -0700316 ieee80211_is_data(hdr->frame_control))) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200317#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200318 sdata_info(tx->sdata,
319 "dropped data frame to not associated station %pM\n",
320 hdr->addr1);
321#endif
Johannes Berge2ebc742007-07-27 15:43:22 +0200322 I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100323 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200324 }
Johannes Berg29623892011-12-14 12:20:31 +0100325 } else if (unlikely(tx->sdata->vif.type == NL80211_IFTYPE_AP &&
326 ieee80211_is_data(hdr->frame_control) &&
Felix Fietkau030ef8f2012-04-23 19:49:02 +0200327 !atomic_read(&tx->sdata->u.ap.num_mcast_sta))) {
Johannes Berg29623892011-12-14 12:20:31 +0100328 /*
329 * No associated STAs - no need to send multicast
330 * frames.
331 */
332 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200333 }
334
Johannes Berg9ae54c82008-01-31 19:48:20 +0100335 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200336}
337
Johannes Berge2ebc742007-07-27 15:43:22 +0200338/* This function is called whenever the AP is about to exceed the maximum limit
339 * of buffered frames for power saving STAs. This situation should not really
340 * happen often during normal operation, so dropping the oldest buffered packet
341 * from each queue should be OK to make some room for new frames. */
342static void purge_old_ps_buffers(struct ieee80211_local *local)
343{
344 int total = 0, purged = 0;
345 struct sk_buff *skb;
346 struct ieee80211_sub_if_data *sdata;
347 struct sta_info *sta;
348
Johannes Berg79010422007-09-18 17:29:21 -0400349 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Marco Porschd012a602012-10-10 12:39:50 -0700350 struct ps_data *ps;
351
352 if (sdata->vif.type == NL80211_IFTYPE_AP)
353 ps = &sdata->u.ap.ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100354 else if (ieee80211_vif_is_mesh(&sdata->vif))
355 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -0700356 else
Johannes Berge2ebc742007-07-27 15:43:22 +0200357 continue;
Marco Porschd012a602012-10-10 12:39:50 -0700358
359 skb = skb_dequeue(&ps->bc_buf);
Johannes Berge2ebc742007-07-27 15:43:22 +0200360 if (skb) {
361 purged++;
362 dev_kfree_skb(skb);
363 }
Marco Porschd012a602012-10-10 12:39:50 -0700364 total += skb_queue_len(&ps->bc_buf);
Johannes Berge2ebc742007-07-27 15:43:22 +0200365 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200366
Johannes Berg948d8872011-09-29 16:04:29 +0200367 /*
368 * Drop one frame from each station from the lowest-priority
369 * AC that has frames at all.
370 */
Johannes Bergd0709a62008-02-25 16:27:46 +0100371 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Johannes Berg948d8872011-09-29 16:04:29 +0200372 int ac;
373
374 for (ac = IEEE80211_AC_BK; ac >= IEEE80211_AC_VO; ac--) {
375 skb = skb_dequeue(&sta->ps_tx_buf[ac]);
376 total += skb_queue_len(&sta->ps_tx_buf[ac]);
377 if (skb) {
378 purged++;
Felix Fietkauc3e77242012-10-08 14:39:33 +0200379 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg948d8872011-09-29 16:04:29 +0200380 break;
381 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200382 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200383 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100384
Johannes Berge2ebc742007-07-27 15:43:22 +0200385 local->total_ps_buffered = total;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200386 ps_dbg_hw(&local->hw, "PS buffers full - purged %d frames\n", purged);
Johannes Berge2ebc742007-07-27 15:43:22 +0200387}
388
Johannes Berg9ae54c82008-01-31 19:48:20 +0100389static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100390ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200391{
Johannes Berge039fa42008-05-15 12:55:29 +0200392 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Harvey Harrison358c8d92008-07-15 18:44:13 -0700393 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Marco Porschd012a602012-10-10 12:39:50 -0700394 struct ps_data *ps;
Johannes Berge039fa42008-05-15 12:55:29 +0200395
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100396 /*
397 * broadcast/multicast frame
398 *
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100399 * If any of the associated/peer stations is in power save mode,
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100400 * the frame is buffered to be sent after DTIM beacon frame.
401 * This is done either by the hardware or us.
402 */
403
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100404 /* powersaving STAs currently only in AP/VLAN/mesh mode */
Marco Porschd012a602012-10-10 12:39:50 -0700405 if (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
406 tx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
407 if (!tx->sdata->bss)
408 return TX_CONTINUE;
409
410 ps = &tx->sdata->bss->ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100411 } else if (ieee80211_vif_is_mesh(&tx->sdata->vif)) {
412 ps = &tx->sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -0700413 } else {
Johannes Berg3e122be2008-07-09 14:40:34 +0200414 return TX_CONTINUE;
Marco Porschd012a602012-10-10 12:39:50 -0700415 }
416
Johannes Berg3e122be2008-07-09 14:40:34 +0200417
418 /* no buffering for ordered frames */
Harvey Harrison358c8d92008-07-15 18:44:13 -0700419 if (ieee80211_has_order(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100420 return TX_CONTINUE;
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100421
Johannes Berg08b99392014-07-07 12:01:11 +0200422 if (ieee80211_is_probe_req(hdr->frame_control))
423 return TX_CONTINUE;
424
Johannes Bergf4d57942013-05-28 17:24:15 +0200425 if (tx->local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
426 info->hw_queue = tx->sdata->vif.cab_queue;
427
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100428 /* no stations in PS mode */
Marco Porschd012a602012-10-10 12:39:50 -0700429 if (!atomic_read(&ps->num_sta_ps))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100430 return TX_CONTINUE;
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100431
Johannes Berg62b517c2009-10-29 12:19:21 +0100432 info->flags |= IEEE80211_TX_CTL_SEND_AFTER_DTIM;
Johannes Berg62b12082009-08-10 16:04:15 +0200433
Johannes Berg62b517c2009-10-29 12:19:21 +0100434 /* device releases frame after DTIM beacon */
435 if (!(tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING))
Johannes Berg62b12082009-08-10 16:04:15 +0200436 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200437
Johannes Berg62b12082009-08-10 16:04:15 +0200438 /* buffered in mac80211 */
439 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
440 purge_old_ps_buffers(tx->local);
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100441
Marco Porschd012a602012-10-10 12:39:50 -0700442 if (skb_queue_len(&ps->bc_buf) >= AP_MAX_BC_BUFFER) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200443 ps_dbg(tx->sdata,
444 "BC TX buffer full - dropping the oldest frame\n");
Marco Porschd012a602012-10-10 12:39:50 -0700445 dev_kfree_skb(skb_dequeue(&ps->bc_buf));
Johannes Berg62b12082009-08-10 16:04:15 +0200446 } else
447 tx->local->total_ps_buffered++;
448
Marco Porschd012a602012-10-10 12:39:50 -0700449 skb_queue_tail(&ps->bc_buf, tx->skb);
Johannes Berg62b12082009-08-10 16:04:15 +0200450
451 return TX_QUEUED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200452}
453
Jouni Malinenfb733332009-01-08 13:32:00 +0200454static int ieee80211_use_mfp(__le16 fc, struct sta_info *sta,
455 struct sk_buff *skb)
456{
457 if (!ieee80211_is_mgmt(fc))
458 return 0;
459
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200460 if (sta == NULL || !test_sta_flag(sta, WLAN_STA_MFP))
Jouni Malinenfb733332009-01-08 13:32:00 +0200461 return 0;
462
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100463 if (!ieee80211_is_robust_mgmt_frame(skb))
Jouni Malinenfb733332009-01-08 13:32:00 +0200464 return 0;
465
466 return 1;
467}
468
Johannes Berg9ae54c82008-01-31 19:48:20 +0100469static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100470ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200471{
472 struct sta_info *sta = tx->sta;
Johannes Berge039fa42008-05-15 12:55:29 +0200473 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Berg08b99392014-07-07 12:01:11 +0200474 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300475 struct ieee80211_local *local = tx->local;
Johannes Berge2ebc742007-07-27 15:43:22 +0200476
Johannes Berg02f2f1a2012-02-27 12:18:30 +0100477 if (unlikely(!sta))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100478 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200479
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200480 if (unlikely((test_sta_flag(sta, WLAN_STA_PS_STA) ||
Johannes Berg5ac2e352014-05-27 16:32:27 +0200481 test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
482 test_sta_flag(sta, WLAN_STA_PS_DELIVER)) &&
Johannes Berg02f2f1a2012-02-27 12:18:30 +0100483 !(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER))) {
Johannes Berg948d8872011-09-29 16:04:29 +0200484 int ac = skb_get_queue_mapping(tx->skb);
485
Johannes Berg08b99392014-07-07 12:01:11 +0200486 if (ieee80211_is_mgmt(hdr->frame_control) &&
487 !ieee80211_is_bufferable_mmpdu(hdr->frame_control)) {
488 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
489 return TX_CONTINUE;
490 }
491
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200492 ps_dbg(sta->sdata, "STA %pM aid %d: PS buffer for AC %d\n",
493 sta->sta.addr, sta->sta.aid, ac);
Johannes Berge2ebc742007-07-27 15:43:22 +0200494 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
495 purge_old_ps_buffers(tx->local);
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +0200496
497 /* sync with ieee80211_sta_ps_deliver_wakeup */
498 spin_lock(&sta->ps_lock);
499 /*
500 * STA woke up the meantime and all the frames on ps_tx_buf have
501 * been queued to pending queue. No reordering can happen, go
502 * ahead and Tx the packet.
503 */
504 if (!test_sta_flag(sta, WLAN_STA_PS_STA) &&
Johannes Berg5ac2e352014-05-27 16:32:27 +0200505 !test_sta_flag(sta, WLAN_STA_PS_DRIVER) &&
506 !test_sta_flag(sta, WLAN_STA_PS_DELIVER)) {
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +0200507 spin_unlock(&sta->ps_lock);
508 return TX_CONTINUE;
509 }
510
Johannes Berg948d8872011-09-29 16:04:29 +0200511 if (skb_queue_len(&sta->ps_tx_buf[ac]) >= STA_MAX_TX_BUFFER) {
512 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf[ac]);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200513 ps_dbg(tx->sdata,
514 "STA %pM TX buffer for AC %d full - dropping oldest frame\n",
515 sta->sta.addr, ac);
Felix Fietkauc3e77242012-10-08 14:39:33 +0200516 ieee80211_free_txskb(&local->hw, old);
Johannes Berge2ebc742007-07-27 15:43:22 +0200517 } else
518 tx->local->total_ps_buffered++;
Johannes Berg004c8722008-02-20 11:21:35 +0100519
Johannes Berge039fa42008-05-15 12:55:29 +0200520 info->control.jiffies = jiffies;
Johannes Berg5061b0c2009-07-14 00:33:34 +0200521 info->control.vif = &tx->sdata->vif;
Johannes Berg8f77f382009-06-07 21:58:37 +0200522 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
Johannes Berg03c8c062014-01-09 01:45:28 +0100523 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
Johannes Berg948d8872011-09-29 16:04:29 +0200524 skb_queue_tail(&sta->ps_tx_buf[ac], tx->skb);
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +0200525 spin_unlock(&sta->ps_lock);
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300526
527 if (!timer_pending(&local->sta_cleanup))
528 mod_timer(&local->sta_cleanup,
529 round_jiffies(jiffies +
530 STA_INFO_CLEANUP_INTERVAL));
531
Johannes Bergc868cb352011-09-29 16:04:27 +0200532 /*
533 * We queued up some frames, so the TIM bit might
534 * need to be set, recalculate it.
535 */
536 sta_info_recalc_tim(sta);
537
Johannes Berg9ae54c82008-01-31 19:48:20 +0100538 return TX_QUEUED;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200539 } else if (unlikely(test_sta_flag(sta, WLAN_STA_PS_STA))) {
540 ps_dbg(tx->sdata,
541 "STA %pM in PS mode, but polling/in SP -> send frame\n",
542 sta->sta.addr);
Johannes Berge2ebc742007-07-27 15:43:22 +0200543 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200544
Johannes Berg9ae54c82008-01-31 19:48:20 +0100545 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200546}
547
Johannes Bergd9e8a702008-06-30 15:10:44 +0200548static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100549ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200550{
Johannes Berg5cf121c2008-02-25 16:27:43 +0100551 if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100552 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200553
Johannes Berg5cf121c2008-02-25 16:27:43 +0100554 if (tx->flags & IEEE80211_TX_UNICAST)
Johannes Berge2ebc742007-07-27 15:43:22 +0200555 return ieee80211_tx_h_unicast_ps_buf(tx);
556 else
557 return ieee80211_tx_h_multicast_ps_buf(tx);
558}
559
Johannes Bergd9e8a702008-06-30 15:10:44 +0200560static ieee80211_tx_result debug_noinline
Johannes Berga621fa42010-08-27 14:26:54 +0300561ieee80211_tx_h_check_control_port_protocol(struct ieee80211_tx_data *tx)
562{
563 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
564
Johannes Bergaf61a162013-07-02 18:09:12 +0200565 if (unlikely(tx->sdata->control_port_protocol == tx->skb->protocol)) {
566 if (tx->sdata->control_port_no_encrypt)
567 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
568 info->control.flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO;
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 Malinen3cfcf6ac2009-01-08 13:32:02 +0200642 if (!ieee80211_is_mgmt(hdr->frame_control))
643 tx->key = NULL;
644 break;
Johannes Berg176e4f82007-12-18 15:27:47 +0100645 }
Johannes Berg813d7662010-01-17 01:47:58 +0100646
Johannes Berge54faf22013-01-29 11:41:38 +0100647 if (unlikely(tx->key && tx->key->flags & KEY_FLAG_TAINTED &&
648 !ieee80211_is_deauth(hdr->frame_control)))
Johannes Berg95acac62011-07-12 12:30:59 +0200649 return TX_DROP;
650
Johannes Bergf12553e2010-01-22 22:07:59 +0100651 if (!skip_hw && tx->key &&
Johannes Berg382b1652010-01-25 11:36:16 +0100652 tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
Johannes Berg813d7662010-01-17 01:47:58 +0100653 info->control.hw_key = &tx->key->conf;
Johannes Berge2ebc742007-07-27 15:43:22 +0200654 }
655
Johannes Berg9ae54c82008-01-31 19:48:20 +0100656 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200657}
658
Johannes Bergd9e8a702008-06-30 15:10:44 +0200659static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100660ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200661{
Johannes Berge039fa42008-05-15 12:55:29 +0200662 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200663 struct ieee80211_hdr *hdr = (void *)tx->skb->data;
664 struct ieee80211_supported_band *sband;
Shanyu Zhaoa2c40242010-04-27 11:15:12 -0700665 u32 len;
Johannes Berge6a98542008-10-21 12:40:02 +0200666 struct ieee80211_tx_rate_control txrc;
Felix Fietkau0d528d82013-04-22 16:14:41 +0200667 struct ieee80211_sta_rates *ratetbl = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200668 bool assoc = false;
Johannes Berge6a98542008-10-21 12:40:02 +0200669
670 memset(&txrc, 0, sizeof(txrc));
Johannes Berg8318d782008-01-24 19:38:38 +0100671
Johannes Berg2d565772012-07-23 15:12:51 +0200672 sband = tx->local->hw.wiphy->bands[info->band];
Johannes Berge2ebc742007-07-27 15:43:22 +0200673
Shanyu Zhaoa2c40242010-04-27 11:15:12 -0700674 len = min_t(u32, tx->skb->len + FCS_LEN,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200675 tx->local->hw.wiphy->frag_threshold);
Johannes Berg58d41852007-09-26 17:53:18 +0200676
Johannes Berge6a98542008-10-21 12:40:02 +0200677 /* set up the tx rate control struct we give the RC algo */
Johannes Berg005e4722012-02-26 11:24:35 +0100678 txrc.hw = &tx->local->hw;
Johannes Berge6a98542008-10-21 12:40:02 +0200679 txrc.sband = sband;
680 txrc.bss_conf = &tx->sdata->vif.bss_conf;
681 txrc.skb = tx->skb;
682 txrc.reported_rate.idx = -1;
Johannes Berg2d565772012-07-23 15:12:51 +0200683 txrc.rate_idx_mask = tx->sdata->rc_rateidx_mask[info->band];
Jouni Malinen37eb0b12010-01-06 13:09:08 +0200684 if (txrc.rate_idx_mask == (1 << sband->n_bitrates) - 1)
685 txrc.max_rate_idx = -1;
686 else
687 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +0200688
689 if (tx->sdata->rc_has_mcs_mask[info->band])
690 txrc.rate_idx_mcs_mask =
691 tx->sdata->rc_rateidx_mcs_mask[info->band];
692
Felix Fietkau8f0729b2010-11-11 15:07:23 +0100693 txrc.bss = (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -0800694 tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT ||
Felix Fietkau8f0729b2010-11-11 15:07:23 +0100695 tx->sdata->vif.type == NL80211_IFTYPE_ADHOC);
Johannes Berg58d41852007-09-26 17:53:18 +0200696
Johannes Berge6a98542008-10-21 12:40:02 +0200697 /* set up RTS protection if desired */
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200698 if (len > tx->local->hw.wiphy->rts_threshold) {
Felix Fietkau0d528d82013-04-22 16:14:41 +0200699 txrc.rts = true;
Johannes Berge2ebc742007-07-27 15:43:22 +0200700 }
Johannes Berge6a98542008-10-21 12:40:02 +0200701
Felix Fietkau0d528d82013-04-22 16:14:41 +0200702 info->control.use_rts = txrc.rts;
Felix Fietkau991fec02013-04-16 13:38:43 +0200703 info->control.use_cts_prot = tx->sdata->vif.bss_conf.use_cts_prot;
704
Johannes Berge6a98542008-10-21 12:40:02 +0200705 /*
706 * Use short preamble if the BSS can handle it, but not for
707 * management frames unless we know the receiver can handle
708 * that -- the management frame might be to a station that
709 * just wants a probe response.
710 */
711 if (tx->sdata->vif.bss_conf.use_short_preamble &&
712 (ieee80211_is_data(hdr->frame_control) ||
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200713 (tx->sta && test_sta_flag(tx->sta, WLAN_STA_SHORT_PREAMBLE))))
Felix Fietkau0d528d82013-04-22 16:14:41 +0200714 txrc.short_preamble = true;
715
716 info->control.short_preamble = txrc.short_preamble;
Johannes Berge6a98542008-10-21 12:40:02 +0200717
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200718 if (tx->sta)
719 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
Johannes Berge6a98542008-10-21 12:40:02 +0200720
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700721 /*
722 * Lets not bother rate control if we're associated and cannot
723 * talk to the sta. This should not happen.
724 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200725 if (WARN(test_bit(SCAN_SW_SCANNING, &tx->local->scanning) && assoc &&
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700726 !rate_usable_index_exists(sband, &tx->sta->sta),
727 "%s: Dropped data frame as no usable bitrate found while "
728 "scanning and associated. Target station: "
729 "%pM on %d GHz band\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100730 tx->sdata->name, hdr->addr1,
Johannes Berg2d565772012-07-23 15:12:51 +0200731 info->band ? 5 : 2))
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700732 return TX_DROP;
733
734 /*
735 * If we're associated with the sta at this point we know we can at
736 * least send the frame at the lowest bit rate.
737 */
Johannes Berge6a98542008-10-21 12:40:02 +0200738 rate_control_get_rate(tx->sdata, tx->sta, &txrc);
739
Felix Fietkau0d528d82013-04-22 16:14:41 +0200740 if (tx->sta && !info->control.skip_table)
741 ratetbl = rcu_dereference(tx->sta->sta.rates);
742
743 if (unlikely(info->control.rates[0].idx < 0)) {
744 if (ratetbl) {
745 struct ieee80211_tx_rate rate = {
746 .idx = ratetbl->rate[0].idx,
747 .flags = ratetbl->rate[0].flags,
748 .count = ratetbl->rate[0].count
749 };
750
751 if (ratetbl->rate[0].idx < 0)
752 return TX_DROP;
753
754 tx->rate = rate;
755 } else {
756 return TX_DROP;
757 }
758 } else {
759 tx->rate = info->control.rates[0];
760 }
Johannes Berge6a98542008-10-21 12:40:02 +0200761
Helmut Schaac1ce5a72010-12-01 16:34:45 +0100762 if (txrc.reported_rate.idx < 0) {
Felix Fietkau0d528d82013-04-22 16:14:41 +0200763 txrc.reported_rate = tx->rate;
Helmut Schaac1ce5a72010-12-01 16:34:45 +0100764 if (tx->sta && ieee80211_is_data(hdr->frame_control))
765 tx->sta->last_tx_rate = txrc.reported_rate;
766 } else if (tx->sta)
Johannes Berge6a98542008-10-21 12:40:02 +0200767 tx->sta->last_tx_rate = txrc.reported_rate;
768
Felix Fietkau0d528d82013-04-22 16:14:41 +0200769 if (ratetbl)
770 return TX_CONTINUE;
771
Johannes Berge6a98542008-10-21 12:40:02 +0200772 if (unlikely(!info->control.rates[0].count))
773 info->control.rates[0].count = 1;
774
Gábor Stefanik99551512009-04-23 19:36:14 +0200775 if (WARN_ON_ONCE((info->control.rates[0].count > 1) &&
776 (info->flags & IEEE80211_TX_CTL_NO_ACK)))
777 info->control.rates[0].count = 1;
778
Johannes Berg9ae54c82008-01-31 19:48:20 +0100779 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200780}
781
Johannes Bergd9e8a702008-06-30 15:10:44 +0200782static ieee80211_tx_result debug_noinline
Johannes Bergf591fa52008-07-10 11:21:26 +0200783ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
784{
785 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
786 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
787 u16 *seq;
788 u8 *qc;
789 int tid;
790
Johannes Berg25d834e2008-09-12 22:52:47 +0200791 /*
792 * Packet injection may want to control the sequence
793 * number, if we have no matching interface then we
794 * neither assign one ourselves nor ask the driver to.
795 */
Johannes Berg5061b0c2009-07-14 00:33:34 +0200796 if (unlikely(info->control.vif->type == NL80211_IFTYPE_MONITOR))
Johannes Berg25d834e2008-09-12 22:52:47 +0200797 return TX_CONTINUE;
798
Johannes Bergf591fa52008-07-10 11:21:26 +0200799 if (unlikely(ieee80211_is_ctl(hdr->frame_control)))
800 return TX_CONTINUE;
801
802 if (ieee80211_hdrlen(hdr->frame_control) < 24)
803 return TX_CONTINUE;
804
Johannes Berg49a59542011-09-29 16:04:41 +0200805 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
806 return TX_CONTINUE;
807
Johannes Berg94778282008-10-10 13:21:59 +0200808 /*
809 * Anything but QoS data that has a sequence number field
810 * (is long enough) gets a sequence number from the global
Bob Copelandc4c205f2013-08-23 09:35:38 -0400811 * counter. QoS data frames with a multicast destination
812 * also use the global counter (802.11-2012 9.3.2.10).
Johannes Berg94778282008-10-10 13:21:59 +0200813 */
Bob Copelandc4c205f2013-08-23 09:35:38 -0400814 if (!ieee80211_is_data_qos(hdr->frame_control) ||
815 is_multicast_ether_addr(hdr->addr1)) {
Johannes Berg94778282008-10-10 13:21:59 +0200816 /* driver should assign sequence number */
Johannes Bergf591fa52008-07-10 11:21:26 +0200817 info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
Johannes Berg94778282008-10-10 13:21:59 +0200818 /* for pure STA mode without beacons, we can do it */
819 hdr->seq_ctrl = cpu_to_le16(tx->sdata->sequence_number);
820 tx->sdata->sequence_number += 0x10;
Johannes Berg79c892b2014-11-21 14:26:31 +0100821 if (tx->sta)
822 tx->sta->tx_msdu[IEEE80211_NUM_TIDS]++;
Johannes Bergf591fa52008-07-10 11:21:26 +0200823 return TX_CONTINUE;
824 }
825
826 /*
827 * This should be true for injected/management frames only, for
828 * management frames we have set the IEEE80211_TX_CTL_ASSIGN_SEQ
829 * above since they are not QoS-data frames.
830 */
831 if (!tx->sta)
832 return TX_CONTINUE;
833
834 /* include per-STA, per-TID sequence counter */
835
836 qc = ieee80211_get_qos_ctl(hdr);
837 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
838 seq = &tx->sta->tid_seq[tid];
Johannes Berg79c892b2014-11-21 14:26:31 +0100839 tx->sta->tx_msdu[tid]++;
Johannes Bergf591fa52008-07-10 11:21:26 +0200840
841 hdr->seq_ctrl = cpu_to_le16(*seq);
842
843 /* Increase the sequence number. */
844 *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ;
845
846 return TX_CONTINUE;
847}
848
Johannes Berg252b86c2011-11-16 15:28:55 +0100849static int ieee80211_fragment(struct ieee80211_tx_data *tx,
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100850 struct sk_buff *skb, int hdrlen,
851 int frag_threshold)
852{
Johannes Berg252b86c2011-11-16 15:28:55 +0100853 struct ieee80211_local *local = tx->local;
Johannes Berga1a3fce2011-11-16 15:28:56 +0100854 struct ieee80211_tx_info *info;
Johannes Berg252b86c2011-11-16 15:28:55 +0100855 struct sk_buff *tmp;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100856 int per_fragm = frag_threshold - hdrlen - FCS_LEN;
857 int pos = hdrlen + per_fragm;
858 int rem = skb->len - hdrlen - per_fragm;
859
860 if (WARN_ON(rem < 0))
861 return -EINVAL;
862
Johannes Berg252b86c2011-11-16 15:28:55 +0100863 /* first fragment was already added to queue by caller */
864
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100865 while (rem) {
866 int fraglen = per_fragm;
867
868 if (fraglen > rem)
869 fraglen = rem;
870 rem -= fraglen;
871 tmp = dev_alloc_skb(local->tx_headroom +
872 frag_threshold +
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200873 tx->sdata->encrypt_headroom +
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100874 IEEE80211_ENCRYPT_TAILROOM);
875 if (!tmp)
876 return -ENOMEM;
Johannes Berg252b86c2011-11-16 15:28:55 +0100877
878 __skb_queue_tail(&tx->skbs, tmp);
879
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200880 skb_reserve(tmp,
881 local->tx_headroom + tx->sdata->encrypt_headroom);
882
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100883 /* copy control information */
884 memcpy(tmp->cb, skb->cb, sizeof(tmp->cb));
Johannes Berga1a3fce2011-11-16 15:28:56 +0100885
886 info = IEEE80211_SKB_CB(tmp);
887 info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT |
888 IEEE80211_TX_CTL_FIRST_FRAGMENT);
889
890 if (rem)
891 info->flags |= IEEE80211_TX_CTL_MORE_FRAMES;
892
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100893 skb_copy_queue_mapping(tmp, skb);
894 tmp->priority = skb->priority;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100895 tmp->dev = skb->dev;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100896
897 /* copy header and data */
898 memcpy(skb_put(tmp, hdrlen), skb->data, hdrlen);
899 memcpy(skb_put(tmp, fraglen), skb->data + pos, fraglen);
900
901 pos += fraglen;
902 }
903
Johannes Berg252b86c2011-11-16 15:28:55 +0100904 /* adjust first fragment's length */
Johannes Berg338f9772014-02-01 00:16:23 +0100905 skb_trim(skb, hdrlen + per_fragm);
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100906 return 0;
907}
908
Johannes Bergf591fa52008-07-10 11:21:26 +0200909static ieee80211_tx_result debug_noinline
Johannes Berge2454942008-05-15 12:55:28 +0200910ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
911{
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100912 struct sk_buff *skb = tx->skb;
913 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
914 struct ieee80211_hdr *hdr = (void *)skb->data;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200915 int frag_threshold = tx->local->hw.wiphy->frag_threshold;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100916 int hdrlen;
917 int fragnum;
Johannes Berge2454942008-05-15 12:55:28 +0200918
Johannes Berg252b86c2011-11-16 15:28:55 +0100919 /* no matter what happens, tx->skb moves to tx->skbs */
920 __skb_queue_tail(&tx->skbs, skb);
921 tx->skb = NULL;
922
Johannes Berga26eb272011-10-07 14:01:25 +0200923 if (info->flags & IEEE80211_TX_CTL_DONTFRAG)
924 return TX_CONTINUE;
925
926 if (tx->local->ops->set_frag_threshold)
Johannes Berge2454942008-05-15 12:55:28 +0200927 return TX_CONTINUE;
928
Johannes Bergeefce912008-05-17 00:57:13 +0200929 /*
930 * Warn when submitting a fragmented A-MPDU frame and drop it.
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200931 * This scenario is handled in ieee80211_tx_prepare but extra
Ron Rindjunsky8d5e0d52008-06-12 15:42:29 +0300932 * caution taken here as fragmented ampdu may cause Tx stop.
Johannes Bergeefce912008-05-17 00:57:13 +0200933 */
Sujith8b30b1f2008-10-24 09:55:27 +0530934 if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU))
Johannes Bergeefce912008-05-17 00:57:13 +0200935 return TX_DROP;
936
Harvey Harrison065e96052008-06-22 16:45:27 -0700937 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berge2454942008-05-15 12:55:28 +0200938
Johannes Berga26eb272011-10-07 14:01:25 +0200939 /* internal error, why isn't DONTFRAG set? */
Johannes Berg8ccd8f22009-04-29 23:35:56 +0200940 if (WARN_ON(skb->len + FCS_LEN <= frag_threshold))
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100941 return TX_DROP;
Johannes Berge2454942008-05-15 12:55:28 +0200942
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100943 /*
944 * Now fragment the frame. This will allocate all the fragments and
945 * chain them (using skb as the first fragment) to skb->next.
946 * During transmission, we will remove the successfully transmitted
947 * fragments from this list. When the low-level driver rejects one
948 * of the fragments then we will simply pretend to accept the skb
949 * but store it away as pending.
950 */
Johannes Berg252b86c2011-11-16 15:28:55 +0100951 if (ieee80211_fragment(tx, skb, hdrlen, frag_threshold))
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100952 return TX_DROP;
Johannes Berge2454942008-05-15 12:55:28 +0200953
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100954 /* update duration/seq/flags of fragments */
955 fragnum = 0;
Johannes Berg252b86c2011-11-16 15:28:55 +0100956
957 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100958 const __le16 morefrags = cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
Johannes Berge2454942008-05-15 12:55:28 +0200959
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100960 hdr = (void *)skb->data;
961 info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200962
Johannes Berg252b86c2011-11-16 15:28:55 +0100963 if (!skb_queue_is_last(&tx->skbs, skb)) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100964 hdr->frame_control |= morefrags;
Johannes Berge6a98542008-10-21 12:40:02 +0200965 /*
966 * No multi-rate retries for fragmented frames, that
967 * would completely throw off the NAV at other STAs.
968 */
969 info->control.rates[1].idx = -1;
970 info->control.rates[2].idx = -1;
971 info->control.rates[3].idx = -1;
Thomas Huehne3e1a0b2012-07-02 19:46:16 +0200972 BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 4);
Johannes Berge6a98542008-10-21 12:40:02 +0200973 info->flags &= ~IEEE80211_TX_CTL_RATE_CTRL_PROBE;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100974 } else {
975 hdr->frame_control &= ~morefrags;
Johannes Berge6a98542008-10-21 12:40:02 +0200976 }
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100977 hdr->seq_ctrl |= cpu_to_le16(fragnum & IEEE80211_SCTL_FRAG);
978 fragnum++;
Johannes Berg252b86c2011-11-16 15:28:55 +0100979 }
Johannes Berge2454942008-05-15 12:55:28 +0200980
981 return TX_CONTINUE;
Johannes Berge2454942008-05-15 12:55:28 +0200982}
983
Johannes Bergd9e8a702008-06-30 15:10:44 +0200984static ieee80211_tx_result debug_noinline
Johannes Bergfeff1f22009-08-10 16:01:54 +0200985ieee80211_tx_h_stats(struct ieee80211_tx_data *tx)
986{
Johannes Berg252b86c2011-11-16 15:28:55 +0100987 struct sk_buff *skb;
Johannes Berg560d2682013-02-05 10:55:21 +0100988 int ac = -1;
Johannes Bergfeff1f22009-08-10 16:01:54 +0200989
990 if (!tx->sta)
991 return TX_CONTINUE;
992
Johannes Berg252b86c2011-11-16 15:28:55 +0100993 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg560d2682013-02-05 10:55:21 +0100994 ac = skb_get_queue_mapping(skb);
Johannes Bergfeff1f22009-08-10 16:01:54 +0200995 tx->sta->tx_fragments++;
Johannes Berg560d2682013-02-05 10:55:21 +0100996 tx->sta->tx_bytes[ac] += skb->len;
Johannes Berg252b86c2011-11-16 15:28:55 +0100997 }
Johannes Berg560d2682013-02-05 10:55:21 +0100998 if (ac >= 0)
999 tx->sta->tx_packets[ac]++;
Johannes Bergfeff1f22009-08-10 16:01:54 +02001000
1001 return TX_CONTINUE;
1002}
1003
1004static ieee80211_tx_result debug_noinline
Johannes Berge2454942008-05-15 12:55:28 +02001005ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
1006{
1007 if (!tx->key)
1008 return TX_CONTINUE;
1009
Johannes Berg97359d12010-08-10 09:46:38 +02001010 switch (tx->key->conf.cipher) {
1011 case WLAN_CIPHER_SUITE_WEP40:
1012 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berge2454942008-05-15 12:55:28 +02001013 return ieee80211_crypto_wep_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +02001014 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berge2454942008-05-15 12:55:28 +02001015 return ieee80211_crypto_tkip_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +02001016 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001017 return ieee80211_crypto_ccmp_encrypt(
1018 tx, IEEE80211_CCMP_MIC_LEN);
1019 case WLAN_CIPHER_SUITE_CCMP_256:
1020 return ieee80211_crypto_ccmp_encrypt(
1021 tx, IEEE80211_CCMP_256_MIC_LEN);
Johannes Berg97359d12010-08-10 09:46:38 +02001022 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02001023 return ieee80211_crypto_aes_cmac_encrypt(tx);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +02001024 case WLAN_CIPHER_SUITE_GCMP:
1025 case WLAN_CIPHER_SUITE_GCMP_256:
1026 return ieee80211_crypto_gcmp_encrypt(tx);
Johannes Berg3ffc2a92010-08-27 14:26:52 +03001027 default:
Yoni Divinskyd32a1022012-01-16 15:18:59 +02001028 return ieee80211_crypto_hw_encrypt(tx);
Johannes Berge2454942008-05-15 12:55:28 +02001029 }
1030
Johannes Berge2454942008-05-15 12:55:28 +02001031 return TX_DROP;
1032}
1033
Johannes Bergd9e8a702008-06-30 15:10:44 +02001034static ieee80211_tx_result debug_noinline
Johannes Berg03f93c32008-06-25 14:36:27 +03001035ieee80211_tx_h_calculate_duration(struct ieee80211_tx_data *tx)
1036{
Johannes Berg252b86c2011-11-16 15:28:55 +01001037 struct sk_buff *skb;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001038 struct ieee80211_hdr *hdr;
1039 int next_len;
1040 bool group_addr;
Johannes Berg03f93c32008-06-25 14:36:27 +03001041
Johannes Berg252b86c2011-11-16 15:28:55 +01001042 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001043 hdr = (void *) skb->data;
Jouni Malinen7e0aae42009-05-19 19:25:58 +03001044 if (unlikely(ieee80211_is_pspoll(hdr->frame_control)))
1045 break; /* must not overwrite AID */
Johannes Berg252b86c2011-11-16 15:28:55 +01001046 if (!skb_queue_is_last(&tx->skbs, skb)) {
1047 struct sk_buff *next = skb_queue_next(&tx->skbs, skb);
1048 next_len = next->len;
1049 } else
1050 next_len = 0;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001051 group_addr = is_multicast_ether_addr(hdr->addr1);
Johannes Berg03f93c32008-06-25 14:36:27 +03001052
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001053 hdr->duration_id =
Johannes Berg252b86c2011-11-16 15:28:55 +01001054 ieee80211_duration(tx, skb, group_addr, next_len);
1055 }
Johannes Berg03f93c32008-06-25 14:36:27 +03001056
1057 return TX_CONTINUE;
1058}
1059
Johannes Berge2ebc742007-07-27 15:43:22 +02001060/* actual transmit path */
1061
Johannes Berga622ab72010-06-10 10:21:39 +02001062static bool ieee80211_tx_prep_agg(struct ieee80211_tx_data *tx,
1063 struct sk_buff *skb,
1064 struct ieee80211_tx_info *info,
1065 struct tid_ampdu_tx *tid_tx,
1066 int tid)
1067{
1068 bool queued = false;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001069 bool reset_agg_timer = false;
Helmut Schaaaa454582012-03-07 17:20:30 +01001070 struct sk_buff *purge_skb = NULL;
Johannes Berga622ab72010-06-10 10:21:39 +02001071
1072 if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1073 info->flags |= IEEE80211_TX_CTL_AMPDU;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001074 reset_agg_timer = true;
Johannes Berg0ab33702010-06-10 10:21:42 +02001075 } else if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
1076 /*
1077 * nothing -- this aggregation session is being started
1078 * but that might still fail with the driver
1079 */
Johannes Berga622ab72010-06-10 10:21:39 +02001080 } else {
1081 spin_lock(&tx->sta->lock);
1082 /*
1083 * Need to re-check now, because we may get here
1084 *
1085 * 1) in the window during which the setup is actually
1086 * already done, but not marked yet because not all
1087 * packets are spliced over to the driver pending
1088 * queue yet -- if this happened we acquire the lock
1089 * either before or after the splice happens, but
1090 * need to recheck which of these cases happened.
1091 *
1092 * 2) during session teardown, if the OPERATIONAL bit
1093 * was cleared due to the teardown but the pointer
1094 * hasn't been assigned NULL yet (or we loaded it
1095 * before it was assigned) -- in this case it may
1096 * now be NULL which means we should just let the
1097 * packet pass through because splicing the frames
1098 * back is already done.
1099 */
Johannes Berg40b275b2011-05-13 14:15:49 +02001100 tid_tx = rcu_dereference_protected_tid_tx(tx->sta, tid);
Johannes Berga622ab72010-06-10 10:21:39 +02001101
1102 if (!tid_tx) {
1103 /* do nothing, let packet pass through */
1104 } else if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1105 info->flags |= IEEE80211_TX_CTL_AMPDU;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001106 reset_agg_timer = true;
Johannes Berga622ab72010-06-10 10:21:39 +02001107 } else {
1108 queued = true;
1109 info->control.vif = &tx->sdata->vif;
1110 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
Johannes Berg03c8c062014-01-09 01:45:28 +01001111 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
Johannes Berga622ab72010-06-10 10:21:39 +02001112 __skb_queue_tail(&tid_tx->pending, skb);
Helmut Schaaaa454582012-03-07 17:20:30 +01001113 if (skb_queue_len(&tid_tx->pending) > STA_MAX_TX_BUFFER)
1114 purge_skb = __skb_dequeue(&tid_tx->pending);
Johannes Berga622ab72010-06-10 10:21:39 +02001115 }
1116 spin_unlock(&tx->sta->lock);
Helmut Schaaaa454582012-03-07 17:20:30 +01001117
1118 if (purge_skb)
Felix Fietkauc3e77242012-10-08 14:39:33 +02001119 ieee80211_free_txskb(&tx->local->hw, purge_skb);
Johannes Berga622ab72010-06-10 10:21:39 +02001120 }
1121
Nikolay Martynov285fa692011-11-22 21:50:28 -05001122 /* reset session timer */
1123 if (reset_agg_timer && tid_tx->timeout)
Felix Fietkau12d3952f2012-03-18 22:58:06 +01001124 tid_tx->last_tx = jiffies;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001125
Johannes Berga622ab72010-06-10 10:21:39 +02001126 return queued;
1127}
1128
Johannes Berg58d41852007-09-26 17:53:18 +02001129/*
1130 * initialises @tx
1131 */
Johannes Berg9ae54c82008-01-31 19:48:20 +01001132static ieee80211_tx_result
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001133ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
1134 struct ieee80211_tx_data *tx,
1135 struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +02001136{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001137 struct ieee80211_local *local = sdata->local;
Johannes Berg58d41852007-09-26 17:53:18 +02001138 struct ieee80211_hdr *hdr;
Johannes Berge039fa42008-05-15 12:55:29 +02001139 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg68f2b512011-10-07 14:01:24 +02001140 int tid;
Johannes Berga622ab72010-06-10 10:21:39 +02001141 u8 *qc;
Johannes Berge2ebc742007-07-27 15:43:22 +02001142
1143 memset(tx, 0, sizeof(*tx));
1144 tx->skb = skb;
Johannes Berge2ebc742007-07-27 15:43:22 +02001145 tx->local = local;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001146 tx->sdata = sdata;
Johannes Berg252b86c2011-11-16 15:28:55 +01001147 __skb_queue_head_init(&tx->skbs);
Johannes Berge2ebc742007-07-27 15:43:22 +02001148
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001149 /*
1150 * If this flag is set to true anywhere, and we get here,
1151 * we are doing the needed processing, so remove the flag
1152 * now.
1153 */
1154 info->flags &= ~IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1155
Johannes Berg58d41852007-09-26 17:53:18 +02001156 hdr = (struct ieee80211_hdr *) skb->data;
1157
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001158 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001159 tx->sta = rcu_dereference(sdata->u.vlan.sta);
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001160 if (!tx->sta && sdata->dev->ieee80211_ptr->use_4addr)
1161 return TX_DROP;
Felix Fietkau03bb7f42013-09-29 21:39:33 +02001162 } else if (info->flags & (IEEE80211_TX_CTL_INJECTED |
1163 IEEE80211_TX_INTFL_NL80211_FRAME_TX) ||
Felix Fietkau66f2c992012-04-29 15:44:16 +02001164 tx->sdata->control_port_protocol == tx->skb->protocol) {
Felix Fietkaub4d57ad2010-01-31 23:25:24 +01001165 tx->sta = sta_info_get_bss(sdata, hdr->addr1);
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001166 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001167 if (!tx->sta)
Johannes Bergabe60632009-11-25 17:46:18 +01001168 tx->sta = sta_info_get(sdata, hdr->addr1);
Johannes Berg58d41852007-09-26 17:53:18 +02001169
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001170 if (tx->sta && ieee80211_is_data_qos(hdr->frame_control) &&
Johannes Berg49a59542011-09-29 16:04:41 +02001171 !ieee80211_is_qos_nullfunc(hdr->frame_control) &&
Arik Nemtsovedf6b782011-08-30 09:32:38 +03001172 (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION) &&
1173 !(local->hw.flags & IEEE80211_HW_TX_AMPDU_SETUP_IN_HW)) {
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001174 struct tid_ampdu_tx *tid_tx;
1175
Sujith8b30b1f2008-10-24 09:55:27 +05301176 qc = ieee80211_get_qos_ctl(hdr);
1177 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
1178
Johannes Berga622ab72010-06-10 10:21:39 +02001179 tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]);
1180 if (tid_tx) {
1181 bool queued;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001182
Johannes Berga622ab72010-06-10 10:21:39 +02001183 queued = ieee80211_tx_prep_agg(tx, skb, info,
1184 tid_tx, tid);
1185
1186 if (unlikely(queued))
1187 return TX_QUEUED;
1188 }
Sujith8b30b1f2008-10-24 09:55:27 +05301189 }
1190
Jiri Slabybadffb72007-08-28 17:01:54 -04001191 if (is_multicast_ether_addr(hdr->addr1)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001192 tx->flags &= ~IEEE80211_TX_UNICAST;
Johannes Berge039fa42008-05-15 12:55:29 +02001193 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Simon Wunderlich6fd67e92011-11-18 14:20:42 +01001194 } else
Johannes Berg5cf121c2008-02-25 16:27:43 +01001195 tx->flags |= IEEE80211_TX_UNICAST;
Johannes Berg58d41852007-09-26 17:53:18 +02001196
Johannes Berga26eb272011-10-07 14:01:25 +02001197 if (!(info->flags & IEEE80211_TX_CTL_DONTFRAG)) {
1198 if (!(tx->flags & IEEE80211_TX_UNICAST) ||
1199 skb->len + FCS_LEN <= local->hw.wiphy->frag_threshold ||
1200 info->flags & IEEE80211_TX_CTL_AMPDU)
1201 info->flags |= IEEE80211_TX_CTL_DONTFRAG;
Johannes Berg58d41852007-09-26 17:53:18 +02001202 }
1203
Johannes Berge2ebc742007-07-27 15:43:22 +02001204 if (!tx->sta)
Johannes Berge039fa42008-05-15 12:55:29 +02001205 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001206 else if (test_and_clear_sta_flag(tx->sta, WLAN_STA_CLEAR_PS_FILT))
Johannes Berge039fa42008-05-15 12:55:29 +02001207 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
Johannes Berg58d41852007-09-26 17:53:18 +02001208
Johannes Berge039fa42008-05-15 12:55:29 +02001209 info->flags |= IEEE80211_TX_CTL_FIRST_FRAGMENT;
Johannes Berge2ebc742007-07-27 15:43:22 +02001210
Johannes Berg9ae54c82008-01-31 19:48:20 +01001211 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +02001212}
1213
Johannes Berg11127e92011-11-16 16:02:47 +01001214static bool ieee80211_tx_frags(struct ieee80211_local *local,
1215 struct ieee80211_vif *vif,
1216 struct ieee80211_sta *sta,
1217 struct sk_buff_head *skbs,
1218 bool txpending)
Johannes Berge2ebc742007-07-27 15:43:22 +02001219{
Thomas Huehn36323f82012-07-23 21:33:42 +02001220 struct ieee80211_tx_control control;
Johannes Berg252b86c2011-11-16 15:28:55 +01001221 struct sk_buff *skb, *tmp;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001222 unsigned long flags;
Johannes Berge2ebc742007-07-27 15:43:22 +02001223
Johannes Berg252b86c2011-11-16 15:28:55 +01001224 skb_queue_walk_safe(skbs, skb, tmp) {
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001225 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1226 int q = info->hw_queue;
1227
1228#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1229 if (WARN_ON_ONCE(q >= local->hw.queues)) {
1230 __skb_unlink(skb, skbs);
Felix Fietkauc3e77242012-10-08 14:39:33 +02001231 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001232 continue;
1233 }
1234#endif
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001235
1236 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001237 if (local->queue_stop_reasons[q] ||
Johannes Berg7bb45682011-02-24 14:42:06 +01001238 (!txpending && !skb_queue_empty(&local->pending[q]))) {
Seth Forshee6c17b772013-02-11 11:21:07 -06001239 if (unlikely(info->flags &
Seth Forsheea7679ed2013-02-25 14:58:05 -06001240 IEEE80211_TX_INTFL_OFFCHAN_TX_OK)) {
1241 if (local->queue_stop_reasons[q] &
1242 ~BIT(IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL)) {
1243 /*
1244 * Drop off-channel frames if queues
1245 * are stopped for any reason other
1246 * than off-channel operation. Never
1247 * queue them.
1248 */
1249 spin_unlock_irqrestore(
1250 &local->queue_stop_reason_lock,
1251 flags);
1252 ieee80211_purge_tx_queue(&local->hw,
1253 skbs);
1254 return true;
1255 }
1256 } else {
1257
Seth Forshee6c17b772013-02-11 11:21:07 -06001258 /*
Seth Forsheea7679ed2013-02-25 14:58:05 -06001259 * Since queue is stopped, queue up frames for
1260 * later transmission from the tx-pending
1261 * tasklet when the queue is woken again.
Seth Forshee6c17b772013-02-11 11:21:07 -06001262 */
Seth Forsheea7679ed2013-02-25 14:58:05 -06001263 if (txpending)
1264 skb_queue_splice_init(skbs,
1265 &local->pending[q]);
1266 else
1267 skb_queue_splice_tail_init(skbs,
1268 &local->pending[q]);
1269
1270 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1271 flags);
1272 return false;
Seth Forshee6c17b772013-02-11 11:21:07 -06001273 }
Johannes Berg7bb45682011-02-24 14:42:06 +01001274 }
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001275 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Tomas Winklerf8e79dd2008-07-24 18:46:44 +03001276
Johannes Berg11127e92011-11-16 16:02:47 +01001277 info->control.vif = vif;
Thomas Huehn36323f82012-07-23 21:33:42 +02001278 control.sta = sta;
Johannes Bergec25acc2010-07-22 17:11:28 +02001279
Johannes Berg252b86c2011-11-16 15:28:55 +01001280 __skb_unlink(skb, skbs);
Thomas Huehn36323f82012-07-23 21:33:42 +02001281 drv_tx(local, &control, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001282 }
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001283
Johannes Berg11127e92011-11-16 16:02:47 +01001284 return true;
1285}
1286
1287/*
1288 * Returns false if the frame couldn't be transmitted but was queued instead.
1289 */
1290static bool __ieee80211_tx(struct ieee80211_local *local,
1291 struct sk_buff_head *skbs, int led_len,
1292 struct sta_info *sta, bool txpending)
1293{
1294 struct ieee80211_tx_info *info;
1295 struct ieee80211_sub_if_data *sdata;
1296 struct ieee80211_vif *vif;
1297 struct ieee80211_sta *pubsta;
1298 struct sk_buff *skb;
1299 bool result = true;
1300 __le16 fc;
1301
1302 if (WARN_ON(skb_queue_empty(skbs)))
1303 return true;
1304
1305 skb = skb_peek(skbs);
1306 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
1307 info = IEEE80211_SKB_CB(skb);
1308 sdata = vif_to_sdata(info->control.vif);
1309 if (sta && !sta->uploaded)
1310 sta = NULL;
1311
1312 if (sta)
1313 pubsta = &sta->sta;
1314 else
1315 pubsta = NULL;
1316
1317 switch (sdata->vif.type) {
1318 case NL80211_IFTYPE_MONITOR:
Johannes Bergc82b5a72013-07-14 23:39:20 +03001319 if (sdata->u.mntr_flags & MONITOR_FLAG_ACTIVE) {
1320 vif = &sdata->vif;
1321 break;
1322 }
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001323 sdata = rcu_dereference(local->monitor_sdata);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001324 if (sdata) {
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001325 vif = &sdata->vif;
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001326 info->hw_queue =
1327 vif->hw_queue[skb_get_queue_mapping(skb)];
1328 } else if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL) {
1329 dev_kfree_skb(skb);
1330 return true;
1331 } else
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001332 vif = NULL;
Johannes Berg11127e92011-11-16 16:02:47 +01001333 break;
1334 case NL80211_IFTYPE_AP_VLAN:
1335 sdata = container_of(sdata->bss,
1336 struct ieee80211_sub_if_data, u.ap);
1337 /* fall through */
1338 default:
1339 vif = &sdata->vif;
1340 break;
1341 }
1342
Johannes Bergcb831b52012-07-02 15:40:18 +02001343 result = ieee80211_tx_frags(local, vif, pubsta, skbs,
1344 txpending);
Johannes Berg11127e92011-11-16 16:02:47 +01001345
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001346 ieee80211_tpt_led_trig_tx(local, fc, led_len);
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001347
Johannes Berg4db4e0a2011-11-24 14:47:36 +01001348 WARN_ON_ONCE(!skb_queue_empty(skbs));
Johannes Berg252b86c2011-11-16 15:28:55 +01001349
Johannes Berg11127e92011-11-16 16:02:47 +01001350 return result;
Johannes Berge2ebc742007-07-27 15:43:22 +02001351}
1352
Johannes Berg97b045d2008-06-20 01:22:30 +02001353/*
1354 * Invoke TX handlers, return 0 on success and non-zero if the
1355 * frame was dropped or queued.
1356 */
1357static int invoke_tx_handlers(struct ieee80211_tx_data *tx)
1358{
Johannes Berg252b86c2011-11-16 15:28:55 +01001359 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Berg97b045d2008-06-20 01:22:30 +02001360 ieee80211_tx_result res = TX_DROP;
Johannes Berg97b045d2008-06-20 01:22:30 +02001361
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001362#define CALL_TXH(txh) \
1363 do { \
1364 res = txh(tx); \
1365 if (res != TX_CONTINUE) \
1366 goto txh_done; \
1367 } while (0)
Johannes Berg97b045d2008-06-20 01:22:30 +02001368
Kalle Valo5c1b98a2010-01-12 10:42:46 +02001369 CALL_TXH(ieee80211_tx_h_dynamic_ps);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001370 CALL_TXH(ieee80211_tx_h_check_assoc);
1371 CALL_TXH(ieee80211_tx_h_ps_buf);
Johannes Berga621fa42010-08-27 14:26:54 +03001372 CALL_TXH(ieee80211_tx_h_check_control_port_protocol);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001373 CALL_TXH(ieee80211_tx_h_select_key);
Johannes Bergaf65cd962009-11-17 18:18:36 +01001374 if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL))
1375 CALL_TXH(ieee80211_tx_h_rate_ctrl);
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001376
Johannes Bergaa5b5492011-12-02 22:08:52 +01001377 if (unlikely(info->flags & IEEE80211_TX_INTFL_RETRANSMISSION)) {
1378 __skb_queue_tail(&tx->skbs, tx->skb);
1379 tx->skb = NULL;
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001380 goto txh_done;
Johannes Bergaa5b5492011-12-02 22:08:52 +01001381 }
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001382
1383 CALL_TXH(ieee80211_tx_h_michael_mic_add);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001384 CALL_TXH(ieee80211_tx_h_sequence);
1385 CALL_TXH(ieee80211_tx_h_fragment);
Johannes Bergd9e8a702008-06-30 15:10:44 +02001386 /* handlers after fragment must be aware of tx info fragmentation! */
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001387 CALL_TXH(ieee80211_tx_h_stats);
1388 CALL_TXH(ieee80211_tx_h_encrypt);
Arik Nemtsov8fd369e2011-01-31 22:29:12 +02001389 if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL))
1390 CALL_TXH(ieee80211_tx_h_calculate_duration);
Johannes Bergd9e8a702008-06-30 15:10:44 +02001391#undef CALL_TXH
1392
1393 txh_done:
Johannes Berg97b045d2008-06-20 01:22:30 +02001394 if (unlikely(res == TX_DROP)) {
Tomas Winkler5479d0e2008-06-28 03:15:03 +03001395 I802_DEBUG_INC(tx->local->tx_handlers_drop);
Johannes Berg252b86c2011-11-16 15:28:55 +01001396 if (tx->skb)
Felix Fietkauc3e77242012-10-08 14:39:33 +02001397 ieee80211_free_txskb(&tx->local->hw, tx->skb);
Johannes Berg252b86c2011-11-16 15:28:55 +01001398 else
Felix Fietkau1f98ab72012-11-10 03:44:14 +01001399 ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs);
Johannes Berg97b045d2008-06-20 01:22:30 +02001400 return -1;
1401 } else if (unlikely(res == TX_QUEUED)) {
Tomas Winkler5479d0e2008-06-28 03:15:03 +03001402 I802_DEBUG_INC(tx->local->tx_handlers_queued);
Johannes Berg97b045d2008-06-20 01:22:30 +02001403 return -1;
1404 }
1405
1406 return 0;
1407}
1408
Felix Fietkau06be6b12013-10-14 18:01:00 +02001409bool ieee80211_tx_prepare_skb(struct ieee80211_hw *hw,
1410 struct ieee80211_vif *vif, struct sk_buff *skb,
1411 int band, struct ieee80211_sta **sta)
1412{
1413 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1414 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1415 struct ieee80211_tx_data tx;
1416
1417 if (ieee80211_tx_prepare(sdata, &tx, skb) == TX_DROP)
1418 return false;
1419
1420 info->band = band;
1421 info->control.vif = vif;
1422 info->hw_queue = vif->hw_queue[skb_get_queue_mapping(skb)];
1423
1424 if (invoke_tx_handlers(&tx))
1425 return false;
1426
1427 if (sta) {
1428 if (tx.sta)
1429 *sta = &tx.sta->sta;
1430 else
1431 *sta = NULL;
1432 }
1433
1434 return true;
1435}
1436EXPORT_SYMBOL(ieee80211_tx_prepare_skb);
1437
Johannes Berg7bb45682011-02-24 14:42:06 +01001438/*
1439 * Returns false if the frame couldn't be transmitted but was queued instead.
1440 */
1441static bool ieee80211_tx(struct ieee80211_sub_if_data *sdata,
Johannes Berg73c4e192014-11-09 18:50:09 +02001442 struct sk_buff *skb, bool txpending)
Johannes Berge2ebc742007-07-27 15:43:22 +02001443{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001444 struct ieee80211_local *local = sdata->local;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001445 struct ieee80211_tx_data tx;
Johannes Berg97b045d2008-06-20 01:22:30 +02001446 ieee80211_tx_result res_prepare;
Johannes Berge039fa42008-05-15 12:55:29 +02001447 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001448 bool result = true;
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001449 int led_len;
Johannes Berge2ebc742007-07-27 15:43:22 +02001450
Johannes Berge2ebc742007-07-27 15:43:22 +02001451 if (unlikely(skb->len < 10)) {
1452 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001453 return true;
Johannes Berge2ebc742007-07-27 15:43:22 +02001454 }
1455
Johannes Berg58d41852007-09-26 17:53:18 +02001456 /* initialises tx */
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001457 led_len = skb->len;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001458 res_prepare = ieee80211_tx_prepare(sdata, &tx, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001459
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001460 if (unlikely(res_prepare == TX_DROP)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02001461 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg55de9082012-07-26 17:24:39 +02001462 return true;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001463 } else if (unlikely(res_prepare == TX_QUEUED)) {
Johannes Berg55de9082012-07-26 17:24:39 +02001464 return true;
Johannes Berge2ebc742007-07-27 15:43:22 +02001465 }
1466
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001467 /* set up hw_queue value early */
1468 if (!(info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) ||
1469 !(local->hw.flags & IEEE80211_HW_QUEUE_CONTROL))
1470 info->hw_queue =
1471 sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
1472
Johannes Berg7bb45682011-02-24 14:42:06 +01001473 if (!invoke_tx_handlers(&tx))
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001474 result = __ieee80211_tx(local, &tx.skbs, led_len,
1475 tx.sta, txpending);
Johannes Berg55de9082012-07-26 17:24:39 +02001476
Johannes Berg7bb45682011-02-24 14:42:06 +01001477 return result;
Johannes Berge2ebc742007-07-27 15:43:22 +02001478}
1479
1480/* device xmit handlers */
1481
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301482static int ieee80211_skb_resize(struct ieee80211_sub_if_data *sdata,
Johannes Berg23c07522008-05-29 10:38:53 +02001483 struct sk_buff *skb,
1484 int head_need, bool may_encrypt)
1485{
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301486 struct ieee80211_local *local = sdata->local;
Johannes Berg23c07522008-05-29 10:38:53 +02001487 int tail_need = 0;
1488
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301489 if (may_encrypt && sdata->crypto_tx_tailroom_needed_cnt) {
Johannes Berg23c07522008-05-29 10:38:53 +02001490 tail_need = IEEE80211_ENCRYPT_TAILROOM;
1491 tail_need -= skb_tailroom(skb);
1492 tail_need = max_t(int, tail_need, 0);
1493 }
1494
Ido Yarivc70f59a2014-07-29 15:39:14 +03001495 if (skb_cloned(skb) &&
1496 (!(local->hw.flags & IEEE80211_HW_SUPPORTS_CLONED_SKBS) ||
1497 !skb_clone_writable(skb, ETH_HLEN) ||
1498 sdata->crypto_tx_tailroom_needed_cnt))
Johannes Berg23c07522008-05-29 10:38:53 +02001499 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
Felix Fietkau4cd06a32010-12-18 19:30:49 +01001500 else if (head_need || tail_need)
Johannes Berg23c07522008-05-29 10:38:53 +02001501 I802_DEBUG_INC(local->tx_expand_skb_head);
Felix Fietkau4cd06a32010-12-18 19:30:49 +01001502 else
1503 return 0;
Johannes Berg23c07522008-05-29 10:38:53 +02001504
1505 if (pskb_expand_head(skb, head_need, tail_need, GFP_ATOMIC)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07001506 wiphy_debug(local->hw.wiphy,
1507 "failed to reallocate TX buffer\n");
Johannes Berg23c07522008-05-29 10:38:53 +02001508 return -ENOMEM;
1509 }
1510
Johannes Berg23c07522008-05-29 10:38:53 +02001511 return 0;
1512}
1513
Johannes Berg73c4e192014-11-09 18:50:09 +02001514void ieee80211_xmit(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +02001515{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001516 struct ieee80211_local *local = sdata->local;
Johannes Berge039fa42008-05-15 12:55:29 +02001517 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001518 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berge2ebc742007-07-27 15:43:22 +02001519 int headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001520 bool may_encrypt;
Johannes Berge2ebc742007-07-27 15:43:22 +02001521
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001522 may_encrypt = !(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT);
Johannes Berg23c07522008-05-29 10:38:53 +02001523
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001524 headroom = local->tx_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001525 if (may_encrypt)
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001526 headroom += sdata->encrypt_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001527 headroom -= skb_headroom(skb);
1528 headroom = max_t(int, 0, headroom);
1529
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301530 if (ieee80211_skb_resize(sdata, skb, headroom, may_encrypt)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02001531 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001532 return;
Johannes Berge2ebc742007-07-27 15:43:22 +02001533 }
1534
Steve deRosier740c1aa2010-09-11 20:01:31 -07001535 hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berg5061b0c2009-07-14 00:33:34 +02001536 info->control.vif = &sdata->vif;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001537
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001538 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1539 if (ieee80211_is_data(hdr->frame_control) &&
1540 is_unicast_ether_addr(hdr->addr1)) {
Johannes Bergbf7cd942013-02-15 14:40:31 +01001541 if (mesh_nexthop_resolve(sdata, skb))
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001542 return; /* skb queued: don't free */
1543 } else {
1544 ieee80211_mps_set_frame_flags(sdata, NULL, hdr);
1545 }
Johannes Berg98aed9f2012-03-27 14:18:36 +02001546 }
Javier Cardonacca89492009-08-10 17:29:29 -07001547
Javier Cardona2154c812011-09-07 17:49:53 -07001548 ieee80211_set_qos_hdr(sdata, skb);
Johannes Berg73c4e192014-11-09 18:50:09 +02001549 ieee80211_tx(sdata, skb, false);
Johannes Berge2ebc742007-07-27 15:43:22 +02001550}
1551
Johannes Berg73b9f032011-10-07 14:01:26 +02001552static bool ieee80211_parse_tx_radiotap(struct sk_buff *skb)
1553{
1554 struct ieee80211_radiotap_iterator iterator;
1555 struct ieee80211_radiotap_header *rthdr =
1556 (struct ieee80211_radiotap_header *) skb->data;
1557 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1558 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len,
1559 NULL);
1560 u16 txflags;
1561
1562 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
1563 IEEE80211_TX_CTL_DONTFRAG;
1564
1565 /*
1566 * for every radiotap entry that is present
1567 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
1568 * entries present, or -EINVAL on error)
1569 */
1570
1571 while (!ret) {
1572 ret = ieee80211_radiotap_iterator_next(&iterator);
1573
1574 if (ret)
1575 continue;
1576
1577 /* see if this argument is something we can use */
1578 switch (iterator.this_arg_index) {
1579 /*
1580 * You must take care when dereferencing iterator.this_arg
1581 * for multibyte types... the pointer is not aligned. Use
1582 * get_unaligned((type *)iterator.this_arg) to dereference
1583 * iterator.this_arg for type "type" safely on all arches.
1584 */
1585 case IEEE80211_RADIOTAP_FLAGS:
1586 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
1587 /*
1588 * this indicates that the skb we have been
1589 * handed has the 32-bit FCS CRC at the end...
1590 * we should react to that by snipping it off
1591 * because it will be recomputed and added
1592 * on transmission
1593 */
1594 if (skb->len < (iterator._max_length + FCS_LEN))
1595 return false;
1596
1597 skb_trim(skb, skb->len - FCS_LEN);
1598 }
1599 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
1600 info->flags &= ~IEEE80211_TX_INTFL_DONT_ENCRYPT;
1601 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
1602 info->flags &= ~IEEE80211_TX_CTL_DONTFRAG;
1603 break;
1604
1605 case IEEE80211_RADIOTAP_TX_FLAGS:
1606 txflags = get_unaligned_le16(iterator.this_arg);
1607 if (txflags & IEEE80211_RADIOTAP_F_TX_NOACK)
1608 info->flags |= IEEE80211_TX_CTL_NO_ACK;
1609 break;
1610
1611 /*
1612 * Please update the file
1613 * Documentation/networking/mac80211-injection.txt
1614 * when parsing new fields here.
1615 */
1616
1617 default:
1618 break;
1619 }
1620 }
1621
1622 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
1623 return false;
1624
1625 /*
1626 * remove the radiotap header
1627 * iterator->_max_length was sanity-checked against
1628 * skb->len by iterator init
1629 */
1630 skb_pull(skb, iterator._max_length);
1631
1632 return true;
1633}
1634
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00001635netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
1636 struct net_device *dev)
Johannes Berge2ebc742007-07-27 15:43:22 +02001637{
1638 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg55de9082012-07-26 17:24:39 +02001639 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berge2ebc742007-07-27 15:43:22 +02001640 struct ieee80211_radiotap_header *prthdr =
1641 (struct ieee80211_radiotap_header *)skb->data;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001642 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001643 struct ieee80211_hdr *hdr;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001644 struct ieee80211_sub_if_data *tmp_sdata, *sdata;
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001645 struct cfg80211_chan_def *chandef;
Andy Green9b8a74e2007-07-27 15:43:24 +02001646 u16 len_rthdr;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001647 int hdrlen;
Johannes Berge2ebc742007-07-27 15:43:22 +02001648
Andy Green9b8a74e2007-07-27 15:43:24 +02001649 /* check for not even having the fixed radiotap header part */
1650 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1651 goto fail; /* too short to be possibly valid */
1652
1653 /* is it a header version we can trust to find length from? */
1654 if (unlikely(prthdr->it_version))
1655 goto fail; /* only version 0 is supported */
1656
1657 /* then there must be a radiotap header with a length we can use */
1658 len_rthdr = ieee80211_get_radiotap_len(skb->data);
1659
1660 /* does the skb contain enough to deliver on the alleged length? */
1661 if (unlikely(skb->len < len_rthdr))
1662 goto fail; /* skb too short for claimed rt header extent */
Johannes Berge2ebc742007-07-27 15:43:22 +02001663
Johannes Berge2ebc742007-07-27 15:43:22 +02001664 /*
1665 * fix up the pointers accounting for the radiotap
1666 * header still being in there. We are being given
1667 * a precooked IEEE80211 header so no need for
1668 * normal processing
1669 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001670 skb_set_mac_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001671 /*
Andy Green9b8a74e2007-07-27 15:43:24 +02001672 * these are just fixed to the end of the rt area since we
1673 * don't have any better information and at this point, nobody cares
Johannes Berge2ebc742007-07-27 15:43:22 +02001674 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001675 skb_set_network_header(skb, len_rthdr);
1676 skb_set_transport_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001677
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001678 if (skb->len < len_rthdr + 2)
1679 goto fail;
1680
1681 hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr);
1682 hdrlen = ieee80211_hdrlen(hdr->frame_control);
1683
1684 if (skb->len < len_rthdr + hdrlen)
1685 goto fail;
1686
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001687 /*
1688 * Initialize skb->protocol if the injected frame is a data frame
1689 * carrying a rfc1042 header
1690 */
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001691 if (ieee80211_is_data(hdr->frame_control) &&
1692 skb->len >= len_rthdr + hdrlen + sizeof(rfc1042_header) + 2) {
1693 u8 *payload = (u8 *)hdr + hdrlen;
1694
Joe Perchesb203ca32012-05-08 18:56:52 +00001695 if (ether_addr_equal(payload, rfc1042_header))
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001696 skb->protocol = cpu_to_be16((payload[6] << 8) |
1697 payload[7]);
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001698 }
1699
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001700 memset(info, 0, sizeof(*info));
1701
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001702 info->flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
Johannes Berg73b9f032011-10-07 14:01:26 +02001703 IEEE80211_TX_CTL_INJECTED;
1704
1705 /* process and remove the injection radiotap header */
1706 if (!ieee80211_parse_tx_radiotap(skb))
1707 goto fail;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001708
1709 rcu_read_lock();
1710
1711 /*
1712 * We process outgoing injected frames that have a local address
1713 * we handle as though they are non-injected frames.
1714 * This code here isn't entirely correct, the local MAC address
1715 * isn't always enough to find the interface to use; for proper
1716 * VLAN/WDS support we will need a different mechanism (which
1717 * likely isn't going to be monitor interfaces).
1718 */
1719 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1720
1721 list_for_each_entry_rcu(tmp_sdata, &local->interfaces, list) {
1722 if (!ieee80211_sdata_running(tmp_sdata))
1723 continue;
1724 if (tmp_sdata->vif.type == NL80211_IFTYPE_MONITOR ||
1725 tmp_sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1726 tmp_sdata->vif.type == NL80211_IFTYPE_WDS)
1727 continue;
Joe Perchesb203ca32012-05-08 18:56:52 +00001728 if (ether_addr_equal(tmp_sdata->vif.addr, hdr->addr2)) {
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001729 sdata = tmp_sdata;
1730 break;
1731 }
1732 }
Johannes Berg7351c6b2009-11-19 01:08:30 +01001733
Johannes Berg55de9082012-07-26 17:24:39 +02001734 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1735 if (!chanctx_conf) {
1736 tmp_sdata = rcu_dereference(local->monitor_sdata);
1737 if (tmp_sdata)
1738 chanctx_conf =
1739 rcu_dereference(tmp_sdata->vif.chanctx_conf);
1740 }
Johannes Berg55de9082012-07-26 17:24:39 +02001741
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01001742 if (chanctx_conf)
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001743 chandef = &chanctx_conf->def;
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01001744 else if (!local->use_chanctx)
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001745 chandef = &local->_oper_chandef;
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01001746 else
1747 goto fail_rcu;
Johannes Berg55de9082012-07-26 17:24:39 +02001748
1749 /*
1750 * Frame injection is not allowed if beaconing is not allowed
1751 * or if we need radar detection. Beaconing is usually not allowed when
1752 * the mode or operation (Adhoc, AP, Mesh) does not support DFS.
1753 * Passive scan is also used in world regulatory domains where
1754 * your country is not known and as such it should be treated as
1755 * NO TX unless the channel is explicitly allowed in which case
1756 * your current regulatory domain would not have the passive scan
1757 * flag.
1758 *
1759 * Since AP mode uses monitor interfaces to inject/TX management
1760 * frames we can make AP mode the exception to this rule once it
1761 * supports radar detection as its implementation can deal with
1762 * radar detection by itself. We can do that later by adding a
1763 * monitor flag interfaces used for AP support.
1764 */
Janusz Dziedzicb4932832014-06-05 08:12:57 +02001765 if (!cfg80211_reg_can_beacon(local->hw.wiphy, chandef,
1766 sdata->vif.type))
Johannes Berg55de9082012-07-26 17:24:39 +02001767 goto fail_rcu;
1768
Johannes Berg73c4e192014-11-09 18:50:09 +02001769 info->band = chandef->chan->band;
1770 ieee80211_xmit(sdata, skb);
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001771 rcu_read_unlock();
1772
Johannes Berge2ebc742007-07-27 15:43:22 +02001773 return NETDEV_TX_OK;
Andy Green9b8a74e2007-07-27 15:43:24 +02001774
Johannes Berg55de9082012-07-26 17:24:39 +02001775fail_rcu:
1776 rcu_read_unlock();
Andy Green9b8a74e2007-07-27 15:43:24 +02001777fail:
1778 dev_kfree_skb(skb);
1779 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
Johannes Berge2ebc742007-07-27 15:43:22 +02001780}
1781
Matti Gottliebad38bfc2013-11-18 19:06:45 +02001782/*
1783 * Measure Tx frame arrival time for Tx latency statistics calculation
1784 * A single Tx frame latency should be measured from when it is entering the
1785 * Kernel until we receive Tx complete confirmation indication and the skb is
1786 * freed.
1787 */
1788static void ieee80211_tx_latency_start_msrmnt(struct ieee80211_local *local,
1789 struct sk_buff *skb)
1790{
Matti Gottliebad38bfc2013-11-18 19:06:45 +02001791 struct ieee80211_tx_latency_bin_ranges *tx_latency;
1792
1793 tx_latency = rcu_dereference(local->tx_latency);
1794 if (!tx_latency)
1795 return;
Thomas Gleixner8d7b70f2014-06-11 23:59:18 +00001796 skb->tstamp = ktime_get();
Matti Gottliebad38bfc2013-11-18 19:06:45 +02001797}
1798
Johannes Berge2ebc742007-07-27 15:43:22 +02001799/**
Johannes Berg4c9451e2014-11-09 18:50:10 +02001800 * ieee80211_build_hdr - build 802.11 header in the given frame
1801 * @sdata: virtual interface to build the header for
1802 * @skb: the skb to build the header in
Liad Kaufman24d342c2014-11-09 18:50:07 +02001803 * @info_flags: skb flags to set
Johannes Berge2ebc742007-07-27 15:43:22 +02001804 *
Johannes Berg4c9451e2014-11-09 18:50:10 +02001805 * This function takes the skb with 802.3 header and reformats the header to
1806 * the appropriate IEEE 802.11 header based on which interface the packet is
1807 * being transmitted on.
Johannes Berge2ebc742007-07-27 15:43:22 +02001808 *
Johannes Berg4c9451e2014-11-09 18:50:10 +02001809 * Note that this function also takes care of the TX status request and
1810 * potential unsharing of the SKB - this needs to be interleaved with the
1811 * header building.
1812 *
1813 * The function requires the read-side RCU lock held
1814 *
1815 * Returns: the (possibly reallocated) skb or an ERR_PTR() code
Johannes Berge2ebc742007-07-27 15:43:22 +02001816 */
Johannes Berg4c9451e2014-11-09 18:50:10 +02001817static struct sk_buff *ieee80211_build_hdr(struct ieee80211_sub_if_data *sdata,
1818 struct sk_buff *skb, u32 info_flags)
Johannes Berge2ebc742007-07-27 15:43:22 +02001819{
Johannes Berg133b8222008-09-16 14:18:59 +02001820 struct ieee80211_local *local = sdata->local;
Felix Fietkau489ee912010-12-18 19:30:48 +01001821 struct ieee80211_tx_info *info;
Johannes Bergdcf33962012-07-30 15:11:56 +02001822 int head_need;
Harvey Harrison065e96052008-06-22 16:45:27 -07001823 u16 ethertype, hdrlen, meshhdrlen = 0;
1824 __le16 fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02001825 struct ieee80211_hdr hdr;
Wey-Yi Guyff67bb82010-08-21 07:23:29 -07001826 struct ieee80211s_hdr mesh_hdr __maybe_unused;
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001827 struct mesh_path __maybe_unused *mppath = NULL, *mpath = NULL;
Johannes Berge2ebc742007-07-27 15:43:22 +02001828 const u8 *encaps_data;
1829 int encaps_len, skip_header_bytes;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001830 int nh_pos, h_pos;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001831 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001832 bool wme_sta = false, authorized = false, tdls_auth = false;
Arik Nemtsov9deba042014-06-11 17:18:18 +03001833 bool tdls_peer = false, tdls_setup_frame = false;
Johannes Berga729cff2011-11-06 14:13:34 +01001834 bool multicast;
Johannes Berga729cff2011-11-06 14:13:34 +01001835 u16 info_id = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02001836 struct ieee80211_chanctx_conf *chanctx_conf;
1837 struct ieee80211_sub_if_data *ap_sdata;
1838 enum ieee80211_band band;
Johannes Berg4c9451e2014-11-09 18:50:10 +02001839 int ret;
Johannes Berge2ebc742007-07-27 15:43:22 +02001840
Johannes Berge2ebc742007-07-27 15:43:22 +02001841 /* convert Ethernet header to proper 802.11 header (based on
1842 * operation mode) */
1843 ethertype = (skb->data[12] << 8) | skb->data[13];
Harvey Harrison065e96052008-06-22 16:45:27 -07001844 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
Johannes Berge2ebc742007-07-27 15:43:22 +02001845
Johannes Berg51fb61e2007-12-19 01:31:27 +01001846 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001847 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg9bc383d2009-11-19 11:55:19 +01001848 sta = rcu_dereference(sdata->u.vlan.sta);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001849 if (sta) {
1850 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
1851 /* RA TA DA SA */
1852 memcpy(hdr.addr1, sta->sta.addr, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001853 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001854 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1855 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1856 hdrlen = 30;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001857 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Johannes Berga74a8c82014-07-22 14:50:47 +02001858 wme_sta = sta->sta.wme;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001859 }
Johannes Berg55de9082012-07-26 17:24:39 +02001860 ap_sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
1861 u.ap);
1862 chanctx_conf = rcu_dereference(ap_sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02001863 if (!chanctx_conf) {
1864 ret = -ENOTCONN;
1865 goto free;
1866 }
Johannes Berg4bf88532012-11-09 11:39:59 +01001867 band = chanctx_conf->def.chan->band;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001868 if (sta)
1869 break;
1870 /* fall through */
1871 case NL80211_IFTYPE_AP:
Arnd Bergmannfe801232013-01-25 14:14:33 +00001872 if (sdata->vif.type == NL80211_IFTYPE_AP)
1873 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02001874 if (!chanctx_conf) {
1875 ret = -ENOTCONN;
1876 goto free;
1877 }
Harvey Harrison065e96052008-06-22 16:45:27 -07001878 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
Johannes Berge2ebc742007-07-27 15:43:22 +02001879 /* DA BSSID SA */
1880 memcpy(hdr.addr1, skb->data, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001881 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02001882 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1883 hdrlen = 24;
Johannes Berg4bf88532012-11-09 11:39:59 +01001884 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04001885 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001886 case NL80211_IFTYPE_WDS:
Harvey Harrison065e96052008-06-22 16:45:27 -07001887 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
Johannes Berge2ebc742007-07-27 15:43:22 +02001888 /* RA TA DA SA */
1889 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001890 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02001891 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1892 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1893 hdrlen = 30;
Johannes Berg55de9082012-07-26 17:24:39 +02001894 /*
1895 * This is the exception! WDS style interfaces are prohibited
1896 * when channel contexts are in used so this must be valid
1897 */
Karl Beldan675a0b02013-03-25 16:26:57 +01001898 band = local->hw.conf.chandef.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04001899 break;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001900#ifdef CONFIG_MAC80211_MESH
Johannes Berg05c914f2008-09-11 00:01:58 +02001901 case NL80211_IFTYPE_MESH_POINT:
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001902 if (!is_multicast_ether_addr(skb->data)) {
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001903 struct sta_info *next_hop;
1904 bool mpp_lookup = true;
1905
Johannes Bergbf7cd942013-02-15 14:40:31 +01001906 mpath = mesh_path_lookup(sdata, skb->data);
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001907 if (mpath) {
1908 mpp_lookup = false;
1909 next_hop = rcu_dereference(mpath->next_hop);
1910 if (!next_hop ||
1911 !(mpath->flags & (MESH_PATH_ACTIVE |
1912 MESH_PATH_RESOLVING)))
1913 mpp_lookup = true;
1914 }
1915
1916 if (mpp_lookup)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001917 mppath = mpp_path_lookup(sdata, skb->data);
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08001918
1919 if (mppath && mpath)
1920 mesh_path_del(mpath->sdata, mpath->dst);
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001921 }
YanBo79617de2008-09-22 13:30:32 +08001922
Joel A Fernandesf76b57b2010-12-28 19:28:11 -06001923 /*
Joel A Fernandes9d525012011-01-10 00:44:23 -06001924 * Use address extension if it is a packet from
1925 * another interface or if we know the destination
1926 * is being proxied by a portal (i.e. portal address
1927 * differs from proxied address)
Joel A Fernandesf76b57b2010-12-28 19:28:11 -06001928 */
Joe Perchesb203ca32012-05-08 18:56:52 +00001929 if (ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN) &&
1930 !(mppath && !ether_addr_equal(mppath->mpp, skb->data))) {
Javier Cardona3c5772a2009-08-10 12:15:48 -07001931 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
1932 skb->data, skb->data + ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +01001933 meshhdrlen = ieee80211_new_mesh_header(sdata, &mesh_hdr,
1934 NULL, NULL);
YanBo79617de2008-09-22 13:30:32 +08001935 } else {
Thomas Pedersen27f01122012-08-20 11:28:25 -07001936 /* DS -> MBSS (802.11-2012 13.11.3.3).
1937 * For unicast with unknown forwarding information,
1938 * destination might be in the MBSS or if that fails
1939 * forwarded to another mesh gate. In either case
1940 * resolution will be handled in ieee80211_xmit(), so
1941 * leave the original DA. This also works for mcast */
1942 const u8 *mesh_da = skb->data;
YanBo79617de2008-09-22 13:30:32 +08001943
Thomas Pedersen27f01122012-08-20 11:28:25 -07001944 if (mppath)
1945 mesh_da = mppath->mpp;
1946 else if (mpath)
1947 mesh_da = mpath->dst;
Thomas Pedersen27f01122012-08-20 11:28:25 -07001948
Javier Cardona3c5772a2009-08-10 12:15:48 -07001949 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
Johannes Berg47846c92009-11-25 17:46:19 +01001950 mesh_da, sdata->vif.addr);
Thomas Pedersen27f01122012-08-20 11:28:25 -07001951 if (is_multicast_ether_addr(mesh_da))
1952 /* DA TA mSA AE:SA */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001953 meshhdrlen = ieee80211_new_mesh_header(
1954 sdata, &mesh_hdr,
1955 skb->data + ETH_ALEN, NULL);
Javier Cardona3c5772a2009-08-10 12:15:48 -07001956 else
Thomas Pedersen27f01122012-08-20 11:28:25 -07001957 /* RA TA mDA mSA AE:DA SA */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001958 meshhdrlen = ieee80211_new_mesh_header(
1959 sdata, &mesh_hdr, skb->data,
1960 skb->data + ETH_ALEN);
YanBo79617de2008-09-22 13:30:32 +08001961
YanBo79617de2008-09-22 13:30:32 +08001962 }
Johannes Berg55de9082012-07-26 17:24:39 +02001963 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02001964 if (!chanctx_conf) {
1965 ret = -ENOTCONN;
1966 goto free;
1967 }
Johannes Berg4bf88532012-11-09 11:39:59 +01001968 band = chanctx_conf->def.chan->band;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001969 break;
1970#endif
Johannes Berg05c914f2008-09-11 00:01:58 +02001971 case NL80211_IFTYPE_STATION:
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001972 if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) {
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001973 sta = sta_info_get(sdata, skb->data);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001974 if (sta) {
1975 authorized = test_sta_flag(sta,
1976 WLAN_STA_AUTHORIZED);
Johannes Berga74a8c82014-07-22 14:50:47 +02001977 wme_sta = sta->sta.wme;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001978 tdls_peer = test_sta_flag(sta,
Arik Nemtsov9deba042014-06-11 17:18:18 +03001979 WLAN_STA_TDLS_PEER);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001980 tdls_auth = test_sta_flag(sta,
1981 WLAN_STA_TDLS_PEER_AUTH);
1982 }
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001983
Arik Nemtsov9deba042014-06-11 17:18:18 +03001984 if (tdls_peer)
1985 tdls_setup_frame =
1986 ethertype == ETH_P_TDLS &&
1987 skb->len > 14 &&
1988 skb->data[14] == WLAN_TDLS_SNAP_RFTYPE;
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001989 }
1990
Arik Nemtsov9deba042014-06-11 17:18:18 +03001991 /*
1992 * TDLS link during setup - throw out frames to peer. We allow
1993 * TDLS-setup frames to unauthorized peers for the special case
1994 * of a link teardown after a TDLS sta is removed due to being
1995 * unreachable.
1996 */
Johannes Berg4c9451e2014-11-09 18:50:10 +02001997 if (tdls_peer && !tdls_auth && !tdls_setup_frame) {
1998 ret = -EINVAL;
1999 goto free;
2000 }
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002001
Arik Nemtsov9deba042014-06-11 17:18:18 +03002002 /* send direct packets to authorized TDLS peers */
2003 if (tdls_peer && tdls_auth) {
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002004 /* DA SA BSSID */
2005 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2006 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2007 memcpy(hdr.addr3, sdata->u.mgd.bssid, ETH_ALEN);
2008 hdrlen = 24;
2009 } else if (sdata->u.mgd.use_4addr &&
2010 cpu_to_be16(ethertype) != sdata->control_port_protocol) {
2011 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
2012 IEEE80211_FCTL_TODS);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002013 /* RA TA DA SA */
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002014 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01002015 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002016 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2017 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2018 hdrlen = 30;
2019 } else {
2020 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
2021 /* BSSID SA DA */
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002022 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002023 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2024 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2025 hdrlen = 24;
2026 }
Johannes Berg55de9082012-07-26 17:24:39 +02002027 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02002028 if (!chanctx_conf) {
2029 ret = -ENOTCONN;
2030 goto free;
2031 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002032 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04002033 break;
Rostislav Lisovy239281f2014-11-03 10:33:19 +01002034 case NL80211_IFTYPE_OCB:
2035 /* DA SA BSSID */
2036 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2037 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2038 eth_broadcast_addr(hdr.addr3);
2039 hdrlen = 24;
2040 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02002041 if (!chanctx_conf) {
2042 ret = -ENOTCONN;
2043 goto free;
2044 }
Rostislav Lisovy239281f2014-11-03 10:33:19 +01002045 band = chanctx_conf->def.chan->band;
2046 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002047 case NL80211_IFTYPE_ADHOC:
Johannes Berge2ebc742007-07-27 15:43:22 +02002048 /* DA SA BSSID */
2049 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2050 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01002051 memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02002052 hdrlen = 24;
Johannes Berg55de9082012-07-26 17:24:39 +02002053 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02002054 if (!chanctx_conf) {
2055 ret = -ENOTCONN;
2056 goto free;
2057 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002058 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04002059 break;
2060 default:
Johannes Berg4c9451e2014-11-09 18:50:10 +02002061 ret = -EINVAL;
2062 goto free;
Johannes Berge2ebc742007-07-27 15:43:22 +02002063 }
2064
Johannes Berg7d185b82008-01-28 17:11:43 +01002065 /*
2066 * There's no need to try to look up the destination
2067 * if it is a multicast address (which can only happen
2068 * in AP mode)
2069 */
Johannes Berga729cff2011-11-06 14:13:34 +01002070 multicast = is_multicast_ether_addr(hdr.addr1);
2071 if (!multicast) {
Johannes Bergabe60632009-11-25 17:46:18 +01002072 sta = sta_info_get(sdata, hdr.addr1);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002073 if (sta) {
2074 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Johannes Berga74a8c82014-07-22 14:50:47 +02002075 wme_sta = sta->sta.wme;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002076 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002077 }
2078
Javier Cardona4777be42011-09-07 17:49:52 -07002079 /* For mesh, the use of the QoS header is mandatory */
2080 if (ieee80211_vif_is_mesh(&sdata->vif))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002081 wme_sta = true;
Javier Cardona4777be42011-09-07 17:49:52 -07002082
Johannes Berg3434fbd2008-05-03 00:59:37 +02002083 /* receiver and we are QoS enabled, use a QoS type frame */
Johannes Berg32c50572012-03-28 11:04:29 +02002084 if (wme_sta && local->hw.queues >= IEEE80211_NUM_ACS) {
Harvey Harrison065e96052008-06-22 16:45:27 -07002085 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002086 hdrlen += 2;
2087 }
2088
2089 /*
Johannes Berg238814f2008-01-28 17:19:37 +01002090 * Drop unicast frames to unauthorised stations unless they are
2091 * EAPOL frames from the local station.
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002092 */
Johannes Berg55182e42011-10-12 17:28:21 +02002093 if (unlikely(!ieee80211_vif_is_mesh(&sdata->vif) &&
Rostislav Lisovy239281f2014-11-03 10:33:19 +01002094 (sdata->vif.type != NL80211_IFTYPE_OCB) &&
Sergey Ryazanova6ececf2013-08-30 01:35:09 +04002095 !multicast && !authorized &&
Johannes Berg55182e42011-10-12 17:28:21 +02002096 (cpu_to_be16(ethertype) != sdata->control_port_protocol ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002097 !ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN)))) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002098#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002099 net_info_ratelimited("%s: dropped frame to %pM (unauthorized port)\n",
Johannes Berg4c9451e2014-11-09 18:50:10 +02002100 sdata->name, hdr.addr1);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002101#endif
2102
2103 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
2104
Johannes Berg4c9451e2014-11-09 18:50:10 +02002105 ret = -EPERM;
2106 goto free;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002107 }
2108
Johannes Berga729cff2011-11-06 14:13:34 +01002109 if (unlikely(!multicast && skb->sk &&
2110 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS)) {
Alexander Duyckbf7fa552014-09-10 18:05:42 -04002111 struct sk_buff *ack_skb = skb_clone_sk(skb);
Johannes Berga729cff2011-11-06 14:13:34 +01002112
Alexander Duyckbf7fa552014-09-10 18:05:42 -04002113 if (ack_skb) {
Johannes Berga729cff2011-11-06 14:13:34 +01002114 unsigned long flags;
Tejun Heo9475af62013-02-27 17:04:59 -08002115 int id;
Johannes Berga729cff2011-11-06 14:13:34 +01002116
2117 spin_lock_irqsave(&local->ack_status_lock, flags);
Alexander Duyckbf7fa552014-09-10 18:05:42 -04002118 id = idr_alloc(&local->ack_status_frames, ack_skb,
Tejun Heo9475af62013-02-27 17:04:59 -08002119 1, 0x10000, GFP_ATOMIC);
Johannes Berga729cff2011-11-06 14:13:34 +01002120 spin_unlock_irqrestore(&local->ack_status_lock, flags);
2121
Tejun Heo9475af62013-02-27 17:04:59 -08002122 if (id >= 0) {
Johannes Berga729cff2011-11-06 14:13:34 +01002123 info_id = id;
2124 info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
Johannes Berga729cff2011-11-06 14:13:34 +01002125 } else {
Alexander Duyckbf7fa552014-09-10 18:05:42 -04002126 kfree_skb(ack_skb);
Johannes Berga729cff2011-11-06 14:13:34 +01002127 }
Johannes Berga729cff2011-11-06 14:13:34 +01002128 }
2129 }
2130
Helmut Schaa7e244702010-12-02 18:44:09 +01002131 /*
2132 * If the skb is shared we need to obtain our own copy.
2133 */
2134 if (skb_shared(skb)) {
Johannes Berga729cff2011-11-06 14:13:34 +01002135 struct sk_buff *tmp_skb = skb;
2136
2137 /* can't happen -- skb is a clone if info_id != 0 */
2138 WARN_ON(info_id);
2139
Felix Fietkauf8a0a782010-12-18 19:30:50 +01002140 skb = skb_clone(skb, GFP_ATOMIC);
Helmut Schaa7e244702010-12-02 18:44:09 +01002141 kfree_skb(tmp_skb);
2142
Johannes Berg4c9451e2014-11-09 18:50:10 +02002143 if (!skb) {
2144 ret = -ENOMEM;
2145 goto free;
2146 }
Helmut Schaa7e244702010-12-02 18:44:09 +01002147 }
2148
Harvey Harrison065e96052008-06-22 16:45:27 -07002149 hdr.frame_control = fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02002150 hdr.duration_id = 0;
2151 hdr.seq_ctrl = 0;
2152
2153 skip_header_bytes = ETH_HLEN;
2154 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
2155 encaps_data = bridge_tunnel_header;
2156 encaps_len = sizeof(bridge_tunnel_header);
2157 skip_header_bytes -= 2;
Simon Hormane5c5d222013-03-28 13:38:25 +09002158 } else if (ethertype >= ETH_P_802_3_MIN) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002159 encaps_data = rfc1042_header;
2160 encaps_len = sizeof(rfc1042_header);
2161 skip_header_bytes -= 2;
2162 } else {
2163 encaps_data = NULL;
2164 encaps_len = 0;
2165 }
2166
Helmut Schaa7e244702010-12-02 18:44:09 +01002167 nh_pos = skb_network_header(skb) - skb->data;
2168 h_pos = skb_transport_header(skb) - skb->data;
2169
Johannes Berge2ebc742007-07-27 15:43:22 +02002170 skb_pull(skb, skip_header_bytes);
2171 nh_pos -= skip_header_bytes;
2172 h_pos -= skip_header_bytes;
2173
Johannes Berg23c07522008-05-29 10:38:53 +02002174 head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002175
Johannes Berg23c07522008-05-29 10:38:53 +02002176 /*
2177 * So we need to modify the skb header and hence need a copy of
2178 * that. The head_need variable above doesn't, so far, include
2179 * the needed header space that we don't need right away. If we
2180 * can, then we don't reallocate right now but only after the
2181 * frame arrives at the master device (if it does...)
2182 *
2183 * If we cannot, however, then we will reallocate to include all
2184 * the ever needed space. Also, if we need to reallocate it anyway,
2185 * make it big enough for everything we may ever need.
2186 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002187
David S. Miller3a5be7d2008-06-18 01:19:51 -07002188 if (head_need > 0 || skb_cloned(skb)) {
Max Stepanov2475b1cc2013-03-24 14:23:27 +02002189 head_need += sdata->encrypt_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02002190 head_need += local->tx_headroom;
2191 head_need = max_t(int, 0, head_need);
Felix Fietkauc3e77242012-10-08 14:39:33 +02002192 if (ieee80211_skb_resize(sdata, skb, head_need, true)) {
2193 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg1c963be2012-11-07 14:02:30 +01002194 skb = NULL;
Johannes Berg4c9451e2014-11-09 18:50:10 +02002195 return ERR_PTR(-ENOMEM);
Felix Fietkauc3e77242012-10-08 14:39:33 +02002196 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002197 }
2198
2199 if (encaps_data) {
2200 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
2201 nh_pos += encaps_len;
2202 h_pos += encaps_len;
2203 }
Johannes Bergc29b9b92007-09-14 11:10:24 -04002204
Yuri Ershove4ab7eb2010-06-29 15:08:06 +04002205#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002206 if (meshhdrlen > 0) {
2207 memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
2208 nh_pos += meshhdrlen;
2209 h_pos += meshhdrlen;
2210 }
Yuri Ershove4ab7eb2010-06-29 15:08:06 +04002211#endif
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002212
Harvey Harrison065e96052008-06-22 16:45:27 -07002213 if (ieee80211_is_data_qos(fc)) {
Johannes Bergc29b9b92007-09-14 11:10:24 -04002214 __le16 *qos_control;
2215
Weilong Chenf359d3f2013-12-18 15:44:16 +08002216 qos_control = (__le16 *) skb_push(skb, 2);
Johannes Bergc29b9b92007-09-14 11:10:24 -04002217 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
2218 /*
2219 * Maybe we could actually set some fields here, for now just
2220 * initialise to zero to indicate no special operation.
2221 */
2222 *qos_control = 0;
2223 } else
2224 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
2225
Johannes Berge2ebc742007-07-27 15:43:22 +02002226 nh_pos += hdrlen;
2227 h_pos += hdrlen;
2228
Johannes Berge2ebc742007-07-27 15:43:22 +02002229 /* Update skb pointers to various headers since this modified frame
2230 * is going to go through Linux networking code that may potentially
2231 * need things like pointer to IP header. */
2232 skb_set_mac_header(skb, 0);
2233 skb_set_network_header(skb, nh_pos);
2234 skb_set_transport_header(skb, h_pos);
2235
Felix Fietkau489ee912010-12-18 19:30:48 +01002236 info = IEEE80211_SKB_CB(skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002237 memset(info, 0, sizeof(*info));
2238
Johannes Berga729cff2011-11-06 14:13:34 +01002239 info->flags = info_flags;
2240 info->ack_frame_id = info_id;
Johannes Berg73c4e192014-11-09 18:50:09 +02002241 info->band = band;
Johannes Berga729cff2011-11-06 14:13:34 +01002242
Johannes Berg4c9451e2014-11-09 18:50:10 +02002243 return skb;
2244 free:
2245 kfree_skb(skb);
2246 return ERR_PTR(ret);
Johannes Berge2ebc742007-07-27 15:43:22 +02002247}
2248
Johannes Berg4c9451e2014-11-09 18:50:10 +02002249void __ieee80211_subif_start_xmit(struct sk_buff *skb,
2250 struct net_device *dev,
2251 u32 info_flags)
2252{
2253 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2254 struct ieee80211_local *local = sdata->local;
2255
2256 if (unlikely(skb->len < ETH_HLEN)) {
2257 kfree_skb(skb);
2258 return;
2259 }
2260
2261 rcu_read_lock();
2262
2263 /* Measure frame arrival for Tx latency statistics calculation */
2264 ieee80211_tx_latency_start_msrmnt(local, skb);
2265
2266 skb = ieee80211_build_hdr(sdata, skb, info_flags);
2267 if (IS_ERR(skb))
2268 goto out;
2269
2270 dev->stats.tx_packets++;
2271 dev->stats.tx_bytes += skb->len;
2272 dev->trans_start = jiffies;
2273
2274 ieee80211_xmit(sdata, skb);
2275 out:
2276 rcu_read_unlock();
2277}
2278
2279/**
2280 * ieee80211_subif_start_xmit - netif start_xmit function for 802.3 vifs
2281 * @skb: packet to be sent
2282 * @dev: incoming interface
2283 *
2284 * On failure skb will be freed.
2285 */
Liad Kaufman24d342c2014-11-09 18:50:07 +02002286netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb,
2287 struct net_device *dev)
2288{
2289 __ieee80211_subif_start_xmit(skb, dev, 0);
2290 return NETDEV_TX_OK;
2291}
Johannes Berge2ebc742007-07-27 15:43:22 +02002292
Johannes Berg7528ec52014-11-09 18:50:11 +02002293struct sk_buff *
2294ieee80211_build_data_template(struct ieee80211_sub_if_data *sdata,
2295 struct sk_buff *skb, u32 info_flags)
2296{
2297 struct ieee80211_hdr *hdr;
2298 struct ieee80211_tx_data tx = {
2299 .local = sdata->local,
2300 .sdata = sdata,
2301 };
2302
2303 rcu_read_lock();
2304
2305 skb = ieee80211_build_hdr(sdata, skb, info_flags);
2306 if (IS_ERR(skb))
2307 goto out;
2308
2309 hdr = (void *)skb->data;
2310 tx.sta = sta_info_get(sdata, hdr->addr1);
2311 tx.skb = skb;
2312
2313 if (ieee80211_tx_h_select_key(&tx) != TX_CONTINUE) {
2314 rcu_read_unlock();
2315 kfree_skb(skb);
2316 return ERR_PTR(-EINVAL);
2317 }
2318
2319out:
2320 rcu_read_unlock();
2321 return skb;
2322}
2323
Johannes Berge2530082008-05-17 00:57:14 +02002324/*
2325 * ieee80211_clear_tx_pending may not be called in a context where
2326 * it is possible that it packets could come in again.
2327 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002328void ieee80211_clear_tx_pending(struct ieee80211_local *local)
2329{
Felix Fietkau1f98ab72012-11-10 03:44:14 +01002330 struct sk_buff *skb;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01002331 int i;
Johannes Berge2ebc742007-07-27 15:43:22 +02002332
Felix Fietkau1f98ab72012-11-10 03:44:14 +01002333 for (i = 0; i < local->hw.queues; i++) {
2334 while ((skb = skb_dequeue(&local->pending[i])) != NULL)
2335 ieee80211_free_txskb(&local->hw, skb);
2336 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002337}
2338
Johannes Berg7bb45682011-02-24 14:42:06 +01002339/*
2340 * Returns false if the frame couldn't be transmitted but was queued instead,
2341 * which in this case means re-queued -- take as an indication to stop sending
2342 * more pending frames.
2343 */
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002344static bool ieee80211_tx_pending_skb(struct ieee80211_local *local,
2345 struct sk_buff *skb)
2346{
2347 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2348 struct ieee80211_sub_if_data *sdata;
2349 struct sta_info *sta;
2350 struct ieee80211_hdr *hdr;
Johannes Berg7bb45682011-02-24 14:42:06 +01002351 bool result;
Johannes Berg55de9082012-07-26 17:24:39 +02002352 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002353
Johannes Berg5061b0c2009-07-14 00:33:34 +02002354 sdata = vif_to_sdata(info->control.vif);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002355
2356 if (info->flags & IEEE80211_TX_INTFL_NEED_TXPROCESSING) {
Johannes Berg55de9082012-07-26 17:24:39 +02002357 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2358 if (unlikely(!chanctx_conf)) {
2359 dev_kfree_skb(skb);
2360 return true;
2361 }
Johannes Berg73c4e192014-11-09 18:50:09 +02002362 info->band = chanctx_conf->def.chan->band;
2363 result = ieee80211_tx(sdata, skb, true);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002364 } else {
Johannes Berg252b86c2011-11-16 15:28:55 +01002365 struct sk_buff_head skbs;
2366
2367 __skb_queue_head_init(&skbs);
2368 __skb_queue_tail(&skbs, skb);
2369
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002370 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Bergabe60632009-11-25 17:46:18 +01002371 sta = sta_info_get(sdata, hdr->addr1);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002372
Johannes Berg74e4dbf2011-11-16 15:28:57 +01002373 result = __ieee80211_tx(local, &skbs, skb->len, sta, true);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002374 }
2375
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002376 return result;
2377}
2378
Johannes Berge2530082008-05-17 00:57:14 +02002379/*
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002380 * Transmit all pending packets. Called from tasklet.
Johannes Berge2530082008-05-17 00:57:14 +02002381 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002382void ieee80211_tx_pending(unsigned long data)
2383{
2384 struct ieee80211_local *local = (struct ieee80211_local *)data;
Johannes Berg2a577d92009-03-23 17:28:37 +01002385 unsigned long flags;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002386 int i;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002387 bool txok;
Johannes Berge2ebc742007-07-27 15:43:22 +02002388
Johannes Bergf0e72852009-03-23 17:28:36 +01002389 rcu_read_lock();
Johannes Berg2a577d92009-03-23 17:28:37 +01002390
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002391 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Berg176be722009-03-12 23:49:28 +01002392 for (i = 0; i < local->hw.queues; i++) {
Johannes Berg2a577d92009-03-23 17:28:37 +01002393 /*
2394 * If queue is stopped by something other than due to pending
2395 * frames, or we have no pending frames, proceed to next queue.
2396 */
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002397 if (local->queue_stop_reasons[i] ||
Johannes Berg2a577d92009-03-23 17:28:37 +01002398 skb_queue_empty(&local->pending[i]))
Johannes Berge2ebc742007-07-27 15:43:22 +02002399 continue;
Johannes Berge2530082008-05-17 00:57:14 +02002400
Johannes Berg2a577d92009-03-23 17:28:37 +01002401 while (!skb_queue_empty(&local->pending[i])) {
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002402 struct sk_buff *skb = __skb_dequeue(&local->pending[i]);
Johannes Berg5061b0c2009-07-14 00:33:34 +02002403 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg5061b0c2009-07-14 00:33:34 +02002404
Johannes Berga7bc3762009-07-27 10:33:31 +02002405 if (WARN_ON(!info->control.vif)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02002406 ieee80211_free_txskb(&local->hw, skb);
Johannes Berga7bc3762009-07-27 10:33:31 +02002407 continue;
2408 }
2409
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002410 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
2411 flags);
Johannes Berg2a577d92009-03-23 17:28:37 +01002412
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002413 txok = ieee80211_tx_pending_skb(local, skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002414 spin_lock_irqsave(&local->queue_stop_reason_lock,
2415 flags);
2416 if (!txok)
Johannes Berg2a577d92009-03-23 17:28:37 +01002417 break;
Johannes Berge2ebc742007-07-27 15:43:22 +02002418 }
Johannes Berg7236fe22010-03-22 13:42:43 -07002419
2420 if (skb_queue_empty(&local->pending[i]))
Johannes Berg3a25a8c2012-04-03 16:28:50 +02002421 ieee80211_propagate_queue_wake(local, i);
Johannes Berge2ebc742007-07-27 15:43:22 +02002422 }
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002423 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Johannes Berg2a577d92009-03-23 17:28:37 +01002424
Johannes Bergf0e72852009-03-23 17:28:36 +01002425 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002426}
2427
2428/* functions for drivers to get certain frames */
2429
Marco Porscheac70c12013-01-07 16:04:50 +01002430static void __ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002431 struct ps_data *ps, struct sk_buff *skb,
2432 bool is_template)
Johannes Berge2ebc742007-07-27 15:43:22 +02002433{
2434 u8 *pos, *tim;
2435 int aid0 = 0;
2436 int i, have_bits = 0, n1, n2;
2437
2438 /* Generate bitmap for TIM only if there are any STAs in power save
2439 * mode. */
Marco Porschd012a602012-10-10 12:39:50 -07002440 if (atomic_read(&ps->num_sta_ps) > 0)
Johannes Berge2ebc742007-07-27 15:43:22 +02002441 /* in the hope that this is faster than
2442 * checking byte-for-byte */
Weilong Chenf359d3f2013-12-18 15:44:16 +08002443 have_bits = !bitmap_empty((unsigned long *)ps->tim,
Johannes Berge2ebc742007-07-27 15:43:22 +02002444 IEEE80211_MAX_AID+1);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002445 if (!is_template) {
2446 if (ps->dtim_count == 0)
2447 ps->dtim_count = sdata->vif.bss_conf.dtim_period - 1;
2448 else
2449 ps->dtim_count--;
2450 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002451
2452 tim = pos = (u8 *) skb_put(skb, 6);
2453 *pos++ = WLAN_EID_TIM;
2454 *pos++ = 4;
Marco Porschd012a602012-10-10 12:39:50 -07002455 *pos++ = ps->dtim_count;
Johannes Berg88600202012-02-13 15:17:18 +01002456 *pos++ = sdata->vif.bss_conf.dtim_period;
Johannes Berge2ebc742007-07-27 15:43:22 +02002457
Marco Porschd012a602012-10-10 12:39:50 -07002458 if (ps->dtim_count == 0 && !skb_queue_empty(&ps->bc_buf))
Johannes Berge2ebc742007-07-27 15:43:22 +02002459 aid0 = 1;
2460
Marco Porschd012a602012-10-10 12:39:50 -07002461 ps->dtim_bc_mc = aid0 == 1;
Christian Lamparter512119b2011-01-31 20:48:44 +02002462
Johannes Berge2ebc742007-07-27 15:43:22 +02002463 if (have_bits) {
2464 /* Find largest even number N1 so that bits numbered 1 through
2465 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
2466 * (N2 + 1) x 8 through 2007 are 0. */
2467 n1 = 0;
2468 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
Marco Porschd012a602012-10-10 12:39:50 -07002469 if (ps->tim[i]) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002470 n1 = i & 0xfe;
2471 break;
2472 }
2473 }
2474 n2 = n1;
2475 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
Marco Porschd012a602012-10-10 12:39:50 -07002476 if (ps->tim[i]) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002477 n2 = i;
2478 break;
2479 }
2480 }
2481
2482 /* Bitmap control */
2483 *pos++ = n1 | aid0;
2484 /* Part Virt Bitmap */
Eliad Peller5220da32011-11-24 16:50:00 +02002485 skb_put(skb, n2 - n1);
Marco Porschd012a602012-10-10 12:39:50 -07002486 memcpy(pos, ps->tim + n1, n2 - n1 + 1);
Johannes Berge2ebc742007-07-27 15:43:22 +02002487
2488 tim[1] = n2 - n1 + 4;
Johannes Berge2ebc742007-07-27 15:43:22 +02002489 } else {
2490 *pos++ = aid0; /* Bitmap control */
2491 *pos++ = 0; /* Part Virt Bitmap */
2492 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002493}
2494
Marco Porscheac70c12013-01-07 16:04:50 +01002495static int ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002496 struct ps_data *ps, struct sk_buff *skb,
2497 bool is_template)
Marco Porscheac70c12013-01-07 16:04:50 +01002498{
2499 struct ieee80211_local *local = sdata->local;
2500
2501 /*
2502 * Not very nice, but we want to allow the driver to call
2503 * ieee80211_beacon_get() as a response to the set_tim()
2504 * callback. That, however, is already invoked under the
2505 * sta_lock to guarantee consistent and race-free update
2506 * of the tim bitmap in mac80211 and the driver.
2507 */
2508 if (local->tim_in_locked_section) {
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002509 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
Marco Porscheac70c12013-01-07 16:04:50 +01002510 } else {
Johannes Berg1b917312013-02-22 12:55:01 +01002511 spin_lock_bh(&local->tim_lock);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002512 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
Johannes Berg1b917312013-02-22 12:55:01 +01002513 spin_unlock_bh(&local->tim_lock);
Marco Porscheac70c12013-01-07 16:04:50 +01002514 }
2515
2516 return 0;
2517}
2518
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002519static void ieee80211_set_csa(struct ieee80211_sub_if_data *sdata,
2520 struct beacon_data *beacon)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002521{
2522 struct probe_resp *resp;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002523 u8 *beacon_data;
2524 size_t beacon_data_len;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002525 int i;
Michal Kazioraf296bd2014-06-05 14:21:36 +02002526 u8 count = beacon->csa_current_counter;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002527
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002528 switch (sdata->vif.type) {
2529 case NL80211_IFTYPE_AP:
2530 beacon_data = beacon->tail;
2531 beacon_data_len = beacon->tail_len;
2532 break;
2533 case NL80211_IFTYPE_ADHOC:
2534 beacon_data = beacon->head;
2535 beacon_data_len = beacon->head_len;
2536 break;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002537 case NL80211_IFTYPE_MESH_POINT:
2538 beacon_data = beacon->head;
2539 beacon_data_len = beacon->head_len;
2540 break;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002541 default:
2542 return;
2543 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002544
Michal Kazioraf296bd2014-06-05 14:21:36 +02002545 rcu_read_lock();
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002546 for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; ++i) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02002547 resp = rcu_dereference(sdata->u.ap.probe_resp);
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002548
Michal Kazioraf296bd2014-06-05 14:21:36 +02002549 if (beacon->csa_counter_offsets[i]) {
2550 if (WARN_ON_ONCE(beacon->csa_counter_offsets[i] >=
2551 beacon_data_len)) {
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002552 rcu_read_unlock();
2553 return;
2554 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02002555
2556 beacon_data[beacon->csa_counter_offsets[i]] = count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002557 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02002558
2559 if (sdata->vif.type == NL80211_IFTYPE_AP && resp)
2560 resp->data[resp->csa_counter_offsets[i]] = count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002561 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02002562 rcu_read_unlock();
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002563}
2564
2565u8 ieee80211_csa_update_counter(struct ieee80211_vif *vif)
2566{
2567 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002568 struct beacon_data *beacon = NULL;
2569 u8 count = 0;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002570
Michal Kazioraf296bd2014-06-05 14:21:36 +02002571 rcu_read_lock();
2572
2573 if (sdata->vif.type == NL80211_IFTYPE_AP)
2574 beacon = rcu_dereference(sdata->u.ap.beacon);
2575 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
2576 beacon = rcu_dereference(sdata->u.ibss.presp);
2577 else if (ieee80211_vif_is_mesh(&sdata->vif))
2578 beacon = rcu_dereference(sdata->u.mesh.beacon);
2579
2580 if (!beacon)
2581 goto unlock;
2582
2583 beacon->csa_current_counter--;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002584
2585 /* the counter should never reach 0 */
Michal Kazioraf296bd2014-06-05 14:21:36 +02002586 WARN_ON_ONCE(!beacon->csa_current_counter);
2587 count = beacon->csa_current_counter;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002588
Michal Kazioraf296bd2014-06-05 14:21:36 +02002589unlock:
2590 rcu_read_unlock();
2591 return count;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002592}
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002593EXPORT_SYMBOL(ieee80211_csa_update_counter);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002594
2595bool ieee80211_csa_is_complete(struct ieee80211_vif *vif)
2596{
2597 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2598 struct beacon_data *beacon = NULL;
2599 u8 *beacon_data;
2600 size_t beacon_data_len;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002601 int ret = false;
2602
2603 if (!ieee80211_sdata_running(sdata))
2604 return false;
2605
2606 rcu_read_lock();
2607 if (vif->type == NL80211_IFTYPE_AP) {
2608 struct ieee80211_if_ap *ap = &sdata->u.ap;
2609
2610 beacon = rcu_dereference(ap->beacon);
2611 if (WARN_ON(!beacon || !beacon->tail))
2612 goto out;
2613 beacon_data = beacon->tail;
2614 beacon_data_len = beacon->tail_len;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002615 } else if (vif->type == NL80211_IFTYPE_ADHOC) {
2616 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
2617
2618 beacon = rcu_dereference(ifibss->presp);
2619 if (!beacon)
2620 goto out;
2621
2622 beacon_data = beacon->head;
2623 beacon_data_len = beacon->head_len;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002624 } else if (vif->type == NL80211_IFTYPE_MESH_POINT) {
2625 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
2626
2627 beacon = rcu_dereference(ifmsh->beacon);
2628 if (!beacon)
2629 goto out;
2630
2631 beacon_data = beacon->head;
2632 beacon_data_len = beacon->head_len;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002633 } else {
2634 WARN_ON(1);
2635 goto out;
2636 }
2637
Michal Kazior10d78f22014-06-05 14:21:37 +02002638 if (!beacon->csa_counter_offsets[0])
2639 goto out;
2640
Michal Kazioraf296bd2014-06-05 14:21:36 +02002641 if (WARN_ON_ONCE(beacon->csa_counter_offsets[0] > beacon_data_len))
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002642 goto out;
2643
Michal Kazioraf296bd2014-06-05 14:21:36 +02002644 if (beacon_data[beacon->csa_counter_offsets[0]] == 1)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002645 ret = true;
2646 out:
2647 rcu_read_unlock();
2648
2649 return ret;
2650}
2651EXPORT_SYMBOL(ieee80211_csa_is_complete);
2652
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002653static struct sk_buff *
2654__ieee80211_beacon_get(struct ieee80211_hw *hw,
2655 struct ieee80211_vif *vif,
2656 struct ieee80211_mutable_offsets *offs,
2657 bool is_template)
Johannes Berge2ebc742007-07-27 15:43:22 +02002658{
2659 struct ieee80211_local *local = hw_to_local(hw);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002660 struct beacon_data *beacon = NULL;
Johannes Berg9d139c82008-07-09 14:40:37 +02002661 struct sk_buff *skb = NULL;
Johannes Berge039fa42008-05-15 12:55:29 +02002662 struct ieee80211_tx_info *info;
Johannes Berge2ebc742007-07-27 15:43:22 +02002663 struct ieee80211_sub_if_data *sdata = NULL;
Johannes Berg55de9082012-07-26 17:24:39 +02002664 enum ieee80211_band band;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002665 struct ieee80211_tx_rate_control txrc;
Johannes Berg55de9082012-07-26 17:24:39 +02002666 struct ieee80211_chanctx_conf *chanctx_conf;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002667 int csa_off_base = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002668
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002669 rcu_read_lock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002670
Johannes Berg32bfd352007-12-19 01:31:26 +01002671 sdata = vif_to_sdata(vif);
Johannes Berg55de9082012-07-26 17:24:39 +02002672 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berge2ebc742007-07-27 15:43:22 +02002673
Johannes Berg55de9082012-07-26 17:24:39 +02002674 if (!ieee80211_sdata_running(sdata) || !chanctx_conf)
Felix Fietkaueb3e5542011-01-24 19:28:49 +01002675 goto out;
2676
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002677 if (offs)
2678 memset(offs, 0, sizeof(*offs));
Johannes Bergeddcbb92009-10-29 08:30:35 +01002679
Johannes Berg05c914f2008-09-11 00:01:58 +02002680 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Marco Porschd012a602012-10-10 12:39:50 -07002681 struct ieee80211_if_ap *ap = &sdata->u.ap;
Marco Porschd012a602012-10-10 12:39:50 -07002682
Michal Kazioraf296bd2014-06-05 14:21:36 +02002683 beacon = rcu_dereference(ap->beacon);
Dan Carpenter3ad97fb2011-02-07 22:03:35 +03002684 if (beacon) {
Michal Kazior10d78f22014-06-05 14:21:37 +02002685 if (beacon->csa_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002686 if (!is_template)
2687 ieee80211_csa_update_counter(vif);
2688
2689 ieee80211_set_csa(sdata, beacon);
2690 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002691
Johannes Berg902acc72008-02-23 15:17:19 +01002692 /*
2693 * headroom, head length,
2694 * tail length and maximum TIM length
2695 */
2696 skb = dev_alloc_skb(local->tx_headroom +
2697 beacon->head_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002698 beacon->tail_len + 256 +
2699 local->hw.extra_beacon_tailroom);
Johannes Berg902acc72008-02-23 15:17:19 +01002700 if (!skb)
2701 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002702
Johannes Berg902acc72008-02-23 15:17:19 +01002703 skb_reserve(skb, local->tx_headroom);
2704 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2705 beacon->head_len);
2706
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002707 ieee80211_beacon_add_tim(sdata, &ap->ps, skb,
2708 is_template);
Johannes Berg902acc72008-02-23 15:17:19 +01002709
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002710 if (offs) {
2711 offs->tim_offset = beacon->head_len;
2712 offs->tim_length = skb->len - beacon->head_len;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002713
2714 /* for AP the csa offsets are from tail */
2715 csa_off_base = skb->len;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002716 }
Johannes Bergeddcbb92009-10-29 08:30:35 +01002717
Johannes Berg902acc72008-02-23 15:17:19 +01002718 if (beacon->tail)
2719 memcpy(skb_put(skb, beacon->tail_len),
2720 beacon->tail, beacon->tail_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002721 } else
2722 goto out;
Johannes Berg05c914f2008-09-11 00:01:58 +02002723 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg46900292009-02-15 12:44:28 +01002724 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg9d139c82008-07-09 14:40:37 +02002725 struct ieee80211_hdr *hdr;
Johannes Berg902acc72008-02-23 15:17:19 +01002726
Michal Kazioraf296bd2014-06-05 14:21:36 +02002727 beacon = rcu_dereference(ifibss->presp);
2728 if (!beacon)
Johannes Berg9d139c82008-07-09 14:40:37 +02002729 goto out;
2730
Michal Kazior10d78f22014-06-05 14:21:37 +02002731 if (beacon->csa_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002732 if (!is_template)
2733 ieee80211_csa_update_counter(vif);
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002734
Michal Kazioraf296bd2014-06-05 14:21:36 +02002735 ieee80211_set_csa(sdata, beacon);
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002736 }
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002737
Michal Kazioraf296bd2014-06-05 14:21:36 +02002738 skb = dev_alloc_skb(local->tx_headroom + beacon->head_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002739 local->hw.extra_beacon_tailroom);
Johannes Berg9d139c82008-07-09 14:40:37 +02002740 if (!skb)
2741 goto out;
Johannes Bergc3ffeab2013-03-07 20:54:29 +01002742 skb_reserve(skb, local->tx_headroom);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002743 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2744 beacon->head_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002745
2746 hdr = (struct ieee80211_hdr *) skb->data;
Harvey Harrisone7827a72008-07-15 18:44:13 -07002747 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2748 IEEE80211_STYPE_BEACON);
Johannes Berg902acc72008-02-23 15:17:19 +01002749 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
Javier Cardonadbf498f2012-03-31 11:31:32 -07002750 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02002751
Michal Kazioraf296bd2014-06-05 14:21:36 +02002752 beacon = rcu_dereference(ifmsh->beacon);
2753 if (!beacon)
Johannes Bergac1bd842011-01-18 13:45:32 +01002754 goto out;
Johannes Bergac1bd842011-01-18 13:45:32 +01002755
Michal Kazior10d78f22014-06-05 14:21:37 +02002756 if (beacon->csa_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002757 if (!is_template)
2758 /* TODO: For mesh csa_counter is in TU, so
2759 * decrementing it by one isn't correct, but
2760 * for now we leave it consistent with overall
2761 * mac80211's behavior.
2762 */
2763 ieee80211_csa_update_counter(vif);
2764
Michal Kazioraf296bd2014-06-05 14:21:36 +02002765 ieee80211_set_csa(sdata, beacon);
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002766 }
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002767
Javier Cardonadbf498f2012-03-31 11:31:32 -07002768 if (ifmsh->sync_ops)
Michal Kazioraf296bd2014-06-05 14:21:36 +02002769 ifmsh->sync_ops->adjust_tbtt(sdata, beacon);
Javier Cardonadbf498f2012-03-31 11:31:32 -07002770
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -07002771 skb = dev_alloc_skb(local->tx_headroom +
Michal Kazioraf296bd2014-06-05 14:21:36 +02002772 beacon->head_len +
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002773 256 + /* TIM IE */
Michal Kazioraf296bd2014-06-05 14:21:36 +02002774 beacon->tail_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01002775 local->hw.extra_beacon_tailroom);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002776 if (!skb)
2777 goto out;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08002778 skb_reserve(skb, local->tx_headroom);
Michal Kazioraf296bd2014-06-05 14:21:36 +02002779 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2780 beacon->head_len);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002781 ieee80211_beacon_add_tim(sdata, &ifmsh->ps, skb, is_template);
2782
2783 if (offs) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02002784 offs->tim_offset = beacon->head_len;
2785 offs->tim_length = skb->len - beacon->head_len;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002786 }
2787
Michal Kazioraf296bd2014-06-05 14:21:36 +02002788 memcpy(skb_put(skb, beacon->tail_len), beacon->tail,
2789 beacon->tail_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002790 } else {
2791 WARN_ON(1);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002792 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02002793 }
2794
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002795 /* CSA offsets */
Michal Kazioraf296bd2014-06-05 14:21:36 +02002796 if (offs && beacon) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002797 int i;
2798
2799 for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; i++) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02002800 u16 csa_off = beacon->csa_counter_offsets[i];
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03002801
2802 if (!csa_off)
2803 continue;
2804
2805 offs->csa_counter_offs[i] = csa_off_base + csa_off;
2806 }
2807 }
2808
Johannes Berg4bf88532012-11-09 11:39:59 +01002809 band = chanctx_conf->def.chan->band;
Johannes Berg55de9082012-07-26 17:24:39 +02002810
Johannes Berge039fa42008-05-15 12:55:29 +02002811 info = IEEE80211_SKB_CB(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002812
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002813 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002814 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Johannes Berge039fa42008-05-15 12:55:29 +02002815 info->band = band;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002816
2817 memset(&txrc, 0, sizeof(txrc));
2818 txrc.hw = hw;
Johannes Berge31583c2012-07-26 14:07:46 +02002819 txrc.sband = local->hw.wiphy->bands[band];
Jouni Malinene00cfce2009-12-29 12:59:19 +02002820 txrc.bss_conf = &sdata->vif.bss_conf;
2821 txrc.skb = skb;
2822 txrc.reported_rate.idx = -1;
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002823 txrc.rate_idx_mask = sdata->rc_rateidx_mask[band];
Johannes Berge31583c2012-07-26 14:07:46 +02002824 if (txrc.rate_idx_mask == (1 << txrc.sband->n_bitrates) - 1)
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002825 txrc.max_rate_idx = -1;
2826 else
2827 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
Felix Fietkau8f0729b2010-11-11 15:07:23 +01002828 txrc.bss = true;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002829 rate_control_get_rate(sdata, NULL, &txrc);
Johannes Berge039fa42008-05-15 12:55:29 +02002830
2831 info->control.vif = vif;
Johannes Bergf591fa52008-07-10 11:21:26 +02002832
John W. Linvillea472e712010-05-06 14:45:17 -04002833 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT |
2834 IEEE80211_TX_CTL_ASSIGN_SEQ |
2835 IEEE80211_TX_CTL_FIRST_FRAGMENT;
Johannes Berge6a98542008-10-21 12:40:02 +02002836 out:
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002837 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002838 return skb;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03002839
2840}
2841
2842struct sk_buff *
2843ieee80211_beacon_get_template(struct ieee80211_hw *hw,
2844 struct ieee80211_vif *vif,
2845 struct ieee80211_mutable_offsets *offs)
2846{
2847 return __ieee80211_beacon_get(hw, vif, offs, true);
2848}
2849EXPORT_SYMBOL(ieee80211_beacon_get_template);
2850
2851struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
2852 struct ieee80211_vif *vif,
2853 u16 *tim_offset, u16 *tim_length)
2854{
2855 struct ieee80211_mutable_offsets offs = {};
2856 struct sk_buff *bcn = __ieee80211_beacon_get(hw, vif, &offs, false);
2857
2858 if (tim_offset)
2859 *tim_offset = offs.tim_offset;
2860
2861 if (tim_length)
2862 *tim_length = offs.tim_length;
2863
2864 return bcn;
Johannes Berge2ebc742007-07-27 15:43:22 +02002865}
Johannes Bergeddcbb92009-10-29 08:30:35 +01002866EXPORT_SYMBOL(ieee80211_beacon_get_tim);
Johannes Berge2ebc742007-07-27 15:43:22 +02002867
Arik Nemtsov02945822011-11-10 11:28:57 +02002868struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw,
2869 struct ieee80211_vif *vif)
2870{
2871 struct ieee80211_if_ap *ap = NULL;
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002872 struct sk_buff *skb = NULL;
2873 struct probe_resp *presp = NULL;
Arik Nemtsov02945822011-11-10 11:28:57 +02002874 struct ieee80211_hdr *hdr;
2875 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2876
2877 if (sdata->vif.type != NL80211_IFTYPE_AP)
2878 return NULL;
2879
2880 rcu_read_lock();
2881
2882 ap = &sdata->u.ap;
2883 presp = rcu_dereference(ap->probe_resp);
2884 if (!presp)
2885 goto out;
2886
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002887 skb = dev_alloc_skb(presp->len);
Arik Nemtsov02945822011-11-10 11:28:57 +02002888 if (!skb)
2889 goto out;
2890
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03002891 memcpy(skb_put(skb, presp->len), presp->data, presp->len);
2892
Arik Nemtsov02945822011-11-10 11:28:57 +02002893 hdr = (struct ieee80211_hdr *) skb->data;
2894 memset(hdr->addr1, 0, sizeof(hdr->addr1));
2895
2896out:
2897 rcu_read_unlock();
2898 return skb;
2899}
2900EXPORT_SYMBOL(ieee80211_proberesp_get);
2901
Kalle Valo7044cc52010-01-05 20:16:19 +02002902struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw,
2903 struct ieee80211_vif *vif)
2904{
2905 struct ieee80211_sub_if_data *sdata;
2906 struct ieee80211_if_managed *ifmgd;
2907 struct ieee80211_pspoll *pspoll;
2908 struct ieee80211_local *local;
2909 struct sk_buff *skb;
2910
2911 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2912 return NULL;
2913
2914 sdata = vif_to_sdata(vif);
2915 ifmgd = &sdata->u.mgd;
2916 local = sdata->local;
2917
2918 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
Joe Perchesd15b8452011-08-29 14:17:31 -07002919 if (!skb)
Kalle Valo7044cc52010-01-05 20:16:19 +02002920 return NULL;
Joe Perchesd15b8452011-08-29 14:17:31 -07002921
Kalle Valo7044cc52010-01-05 20:16:19 +02002922 skb_reserve(skb, local->hw.extra_tx_headroom);
2923
2924 pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll));
2925 memset(pspoll, 0, sizeof(*pspoll));
2926 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
2927 IEEE80211_STYPE_PSPOLL);
2928 pspoll->aid = cpu_to_le16(ifmgd->aid);
2929
2930 /* aid in PS-Poll has its two MSBs each set to 1 */
2931 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
2932
2933 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
2934 memcpy(pspoll->ta, vif->addr, ETH_ALEN);
2935
2936 return skb;
2937}
2938EXPORT_SYMBOL(ieee80211_pspoll_get);
2939
2940struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw,
2941 struct ieee80211_vif *vif)
2942{
2943 struct ieee80211_hdr_3addr *nullfunc;
2944 struct ieee80211_sub_if_data *sdata;
2945 struct ieee80211_if_managed *ifmgd;
2946 struct ieee80211_local *local;
2947 struct sk_buff *skb;
2948
2949 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2950 return NULL;
2951
2952 sdata = vif_to_sdata(vif);
2953 ifmgd = &sdata->u.mgd;
2954 local = sdata->local;
2955
2956 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*nullfunc));
Joe Perchesd15b8452011-08-29 14:17:31 -07002957 if (!skb)
Kalle Valo7044cc52010-01-05 20:16:19 +02002958 return NULL;
Joe Perchesd15b8452011-08-29 14:17:31 -07002959
Kalle Valo7044cc52010-01-05 20:16:19 +02002960 skb_reserve(skb, local->hw.extra_tx_headroom);
2961
2962 nullfunc = (struct ieee80211_hdr_3addr *) skb_put(skb,
2963 sizeof(*nullfunc));
2964 memset(nullfunc, 0, sizeof(*nullfunc));
2965 nullfunc->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
2966 IEEE80211_STYPE_NULLFUNC |
2967 IEEE80211_FCTL_TODS);
2968 memcpy(nullfunc->addr1, ifmgd->bssid, ETH_ALEN);
2969 memcpy(nullfunc->addr2, vif->addr, ETH_ALEN);
2970 memcpy(nullfunc->addr3, ifmgd->bssid, ETH_ALEN);
2971
2972 return skb;
2973}
2974EXPORT_SYMBOL(ieee80211_nullfunc_get);
2975
Kalle Valo05e54ea2010-01-05 20:16:38 +02002976struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw,
Johannes Berga344d672014-06-12 22:24:31 +02002977 const u8 *src_addr,
Kalle Valo05e54ea2010-01-05 20:16:38 +02002978 const u8 *ssid, size_t ssid_len,
Johannes Bergb9a9ada2012-11-29 13:00:10 +01002979 size_t tailroom)
Kalle Valo05e54ea2010-01-05 20:16:38 +02002980{
Johannes Berga344d672014-06-12 22:24:31 +02002981 struct ieee80211_local *local = hw_to_local(hw);
Kalle Valo05e54ea2010-01-05 20:16:38 +02002982 struct ieee80211_hdr_3addr *hdr;
2983 struct sk_buff *skb;
2984 size_t ie_ssid_len;
2985 u8 *pos;
2986
Kalle Valo05e54ea2010-01-05 20:16:38 +02002987 ie_ssid_len = 2 + ssid_len;
2988
2989 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*hdr) +
Johannes Bergb9a9ada2012-11-29 13:00:10 +01002990 ie_ssid_len + tailroom);
Joe Perchesd15b8452011-08-29 14:17:31 -07002991 if (!skb)
Kalle Valo05e54ea2010-01-05 20:16:38 +02002992 return NULL;
Kalle Valo05e54ea2010-01-05 20:16:38 +02002993
2994 skb_reserve(skb, local->hw.extra_tx_headroom);
2995
2996 hdr = (struct ieee80211_hdr_3addr *) skb_put(skb, sizeof(*hdr));
2997 memset(hdr, 0, sizeof(*hdr));
2998 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2999 IEEE80211_STYPE_PROBE_REQ);
Johannes Berge83e6542012-07-13 16:23:07 +02003000 eth_broadcast_addr(hdr->addr1);
Johannes Berga344d672014-06-12 22:24:31 +02003001 memcpy(hdr->addr2, src_addr, ETH_ALEN);
Johannes Berge83e6542012-07-13 16:23:07 +02003002 eth_broadcast_addr(hdr->addr3);
Kalle Valo05e54ea2010-01-05 20:16:38 +02003003
3004 pos = skb_put(skb, ie_ssid_len);
3005 *pos++ = WLAN_EID_SSID;
3006 *pos++ = ssid_len;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02003007 if (ssid_len)
Kalle Valo05e54ea2010-01-05 20:16:38 +02003008 memcpy(pos, ssid, ssid_len);
3009 pos += ssid_len;
3010
Kalle Valo05e54ea2010-01-05 20:16:38 +02003011 return skb;
3012}
3013EXPORT_SYMBOL(ieee80211_probereq_get);
3014
Johannes Berg32bfd352007-12-19 01:31:26 +01003015void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02003016 const void *frame, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +02003017 const struct ieee80211_tx_info *frame_txctl,
Johannes Berge2ebc742007-07-27 15:43:22 +02003018 struct ieee80211_rts *rts)
3019{
3020 const struct ieee80211_hdr *hdr = frame;
Johannes Berge2ebc742007-07-27 15:43:22 +02003021
Harvey Harrison065e96052008-06-22 16:45:27 -07003022 rts->frame_control =
3023 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
Johannes Berg32bfd352007-12-19 01:31:26 +01003024 rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
3025 frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02003026 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
3027 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
3028}
3029EXPORT_SYMBOL(ieee80211_rts_get);
3030
Johannes Berg32bfd352007-12-19 01:31:26 +01003031void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02003032 const void *frame, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +02003033 const struct ieee80211_tx_info *frame_txctl,
Johannes Berge2ebc742007-07-27 15:43:22 +02003034 struct ieee80211_cts *cts)
3035{
3036 const struct ieee80211_hdr *hdr = frame;
Johannes Berge2ebc742007-07-27 15:43:22 +02003037
Harvey Harrison065e96052008-06-22 16:45:27 -07003038 cts->frame_control =
3039 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
Johannes Berg32bfd352007-12-19 01:31:26 +01003040 cts->duration = ieee80211_ctstoself_duration(hw, vif,
3041 frame_len, frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02003042 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
3043}
3044EXPORT_SYMBOL(ieee80211_ctstoself_get);
3045
3046struct sk_buff *
Johannes Berg32bfd352007-12-19 01:31:26 +01003047ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
Johannes Berge039fa42008-05-15 12:55:29 +02003048 struct ieee80211_vif *vif)
Johannes Berge2ebc742007-07-27 15:43:22 +02003049{
3050 struct ieee80211_local *local = hw_to_local(hw);
Tomas Winkler747cf5e2008-05-27 17:50:51 +03003051 struct sk_buff *skb = NULL;
Johannes Berg5cf121c2008-02-25 16:27:43 +01003052 struct ieee80211_tx_data tx;
Johannes Berge2ebc742007-07-27 15:43:22 +02003053 struct ieee80211_sub_if_data *sdata;
Marco Porschd012a602012-10-10 12:39:50 -07003054 struct ps_data *ps;
Johannes Berge039fa42008-05-15 12:55:29 +02003055 struct ieee80211_tx_info *info;
Johannes Berg55de9082012-07-26 17:24:39 +02003056 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berge2ebc742007-07-27 15:43:22 +02003057
Johannes Berg32bfd352007-12-19 01:31:26 +01003058 sdata = vif_to_sdata(vif);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01003059
Johannes Berg5dfdaf52007-12-19 02:03:33 +01003060 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02003061 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01003062
Marco Porschd012a602012-10-10 12:39:50 -07003063 if (!chanctx_conf)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03003064 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01003065
Marco Porschd012a602012-10-10 12:39:50 -07003066 if (sdata->vif.type == NL80211_IFTYPE_AP) {
3067 struct beacon_data *beacon =
3068 rcu_dereference(sdata->u.ap.beacon);
3069
3070 if (!beacon || !beacon->head)
3071 goto out;
3072
3073 ps = &sdata->u.ap.ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01003074 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
3075 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -07003076 } else {
3077 goto out;
3078 }
3079
3080 if (ps->dtim_count != 0 || !ps->dtim_bc_mc)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03003081 goto out; /* send buffered bc/mc only after DTIM beacon */
Johannes Berge039fa42008-05-15 12:55:29 +02003082
Johannes Berge2ebc742007-07-27 15:43:22 +02003083 while (1) {
Marco Porschd012a602012-10-10 12:39:50 -07003084 skb = skb_dequeue(&ps->bc_buf);
Johannes Berge2ebc742007-07-27 15:43:22 +02003085 if (!skb)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03003086 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02003087 local->total_ps_buffered--;
3088
Marco Porschd012a602012-10-10 12:39:50 -07003089 if (!skb_queue_empty(&ps->bc_buf) && skb->len >= 2) {
Johannes Berge2ebc742007-07-27 15:43:22 +02003090 struct ieee80211_hdr *hdr =
3091 (struct ieee80211_hdr *) skb->data;
3092 /* more buffered multicast/broadcast frames ==> set
3093 * MoreData flag in IEEE 802.11 header to inform PS
3094 * STAs */
3095 hdr->frame_control |=
3096 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
3097 }
3098
Michael Braun112c44b2014-03-06 15:08:43 +01003099 if (sdata->vif.type == NL80211_IFTYPE_AP)
Marco Porsch7cbf9d02013-03-01 16:01:18 +01003100 sdata = IEEE80211_DEV_TO_SUB_IF(skb->dev);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003101 if (!ieee80211_tx_prepare(sdata, &tx, skb))
Johannes Berge2ebc742007-07-27 15:43:22 +02003102 break;
3103 dev_kfree_skb_any(skb);
3104 }
Johannes Berge039fa42008-05-15 12:55:29 +02003105
3106 info = IEEE80211_SKB_CB(skb);
3107
Johannes Berg5cf121c2008-02-25 16:27:43 +01003108 tx.flags |= IEEE80211_TX_PS_BUFFERED;
Johannes Berg4bf88532012-11-09 11:39:59 +01003109 info->band = chanctx_conf->def.chan->band;
Johannes Berge2ebc742007-07-27 15:43:22 +02003110
Johannes Berg97b045d2008-06-20 01:22:30 +02003111 if (invoke_tx_handlers(&tx))
Johannes Berge2ebc742007-07-27 15:43:22 +02003112 skb = NULL;
Johannes Berg97b045d2008-06-20 01:22:30 +02003113 out:
Johannes Bergd0709a62008-02-25 16:27:46 +01003114 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02003115
3116 return skb;
3117}
3118EXPORT_SYMBOL(ieee80211_get_buffered_bc);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003119
Liad Kaufmanb6da9112014-11-19 13:47:38 +02003120int ieee80211_reserve_tid(struct ieee80211_sta *pubsta, u8 tid)
3121{
3122 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
3123 struct ieee80211_sub_if_data *sdata = sta->sdata;
3124 struct ieee80211_local *local = sdata->local;
3125 int ret;
3126 u32 queues;
3127
3128 lockdep_assert_held(&local->sta_mtx);
3129
3130 /* only some cases are supported right now */
3131 switch (sdata->vif.type) {
3132 case NL80211_IFTYPE_STATION:
3133 case NL80211_IFTYPE_AP:
3134 case NL80211_IFTYPE_AP_VLAN:
3135 break;
3136 default:
3137 WARN_ON(1);
3138 return -EINVAL;
3139 }
3140
3141 if (WARN_ON(tid >= IEEE80211_NUM_UPS))
3142 return -EINVAL;
3143
3144 if (sta->reserved_tid == tid) {
3145 ret = 0;
3146 goto out;
3147 }
3148
3149 if (sta->reserved_tid != IEEE80211_TID_UNRESERVED) {
3150 sdata_err(sdata, "TID reservation already active\n");
3151 ret = -EALREADY;
3152 goto out;
3153 }
3154
3155 ieee80211_stop_vif_queues(sdata->local, sdata,
3156 IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
3157
3158 synchronize_net();
3159
3160 /* Tear down BA sessions so we stop aggregating on this TID */
3161 if (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION) {
3162 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
3163 __ieee80211_stop_tx_ba_session(sta, tid,
3164 AGG_STOP_LOCAL_REQUEST);
3165 }
3166
3167 queues = BIT(sdata->vif.hw_queue[ieee802_1d_to_ac[tid]]);
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +02003168 __ieee80211_flush_queues(local, sdata, queues, false);
Liad Kaufmanb6da9112014-11-19 13:47:38 +02003169
3170 sta->reserved_tid = tid;
3171
3172 ieee80211_wake_vif_queues(local, sdata,
3173 IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
3174
3175 if (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION)
3176 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
3177
3178 ret = 0;
3179 out:
3180 return ret;
3181}
3182EXPORT_SYMBOL(ieee80211_reserve_tid);
3183
3184void ieee80211_unreserve_tid(struct ieee80211_sta *pubsta, u8 tid)
3185{
3186 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
3187 struct ieee80211_sub_if_data *sdata = sta->sdata;
3188
3189 lockdep_assert_held(&sdata->local->sta_mtx);
3190
3191 /* only some cases are supported right now */
3192 switch (sdata->vif.type) {
3193 case NL80211_IFTYPE_STATION:
3194 case NL80211_IFTYPE_AP:
3195 case NL80211_IFTYPE_AP_VLAN:
3196 break;
3197 default:
3198 WARN_ON(1);
3199 return;
3200 }
3201
3202 if (tid != sta->reserved_tid) {
3203 sdata_err(sdata, "TID to unreserve (%d) isn't reserved\n", tid);
3204 return;
3205 }
3206
3207 sta->reserved_tid = IEEE80211_TID_UNRESERVED;
3208}
3209EXPORT_SYMBOL(ieee80211_unreserve_tid);
3210
Johannes Berg55de9082012-07-26 17:24:39 +02003211void __ieee80211_tx_skb_tid_band(struct ieee80211_sub_if_data *sdata,
3212 struct sk_buff *skb, int tid,
3213 enum ieee80211_band band)
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003214{
Christian Lamparter353d09c2012-07-07 15:07:13 +02003215 int ac = ieee802_1d_to_ac[tid & 7];
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003216
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003217 skb_set_mac_header(skb, 0);
3218 skb_set_network_header(skb, 0);
3219 skb_set_transport_header(skb, 0);
3220
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003221 skb_set_queue_mapping(skb, ac);
Helmut Schaacf6bb792011-12-15 10:18:34 +01003222 skb->priority = tid;
Johannes Bergcf0277e2010-01-05 18:00:58 +01003223
Johannes Berg89afe612013-02-13 15:39:57 +01003224 skb->dev = sdata->dev;
3225
Johannes Berg3d34deb2009-06-18 17:25:11 +02003226 /*
3227 * The other path calling ieee80211_xmit is from the tasklet,
3228 * and while we can handle concurrent transmissions locking
3229 * requirements are that we do not come into tx with bhs on.
3230 */
3231 local_bh_disable();
Johannes Berg73c4e192014-11-09 18:50:09 +02003232 IEEE80211_SKB_CB(skb)->band = band;
3233 ieee80211_xmit(sdata, skb);
Johannes Berg3d34deb2009-06-18 17:25:11 +02003234 local_bh_enable();
Johannes Berg3b8d81e02009-06-17 17:43:56 +02003235}