blob: ec8f534673745f61eae34cb7fa922498d7693874 [file] [log] [blame]
Johannes Berge2ebc742007-07-27 15:43:22 +02001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
5 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 *
12 * Transmit and frame generation functions.
13 */
14
15#include <linux/kernel.h>
16#include <linux/slab.h>
17#include <linux/skbuff.h>
18#include <linux/etherdevice.h>
19#include <linux/bitmap.h>
Johannes Bergd4e46a32007-09-14 11:10:24 -040020#include <linux/rcupdate.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040021#include <linux/export.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070022#include <net/net_namespace.h>
Johannes Berge2ebc742007-07-27 15:43:22 +020023#include <net/ieee80211_radiotap.h>
24#include <net/cfg80211.h>
25#include <net/mac80211.h>
26#include <asm/unaligned.h>
27
28#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020029#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040030#include "led.h"
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +010031#include "mesh.h"
Johannes Berge2ebc742007-07-27 15:43:22 +020032#include "wep.h"
33#include "wpa.h"
34#include "wme.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040035#include "rate.h"
Johannes Berge2ebc742007-07-27 15:43:22 +020036
Johannes Berge2ebc742007-07-27 15:43:22 +020037/* misc utils */
38
Johannes Berg252b86c2011-11-16 15:28:55 +010039static __le16 ieee80211_duration(struct ieee80211_tx_data *tx,
40 struct sk_buff *skb, int group_addr,
Johannes Berg03f93c32008-06-25 14:36:27 +030041 int next_frag_len)
Johannes Berge2ebc742007-07-27 15:43:22 +020042{
43 int rate, mrate, erp, dur, i;
Johannes Berg2e92e6f2008-05-15 12:55:27 +020044 struct ieee80211_rate *txrate;
Johannes Berge2ebc742007-07-27 15:43:22 +020045 struct ieee80211_local *local = tx->local;
Johannes Berg8318d782008-01-24 19:38:38 +010046 struct ieee80211_supported_band *sband;
Harvey Harrison358c8d92008-07-15 18:44:13 -070047 struct ieee80211_hdr *hdr;
Johannes Berg252b86c2011-11-16 15:28:55 +010048 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +020049
50 /* assume HW handles this */
51 if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS)
52 return 0;
53
54 /* uh huh? */
55 if (WARN_ON_ONCE(info->control.rates[0].idx < 0))
56 return 0;
Johannes Berge2ebc742007-07-27 15:43:22 +020057
Johannes Berg2e92e6f2008-05-15 12:55:27 +020058 sband = local->hw.wiphy->bands[tx->channel->band];
Johannes Berge6a98542008-10-21 12:40:02 +020059 txrate = &sband->bitrates[info->control.rates[0].idx];
Johannes Berg8318d782008-01-24 19:38:38 +010060
Johannes Berge6a98542008-10-21 12:40:02 +020061 erp = txrate->flags & IEEE80211_RATE_ERP_G;
Johannes Berge2ebc742007-07-27 15:43:22 +020062
63 /*
64 * data and mgmt (except PS Poll):
65 * - during CFP: 32768
66 * - during contention period:
67 * if addr1 is group address: 0
68 * if more fragments = 0 and addr1 is individual address: time to
69 * transmit one ACK plus SIFS
70 * if more fragments = 1 and addr1 is individual address: time to
71 * transmit next fragment plus 2 x ACK plus 3 x SIFS
72 *
73 * IEEE 802.11, 9.6:
74 * - control response frame (CTS or ACK) shall be transmitted using the
75 * same rate as the immediately previous frame in the frame exchange
76 * sequence, if this rate belongs to the PHY mandatory rates, or else
77 * at the highest possible rate belonging to the PHY rates in the
78 * BSSBasicRateSet
79 */
Johannes Berg252b86c2011-11-16 15:28:55 +010080 hdr = (struct ieee80211_hdr *)skb->data;
Harvey Harrison358c8d92008-07-15 18:44:13 -070081 if (ieee80211_is_ctl(hdr->frame_control)) {
Johannes Berge2ebc742007-07-27 15:43:22 +020082 /* TODO: These control frames are not currently sent by
Johannes Bergccd7b362008-09-11 00:01:56 +020083 * mac80211, but should they be implemented, this function
Johannes Berge2ebc742007-07-27 15:43:22 +020084 * needs to be updated to support duration field calculation.
85 *
86 * RTS: time needed to transmit pending data/mgmt frame plus
87 * one CTS frame plus one ACK frame plus 3 x SIFS
88 * CTS: duration of immediately previous RTS minus time
89 * required to transmit CTS and its SIFS
90 * ACK: 0 if immediately previous directed data/mgmt had
91 * more=0, with more=1 duration in ACK frame is duration
92 * from previous frame minus time needed to transmit ACK
93 * and its SIFS
94 * PS Poll: BIT(15) | BIT(14) | aid
95 */
96 return 0;
97 }
98
99 /* data/mgmt */
100 if (0 /* FIX: data/mgmt during CFP */)
Johannes Berg03f93c32008-06-25 14:36:27 +0300101 return cpu_to_le16(32768);
Johannes Berge2ebc742007-07-27 15:43:22 +0200102
103 if (group_addr) /* Group address as the destination - no ACK */
104 return 0;
105
106 /* Individual destination address:
107 * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
108 * CTS and ACK frames shall be transmitted using the highest rate in
109 * basic rate set that is less than or equal to the rate of the
110 * immediately previous frame and that is using the same modulation
111 * (CCK or OFDM). If no basic rate set matches with these requirements,
112 * the highest mandatory rate of the PHY that is less than or equal to
113 * the rate of the previous frame is used.
114 * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
115 */
116 rate = -1;
Johannes Berg8318d782008-01-24 19:38:38 +0100117 /* use lowest available if everything fails */
118 mrate = sband->bitrates[0].bitrate;
119 for (i = 0; i < sband->n_bitrates; i++) {
120 struct ieee80211_rate *r = &sband->bitrates[i];
121
122 if (r->bitrate > txrate->bitrate)
Johannes Berge2ebc742007-07-27 15:43:22 +0200123 break;
124
Johannes Bergbda39332008-10-11 01:51:51 +0200125 if (tx->sdata->vif.bss_conf.basic_rates & BIT(i))
Johannes Berg8318d782008-01-24 19:38:38 +0100126 rate = r->bitrate;
Johannes Berge2ebc742007-07-27 15:43:22 +0200127
Johannes Berg8318d782008-01-24 19:38:38 +0100128 switch (sband->band) {
129 case IEEE80211_BAND_2GHZ: {
130 u32 flag;
131 if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
132 flag = IEEE80211_RATE_MANDATORY_G;
133 else
134 flag = IEEE80211_RATE_MANDATORY_B;
135 if (r->flags & flag)
136 mrate = r->bitrate;
137 break;
138 }
139 case IEEE80211_BAND_5GHZ:
140 if (r->flags & IEEE80211_RATE_MANDATORY_A)
141 mrate = r->bitrate;
142 break;
143 case IEEE80211_NUM_BANDS:
144 WARN_ON(1);
145 break;
146 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200147 }
148 if (rate == -1) {
149 /* No matching basic rate found; use highest suitable mandatory
150 * PHY rate */
151 rate = mrate;
152 }
153
Simon Wunderlich6674f212011-11-21 21:34:30 +0100154 /* Don't calculate ACKs for QoS Frames with NoAck Policy set */
155 if (ieee80211_is_data_qos(hdr->frame_control) &&
Claudio Pisac26a0e12012-05-28 13:06:25 +0100156 *(ieee80211_get_qos_ctl(hdr)) & IEEE80211_QOS_CTL_ACK_POLICY_NOACK)
Simon Wunderlich6674f212011-11-21 21:34:30 +0100157 dur = 0;
158 else
159 /* Time needed to transmit ACK
160 * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
161 * to closest integer */
Michal Kazior4ee73f32012-04-11 08:47:56 +0200162 dur = ieee80211_frame_duration(sband->band, 10, rate, erp,
Johannes Bergbda39332008-10-11 01:51:51 +0200163 tx->sdata->vif.bss_conf.use_short_preamble);
Johannes Berge2ebc742007-07-27 15:43:22 +0200164
165 if (next_frag_len) {
166 /* Frame is fragmented: duration increases with time needed to
167 * transmit next fragment plus ACK and 2 x SIFS. */
168 dur *= 2; /* ACK + SIFS */
169 /* next fragment */
Michal Kazior4ee73f32012-04-11 08:47:56 +0200170 dur += ieee80211_frame_duration(sband->band, next_frag_len,
Johannes Berg8318d782008-01-24 19:38:38 +0100171 txrate->bitrate, erp,
Johannes Bergbda39332008-10-11 01:51:51 +0200172 tx->sdata->vif.bss_conf.use_short_preamble);
Johannes Berge2ebc742007-07-27 15:43:22 +0200173 }
174
Johannes Berg03f93c32008-06-25 14:36:27 +0300175 return cpu_to_le16(dur);
Johannes Berge2ebc742007-07-27 15:43:22 +0200176}
177
Johannes Berge2ebc742007-07-27 15:43:22 +0200178/* tx handlers */
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200179static ieee80211_tx_result debug_noinline
180ieee80211_tx_h_dynamic_ps(struct ieee80211_tx_data *tx)
181{
182 struct ieee80211_local *local = tx->local;
Kalle Valo0c742112010-01-12 10:42:53 +0200183 struct ieee80211_if_managed *ifmgd;
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200184
185 /* driver doesn't support power save */
186 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
187 return TX_CONTINUE;
188
189 /* hardware does dynamic power save */
190 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
191 return TX_CONTINUE;
192
193 /* dynamic power save disabled */
194 if (local->hw.conf.dynamic_ps_timeout <= 0)
195 return TX_CONTINUE;
196
197 /* we are scanning, don't enable power save */
198 if (local->scanning)
199 return TX_CONTINUE;
200
201 if (!local->ps_sdata)
202 return TX_CONTINUE;
203
204 /* No point if we're going to suspend */
205 if (local->quiescing)
206 return TX_CONTINUE;
207
Kalle Valo0c742112010-01-12 10:42:53 +0200208 /* dynamic ps is supported only in managed mode */
209 if (tx->sdata->vif.type != NL80211_IFTYPE_STATION)
210 return TX_CONTINUE;
211
212 ifmgd = &tx->sdata->u.mgd;
213
214 /*
215 * Don't wakeup from power save if u-apsd is enabled, voip ac has
216 * u-apsd enabled and the frame is in voip class. This effectively
217 * means that even if all access categories have u-apsd enabled, in
218 * practise u-apsd is only used with the voip ac. This is a
219 * workaround for the case when received voip class packets do not
220 * have correct qos tag for some reason, due the network or the
221 * peer application.
222 *
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200223 * Note: ifmgd->uapsd_queues access is racy here. If the value is
Kalle Valo0c742112010-01-12 10:42:53 +0200224 * changed via debugfs, user needs to reassociate manually to have
225 * everything in sync.
226 */
Johannes Berg4875d30d2012-03-27 14:18:37 +0200227 if ((ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED) &&
228 (ifmgd->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO) &&
229 skb_get_queue_mapping(tx->skb) == IEEE80211_AC_VO)
Kalle Valo0c742112010-01-12 10:42:53 +0200230 return TX_CONTINUE;
231
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200232 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
233 ieee80211_stop_queues_by_reason(&local->hw,
234 IEEE80211_QUEUE_STOP_REASON_PS);
Vivek Natarajandb285692011-02-18 17:18:03 +0530235 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200236 ieee80211_queue_work(&local->hw,
237 &local->dynamic_ps_disable_work);
238 }
239
Luciano Coelho5db1c072011-05-03 21:40:08 +0300240 /* Don't restart the timer if we're not disassociated */
241 if (!ifmgd->associated)
242 return TX_CONTINUE;
243
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200244 mod_timer(&local->dynamic_ps_timer, jiffies +
245 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
246
247 return TX_CONTINUE;
248}
Johannes Berge2ebc742007-07-27 15:43:22 +0200249
Johannes Bergd9e8a702008-06-30 15:10:44 +0200250static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100251ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200252{
Harvey Harrison358c8d92008-07-15 18:44:13 -0700253
Johannes Berge039fa42008-05-15 12:55:29 +0200254 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200255 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200256 bool assoc = false;
Johannes Berge2ebc742007-07-27 15:43:22 +0200257
Johannes Berge039fa42008-05-15 12:55:29 +0200258 if (unlikely(info->flags & IEEE80211_TX_CTL_INJECTED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100259 return TX_CONTINUE;
Johannes Berg58d41852007-09-26 17:53:18 +0200260
Ben Greearb23b0252011-02-04 11:54:17 -0800261 if (unlikely(test_bit(SCAN_SW_SCANNING, &tx->local->scanning)) &&
262 test_bit(SDATA_STATE_OFFCHANNEL, &tx->sdata->state) &&
Kalle Valoa9a6fff2009-03-18 14:06:44 +0200263 !ieee80211_is_probe_req(hdr->frame_control) &&
264 !ieee80211_is_nullfunc(hdr->frame_control))
265 /*
266 * When software scanning only nullfunc frames (to notify
267 * the sleep state to the AP) and probe requests (for the
268 * active scan) are allowed, all other frames should not be
269 * sent and we should not get here, but if we do
270 * nonetheless, drop them to avoid sending them
271 * off-channel. See the link below and
272 * ieee80211_start_scan() for more.
273 *
274 * http://article.gmane.org/gmane.linux.kernel.wireless.general/30089
275 */
Johannes Berg9ae54c82008-01-31 19:48:20 +0100276 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200277
Bill Jordan1be7fe82010-10-01 11:20:41 -0400278 if (tx->sdata->vif.type == NL80211_IFTYPE_WDS)
279 return TX_CONTINUE;
280
Johannes Berg05c914f2008-09-11 00:01:58 +0200281 if (tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100282 return TX_CONTINUE;
283
Johannes Berg5cf121c2008-02-25 16:27:43 +0100284 if (tx->flags & IEEE80211_TX_PS_BUFFERED)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100285 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200286
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200287 if (tx->sta)
288 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
Johannes Berge2ebc742007-07-27 15:43:22 +0200289
Johannes Berg5cf121c2008-02-25 16:27:43 +0100290 if (likely(tx->flags & IEEE80211_TX_UNICAST)) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200291 if (unlikely(!assoc &&
Harvey Harrison358c8d92008-07-15 18:44:13 -0700292 ieee80211_is_data(hdr->frame_control))) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200293#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200294 sdata_info(tx->sdata,
295 "dropped data frame to not associated station %pM\n",
296 hdr->addr1);
297#endif
Johannes Berge2ebc742007-07-27 15:43:22 +0200298 I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100299 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200300 }
Johannes Berg29623892011-12-14 12:20:31 +0100301 } else if (unlikely(tx->sdata->vif.type == NL80211_IFTYPE_AP &&
302 ieee80211_is_data(hdr->frame_control) &&
Felix Fietkau030ef8f2012-04-23 19:49:02 +0200303 !atomic_read(&tx->sdata->u.ap.num_mcast_sta))) {
Johannes Berg29623892011-12-14 12:20:31 +0100304 /*
305 * No associated STAs - no need to send multicast
306 * frames.
307 */
308 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200309 }
310
Johannes Berg9ae54c82008-01-31 19:48:20 +0100311 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200312}
313
Johannes Berge2ebc742007-07-27 15:43:22 +0200314/* This function is called whenever the AP is about to exceed the maximum limit
315 * of buffered frames for power saving STAs. This situation should not really
316 * happen often during normal operation, so dropping the oldest buffered packet
317 * from each queue should be OK to make some room for new frames. */
318static void purge_old_ps_buffers(struct ieee80211_local *local)
319{
320 int total = 0, purged = 0;
321 struct sk_buff *skb;
322 struct ieee80211_sub_if_data *sdata;
323 struct sta_info *sta;
324
Johannes Berg79010422007-09-18 17:29:21 -0400325 /*
326 * virtual interfaces are protected by RCU
327 */
328 rcu_read_lock();
329
330 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200331 struct ieee80211_if_ap *ap;
Johannes Berg05c914f2008-09-11 00:01:58 +0200332 if (sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berge2ebc742007-07-27 15:43:22 +0200333 continue;
334 ap = &sdata->u.ap;
335 skb = skb_dequeue(&ap->ps_bc_buf);
336 if (skb) {
337 purged++;
338 dev_kfree_skb(skb);
339 }
340 total += skb_queue_len(&ap->ps_bc_buf);
341 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200342
Johannes Berg948d8872011-09-29 16:04:29 +0200343 /*
344 * Drop one frame from each station from the lowest-priority
345 * AC that has frames at all.
346 */
Johannes Bergd0709a62008-02-25 16:27:46 +0100347 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Johannes Berg948d8872011-09-29 16:04:29 +0200348 int ac;
349
350 for (ac = IEEE80211_AC_BK; ac >= IEEE80211_AC_VO; ac--) {
351 skb = skb_dequeue(&sta->ps_tx_buf[ac]);
352 total += skb_queue_len(&sta->ps_tx_buf[ac]);
353 if (skb) {
354 purged++;
355 dev_kfree_skb(skb);
356 break;
357 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200358 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200359 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100360
361 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +0200362
363 local->total_ps_buffered = total;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200364 ps_dbg_hw(&local->hw, "PS buffers full - purged %d frames\n", purged);
Johannes Berge2ebc742007-07-27 15:43:22 +0200365}
366
Johannes Berg9ae54c82008-01-31 19:48:20 +0100367static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100368ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200369{
Johannes Berge039fa42008-05-15 12:55:29 +0200370 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Harvey Harrison358c8d92008-07-15 18:44:13 -0700371 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200372
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100373 /*
374 * broadcast/multicast frame
375 *
376 * If any of the associated stations is in power save mode,
377 * the frame is buffered to be sent after DTIM beacon frame.
378 * This is done either by the hardware or us.
379 */
380
Johannes Berg3e122be2008-07-09 14:40:34 +0200381 /* powersaving STAs only in AP/VLAN mode */
382 if (!tx->sdata->bss)
383 return TX_CONTINUE;
384
385 /* no buffering for ordered frames */
Harvey Harrison358c8d92008-07-15 18:44:13 -0700386 if (ieee80211_has_order(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100387 return TX_CONTINUE;
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100388
389 /* no stations in PS mode */
390 if (!atomic_read(&tx->sdata->bss->num_sta_ps))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100391 return TX_CONTINUE;
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100392
Johannes Berg62b517c2009-10-29 12:19:21 +0100393 info->flags |= IEEE80211_TX_CTL_SEND_AFTER_DTIM;
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200394 if (tx->local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
395 info->hw_queue = tx->sdata->vif.cab_queue;
Johannes Berg62b12082009-08-10 16:04:15 +0200396
Johannes Berg62b517c2009-10-29 12:19:21 +0100397 /* device releases frame after DTIM beacon */
398 if (!(tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING))
Johannes Berg62b12082009-08-10 16:04:15 +0200399 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200400
Johannes Berg62b12082009-08-10 16:04:15 +0200401 /* buffered in mac80211 */
402 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
403 purge_old_ps_buffers(tx->local);
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100404
Johannes Berg62b12082009-08-10 16:04:15 +0200405 if (skb_queue_len(&tx->sdata->bss->ps_bc_buf) >= AP_MAX_BC_BUFFER) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200406 ps_dbg(tx->sdata,
407 "BC TX buffer full - dropping the oldest frame\n");
Johannes Berg62b12082009-08-10 16:04:15 +0200408 dev_kfree_skb(skb_dequeue(&tx->sdata->bss->ps_bc_buf));
409 } else
410 tx->local->total_ps_buffered++;
411
412 skb_queue_tail(&tx->sdata->bss->ps_bc_buf, tx->skb);
413
414 return TX_QUEUED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200415}
416
Jouni Malinenfb733332009-01-08 13:32:00 +0200417static int ieee80211_use_mfp(__le16 fc, struct sta_info *sta,
418 struct sk_buff *skb)
419{
420 if (!ieee80211_is_mgmt(fc))
421 return 0;
422
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200423 if (sta == NULL || !test_sta_flag(sta, WLAN_STA_MFP))
Jouni Malinenfb733332009-01-08 13:32:00 +0200424 return 0;
425
426 if (!ieee80211_is_robust_mgmt_frame((struct ieee80211_hdr *)
427 skb->data))
428 return 0;
429
430 return 1;
431}
432
Johannes Berg9ae54c82008-01-31 19:48:20 +0100433static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100434ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200435{
436 struct sta_info *sta = tx->sta;
Johannes Berge039fa42008-05-15 12:55:29 +0200437 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Harvey Harrison358c8d92008-07-15 18:44:13 -0700438 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300439 struct ieee80211_local *local = tx->local;
Johannes Berge2ebc742007-07-27 15:43:22 +0200440
Johannes Berg02f2f1a2012-02-27 12:18:30 +0100441 if (unlikely(!sta))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100442 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200443
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200444 if (unlikely((test_sta_flag(sta, WLAN_STA_PS_STA) ||
445 test_sta_flag(sta, WLAN_STA_PS_DRIVER)) &&
Johannes Berg02f2f1a2012-02-27 12:18:30 +0100446 !(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER))) {
Johannes Berg948d8872011-09-29 16:04:29 +0200447 int ac = skb_get_queue_mapping(tx->skb);
448
Johannes Berg02f2f1a2012-02-27 12:18:30 +0100449 /* only deauth, disassoc and action are bufferable MMPDUs */
450 if (ieee80211_is_mgmt(hdr->frame_control) &&
451 !ieee80211_is_deauth(hdr->frame_control) &&
452 !ieee80211_is_disassoc(hdr->frame_control) &&
453 !ieee80211_is_action(hdr->frame_control)) {
454 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
455 return TX_CONTINUE;
456 }
457
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200458 ps_dbg(sta->sdata, "STA %pM aid %d: PS buffer for AC %d\n",
459 sta->sta.addr, sta->sta.aid, ac);
Johannes Berge2ebc742007-07-27 15:43:22 +0200460 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
461 purge_old_ps_buffers(tx->local);
Johannes Berg948d8872011-09-29 16:04:29 +0200462 if (skb_queue_len(&sta->ps_tx_buf[ac]) >= STA_MAX_TX_BUFFER) {
463 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf[ac]);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200464 ps_dbg(tx->sdata,
465 "STA %pM TX buffer for AC %d full - dropping oldest frame\n",
466 sta->sta.addr, ac);
Johannes Berge2ebc742007-07-27 15:43:22 +0200467 dev_kfree_skb(old);
468 } else
469 tx->local->total_ps_buffered++;
Johannes Berg004c8722008-02-20 11:21:35 +0100470
Johannes Berge039fa42008-05-15 12:55:29 +0200471 info->control.jiffies = jiffies;
Johannes Berg5061b0c2009-07-14 00:33:34 +0200472 info->control.vif = &tx->sdata->vif;
Johannes Berg8f77f382009-06-07 21:58:37 +0200473 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
Johannes Berg948d8872011-09-29 16:04:29 +0200474 skb_queue_tail(&sta->ps_tx_buf[ac], tx->skb);
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300475
476 if (!timer_pending(&local->sta_cleanup))
477 mod_timer(&local->sta_cleanup,
478 round_jiffies(jiffies +
479 STA_INFO_CLEANUP_INTERVAL));
480
Johannes Bergc868cb352011-09-29 16:04:27 +0200481 /*
482 * We queued up some frames, so the TIM bit might
483 * need to be set, recalculate it.
484 */
485 sta_info_recalc_tim(sta);
486
Johannes Berg9ae54c82008-01-31 19:48:20 +0100487 return TX_QUEUED;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200488 } else if (unlikely(test_sta_flag(sta, WLAN_STA_PS_STA))) {
489 ps_dbg(tx->sdata,
490 "STA %pM in PS mode, but polling/in SP -> send frame\n",
491 sta->sta.addr);
Johannes Berge2ebc742007-07-27 15:43:22 +0200492 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200493
Johannes Berg9ae54c82008-01-31 19:48:20 +0100494 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200495}
496
Johannes Bergd9e8a702008-06-30 15:10:44 +0200497static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100498ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200499{
Johannes Berg5cf121c2008-02-25 16:27:43 +0100500 if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100501 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200502
Johannes Berg5cf121c2008-02-25 16:27:43 +0100503 if (tx->flags & IEEE80211_TX_UNICAST)
Johannes Berge2ebc742007-07-27 15:43:22 +0200504 return ieee80211_tx_h_unicast_ps_buf(tx);
505 else
506 return ieee80211_tx_h_multicast_ps_buf(tx);
507}
508
Johannes Bergd9e8a702008-06-30 15:10:44 +0200509static ieee80211_tx_result debug_noinline
Johannes Berga621fa42010-08-27 14:26:54 +0300510ieee80211_tx_h_check_control_port_protocol(struct ieee80211_tx_data *tx)
511{
512 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
513
514 if (unlikely(tx->sdata->control_port_protocol == tx->skb->protocol &&
515 tx->sdata->control_port_no_encrypt))
516 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
517
518 return TX_CONTINUE;
519}
520
521static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100522ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200523{
John W. Linvilled3feaf52009-04-24 15:35:42 -0400524 struct ieee80211_key *key = NULL;
Johannes Berge039fa42008-05-15 12:55:29 +0200525 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Harvey Harrison358c8d92008-07-15 18:44:13 -0700526 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400527
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200528 if (unlikely(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT))
Johannes Berge2ebc742007-07-27 15:43:22 +0200529 tx->key = NULL;
Johannes Berge31b8212010-10-05 19:39:30 +0200530 else if (tx->sta && (key = rcu_dereference(tx->sta->ptk)))
Johannes Bergd4e46a32007-09-14 11:10:24 -0400531 tx->key = key;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200532 else if (ieee80211_is_mgmt(hdr->frame_control) &&
Jouni Malinenecbcd322010-03-29 23:35:23 -0700533 is_multicast_ether_addr(hdr->addr1) &&
534 ieee80211_is_robust_mgmt_frame(hdr) &&
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200535 (key = rcu_dereference(tx->sdata->default_mgmt_key)))
536 tx->key = key;
Johannes Bergf7e01042010-12-09 19:49:02 +0100537 else if (is_multicast_ether_addr(hdr->addr1) &&
538 (key = rcu_dereference(tx->sdata->default_multicast_key)))
539 tx->key = key;
540 else if (!is_multicast_ether_addr(hdr->addr1) &&
541 (key = rcu_dereference(tx->sdata->default_unicast_key)))
Johannes Bergd4e46a32007-09-14 11:10:24 -0400542 tx->key = key;
Johannes Berge2ebc742007-07-27 15:43:22 +0200543 else if (tx->sdata->drop_unencrypted &&
Johannes Berga621fa42010-08-27 14:26:54 +0300544 (tx->skb->protocol != tx->sdata->control_port_protocol) &&
Jouni Malinene0463f52009-01-19 16:52:00 +0200545 !(info->flags & IEEE80211_TX_CTL_INJECTED) &&
546 (!ieee80211_is_robust_mgmt_frame(hdr) ||
547 (ieee80211_is_action(hdr->frame_control) &&
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200548 tx->sta && test_sta_flag(tx->sta, WLAN_STA_MFP)))) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200549 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100550 return TX_DROP;
Johannes Berg176e4f82007-12-18 15:27:47 +0100551 } else
Johannes Berge2ebc742007-07-27 15:43:22 +0200552 tx->key = NULL;
553
554 if (tx->key) {
Johannes Berg813d7662010-01-17 01:47:58 +0100555 bool skip_hw = false;
556
Johannes Berge2ebc742007-07-27 15:43:22 +0200557 tx->key->tx_rx_count++;
Johannes Berg011bfcc2007-09-17 01:29:25 -0400558 /* TODO: add threshold stuff again */
Johannes Berg176e4f82007-12-18 15:27:47 +0100559
Johannes Berg97359d12010-08-10 09:46:38 +0200560 switch (tx->key->conf.cipher) {
561 case WLAN_CIPHER_SUITE_WEP40:
562 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berg97359d12010-08-10 09:46:38 +0200563 case WLAN_CIPHER_SUITE_TKIP:
Harvey Harrison358c8d92008-07-15 18:44:13 -0700564 if (!ieee80211_is_data_present(hdr->frame_control))
Johannes Berg176e4f82007-12-18 15:27:47 +0100565 tx->key = NULL;
566 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200567 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinenfb733332009-01-08 13:32:00 +0200568 if (!ieee80211_is_data_present(hdr->frame_control) &&
569 !ieee80211_use_mfp(hdr->frame_control, tx->sta,
570 tx->skb))
571 tx->key = NULL;
Kalle Valo3b43a182010-01-23 20:27:14 +0200572 else
573 skip_hw = (tx->key->conf.flags &
574 IEEE80211_KEY_FLAG_SW_MGMT) &&
575 ieee80211_is_mgmt(hdr->frame_control);
Jouni Malinenfb733332009-01-08 13:32:00 +0200576 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200577 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200578 if (!ieee80211_is_mgmt(hdr->frame_control))
579 tx->key = NULL;
580 break;
Johannes Berg176e4f82007-12-18 15:27:47 +0100581 }
Johannes Berg813d7662010-01-17 01:47:58 +0100582
Johannes Berg95acac62011-07-12 12:30:59 +0200583 if (unlikely(tx->key && tx->key->flags & KEY_FLAG_TAINTED))
584 return TX_DROP;
585
Johannes Bergf12553e2010-01-22 22:07:59 +0100586 if (!skip_hw && tx->key &&
Johannes Berg382b1652010-01-25 11:36:16 +0100587 tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
Johannes Berg813d7662010-01-17 01:47:58 +0100588 info->control.hw_key = &tx->key->conf;
Johannes Berge2ebc742007-07-27 15:43:22 +0200589 }
590
Johannes Berg9ae54c82008-01-31 19:48:20 +0100591 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200592}
593
Johannes Bergd9e8a702008-06-30 15:10:44 +0200594static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100595ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200596{
Johannes Berge039fa42008-05-15 12:55:29 +0200597 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200598 struct ieee80211_hdr *hdr = (void *)tx->skb->data;
599 struct ieee80211_supported_band *sband;
600 struct ieee80211_rate *rate;
Shanyu Zhaoa2c40242010-04-27 11:15:12 -0700601 int i;
602 u32 len;
Johannes Berge6a98542008-10-21 12:40:02 +0200603 bool inval = false, rts = false, short_preamble = false;
604 struct ieee80211_tx_rate_control txrc;
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200605 bool assoc = false;
Johannes Berge6a98542008-10-21 12:40:02 +0200606
607 memset(&txrc, 0, sizeof(txrc));
Johannes Berg8318d782008-01-24 19:38:38 +0100608
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200609 sband = tx->local->hw.wiphy->bands[tx->channel->band];
Johannes Berge2ebc742007-07-27 15:43:22 +0200610
Shanyu Zhaoa2c40242010-04-27 11:15:12 -0700611 len = min_t(u32, tx->skb->len + FCS_LEN,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200612 tx->local->hw.wiphy->frag_threshold);
Johannes Berg58d41852007-09-26 17:53:18 +0200613
Johannes Berge6a98542008-10-21 12:40:02 +0200614 /* set up the tx rate control struct we give the RC algo */
Johannes Berg005e4722012-02-26 11:24:35 +0100615 txrc.hw = &tx->local->hw;
Johannes Berge6a98542008-10-21 12:40:02 +0200616 txrc.sband = sband;
617 txrc.bss_conf = &tx->sdata->vif.bss_conf;
618 txrc.skb = tx->skb;
619 txrc.reported_rate.idx = -1;
Jouni Malinen37eb0b12010-01-06 13:09:08 +0200620 txrc.rate_idx_mask = tx->sdata->rc_rateidx_mask[tx->channel->band];
621 if (txrc.rate_idx_mask == (1 << sband->n_bitrates) - 1)
622 txrc.max_rate_idx = -1;
623 else
624 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
Simon Wunderlich19468412012-01-28 17:25:33 +0100625 memcpy(txrc.rate_idx_mcs_mask,
626 tx->sdata->rc_rateidx_mcs_mask[tx->channel->band],
627 sizeof(txrc.rate_idx_mcs_mask));
Felix Fietkau8f0729b2010-11-11 15:07:23 +0100628 txrc.bss = (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -0800629 tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT ||
Felix Fietkau8f0729b2010-11-11 15:07:23 +0100630 tx->sdata->vif.type == NL80211_IFTYPE_ADHOC);
Johannes Berg58d41852007-09-26 17:53:18 +0200631
Johannes Berge6a98542008-10-21 12:40:02 +0200632 /* set up RTS protection if desired */
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200633 if (len > tx->local->hw.wiphy->rts_threshold) {
Johannes Berge6a98542008-10-21 12:40:02 +0200634 txrc.rts = rts = true;
Johannes Berge2ebc742007-07-27 15:43:22 +0200635 }
Johannes Berge6a98542008-10-21 12:40:02 +0200636
637 /*
638 * Use short preamble if the BSS can handle it, but not for
639 * management frames unless we know the receiver can handle
640 * that -- the management frame might be to a station that
641 * just wants a probe response.
642 */
643 if (tx->sdata->vif.bss_conf.use_short_preamble &&
644 (ieee80211_is_data(hdr->frame_control) ||
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200645 (tx->sta && test_sta_flag(tx->sta, WLAN_STA_SHORT_PREAMBLE))))
Johannes Berge6a98542008-10-21 12:40:02 +0200646 txrc.short_preamble = short_preamble = true;
647
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200648 if (tx->sta)
649 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
Johannes Berge6a98542008-10-21 12:40:02 +0200650
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700651 /*
652 * Lets not bother rate control if we're associated and cannot
653 * talk to the sta. This should not happen.
654 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200655 if (WARN(test_bit(SCAN_SW_SCANNING, &tx->local->scanning) && assoc &&
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700656 !rate_usable_index_exists(sband, &tx->sta->sta),
657 "%s: Dropped data frame as no usable bitrate found while "
658 "scanning and associated. Target station: "
659 "%pM on %d GHz band\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100660 tx->sdata->name, hdr->addr1,
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700661 tx->channel->band ? 5 : 2))
662 return TX_DROP;
663
664 /*
665 * If we're associated with the sta at this point we know we can at
666 * least send the frame at the lowest bit rate.
667 */
Johannes Berge6a98542008-10-21 12:40:02 +0200668 rate_control_get_rate(tx->sdata, tx->sta, &txrc);
669
670 if (unlikely(info->control.rates[0].idx < 0))
671 return TX_DROP;
672
Helmut Schaac1ce5a72010-12-01 16:34:45 +0100673 if (txrc.reported_rate.idx < 0) {
Johannes Berge6a98542008-10-21 12:40:02 +0200674 txrc.reported_rate = info->control.rates[0];
Helmut Schaac1ce5a72010-12-01 16:34:45 +0100675 if (tx->sta && ieee80211_is_data(hdr->frame_control))
676 tx->sta->last_tx_rate = txrc.reported_rate;
677 } else if (tx->sta)
Johannes Berge6a98542008-10-21 12:40:02 +0200678 tx->sta->last_tx_rate = txrc.reported_rate;
679
680 if (unlikely(!info->control.rates[0].count))
681 info->control.rates[0].count = 1;
682
Gábor Stefanik99551512009-04-23 19:36:14 +0200683 if (WARN_ON_ONCE((info->control.rates[0].count > 1) &&
684 (info->flags & IEEE80211_TX_CTL_NO_ACK)))
685 info->control.rates[0].count = 1;
686
Johannes Berge6a98542008-10-21 12:40:02 +0200687 if (is_multicast_ether_addr(hdr->addr1)) {
688 /*
689 * XXX: verify the rate is in the basic rateset
690 */
691 return TX_CONTINUE;
692 }
693
694 /*
695 * set up the RTS/CTS rate as the fastest basic rate
696 * that is not faster than the data rate
697 *
698 * XXX: Should this check all retry rates?
699 */
700 if (!(info->control.rates[0].flags & IEEE80211_TX_RC_MCS)) {
701 s8 baserate = 0;
702
703 rate = &sband->bitrates[info->control.rates[0].idx];
704
705 for (i = 0; i < sband->n_bitrates; i++) {
706 /* must be a basic rate */
707 if (!(tx->sdata->vif.bss_conf.basic_rates & BIT(i)))
708 continue;
709 /* must not be faster than the data rate */
710 if (sband->bitrates[i].bitrate > rate->bitrate)
711 continue;
712 /* maximum */
713 if (sband->bitrates[baserate].bitrate <
714 sband->bitrates[i].bitrate)
715 baserate = i;
716 }
717
718 info->control.rts_cts_rate_idx = baserate;
719 }
720
721 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
722 /*
723 * make sure there's no valid rate following
724 * an invalid one, just in case drivers don't
725 * take the API seriously to stop at -1.
726 */
727 if (inval) {
728 info->control.rates[i].idx = -1;
729 continue;
730 }
731 if (info->control.rates[i].idx < 0) {
732 inval = true;
733 continue;
734 }
735
736 /*
737 * For now assume MCS is already set up correctly, this
738 * needs to be fixed.
739 */
740 if (info->control.rates[i].flags & IEEE80211_TX_RC_MCS) {
741 WARN_ON(info->control.rates[i].idx > 76);
742 continue;
743 }
744
745 /* set up RTS protection if desired */
746 if (rts)
747 info->control.rates[i].flags |=
748 IEEE80211_TX_RC_USE_RTS_CTS;
749
750 /* RC is busted */
Sujith075cbc92008-10-23 12:14:02 +0530751 if (WARN_ON_ONCE(info->control.rates[i].idx >=
752 sband->n_bitrates)) {
Johannes Berge6a98542008-10-21 12:40:02 +0200753 info->control.rates[i].idx = -1;
754 continue;
755 }
756
757 rate = &sband->bitrates[info->control.rates[i].idx];
758
759 /* set up short preamble */
760 if (short_preamble &&
761 rate->flags & IEEE80211_RATE_SHORT_PREAMBLE)
762 info->control.rates[i].flags |=
763 IEEE80211_TX_RC_USE_SHORT_PREAMBLE;
764
765 /* set up G protection */
766 if (!rts && tx->sdata->vif.bss_conf.use_cts_prot &&
767 rate->flags & IEEE80211_RATE_ERP_G)
768 info->control.rates[i].flags |=
769 IEEE80211_TX_RC_USE_CTS_PROTECT;
770 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200771
Johannes Berg9ae54c82008-01-31 19:48:20 +0100772 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200773}
774
Johannes Bergd9e8a702008-06-30 15:10:44 +0200775static ieee80211_tx_result debug_noinline
Johannes Bergf591fa52008-07-10 11:21:26 +0200776ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
777{
778 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
779 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
780 u16 *seq;
781 u8 *qc;
782 int tid;
783
Johannes Berg25d834e2008-09-12 22:52:47 +0200784 /*
785 * Packet injection may want to control the sequence
786 * number, if we have no matching interface then we
787 * neither assign one ourselves nor ask the driver to.
788 */
Johannes Berg5061b0c2009-07-14 00:33:34 +0200789 if (unlikely(info->control.vif->type == NL80211_IFTYPE_MONITOR))
Johannes Berg25d834e2008-09-12 22:52:47 +0200790 return TX_CONTINUE;
791
Johannes Bergf591fa52008-07-10 11:21:26 +0200792 if (unlikely(ieee80211_is_ctl(hdr->frame_control)))
793 return TX_CONTINUE;
794
795 if (ieee80211_hdrlen(hdr->frame_control) < 24)
796 return TX_CONTINUE;
797
Johannes Berg49a59542011-09-29 16:04:41 +0200798 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
799 return TX_CONTINUE;
800
Johannes Berg94778282008-10-10 13:21:59 +0200801 /*
802 * Anything but QoS data that has a sequence number field
803 * (is long enough) gets a sequence number from the global
804 * counter.
805 */
Johannes Bergf591fa52008-07-10 11:21:26 +0200806 if (!ieee80211_is_data_qos(hdr->frame_control)) {
Johannes Berg94778282008-10-10 13:21:59 +0200807 /* driver should assign sequence number */
Johannes Bergf591fa52008-07-10 11:21:26 +0200808 info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
Johannes Berg94778282008-10-10 13:21:59 +0200809 /* for pure STA mode without beacons, we can do it */
810 hdr->seq_ctrl = cpu_to_le16(tx->sdata->sequence_number);
811 tx->sdata->sequence_number += 0x10;
Johannes Bergf591fa52008-07-10 11:21:26 +0200812 return TX_CONTINUE;
813 }
814
815 /*
816 * This should be true for injected/management frames only, for
817 * management frames we have set the IEEE80211_TX_CTL_ASSIGN_SEQ
818 * above since they are not QoS-data frames.
819 */
820 if (!tx->sta)
821 return TX_CONTINUE;
822
823 /* include per-STA, per-TID sequence counter */
824
825 qc = ieee80211_get_qos_ctl(hdr);
826 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
827 seq = &tx->sta->tid_seq[tid];
828
829 hdr->seq_ctrl = cpu_to_le16(*seq);
830
831 /* Increase the sequence number. */
832 *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ;
833
834 return TX_CONTINUE;
835}
836
Johannes Berg252b86c2011-11-16 15:28:55 +0100837static int ieee80211_fragment(struct ieee80211_tx_data *tx,
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100838 struct sk_buff *skb, int hdrlen,
839 int frag_threshold)
840{
Johannes Berg252b86c2011-11-16 15:28:55 +0100841 struct ieee80211_local *local = tx->local;
Johannes Berga1a3fce2011-11-16 15:28:56 +0100842 struct ieee80211_tx_info *info;
Johannes Berg252b86c2011-11-16 15:28:55 +0100843 struct sk_buff *tmp;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100844 int per_fragm = frag_threshold - hdrlen - FCS_LEN;
845 int pos = hdrlen + per_fragm;
846 int rem = skb->len - hdrlen - per_fragm;
847
848 if (WARN_ON(rem < 0))
849 return -EINVAL;
850
Johannes Berg252b86c2011-11-16 15:28:55 +0100851 /* first fragment was already added to queue by caller */
852
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100853 while (rem) {
854 int fraglen = per_fragm;
855
856 if (fraglen > rem)
857 fraglen = rem;
858 rem -= fraglen;
859 tmp = dev_alloc_skb(local->tx_headroom +
860 frag_threshold +
861 IEEE80211_ENCRYPT_HEADROOM +
862 IEEE80211_ENCRYPT_TAILROOM);
863 if (!tmp)
864 return -ENOMEM;
Johannes Berg252b86c2011-11-16 15:28:55 +0100865
866 __skb_queue_tail(&tx->skbs, tmp);
867
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100868 skb_reserve(tmp, local->tx_headroom +
869 IEEE80211_ENCRYPT_HEADROOM);
870 /* copy control information */
871 memcpy(tmp->cb, skb->cb, sizeof(tmp->cb));
Johannes Berga1a3fce2011-11-16 15:28:56 +0100872
873 info = IEEE80211_SKB_CB(tmp);
874 info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT |
875 IEEE80211_TX_CTL_FIRST_FRAGMENT);
876
877 if (rem)
878 info->flags |= IEEE80211_TX_CTL_MORE_FRAMES;
879
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100880 skb_copy_queue_mapping(tmp, skb);
881 tmp->priority = skb->priority;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100882 tmp->dev = skb->dev;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100883
884 /* copy header and data */
885 memcpy(skb_put(tmp, hdrlen), skb->data, hdrlen);
886 memcpy(skb_put(tmp, fraglen), skb->data + pos, fraglen);
887
888 pos += fraglen;
889 }
890
Johannes Berg252b86c2011-11-16 15:28:55 +0100891 /* adjust first fragment's length */
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100892 skb->len = hdrlen + per_fragm;
893 return 0;
894}
895
Johannes Bergf591fa52008-07-10 11:21:26 +0200896static ieee80211_tx_result debug_noinline
Johannes Berge2454942008-05-15 12:55:28 +0200897ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
898{
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100899 struct sk_buff *skb = tx->skb;
900 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
901 struct ieee80211_hdr *hdr = (void *)skb->data;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200902 int frag_threshold = tx->local->hw.wiphy->frag_threshold;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100903 int hdrlen;
904 int fragnum;
Johannes Berge2454942008-05-15 12:55:28 +0200905
Johannes Berg252b86c2011-11-16 15:28:55 +0100906 /* no matter what happens, tx->skb moves to tx->skbs */
907 __skb_queue_tail(&tx->skbs, skb);
908 tx->skb = NULL;
909
Johannes Berga26eb272011-10-07 14:01:25 +0200910 if (info->flags & IEEE80211_TX_CTL_DONTFRAG)
911 return TX_CONTINUE;
912
913 if (tx->local->ops->set_frag_threshold)
Johannes Berge2454942008-05-15 12:55:28 +0200914 return TX_CONTINUE;
915
Johannes Bergeefce912008-05-17 00:57:13 +0200916 /*
917 * Warn when submitting a fragmented A-MPDU frame and drop it.
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200918 * This scenario is handled in ieee80211_tx_prepare but extra
Ron Rindjunsky8d5e0d52008-06-12 15:42:29 +0300919 * caution taken here as fragmented ampdu may cause Tx stop.
Johannes Bergeefce912008-05-17 00:57:13 +0200920 */
Sujith8b30b1f2008-10-24 09:55:27 +0530921 if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU))
Johannes Bergeefce912008-05-17 00:57:13 +0200922 return TX_DROP;
923
Harvey Harrison065e96052008-06-22 16:45:27 -0700924 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berge2454942008-05-15 12:55:28 +0200925
Johannes Berga26eb272011-10-07 14:01:25 +0200926 /* internal error, why isn't DONTFRAG set? */
Johannes Berg8ccd8f22009-04-29 23:35:56 +0200927 if (WARN_ON(skb->len + FCS_LEN <= frag_threshold))
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100928 return TX_DROP;
Johannes Berge2454942008-05-15 12:55:28 +0200929
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100930 /*
931 * Now fragment the frame. This will allocate all the fragments and
932 * chain them (using skb as the first fragment) to skb->next.
933 * During transmission, we will remove the successfully transmitted
934 * fragments from this list. When the low-level driver rejects one
935 * of the fragments then we will simply pretend to accept the skb
936 * but store it away as pending.
937 */
Johannes Berg252b86c2011-11-16 15:28:55 +0100938 if (ieee80211_fragment(tx, skb, hdrlen, frag_threshold))
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100939 return TX_DROP;
Johannes Berge2454942008-05-15 12:55:28 +0200940
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100941 /* update duration/seq/flags of fragments */
942 fragnum = 0;
Johannes Berg252b86c2011-11-16 15:28:55 +0100943
944 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100945 int next_len;
946 const __le16 morefrags = cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
Johannes Berge2454942008-05-15 12:55:28 +0200947
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100948 hdr = (void *)skb->data;
949 info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200950
Johannes Berg252b86c2011-11-16 15:28:55 +0100951 if (!skb_queue_is_last(&tx->skbs, skb)) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100952 hdr->frame_control |= morefrags;
Johannes Berge6a98542008-10-21 12:40:02 +0200953 /*
954 * No multi-rate retries for fragmented frames, that
955 * would completely throw off the NAV at other STAs.
956 */
957 info->control.rates[1].idx = -1;
958 info->control.rates[2].idx = -1;
959 info->control.rates[3].idx = -1;
960 info->control.rates[4].idx = -1;
961 BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 5);
962 info->flags &= ~IEEE80211_TX_CTL_RATE_CTRL_PROBE;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100963 } else {
964 hdr->frame_control &= ~morefrags;
965 next_len = 0;
Johannes Berge6a98542008-10-21 12:40:02 +0200966 }
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100967 hdr->seq_ctrl |= cpu_to_le16(fragnum & IEEE80211_SCTL_FRAG);
968 fragnum++;
Johannes Berg252b86c2011-11-16 15:28:55 +0100969 }
Johannes Berge2454942008-05-15 12:55:28 +0200970
971 return TX_CONTINUE;
Johannes Berge2454942008-05-15 12:55:28 +0200972}
973
Johannes Bergd9e8a702008-06-30 15:10:44 +0200974static ieee80211_tx_result debug_noinline
Johannes Bergfeff1f22009-08-10 16:01:54 +0200975ieee80211_tx_h_stats(struct ieee80211_tx_data *tx)
976{
Johannes Berg252b86c2011-11-16 15:28:55 +0100977 struct sk_buff *skb;
Johannes Bergfeff1f22009-08-10 16:01:54 +0200978
979 if (!tx->sta)
980 return TX_CONTINUE;
981
982 tx->sta->tx_packets++;
Johannes Berg252b86c2011-11-16 15:28:55 +0100983 skb_queue_walk(&tx->skbs, skb) {
Johannes Bergfeff1f22009-08-10 16:01:54 +0200984 tx->sta->tx_fragments++;
985 tx->sta->tx_bytes += skb->len;
Johannes Berg252b86c2011-11-16 15:28:55 +0100986 }
Johannes Bergfeff1f22009-08-10 16:01:54 +0200987
988 return TX_CONTINUE;
989}
990
991static ieee80211_tx_result debug_noinline
Johannes Berge2454942008-05-15 12:55:28 +0200992ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
993{
994 if (!tx->key)
995 return TX_CONTINUE;
996
Johannes Berg97359d12010-08-10 09:46:38 +0200997 switch (tx->key->conf.cipher) {
998 case WLAN_CIPHER_SUITE_WEP40:
999 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berge2454942008-05-15 12:55:28 +02001000 return ieee80211_crypto_wep_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +02001001 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berge2454942008-05-15 12:55:28 +02001002 return ieee80211_crypto_tkip_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +02001003 case WLAN_CIPHER_SUITE_CCMP:
Johannes Berge2454942008-05-15 12:55:28 +02001004 return ieee80211_crypto_ccmp_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +02001005 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02001006 return ieee80211_crypto_aes_cmac_encrypt(tx);
Johannes Berg3ffc2a92010-08-27 14:26:52 +03001007 default:
Yoni Divinskyd32a1022012-01-16 15:18:59 +02001008 return ieee80211_crypto_hw_encrypt(tx);
Johannes Berge2454942008-05-15 12:55:28 +02001009 }
1010
Johannes Berge2454942008-05-15 12:55:28 +02001011 return TX_DROP;
1012}
1013
Johannes Bergd9e8a702008-06-30 15:10:44 +02001014static ieee80211_tx_result debug_noinline
Johannes Berg03f93c32008-06-25 14:36:27 +03001015ieee80211_tx_h_calculate_duration(struct ieee80211_tx_data *tx)
1016{
Johannes Berg252b86c2011-11-16 15:28:55 +01001017 struct sk_buff *skb;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001018 struct ieee80211_hdr *hdr;
1019 int next_len;
1020 bool group_addr;
Johannes Berg03f93c32008-06-25 14:36:27 +03001021
Johannes Berg252b86c2011-11-16 15:28:55 +01001022 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001023 hdr = (void *) skb->data;
Jouni Malinen7e0aae42009-05-19 19:25:58 +03001024 if (unlikely(ieee80211_is_pspoll(hdr->frame_control)))
1025 break; /* must not overwrite AID */
Johannes Berg252b86c2011-11-16 15:28:55 +01001026 if (!skb_queue_is_last(&tx->skbs, skb)) {
1027 struct sk_buff *next = skb_queue_next(&tx->skbs, skb);
1028 next_len = next->len;
1029 } else
1030 next_len = 0;
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001031 group_addr = is_multicast_ether_addr(hdr->addr1);
Johannes Berg03f93c32008-06-25 14:36:27 +03001032
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001033 hdr->duration_id =
Johannes Berg252b86c2011-11-16 15:28:55 +01001034 ieee80211_duration(tx, skb, group_addr, next_len);
1035 }
Johannes Berg03f93c32008-06-25 14:36:27 +03001036
1037 return TX_CONTINUE;
1038}
1039
Johannes Berge2ebc742007-07-27 15:43:22 +02001040/* actual transmit path */
1041
Johannes Berga622ab72010-06-10 10:21:39 +02001042static bool ieee80211_tx_prep_agg(struct ieee80211_tx_data *tx,
1043 struct sk_buff *skb,
1044 struct ieee80211_tx_info *info,
1045 struct tid_ampdu_tx *tid_tx,
1046 int tid)
1047{
1048 bool queued = false;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001049 bool reset_agg_timer = false;
Helmut Schaaaa454582012-03-07 17:20:30 +01001050 struct sk_buff *purge_skb = NULL;
Johannes Berga622ab72010-06-10 10:21:39 +02001051
1052 if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1053 info->flags |= IEEE80211_TX_CTL_AMPDU;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001054 reset_agg_timer = true;
Johannes Berg0ab33702010-06-10 10:21:42 +02001055 } else if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
1056 /*
1057 * nothing -- this aggregation session is being started
1058 * but that might still fail with the driver
1059 */
Johannes Berga622ab72010-06-10 10:21:39 +02001060 } else {
1061 spin_lock(&tx->sta->lock);
1062 /*
1063 * Need to re-check now, because we may get here
1064 *
1065 * 1) in the window during which the setup is actually
1066 * already done, but not marked yet because not all
1067 * packets are spliced over to the driver pending
1068 * queue yet -- if this happened we acquire the lock
1069 * either before or after the splice happens, but
1070 * need to recheck which of these cases happened.
1071 *
1072 * 2) during session teardown, if the OPERATIONAL bit
1073 * was cleared due to the teardown but the pointer
1074 * hasn't been assigned NULL yet (or we loaded it
1075 * before it was assigned) -- in this case it may
1076 * now be NULL which means we should just let the
1077 * packet pass through because splicing the frames
1078 * back is already done.
1079 */
Johannes Berg40b275b2011-05-13 14:15:49 +02001080 tid_tx = rcu_dereference_protected_tid_tx(tx->sta, tid);
Johannes Berga622ab72010-06-10 10:21:39 +02001081
1082 if (!tid_tx) {
1083 /* do nothing, let packet pass through */
1084 } else if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1085 info->flags |= IEEE80211_TX_CTL_AMPDU;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001086 reset_agg_timer = true;
Johannes Berga622ab72010-06-10 10:21:39 +02001087 } else {
1088 queued = true;
1089 info->control.vif = &tx->sdata->vif;
1090 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1091 __skb_queue_tail(&tid_tx->pending, skb);
Helmut Schaaaa454582012-03-07 17:20:30 +01001092 if (skb_queue_len(&tid_tx->pending) > STA_MAX_TX_BUFFER)
1093 purge_skb = __skb_dequeue(&tid_tx->pending);
Johannes Berga622ab72010-06-10 10:21:39 +02001094 }
1095 spin_unlock(&tx->sta->lock);
Helmut Schaaaa454582012-03-07 17:20:30 +01001096
1097 if (purge_skb)
1098 dev_kfree_skb(purge_skb);
Johannes Berga622ab72010-06-10 10:21:39 +02001099 }
1100
Nikolay Martynov285fa692011-11-22 21:50:28 -05001101 /* reset session timer */
1102 if (reset_agg_timer && tid_tx->timeout)
Felix Fietkau12d3952f2012-03-18 22:58:06 +01001103 tid_tx->last_tx = jiffies;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001104
Johannes Berga622ab72010-06-10 10:21:39 +02001105 return queued;
1106}
1107
Johannes Berg58d41852007-09-26 17:53:18 +02001108/*
1109 * initialises @tx
1110 */
Johannes Berg9ae54c82008-01-31 19:48:20 +01001111static ieee80211_tx_result
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001112ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
1113 struct ieee80211_tx_data *tx,
1114 struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +02001115{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001116 struct ieee80211_local *local = sdata->local;
Johannes Berg58d41852007-09-26 17:53:18 +02001117 struct ieee80211_hdr *hdr;
Johannes Berge039fa42008-05-15 12:55:29 +02001118 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg68f2b512011-10-07 14:01:24 +02001119 int tid;
Johannes Berga622ab72010-06-10 10:21:39 +02001120 u8 *qc;
Johannes Berge2ebc742007-07-27 15:43:22 +02001121
1122 memset(tx, 0, sizeof(*tx));
1123 tx->skb = skb;
Johannes Berge2ebc742007-07-27 15:43:22 +02001124 tx->local = local;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001125 tx->sdata = sdata;
Johannes Berge039fa42008-05-15 12:55:29 +02001126 tx->channel = local->hw.conf.channel;
Johannes Berg252b86c2011-11-16 15:28:55 +01001127 __skb_queue_head_init(&tx->skbs);
Johannes Berge2ebc742007-07-27 15:43:22 +02001128
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001129 /*
1130 * If this flag is set to true anywhere, and we get here,
1131 * we are doing the needed processing, so remove the flag
1132 * now.
1133 */
1134 info->flags &= ~IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1135
Johannes Berg58d41852007-09-26 17:53:18 +02001136 hdr = (struct ieee80211_hdr *) skb->data;
1137
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001138 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001139 tx->sta = rcu_dereference(sdata->u.vlan.sta);
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001140 if (!tx->sta && sdata->dev->ieee80211_ptr->use_4addr)
1141 return TX_DROP;
Felix Fietkau66f2c992012-04-29 15:44:16 +02001142 } else if (info->flags & IEEE80211_TX_CTL_INJECTED ||
1143 tx->sdata->control_port_protocol == tx->skb->protocol) {
Felix Fietkaub4d57ad2010-01-31 23:25:24 +01001144 tx->sta = sta_info_get_bss(sdata, hdr->addr1);
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001145 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001146 if (!tx->sta)
Johannes Bergabe60632009-11-25 17:46:18 +01001147 tx->sta = sta_info_get(sdata, hdr->addr1);
Johannes Berg58d41852007-09-26 17:53:18 +02001148
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001149 if (tx->sta && ieee80211_is_data_qos(hdr->frame_control) &&
Johannes Berg49a59542011-09-29 16:04:41 +02001150 !ieee80211_is_qos_nullfunc(hdr->frame_control) &&
Arik Nemtsovedf6b782011-08-30 09:32:38 +03001151 (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION) &&
1152 !(local->hw.flags & IEEE80211_HW_TX_AMPDU_SETUP_IN_HW)) {
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001153 struct tid_ampdu_tx *tid_tx;
1154
Sujith8b30b1f2008-10-24 09:55:27 +05301155 qc = ieee80211_get_qos_ctl(hdr);
1156 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
1157
Johannes Berga622ab72010-06-10 10:21:39 +02001158 tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]);
1159 if (tid_tx) {
1160 bool queued;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001161
Johannes Berga622ab72010-06-10 10:21:39 +02001162 queued = ieee80211_tx_prep_agg(tx, skb, info,
1163 tid_tx, tid);
1164
1165 if (unlikely(queued))
1166 return TX_QUEUED;
1167 }
Sujith8b30b1f2008-10-24 09:55:27 +05301168 }
1169
Jiri Slabybadffb72007-08-28 17:01:54 -04001170 if (is_multicast_ether_addr(hdr->addr1)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001171 tx->flags &= ~IEEE80211_TX_UNICAST;
Johannes Berge039fa42008-05-15 12:55:29 +02001172 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Simon Wunderlich6fd67e92011-11-18 14:20:42 +01001173 } else
Johannes Berg5cf121c2008-02-25 16:27:43 +01001174 tx->flags |= IEEE80211_TX_UNICAST;
Johannes Berg58d41852007-09-26 17:53:18 +02001175
Johannes Berga26eb272011-10-07 14:01:25 +02001176 if (!(info->flags & IEEE80211_TX_CTL_DONTFRAG)) {
1177 if (!(tx->flags & IEEE80211_TX_UNICAST) ||
1178 skb->len + FCS_LEN <= local->hw.wiphy->frag_threshold ||
1179 info->flags & IEEE80211_TX_CTL_AMPDU)
1180 info->flags |= IEEE80211_TX_CTL_DONTFRAG;
Johannes Berg58d41852007-09-26 17:53:18 +02001181 }
1182
Johannes Berge2ebc742007-07-27 15:43:22 +02001183 if (!tx->sta)
Johannes Berge039fa42008-05-15 12:55:29 +02001184 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001185 else if (test_and_clear_sta_flag(tx->sta, WLAN_STA_CLEAR_PS_FILT))
Johannes Berge039fa42008-05-15 12:55:29 +02001186 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
Johannes Berg58d41852007-09-26 17:53:18 +02001187
Johannes Berge039fa42008-05-15 12:55:29 +02001188 info->flags |= IEEE80211_TX_CTL_FIRST_FRAGMENT;
Johannes Berge2ebc742007-07-27 15:43:22 +02001189
Johannes Berg9ae54c82008-01-31 19:48:20 +01001190 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +02001191}
1192
Johannes Berg11127e92011-11-16 16:02:47 +01001193static bool ieee80211_tx_frags(struct ieee80211_local *local,
1194 struct ieee80211_vif *vif,
1195 struct ieee80211_sta *sta,
1196 struct sk_buff_head *skbs,
1197 bool txpending)
Johannes Berge2ebc742007-07-27 15:43:22 +02001198{
Johannes Berg252b86c2011-11-16 15:28:55 +01001199 struct sk_buff *skb, *tmp;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001200 unsigned long flags;
Johannes Berge2ebc742007-07-27 15:43:22 +02001201
Johannes Berg252b86c2011-11-16 15:28:55 +01001202 skb_queue_walk_safe(skbs, skb, tmp) {
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001203 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1204 int q = info->hw_queue;
1205
1206#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1207 if (WARN_ON_ONCE(q >= local->hw.queues)) {
1208 __skb_unlink(skb, skbs);
1209 dev_kfree_skb(skb);
1210 continue;
1211 }
1212#endif
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001213
1214 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001215 if (local->queue_stop_reasons[q] ||
Johannes Berg7bb45682011-02-24 14:42:06 +01001216 (!txpending && !skb_queue_empty(&local->pending[q]))) {
1217 /*
1218 * Since queue is stopped, queue up frames for later
1219 * transmission from the tx-pending tasklet when the
1220 * queue is woken again.
1221 */
Johannes Berg252b86c2011-11-16 15:28:55 +01001222 if (txpending)
Johannes Berg4db4e0a2011-11-24 14:47:36 +01001223 skb_queue_splice_init(skbs, &local->pending[q]);
Johannes Berg252b86c2011-11-16 15:28:55 +01001224 else
Johannes Berg4db4e0a2011-11-24 14:47:36 +01001225 skb_queue_splice_tail_init(skbs,
1226 &local->pending[q]);
Johannes Berg7bb45682011-02-24 14:42:06 +01001227
1228 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1229 flags);
1230 return false;
1231 }
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001232 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Tomas Winklerf8e79dd2008-07-24 18:46:44 +03001233
Johannes Berg11127e92011-11-16 16:02:47 +01001234 info->control.vif = vif;
1235 info->control.sta = sta;
Johannes Bergec25acc2010-07-22 17:11:28 +02001236
Johannes Berg252b86c2011-11-16 15:28:55 +01001237 __skb_unlink(skb, skbs);
Johannes Berg7bb45682011-02-24 14:42:06 +01001238 drv_tx(local, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001239 }
Johannes Berg2de8e0d2009-03-23 17:28:35 +01001240
Johannes Berg11127e92011-11-16 16:02:47 +01001241 return true;
1242}
1243
1244/*
1245 * Returns false if the frame couldn't be transmitted but was queued instead.
1246 */
1247static bool __ieee80211_tx(struct ieee80211_local *local,
1248 struct sk_buff_head *skbs, int led_len,
1249 struct sta_info *sta, bool txpending)
1250{
1251 struct ieee80211_tx_info *info;
1252 struct ieee80211_sub_if_data *sdata;
1253 struct ieee80211_vif *vif;
1254 struct ieee80211_sta *pubsta;
1255 struct sk_buff *skb;
1256 bool result = true;
1257 __le16 fc;
1258
1259 if (WARN_ON(skb_queue_empty(skbs)))
1260 return true;
1261
1262 skb = skb_peek(skbs);
1263 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
1264 info = IEEE80211_SKB_CB(skb);
1265 sdata = vif_to_sdata(info->control.vif);
1266 if (sta && !sta->uploaded)
1267 sta = NULL;
1268
1269 if (sta)
1270 pubsta = &sta->sta;
1271 else
1272 pubsta = NULL;
1273
1274 switch (sdata->vif.type) {
1275 case NL80211_IFTYPE_MONITOR:
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001276 sdata = rcu_dereference(local->monitor_sdata);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001277 if (sdata) {
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001278 vif = &sdata->vif;
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001279 info->hw_queue =
1280 vif->hw_queue[skb_get_queue_mapping(skb)];
1281 } else if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL) {
1282 dev_kfree_skb(skb);
1283 return true;
1284 } else
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001285 vif = NULL;
Johannes Berg11127e92011-11-16 16:02:47 +01001286 break;
1287 case NL80211_IFTYPE_AP_VLAN:
1288 sdata = container_of(sdata->bss,
1289 struct ieee80211_sub_if_data, u.ap);
1290 /* fall through */
1291 default:
1292 vif = &sdata->vif;
1293 break;
1294 }
1295
1296 if (local->ops->tx_frags)
1297 drv_tx_frags(local, vif, pubsta, skbs);
1298 else
1299 result = ieee80211_tx_frags(local, vif, pubsta, skbs,
1300 txpending);
1301
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001302 ieee80211_tpt_led_trig_tx(local, fc, led_len);
1303 ieee80211_led_tx(local, 1);
1304
Johannes Berg4db4e0a2011-11-24 14:47:36 +01001305 WARN_ON_ONCE(!skb_queue_empty(skbs));
Johannes Berg252b86c2011-11-16 15:28:55 +01001306
Johannes Berg11127e92011-11-16 16:02:47 +01001307 return result;
Johannes Berge2ebc742007-07-27 15:43:22 +02001308}
1309
Johannes Berg97b045d2008-06-20 01:22:30 +02001310/*
1311 * Invoke TX handlers, return 0 on success and non-zero if the
1312 * frame was dropped or queued.
1313 */
1314static int invoke_tx_handlers(struct ieee80211_tx_data *tx)
1315{
Johannes Berg252b86c2011-11-16 15:28:55 +01001316 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Berg97b045d2008-06-20 01:22:30 +02001317 ieee80211_tx_result res = TX_DROP;
Johannes Berg97b045d2008-06-20 01:22:30 +02001318
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001319#define CALL_TXH(txh) \
1320 do { \
1321 res = txh(tx); \
1322 if (res != TX_CONTINUE) \
1323 goto txh_done; \
1324 } while (0)
Johannes Berg97b045d2008-06-20 01:22:30 +02001325
Kalle Valo5c1b98a2010-01-12 10:42:46 +02001326 CALL_TXH(ieee80211_tx_h_dynamic_ps);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001327 CALL_TXH(ieee80211_tx_h_check_assoc);
1328 CALL_TXH(ieee80211_tx_h_ps_buf);
Johannes Berga621fa42010-08-27 14:26:54 +03001329 CALL_TXH(ieee80211_tx_h_check_control_port_protocol);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001330 CALL_TXH(ieee80211_tx_h_select_key);
Johannes Bergaf65cd962009-11-17 18:18:36 +01001331 if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL))
1332 CALL_TXH(ieee80211_tx_h_rate_ctrl);
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001333
Johannes Bergaa5b5492011-12-02 22:08:52 +01001334 if (unlikely(info->flags & IEEE80211_TX_INTFL_RETRANSMISSION)) {
1335 __skb_queue_tail(&tx->skbs, tx->skb);
1336 tx->skb = NULL;
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001337 goto txh_done;
Johannes Bergaa5b5492011-12-02 22:08:52 +01001338 }
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001339
1340 CALL_TXH(ieee80211_tx_h_michael_mic_add);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001341 CALL_TXH(ieee80211_tx_h_sequence);
1342 CALL_TXH(ieee80211_tx_h_fragment);
Johannes Bergd9e8a702008-06-30 15:10:44 +02001343 /* handlers after fragment must be aware of tx info fragmentation! */
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001344 CALL_TXH(ieee80211_tx_h_stats);
1345 CALL_TXH(ieee80211_tx_h_encrypt);
Arik Nemtsov8fd369e2011-01-31 22:29:12 +02001346 if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL))
1347 CALL_TXH(ieee80211_tx_h_calculate_duration);
Johannes Bergd9e8a702008-06-30 15:10:44 +02001348#undef CALL_TXH
1349
1350 txh_done:
Johannes Berg97b045d2008-06-20 01:22:30 +02001351 if (unlikely(res == TX_DROP)) {
Tomas Winkler5479d0e2008-06-28 03:15:03 +03001352 I802_DEBUG_INC(tx->local->tx_handlers_drop);
Johannes Berg252b86c2011-11-16 15:28:55 +01001353 if (tx->skb)
1354 dev_kfree_skb(tx->skb);
1355 else
1356 __skb_queue_purge(&tx->skbs);
Johannes Berg97b045d2008-06-20 01:22:30 +02001357 return -1;
1358 } else if (unlikely(res == TX_QUEUED)) {
Tomas Winkler5479d0e2008-06-28 03:15:03 +03001359 I802_DEBUG_INC(tx->local->tx_handlers_queued);
Johannes Berg97b045d2008-06-20 01:22:30 +02001360 return -1;
1361 }
1362
1363 return 0;
1364}
1365
Johannes Berg7bb45682011-02-24 14:42:06 +01001366/*
1367 * Returns false if the frame couldn't be transmitted but was queued instead.
1368 */
1369static bool ieee80211_tx(struct ieee80211_sub_if_data *sdata,
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001370 struct sk_buff *skb, bool txpending)
Johannes Berge2ebc742007-07-27 15:43:22 +02001371{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001372 struct ieee80211_local *local = sdata->local;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001373 struct ieee80211_tx_data tx;
Johannes Berg97b045d2008-06-20 01:22:30 +02001374 ieee80211_tx_result res_prepare;
Johannes Berge039fa42008-05-15 12:55:29 +02001375 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001376 bool result = true;
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001377 int led_len;
Johannes Berge2ebc742007-07-27 15:43:22 +02001378
Johannes Berge2ebc742007-07-27 15:43:22 +02001379 if (unlikely(skb->len < 10)) {
1380 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001381 return true;
Johannes Berge2ebc742007-07-27 15:43:22 +02001382 }
1383
Johannes Bergd0709a62008-02-25 16:27:46 +01001384 rcu_read_lock();
1385
Johannes Berg58d41852007-09-26 17:53:18 +02001386 /* initialises tx */
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001387 led_len = skb->len;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001388 res_prepare = ieee80211_tx_prepare(sdata, &tx, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001389
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001390 if (unlikely(res_prepare == TX_DROP)) {
Johannes Berge2ebc742007-07-27 15:43:22 +02001391 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001392 goto out;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001393 } else if (unlikely(res_prepare == TX_QUEUED)) {
Johannes Berg7bb45682011-02-24 14:42:06 +01001394 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02001395 }
1396
Johannes Berg5cf121c2008-02-25 16:27:43 +01001397 tx.channel = local->hw.conf.channel;
Johannes Berge039fa42008-05-15 12:55:29 +02001398 info->band = tx.channel->band;
Johannes Berge2ebc742007-07-27 15:43:22 +02001399
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001400 /* set up hw_queue value early */
1401 if (!(info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) ||
1402 !(local->hw.flags & IEEE80211_HW_QUEUE_CONTROL))
1403 info->hw_queue =
1404 sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
1405
Johannes Berg7bb45682011-02-24 14:42:06 +01001406 if (!invoke_tx_handlers(&tx))
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001407 result = __ieee80211_tx(local, &tx.skbs, led_len,
1408 tx.sta, txpending);
Johannes Berg97b045d2008-06-20 01:22:30 +02001409 out:
Johannes Bergd4e46a32007-09-14 11:10:24 -04001410 rcu_read_unlock();
Johannes Berg7bb45682011-02-24 14:42:06 +01001411 return result;
Johannes Berge2ebc742007-07-27 15:43:22 +02001412}
1413
1414/* device xmit handlers */
1415
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301416static int ieee80211_skb_resize(struct ieee80211_sub_if_data *sdata,
Johannes Berg23c07522008-05-29 10:38:53 +02001417 struct sk_buff *skb,
1418 int head_need, bool may_encrypt)
1419{
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301420 struct ieee80211_local *local = sdata->local;
Johannes Berg23c07522008-05-29 10:38:53 +02001421 int tail_need = 0;
1422
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301423 if (may_encrypt && sdata->crypto_tx_tailroom_needed_cnt) {
Johannes Berg23c07522008-05-29 10:38:53 +02001424 tail_need = IEEE80211_ENCRYPT_TAILROOM;
1425 tail_need -= skb_tailroom(skb);
1426 tail_need = max_t(int, tail_need, 0);
1427 }
1428
Felix Fietkaufc7c9762011-02-07 12:05:00 +01001429 if (skb_cloned(skb))
Johannes Berg23c07522008-05-29 10:38:53 +02001430 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
Felix Fietkau4cd06a32010-12-18 19:30:49 +01001431 else if (head_need || tail_need)
Johannes Berg23c07522008-05-29 10:38:53 +02001432 I802_DEBUG_INC(local->tx_expand_skb_head);
Felix Fietkau4cd06a32010-12-18 19:30:49 +01001433 else
1434 return 0;
Johannes Berg23c07522008-05-29 10:38:53 +02001435
1436 if (pskb_expand_head(skb, head_need, tail_need, GFP_ATOMIC)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07001437 wiphy_debug(local->hw.wiphy,
1438 "failed to reallocate TX buffer\n");
Johannes Berg23c07522008-05-29 10:38:53 +02001439 return -ENOMEM;
1440 }
1441
Johannes Berg23c07522008-05-29 10:38:53 +02001442 return 0;
1443}
1444
Johannes Bergce662b442011-09-29 16:04:34 +02001445void ieee80211_xmit(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +02001446{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001447 struct ieee80211_local *local = sdata->local;
Johannes Berge039fa42008-05-15 12:55:29 +02001448 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001449 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berge2ebc742007-07-27 15:43:22 +02001450 int headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001451 bool may_encrypt;
Johannes Berge2ebc742007-07-27 15:43:22 +02001452
Johannes Bergd84f3232009-11-16 23:20:41 +01001453 rcu_read_lock();
1454
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001455 may_encrypt = !(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT);
Johannes Berg23c07522008-05-29 10:38:53 +02001456
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001457 headroom = local->tx_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001458 if (may_encrypt)
1459 headroom += IEEE80211_ENCRYPT_HEADROOM;
1460 headroom -= skb_headroom(skb);
1461 headroom = max_t(int, 0, headroom);
1462
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301463 if (ieee80211_skb_resize(sdata, skb, headroom, may_encrypt)) {
Johannes Berg23c07522008-05-29 10:38:53 +02001464 dev_kfree_skb(skb);
Johannes Bergd84f3232009-11-16 23:20:41 +01001465 rcu_read_unlock();
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001466 return;
Johannes Berge2ebc742007-07-27 15:43:22 +02001467 }
1468
Steve deRosier740c1aa2010-09-11 20:01:31 -07001469 hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berg5061b0c2009-07-14 00:33:34 +02001470 info->control.vif = &sdata->vif;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001471
Javier Cardonacca89492009-08-10 17:29:29 -07001472 if (ieee80211_vif_is_mesh(&sdata->vif) &&
1473 ieee80211_is_data(hdr->frame_control) &&
Johannes Berg98aed9f2012-03-27 14:18:36 +02001474 !is_multicast_ether_addr(hdr->addr1) &&
1475 mesh_nexthop_resolve(skb, sdata)) {
1476 /* skb queued: don't free */
1477 rcu_read_unlock();
1478 return;
1479 }
Javier Cardonacca89492009-08-10 17:29:29 -07001480
Javier Cardona2154c812011-09-07 17:49:53 -07001481 ieee80211_set_qos_hdr(sdata, skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001482 ieee80211_tx(sdata, skb, false);
Johannes Bergd84f3232009-11-16 23:20:41 +01001483 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001484}
1485
Johannes Berg73b9f032011-10-07 14:01:26 +02001486static bool ieee80211_parse_tx_radiotap(struct sk_buff *skb)
1487{
1488 struct ieee80211_radiotap_iterator iterator;
1489 struct ieee80211_radiotap_header *rthdr =
1490 (struct ieee80211_radiotap_header *) skb->data;
1491 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1492 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len,
1493 NULL);
1494 u16 txflags;
1495
1496 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
1497 IEEE80211_TX_CTL_DONTFRAG;
1498
1499 /*
1500 * for every radiotap entry that is present
1501 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
1502 * entries present, or -EINVAL on error)
1503 */
1504
1505 while (!ret) {
1506 ret = ieee80211_radiotap_iterator_next(&iterator);
1507
1508 if (ret)
1509 continue;
1510
1511 /* see if this argument is something we can use */
1512 switch (iterator.this_arg_index) {
1513 /*
1514 * You must take care when dereferencing iterator.this_arg
1515 * for multibyte types... the pointer is not aligned. Use
1516 * get_unaligned((type *)iterator.this_arg) to dereference
1517 * iterator.this_arg for type "type" safely on all arches.
1518 */
1519 case IEEE80211_RADIOTAP_FLAGS:
1520 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
1521 /*
1522 * this indicates that the skb we have been
1523 * handed has the 32-bit FCS CRC at the end...
1524 * we should react to that by snipping it off
1525 * because it will be recomputed and added
1526 * on transmission
1527 */
1528 if (skb->len < (iterator._max_length + FCS_LEN))
1529 return false;
1530
1531 skb_trim(skb, skb->len - FCS_LEN);
1532 }
1533 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
1534 info->flags &= ~IEEE80211_TX_INTFL_DONT_ENCRYPT;
1535 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
1536 info->flags &= ~IEEE80211_TX_CTL_DONTFRAG;
1537 break;
1538
1539 case IEEE80211_RADIOTAP_TX_FLAGS:
1540 txflags = get_unaligned_le16(iterator.this_arg);
1541 if (txflags & IEEE80211_RADIOTAP_F_TX_NOACK)
1542 info->flags |= IEEE80211_TX_CTL_NO_ACK;
1543 break;
1544
1545 /*
1546 * Please update the file
1547 * Documentation/networking/mac80211-injection.txt
1548 * when parsing new fields here.
1549 */
1550
1551 default:
1552 break;
1553 }
1554 }
1555
1556 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
1557 return false;
1558
1559 /*
1560 * remove the radiotap header
1561 * iterator->_max_length was sanity-checked against
1562 * skb->len by iterator init
1563 */
1564 skb_pull(skb, iterator._max_length);
1565
1566 return true;
1567}
1568
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00001569netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
1570 struct net_device *dev)
Johannes Berge2ebc742007-07-27 15:43:22 +02001571{
1572 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Luis R. Rodriguez47f4d882009-01-30 09:08:29 -08001573 struct ieee80211_channel *chan = local->hw.conf.channel;
Johannes Berge2ebc742007-07-27 15:43:22 +02001574 struct ieee80211_radiotap_header *prthdr =
1575 (struct ieee80211_radiotap_header *)skb->data;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001576 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001577 struct ieee80211_hdr *hdr;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001578 struct ieee80211_sub_if_data *tmp_sdata, *sdata;
Andy Green9b8a74e2007-07-27 15:43:24 +02001579 u16 len_rthdr;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001580 int hdrlen;
Johannes Berge2ebc742007-07-27 15:43:22 +02001581
Luis R. Rodriguez47f4d882009-01-30 09:08:29 -08001582 /*
1583 * Frame injection is not allowed if beaconing is not allowed
1584 * or if we need radar detection. Beaconing is usually not allowed when
1585 * the mode or operation (Adhoc, AP, Mesh) does not support DFS.
1586 * Passive scan is also used in world regulatory domains where
1587 * your country is not known and as such it should be treated as
1588 * NO TX unless the channel is explicitly allowed in which case
1589 * your current regulatory domain would not have the passive scan
1590 * flag.
1591 *
1592 * Since AP mode uses monitor interfaces to inject/TX management
1593 * frames we can make AP mode the exception to this rule once it
1594 * supports radar detection as its implementation can deal with
1595 * radar detection by itself. We can do that later by adding a
1596 * monitor flag interfaces used for AP support.
1597 */
1598 if ((chan->flags & (IEEE80211_CHAN_NO_IBSS | IEEE80211_CHAN_RADAR |
1599 IEEE80211_CHAN_PASSIVE_SCAN)))
1600 goto fail;
1601
Andy Green9b8a74e2007-07-27 15:43:24 +02001602 /* check for not even having the fixed radiotap header part */
1603 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1604 goto fail; /* too short to be possibly valid */
1605
1606 /* is it a header version we can trust to find length from? */
1607 if (unlikely(prthdr->it_version))
1608 goto fail; /* only version 0 is supported */
1609
1610 /* then there must be a radiotap header with a length we can use */
1611 len_rthdr = ieee80211_get_radiotap_len(skb->data);
1612
1613 /* does the skb contain enough to deliver on the alleged length? */
1614 if (unlikely(skb->len < len_rthdr))
1615 goto fail; /* skb too short for claimed rt header extent */
Johannes Berge2ebc742007-07-27 15:43:22 +02001616
Johannes Berge2ebc742007-07-27 15:43:22 +02001617 /*
1618 * fix up the pointers accounting for the radiotap
1619 * header still being in there. We are being given
1620 * a precooked IEEE80211 header so no need for
1621 * normal processing
1622 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001623 skb_set_mac_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001624 /*
Andy Green9b8a74e2007-07-27 15:43:24 +02001625 * these are just fixed to the end of the rt area since we
1626 * don't have any better information and at this point, nobody cares
Johannes Berge2ebc742007-07-27 15:43:22 +02001627 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001628 skb_set_network_header(skb, len_rthdr);
1629 skb_set_transport_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001630
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001631 if (skb->len < len_rthdr + 2)
1632 goto fail;
1633
1634 hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr);
1635 hdrlen = ieee80211_hdrlen(hdr->frame_control);
1636
1637 if (skb->len < len_rthdr + hdrlen)
1638 goto fail;
1639
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001640 /*
1641 * Initialize skb->protocol if the injected frame is a data frame
1642 * carrying a rfc1042 header
1643 */
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001644 if (ieee80211_is_data(hdr->frame_control) &&
1645 skb->len >= len_rthdr + hdrlen + sizeof(rfc1042_header) + 2) {
1646 u8 *payload = (u8 *)hdr + hdrlen;
1647
Joe Perchesb203ca32012-05-08 18:56:52 +00001648 if (ether_addr_equal(payload, rfc1042_header))
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001649 skb->protocol = cpu_to_be16((payload[6] << 8) |
1650 payload[7]);
Helmut Schaaf75f5c62011-08-01 11:32:52 +02001651 }
1652
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001653 memset(info, 0, sizeof(*info));
1654
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001655 info->flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
Johannes Berg73b9f032011-10-07 14:01:26 +02001656 IEEE80211_TX_CTL_INJECTED;
1657
1658 /* process and remove the injection radiotap header */
1659 if (!ieee80211_parse_tx_radiotap(skb))
1660 goto fail;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001661
1662 rcu_read_lock();
1663
1664 /*
1665 * We process outgoing injected frames that have a local address
1666 * we handle as though they are non-injected frames.
1667 * This code here isn't entirely correct, the local MAC address
1668 * isn't always enough to find the interface to use; for proper
1669 * VLAN/WDS support we will need a different mechanism (which
1670 * likely isn't going to be monitor interfaces).
1671 */
1672 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1673
1674 list_for_each_entry_rcu(tmp_sdata, &local->interfaces, list) {
1675 if (!ieee80211_sdata_running(tmp_sdata))
1676 continue;
1677 if (tmp_sdata->vif.type == NL80211_IFTYPE_MONITOR ||
1678 tmp_sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1679 tmp_sdata->vif.type == NL80211_IFTYPE_WDS)
1680 continue;
Joe Perchesb203ca32012-05-08 18:56:52 +00001681 if (ether_addr_equal(tmp_sdata->vif.addr, hdr->addr2)) {
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001682 sdata = tmp_sdata;
1683 break;
1684 }
1685 }
Johannes Berg7351c6b2009-11-19 01:08:30 +01001686
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02001687 ieee80211_xmit(sdata, skb);
1688 rcu_read_unlock();
1689
Johannes Berge2ebc742007-07-27 15:43:22 +02001690 return NETDEV_TX_OK;
Andy Green9b8a74e2007-07-27 15:43:24 +02001691
1692fail:
1693 dev_kfree_skb(skb);
1694 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
Johannes Berge2ebc742007-07-27 15:43:22 +02001695}
1696
1697/**
1698 * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type
1699 * subinterfaces (wlan#, WDS, and VLAN interfaces)
1700 * @skb: packet to be sent
1701 * @dev: incoming interface
1702 *
1703 * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will
1704 * not be freed, and caller is responsible for either retrying later or freeing
1705 * skb).
1706 *
1707 * This function takes in an Ethernet header and encapsulates it with suitable
1708 * IEEE 802.11 header based on which interface the packet is coming in. The
1709 * encapsulated packet will then be passed to master interface, wlan#.11, for
1710 * transmission (through low-level driver).
1711 */
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00001712netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb,
1713 struct net_device *dev)
Johannes Berge2ebc742007-07-27 15:43:22 +02001714{
Johannes Berg133b8222008-09-16 14:18:59 +02001715 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1716 struct ieee80211_local *local = sdata->local;
Felix Fietkau489ee912010-12-18 19:30:48 +01001717 struct ieee80211_tx_info *info;
Patrick McHardy5b548142009-06-12 06:22:29 +00001718 int ret = NETDEV_TX_BUSY, head_need;
Harvey Harrison065e96052008-06-22 16:45:27 -07001719 u16 ethertype, hdrlen, meshhdrlen = 0;
1720 __le16 fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02001721 struct ieee80211_hdr hdr;
Wey-Yi Guyff67bb82010-08-21 07:23:29 -07001722 struct ieee80211s_hdr mesh_hdr __maybe_unused;
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001723 struct mesh_path __maybe_unused *mppath = NULL, *mpath = NULL;
Johannes Berge2ebc742007-07-27 15:43:22 +02001724 const u8 *encaps_data;
1725 int encaps_len, skip_header_bytes;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001726 int nh_pos, h_pos;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001727 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001728 bool wme_sta = false, authorized = false, tdls_auth = false;
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001729 bool tdls_direct = false;
Johannes Berga729cff2011-11-06 14:13:34 +01001730 bool multicast;
1731 u32 info_flags = 0;
1732 u16 info_id = 0;
Johannes Berge2ebc742007-07-27 15:43:22 +02001733
Johannes Berge2ebc742007-07-27 15:43:22 +02001734 if (unlikely(skb->len < ETH_HLEN)) {
Patrick McHardyec634fe2009-07-05 19:23:38 -07001735 ret = NETDEV_TX_OK;
Johannes Berge2ebc742007-07-27 15:43:22 +02001736 goto fail;
1737 }
1738
Johannes Berge2ebc742007-07-27 15:43:22 +02001739 /* convert Ethernet header to proper 802.11 header (based on
1740 * operation mode) */
1741 ethertype = (skb->data[12] << 8) | skb->data[13];
Harvey Harrison065e96052008-06-22 16:45:27 -07001742 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
Johannes Berge2ebc742007-07-27 15:43:22 +02001743
Johannes Berg51fb61e2007-12-19 01:31:27 +01001744 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001745 case NL80211_IFTYPE_AP_VLAN:
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001746 rcu_read_lock();
Johannes Berg9bc383d2009-11-19 11:55:19 +01001747 sta = rcu_dereference(sdata->u.vlan.sta);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001748 if (sta) {
1749 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
1750 /* RA TA DA SA */
1751 memcpy(hdr.addr1, sta->sta.addr, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001752 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001753 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1754 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1755 hdrlen = 30;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001756 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
1757 wme_sta = test_sta_flag(sta, WLAN_STA_WME);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001758 }
1759 rcu_read_unlock();
1760 if (sta)
1761 break;
1762 /* fall through */
1763 case NL80211_IFTYPE_AP:
Harvey Harrison065e96052008-06-22 16:45:27 -07001764 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
Johannes Berge2ebc742007-07-27 15:43:22 +02001765 /* DA BSSID SA */
1766 memcpy(hdr.addr1, skb->data, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001767 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02001768 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1769 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001770 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001771 case NL80211_IFTYPE_WDS:
Harvey Harrison065e96052008-06-22 16:45:27 -07001772 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
Johannes Berge2ebc742007-07-27 15:43:22 +02001773 /* RA TA DA SA */
1774 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001775 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02001776 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1777 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1778 hdrlen = 30;
Johannes Bergcf966832007-08-28 17:01:54 -04001779 break;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001780#ifdef CONFIG_MAC80211_MESH
Johannes Berg05c914f2008-09-11 00:01:58 +02001781 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg472dbc42008-09-11 00:01:49 +02001782 if (!sdata->u.mesh.mshcfg.dot11MeshTTL) {
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001783 /* Do not send frames with mesh_ttl == 0 */
Johannes Berg472dbc42008-09-11 00:01:49 +02001784 sdata->u.mesh.mshstats.dropped_frames_ttl++;
Patrick McHardyec634fe2009-07-05 19:23:38 -07001785 ret = NETDEV_TX_OK;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001786 goto fail;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001787 }
Javier Cardona28104ca2011-05-03 16:57:17 -07001788 rcu_read_lock();
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08001789 if (!is_multicast_ether_addr(skb->data)) {
1790 mpath = mesh_path_lookup(skb->data, sdata);
1791 if (!mpath)
1792 mppath = mpp_path_lookup(skb->data, sdata);
1793 }
YanBo79617de2008-09-22 13:30:32 +08001794
Joel A Fernandesf76b57b2010-12-28 19:28:11 -06001795 /*
Joel A Fernandes9d525012011-01-10 00:44:23 -06001796 * Use address extension if it is a packet from
1797 * another interface or if we know the destination
1798 * is being proxied by a portal (i.e. portal address
1799 * differs from proxied address)
Joel A Fernandesf76b57b2010-12-28 19:28:11 -06001800 */
Joe Perchesb203ca32012-05-08 18:56:52 +00001801 if (ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN) &&
1802 !(mppath && !ether_addr_equal(mppath->mpp, skb->data))) {
Javier Cardona3c5772a2009-08-10 12:15:48 -07001803 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
1804 skb->data, skb->data + ETH_ALEN);
Javier Cardona28104ca2011-05-03 16:57:17 -07001805 rcu_read_unlock();
Javier Cardona3c5772a2009-08-10 12:15:48 -07001806 meshhdrlen = ieee80211_new_mesh_header(&mesh_hdr,
Javier Cardona61ad5392010-12-16 17:23:34 -08001807 sdata, NULL, NULL);
YanBo79617de2008-09-22 13:30:32 +08001808 } else {
Javier Cardona3c5772a2009-08-10 12:15:48 -07001809 int is_mesh_mcast = 1;
Johannes Berg15ff6362009-11-17 13:34:04 +01001810 const u8 *mesh_da;
YanBo79617de2008-09-22 13:30:32 +08001811
YanBo79617de2008-09-22 13:30:32 +08001812 if (is_multicast_ether_addr(skb->data))
Javier Cardona3c5772a2009-08-10 12:15:48 -07001813 /* DA TA mSA AE:SA */
1814 mesh_da = skb->data;
YanBo79617de2008-09-22 13:30:32 +08001815 else {
Johannes Berg15ff6362009-11-17 13:34:04 +01001816 static const u8 bcast[ETH_ALEN] =
1817 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
Javier Cardona3c5772a2009-08-10 12:15:48 -07001818 if (mppath) {
1819 /* RA TA mDA mSA AE:DA SA */
1820 mesh_da = mppath->mpp;
1821 is_mesh_mcast = 0;
Johannes Berg15ff6362009-11-17 13:34:04 +01001822 } else {
Javier Cardona3c5772a2009-08-10 12:15:48 -07001823 /* DA TA mSA AE:SA */
Johannes Berg15ff6362009-11-17 13:34:04 +01001824 mesh_da = bcast;
1825 }
YanBo79617de2008-09-22 13:30:32 +08001826 }
Javier Cardona3c5772a2009-08-10 12:15:48 -07001827 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
Johannes Berg47846c92009-11-25 17:46:19 +01001828 mesh_da, sdata->vif.addr);
Javier Cardona3c5772a2009-08-10 12:15:48 -07001829 rcu_read_unlock();
1830 if (is_mesh_mcast)
1831 meshhdrlen =
1832 ieee80211_new_mesh_header(&mesh_hdr,
1833 sdata,
1834 skb->data + ETH_ALEN,
Javier Cardona3c5772a2009-08-10 12:15:48 -07001835 NULL);
1836 else
1837 meshhdrlen =
1838 ieee80211_new_mesh_header(&mesh_hdr,
1839 sdata,
Javier Cardona3c5772a2009-08-10 12:15:48 -07001840 skb->data,
1841 skb->data + ETH_ALEN);
YanBo79617de2008-09-22 13:30:32 +08001842
YanBo79617de2008-09-22 13:30:32 +08001843 }
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001844 break;
1845#endif
Johannes Berg05c914f2008-09-11 00:01:58 +02001846 case NL80211_IFTYPE_STATION:
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001847 if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001848 bool tdls_peer = false;
1849
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001850 rcu_read_lock();
1851 sta = sta_info_get(sdata, skb->data);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001852 if (sta) {
1853 authorized = test_sta_flag(sta,
1854 WLAN_STA_AUTHORIZED);
1855 wme_sta = test_sta_flag(sta, WLAN_STA_WME);
1856 tdls_peer = test_sta_flag(sta,
1857 WLAN_STA_TDLS_PEER);
1858 tdls_auth = test_sta_flag(sta,
1859 WLAN_STA_TDLS_PEER_AUTH);
1860 }
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001861 rcu_read_unlock();
1862
1863 /*
1864 * If the TDLS link is enabled, send everything
1865 * directly. Otherwise, allow TDLS setup frames
1866 * to be transmitted indirectly.
1867 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001868 tdls_direct = tdls_peer && (tdls_auth ||
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001869 !(ethertype == ETH_P_TDLS && skb->len > 14 &&
1870 skb->data[14] == WLAN_TDLS_SNAP_RFTYPE));
1871 }
1872
1873 if (tdls_direct) {
1874 /* link during setup - throw out frames to peer */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001875 if (!tdls_auth) {
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001876 ret = NETDEV_TX_OK;
1877 goto fail;
1878 }
1879
1880 /* DA SA BSSID */
1881 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1882 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1883 memcpy(hdr.addr3, sdata->u.mgd.bssid, ETH_ALEN);
1884 hdrlen = 24;
1885 } else if (sdata->u.mgd.use_4addr &&
1886 cpu_to_be16(ethertype) != sdata->control_port_protocol) {
1887 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
1888 IEEE80211_FCTL_TODS);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001889 /* RA TA DA SA */
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001890 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001891 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001892 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1893 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1894 hdrlen = 30;
1895 } else {
1896 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
1897 /* BSSID SA DA */
Arik Nemtsov941c93c2011-09-28 14:12:54 +03001898 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001899 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1900 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1901 hdrlen = 24;
1902 }
Johannes Bergcf966832007-08-28 17:01:54 -04001903 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001904 case NL80211_IFTYPE_ADHOC:
Johannes Berge2ebc742007-07-27 15:43:22 +02001905 /* DA SA BSSID */
1906 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1907 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01001908 memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02001909 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001910 break;
1911 default:
Patrick McHardyec634fe2009-07-05 19:23:38 -07001912 ret = NETDEV_TX_OK;
Johannes Berge2ebc742007-07-27 15:43:22 +02001913 goto fail;
1914 }
1915
Johannes Berg7d185b82008-01-28 17:11:43 +01001916 /*
1917 * There's no need to try to look up the destination
1918 * if it is a multicast address (which can only happen
1919 * in AP mode)
1920 */
Johannes Berga729cff2011-11-06 14:13:34 +01001921 multicast = is_multicast_ether_addr(hdr.addr1);
1922 if (!multicast) {
Johannes Bergd0709a62008-02-25 16:27:46 +01001923 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +01001924 sta = sta_info_get(sdata, hdr.addr1);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001925 if (sta) {
1926 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
1927 wme_sta = test_sta_flag(sta, WLAN_STA_WME);
1928 }
Johannes Bergd0709a62008-02-25 16:27:46 +01001929 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001930 }
1931
Javier Cardona4777be42011-09-07 17:49:52 -07001932 /* For mesh, the use of the QoS header is mandatory */
1933 if (ieee80211_vif_is_mesh(&sdata->vif))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001934 wme_sta = true;
Javier Cardona4777be42011-09-07 17:49:52 -07001935
Johannes Berg3434fbd2008-05-03 00:59:37 +02001936 /* receiver and we are QoS enabled, use a QoS type frame */
Johannes Berg32c50572012-03-28 11:04:29 +02001937 if (wme_sta && local->hw.queues >= IEEE80211_NUM_ACS) {
Harvey Harrison065e96052008-06-22 16:45:27 -07001938 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001939 hdrlen += 2;
1940 }
1941
1942 /*
Johannes Berg238814f2008-01-28 17:19:37 +01001943 * Drop unicast frames to unauthorised stations unless they are
1944 * EAPOL frames from the local station.
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001945 */
Johannes Berg55182e42011-10-12 17:28:21 +02001946 if (unlikely(!ieee80211_vif_is_mesh(&sdata->vif) &&
1947 !is_multicast_ether_addr(hdr.addr1) && !authorized &&
1948 (cpu_to_be16(ethertype) != sdata->control_port_protocol ||
Joe Perchesb203ca32012-05-08 18:56:52 +00001949 !ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN)))) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001950#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001951 net_info_ratelimited("%s: dropped frame to %pM (unauthorized port)\n",
Joe Perchese87cc472012-05-13 21:56:26 +00001952 dev->name, hdr.addr1);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001953#endif
1954
1955 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
1956
Patrick McHardyec634fe2009-07-05 19:23:38 -07001957 ret = NETDEV_TX_OK;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001958 goto fail;
1959 }
1960
Johannes Berga729cff2011-11-06 14:13:34 +01001961 if (unlikely(!multicast && skb->sk &&
1962 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS)) {
1963 struct sk_buff *orig_skb = skb;
1964
1965 skb = skb_clone(skb, GFP_ATOMIC);
1966 if (skb) {
1967 unsigned long flags;
1968 int id, r;
1969
1970 spin_lock_irqsave(&local->ack_status_lock, flags);
1971 r = idr_get_new_above(&local->ack_status_frames,
1972 orig_skb, 1, &id);
1973 if (r == -EAGAIN) {
1974 idr_pre_get(&local->ack_status_frames,
1975 GFP_ATOMIC);
1976 r = idr_get_new_above(&local->ack_status_frames,
1977 orig_skb, 1, &id);
1978 }
1979 if (WARN_ON(!id) || id > 0xffff) {
1980 idr_remove(&local->ack_status_frames, id);
1981 r = -ERANGE;
1982 }
1983 spin_unlock_irqrestore(&local->ack_status_lock, flags);
1984
1985 if (!r) {
1986 info_id = id;
1987 info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
1988 } else if (skb_shared(skb)) {
1989 kfree_skb(orig_skb);
1990 } else {
1991 kfree_skb(skb);
1992 skb = orig_skb;
1993 }
1994 } else {
1995 /* couldn't clone -- lose tx status ... */
1996 skb = orig_skb;
1997 }
1998 }
1999
Helmut Schaa7e244702010-12-02 18:44:09 +01002000 /*
2001 * If the skb is shared we need to obtain our own copy.
2002 */
2003 if (skb_shared(skb)) {
Johannes Berga729cff2011-11-06 14:13:34 +01002004 struct sk_buff *tmp_skb = skb;
2005
2006 /* can't happen -- skb is a clone if info_id != 0 */
2007 WARN_ON(info_id);
2008
Felix Fietkauf8a0a782010-12-18 19:30:50 +01002009 skb = skb_clone(skb, GFP_ATOMIC);
Helmut Schaa7e244702010-12-02 18:44:09 +01002010 kfree_skb(tmp_skb);
2011
2012 if (!skb) {
2013 ret = NETDEV_TX_OK;
2014 goto fail;
2015 }
2016 }
2017
Harvey Harrison065e96052008-06-22 16:45:27 -07002018 hdr.frame_control = fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02002019 hdr.duration_id = 0;
2020 hdr.seq_ctrl = 0;
2021
2022 skip_header_bytes = ETH_HLEN;
2023 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
2024 encaps_data = bridge_tunnel_header;
2025 encaps_len = sizeof(bridge_tunnel_header);
2026 skip_header_bytes -= 2;
2027 } else if (ethertype >= 0x600) {
2028 encaps_data = rfc1042_header;
2029 encaps_len = sizeof(rfc1042_header);
2030 skip_header_bytes -= 2;
2031 } else {
2032 encaps_data = NULL;
2033 encaps_len = 0;
2034 }
2035
Helmut Schaa7e244702010-12-02 18:44:09 +01002036 nh_pos = skb_network_header(skb) - skb->data;
2037 h_pos = skb_transport_header(skb) - skb->data;
2038
Johannes Berge2ebc742007-07-27 15:43:22 +02002039 skb_pull(skb, skip_header_bytes);
2040 nh_pos -= skip_header_bytes;
2041 h_pos -= skip_header_bytes;
2042
Johannes Berg23c07522008-05-29 10:38:53 +02002043 head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002044
Johannes Berg23c07522008-05-29 10:38:53 +02002045 /*
2046 * So we need to modify the skb header and hence need a copy of
2047 * that. The head_need variable above doesn't, so far, include
2048 * the needed header space that we don't need right away. If we
2049 * can, then we don't reallocate right now but only after the
2050 * frame arrives at the master device (if it does...)
2051 *
2052 * If we cannot, however, then we will reallocate to include all
2053 * the ever needed space. Also, if we need to reallocate it anyway,
2054 * make it big enough for everything we may ever need.
2055 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002056
David S. Miller3a5be7d2008-06-18 01:19:51 -07002057 if (head_need > 0 || skb_cloned(skb)) {
Johannes Berg23c07522008-05-29 10:38:53 +02002058 head_need += IEEE80211_ENCRYPT_HEADROOM;
2059 head_need += local->tx_headroom;
2060 head_need = max_t(int, 0, head_need);
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05302061 if (ieee80211_skb_resize(sdata, skb, head_need, true))
Johannes Berge2ebc742007-07-27 15:43:22 +02002062 goto fail;
Johannes Berge2ebc742007-07-27 15:43:22 +02002063 }
2064
2065 if (encaps_data) {
2066 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
2067 nh_pos += encaps_len;
2068 h_pos += encaps_len;
2069 }
Johannes Bergc29b9b92007-09-14 11:10:24 -04002070
Yuri Ershove4ab7eb2010-06-29 15:08:06 +04002071#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002072 if (meshhdrlen > 0) {
2073 memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
2074 nh_pos += meshhdrlen;
2075 h_pos += meshhdrlen;
2076 }
Yuri Ershove4ab7eb2010-06-29 15:08:06 +04002077#endif
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002078
Harvey Harrison065e96052008-06-22 16:45:27 -07002079 if (ieee80211_is_data_qos(fc)) {
Johannes Bergc29b9b92007-09-14 11:10:24 -04002080 __le16 *qos_control;
2081
2082 qos_control = (__le16*) skb_push(skb, 2);
2083 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
2084 /*
2085 * Maybe we could actually set some fields here, for now just
2086 * initialise to zero to indicate no special operation.
2087 */
2088 *qos_control = 0;
2089 } else
2090 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
2091
Johannes Berge2ebc742007-07-27 15:43:22 +02002092 nh_pos += hdrlen;
2093 h_pos += hdrlen;
2094
Stephen Hemminger68aae112007-08-24 11:29:34 -07002095 dev->stats.tx_packets++;
2096 dev->stats.tx_bytes += skb->len;
Johannes Berge2ebc742007-07-27 15:43:22 +02002097
2098 /* Update skb pointers to various headers since this modified frame
2099 * is going to go through Linux networking code that may potentially
2100 * need things like pointer to IP header. */
2101 skb_set_mac_header(skb, 0);
2102 skb_set_network_header(skb, nh_pos);
2103 skb_set_transport_header(skb, h_pos);
2104
Felix Fietkau489ee912010-12-18 19:30:48 +01002105 info = IEEE80211_SKB_CB(skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002106 memset(info, 0, sizeof(*info));
2107
Johannes Berge2ebc742007-07-27 15:43:22 +02002108 dev->trans_start = jiffies;
Johannes Berga729cff2011-11-06 14:13:34 +01002109
2110 info->flags = info_flags;
2111 info->ack_frame_id = info_id;
2112
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002113 ieee80211_xmit(sdata, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002114
Patrick McHardyec634fe2009-07-05 19:23:38 -07002115 return NETDEV_TX_OK;
Johannes Berge2ebc742007-07-27 15:43:22 +02002116
2117 fail:
Patrick McHardyec634fe2009-07-05 19:23:38 -07002118 if (ret == NETDEV_TX_OK)
Johannes Berge2ebc742007-07-27 15:43:22 +02002119 dev_kfree_skb(skb);
2120
2121 return ret;
2122}
2123
Johannes Berge2ebc742007-07-27 15:43:22 +02002124
Johannes Berge2530082008-05-17 00:57:14 +02002125/*
2126 * ieee80211_clear_tx_pending may not be called in a context where
2127 * it is possible that it packets could come in again.
2128 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002129void ieee80211_clear_tx_pending(struct ieee80211_local *local)
2130{
Johannes Berg2de8e0d2009-03-23 17:28:35 +01002131 int i;
Johannes Berge2ebc742007-07-27 15:43:22 +02002132
Johannes Berg2a577d92009-03-23 17:28:37 +01002133 for (i = 0; i < local->hw.queues; i++)
2134 skb_queue_purge(&local->pending[i]);
Johannes Berge2ebc742007-07-27 15:43:22 +02002135}
2136
Johannes Berg7bb45682011-02-24 14:42:06 +01002137/*
2138 * Returns false if the frame couldn't be transmitted but was queued instead,
2139 * which in this case means re-queued -- take as an indication to stop sending
2140 * more pending frames.
2141 */
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002142static bool ieee80211_tx_pending_skb(struct ieee80211_local *local,
2143 struct sk_buff *skb)
2144{
2145 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2146 struct ieee80211_sub_if_data *sdata;
2147 struct sta_info *sta;
2148 struct ieee80211_hdr *hdr;
Johannes Berg7bb45682011-02-24 14:42:06 +01002149 bool result;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002150
Johannes Berg5061b0c2009-07-14 00:33:34 +02002151 sdata = vif_to_sdata(info->control.vif);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002152
2153 if (info->flags & IEEE80211_TX_INTFL_NEED_TXPROCESSING) {
Johannes Berg7bb45682011-02-24 14:42:06 +01002154 result = ieee80211_tx(sdata, skb, true);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002155 } else {
Johannes Berg252b86c2011-11-16 15:28:55 +01002156 struct sk_buff_head skbs;
2157
2158 __skb_queue_head_init(&skbs);
2159 __skb_queue_tail(&skbs, skb);
2160
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002161 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Bergabe60632009-11-25 17:46:18 +01002162 sta = sta_info_get(sdata, hdr->addr1);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002163
Johannes Berg74e4dbf2011-11-16 15:28:57 +01002164 result = __ieee80211_tx(local, &skbs, skb->len, sta, true);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002165 }
2166
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002167 return result;
2168}
2169
Johannes Berge2530082008-05-17 00:57:14 +02002170/*
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002171 * Transmit all pending packets. Called from tasklet.
Johannes Berge2530082008-05-17 00:57:14 +02002172 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002173void ieee80211_tx_pending(unsigned long data)
2174{
2175 struct ieee80211_local *local = (struct ieee80211_local *)data;
Johannes Berg2a577d92009-03-23 17:28:37 +01002176 unsigned long flags;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002177 int i;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002178 bool txok;
Johannes Berge2ebc742007-07-27 15:43:22 +02002179
Johannes Bergf0e72852009-03-23 17:28:36 +01002180 rcu_read_lock();
Johannes Berg2a577d92009-03-23 17:28:37 +01002181
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002182 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Berg176be722009-03-12 23:49:28 +01002183 for (i = 0; i < local->hw.queues; i++) {
Johannes Berg2a577d92009-03-23 17:28:37 +01002184 /*
2185 * If queue is stopped by something other than due to pending
2186 * frames, or we have no pending frames, proceed to next queue.
2187 */
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002188 if (local->queue_stop_reasons[i] ||
Johannes Berg2a577d92009-03-23 17:28:37 +01002189 skb_queue_empty(&local->pending[i]))
Johannes Berge2ebc742007-07-27 15:43:22 +02002190 continue;
Johannes Berge2530082008-05-17 00:57:14 +02002191
Johannes Berg2a577d92009-03-23 17:28:37 +01002192 while (!skb_queue_empty(&local->pending[i])) {
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002193 struct sk_buff *skb = __skb_dequeue(&local->pending[i]);
Johannes Berg5061b0c2009-07-14 00:33:34 +02002194 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg5061b0c2009-07-14 00:33:34 +02002195
Johannes Berga7bc3762009-07-27 10:33:31 +02002196 if (WARN_ON(!info->control.vif)) {
2197 kfree_skb(skb);
2198 continue;
2199 }
2200
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002201 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
2202 flags);
Johannes Berg2a577d92009-03-23 17:28:37 +01002203
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002204 txok = ieee80211_tx_pending_skb(local, skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002205 spin_lock_irqsave(&local->queue_stop_reason_lock,
2206 flags);
2207 if (!txok)
Johannes Berg2a577d92009-03-23 17:28:37 +01002208 break;
Johannes Berge2ebc742007-07-27 15:43:22 +02002209 }
Johannes Berg7236fe22010-03-22 13:42:43 -07002210
2211 if (skb_queue_empty(&local->pending[i]))
Johannes Berg3a25a8c2012-04-03 16:28:50 +02002212 ieee80211_propagate_queue_wake(local, i);
Johannes Berge2ebc742007-07-27 15:43:22 +02002213 }
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002214 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Johannes Berg2a577d92009-03-23 17:28:37 +01002215
Johannes Bergf0e72852009-03-23 17:28:36 +01002216 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002217}
2218
2219/* functions for drivers to get certain frames */
2220
Johannes Berg88600202012-02-13 15:17:18 +01002221static void ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
2222 struct ieee80211_if_ap *bss,
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002223 struct sk_buff *skb,
2224 struct beacon_data *beacon)
Johannes Berge2ebc742007-07-27 15:43:22 +02002225{
2226 u8 *pos, *tim;
2227 int aid0 = 0;
2228 int i, have_bits = 0, n1, n2;
2229
2230 /* Generate bitmap for TIM only if there are any STAs in power save
2231 * mode. */
Johannes Berge2ebc742007-07-27 15:43:22 +02002232 if (atomic_read(&bss->num_sta_ps) > 0)
2233 /* in the hope that this is faster than
2234 * checking byte-for-byte */
2235 have_bits = !bitmap_empty((unsigned long*)bss->tim,
2236 IEEE80211_MAX_AID+1);
2237
2238 if (bss->dtim_count == 0)
Johannes Berg88600202012-02-13 15:17:18 +01002239 bss->dtim_count = sdata->vif.bss_conf.dtim_period - 1;
Johannes Berge2ebc742007-07-27 15:43:22 +02002240 else
2241 bss->dtim_count--;
2242
2243 tim = pos = (u8 *) skb_put(skb, 6);
2244 *pos++ = WLAN_EID_TIM;
2245 *pos++ = 4;
2246 *pos++ = bss->dtim_count;
Johannes Berg88600202012-02-13 15:17:18 +01002247 *pos++ = sdata->vif.bss_conf.dtim_period;
Johannes Berge2ebc742007-07-27 15:43:22 +02002248
2249 if (bss->dtim_count == 0 && !skb_queue_empty(&bss->ps_bc_buf))
2250 aid0 = 1;
2251
Christian Lamparter512119b2011-01-31 20:48:44 +02002252 bss->dtim_bc_mc = aid0 == 1;
2253
Johannes Berge2ebc742007-07-27 15:43:22 +02002254 if (have_bits) {
2255 /* Find largest even number N1 so that bits numbered 1 through
2256 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
2257 * (N2 + 1) x 8 through 2007 are 0. */
2258 n1 = 0;
2259 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
2260 if (bss->tim[i]) {
2261 n1 = i & 0xfe;
2262 break;
2263 }
2264 }
2265 n2 = n1;
2266 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
2267 if (bss->tim[i]) {
2268 n2 = i;
2269 break;
2270 }
2271 }
2272
2273 /* Bitmap control */
2274 *pos++ = n1 | aid0;
2275 /* Part Virt Bitmap */
Eliad Peller5220da32011-11-24 16:50:00 +02002276 skb_put(skb, n2 - n1);
Johannes Berge2ebc742007-07-27 15:43:22 +02002277 memcpy(pos, bss->tim + n1, n2 - n1 + 1);
2278
2279 tim[1] = n2 - n1 + 4;
Johannes Berge2ebc742007-07-27 15:43:22 +02002280 } else {
2281 *pos++ = aid0; /* Bitmap control */
2282 *pos++ = 0; /* Part Virt Bitmap */
2283 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002284}
2285
Johannes Bergeddcbb92009-10-29 08:30:35 +01002286struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
2287 struct ieee80211_vif *vif,
2288 u16 *tim_offset, u16 *tim_length)
Johannes Berge2ebc742007-07-27 15:43:22 +02002289{
2290 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg9d139c82008-07-09 14:40:37 +02002291 struct sk_buff *skb = NULL;
Johannes Berge039fa42008-05-15 12:55:29 +02002292 struct ieee80211_tx_info *info;
Johannes Berge2ebc742007-07-27 15:43:22 +02002293 struct ieee80211_sub_if_data *sdata = NULL;
2294 struct ieee80211_if_ap *ap = NULL;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002295 struct beacon_data *beacon;
Johannes Berg8318d782008-01-24 19:38:38 +01002296 struct ieee80211_supported_band *sband;
Johannes Berg2e92e6f2008-05-15 12:55:27 +02002297 enum ieee80211_band band = local->hw.conf.channel->band;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002298 struct ieee80211_tx_rate_control txrc;
Johannes Berg8318d782008-01-24 19:38:38 +01002299
Johannes Berg2e92e6f2008-05-15 12:55:27 +02002300 sband = local->hw.wiphy->bands[band];
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002301
2302 rcu_read_lock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002303
Johannes Berg32bfd352007-12-19 01:31:26 +01002304 sdata = vif_to_sdata(vif);
Johannes Berge2ebc742007-07-27 15:43:22 +02002305
Felix Fietkaueb3e5542011-01-24 19:28:49 +01002306 if (!ieee80211_sdata_running(sdata))
2307 goto out;
2308
Johannes Bergeddcbb92009-10-29 08:30:35 +01002309 if (tim_offset)
2310 *tim_offset = 0;
2311 if (tim_length)
2312 *tim_length = 0;
2313
Johannes Berg05c914f2008-09-11 00:01:58 +02002314 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002315 ap = &sdata->u.ap;
2316 beacon = rcu_dereference(ap->beacon);
Dan Carpenter3ad97fb2011-02-07 22:03:35 +03002317 if (beacon) {
Johannes Berg902acc72008-02-23 15:17:19 +01002318 /*
2319 * headroom, head length,
2320 * tail length and maximum TIM length
2321 */
2322 skb = dev_alloc_skb(local->tx_headroom +
2323 beacon->head_len +
2324 beacon->tail_len + 256);
2325 if (!skb)
2326 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002327
Johannes Berg902acc72008-02-23 15:17:19 +01002328 skb_reserve(skb, local->tx_headroom);
2329 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2330 beacon->head_len);
2331
Johannes Bergd0709a62008-02-25 16:27:46 +01002332 /*
2333 * Not very nice, but we want to allow the driver to call
2334 * ieee80211_beacon_get() as a response to the set_tim()
2335 * callback. That, however, is already invoked under the
2336 * sta_lock to guarantee consistent and race-free update
2337 * of the tim bitmap in mac80211 and the driver.
2338 */
2339 if (local->tim_in_locked_section) {
Johannes Berg88600202012-02-13 15:17:18 +01002340 ieee80211_beacon_add_tim(sdata, ap, skb,
2341 beacon);
Johannes Bergd0709a62008-02-25 16:27:46 +01002342 } else {
2343 unsigned long flags;
2344
Johannes Berg4d339602011-12-15 11:24:20 +01002345 spin_lock_irqsave(&local->tim_lock, flags);
Johannes Berg88600202012-02-13 15:17:18 +01002346 ieee80211_beacon_add_tim(sdata, ap, skb,
2347 beacon);
Johannes Berg4d339602011-12-15 11:24:20 +01002348 spin_unlock_irqrestore(&local->tim_lock, flags);
Johannes Bergd0709a62008-02-25 16:27:46 +01002349 }
Johannes Berg902acc72008-02-23 15:17:19 +01002350
Johannes Bergeddcbb92009-10-29 08:30:35 +01002351 if (tim_offset)
2352 *tim_offset = beacon->head_len;
2353 if (tim_length)
2354 *tim_length = skb->len - beacon->head_len;
2355
Johannes Berg902acc72008-02-23 15:17:19 +01002356 if (beacon->tail)
2357 memcpy(skb_put(skb, beacon->tail_len),
2358 beacon->tail, beacon->tail_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02002359 } else
2360 goto out;
Johannes Berg05c914f2008-09-11 00:01:58 +02002361 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg46900292009-02-15 12:44:28 +01002362 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg9d139c82008-07-09 14:40:37 +02002363 struct ieee80211_hdr *hdr;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002364 struct sk_buff *presp = rcu_dereference(ifibss->presp);
Johannes Berg902acc72008-02-23 15:17:19 +01002365
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002366 if (!presp)
Johannes Berg9d139c82008-07-09 14:40:37 +02002367 goto out;
2368
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002369 skb = skb_copy(presp, GFP_ATOMIC);
Johannes Berg9d139c82008-07-09 14:40:37 +02002370 if (!skb)
2371 goto out;
2372
2373 hdr = (struct ieee80211_hdr *) skb->data;
Harvey Harrisone7827a72008-07-15 18:44:13 -07002374 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2375 IEEE80211_STYPE_BEACON);
Johannes Berg902acc72008-02-23 15:17:19 +01002376 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
Johannes Berg472dbc42008-09-11 00:01:49 +02002377 struct ieee80211_mgmt *mgmt;
Javier Cardonadbf498f2012-03-31 11:31:32 -07002378 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02002379 u8 *pos;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -07002380 int hdr_len = offsetof(struct ieee80211_mgmt, u.beacon) +
2381 sizeof(mgmt->u.beacon);
Johannes Berg472dbc42008-09-11 00:01:49 +02002382
Johannes Bergac1bd842011-01-18 13:45:32 +01002383#ifdef CONFIG_MAC80211_MESH
2384 if (!sdata->u.mesh.mesh_id_len)
2385 goto out;
2386#endif
2387
Javier Cardonadbf498f2012-03-31 11:31:32 -07002388 if (ifmsh->sync_ops)
2389 ifmsh->sync_ops->adjust_tbtt(
2390 sdata);
2391
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -07002392 skb = dev_alloc_skb(local->tx_headroom +
2393 hdr_len +
2394 2 + /* NULL SSID */
2395 2 + 8 + /* supported rates */
2396 2 + 3 + /* DS params */
2397 2 + (IEEE80211_MAX_SUPP_RATES - 8) +
Thomas Pedersen176f3602011-10-26 14:47:27 -07002398 2 + sizeof(struct ieee80211_ht_cap) +
Johannes Berg074d46d2012-03-15 19:45:16 +01002399 2 + sizeof(struct ieee80211_ht_operation) +
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -07002400 2 + sdata->u.mesh.mesh_id_len +
2401 2 + sizeof(struct ieee80211_meshconf_ie) +
2402 sdata->u.mesh.ie_len);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002403 if (!skb)
2404 goto out;
2405
Johannes Berg902acc72008-02-23 15:17:19 +01002406 skb_reserve(skb, local->hw.extra_tx_headroom);
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -07002407 mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
2408 memset(mgmt, 0, hdr_len);
Harvey Harrison065e96052008-06-22 16:45:27 -07002409 mgmt->frame_control =
2410 cpu_to_le16(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_BEACON);
Johannes Berg902acc72008-02-23 15:17:19 +01002411 memset(mgmt->da, 0xff, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01002412 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
2413 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
Johannes Berg902acc72008-02-23 15:17:19 +01002414 mgmt->u.beacon.beacon_int =
Johannes Berg57c4d7b2009-04-23 16:10:04 +02002415 cpu_to_le16(sdata->vif.bss_conf.beacon_int);
Thomas Pedersen082ebb02011-08-11 19:35:10 -07002416 mgmt->u.beacon.capab_info |= cpu_to_le16(
2417 sdata->u.mesh.security ? WLAN_CAPABILITY_PRIVACY : 0);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002418
Johannes Berg902acc72008-02-23 15:17:19 +01002419 pos = skb_put(skb, 2);
2420 *pos++ = WLAN_EID_SSID;
2421 *pos++ = 0x0;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002422
Ashok Nagarajan657c3e02012-04-02 21:21:20 -07002423 if (ieee80211_add_srates_ie(&sdata->vif, skb, true) ||
Thomas Pedersen082ebb02011-08-11 19:35:10 -07002424 mesh_add_ds_params_ie(skb, sdata) ||
Ashok Nagarajan657c3e02012-04-02 21:21:20 -07002425 ieee80211_add_ext_srates_ie(&sdata->vif, skb, true) ||
Thomas Pedersen082ebb02011-08-11 19:35:10 -07002426 mesh_add_rsn_ie(skb, sdata) ||
Thomas Pedersen176f3602011-10-26 14:47:27 -07002427 mesh_add_ht_cap_ie(skb, sdata) ||
Johannes Berg074d46d2012-03-15 19:45:16 +01002428 mesh_add_ht_oper_ie(skb, sdata) ||
Thomas Pedersen082ebb02011-08-11 19:35:10 -07002429 mesh_add_meshid_ie(skb, sdata) ||
2430 mesh_add_meshconf_ie(skb, sdata) ||
2431 mesh_add_vendor_ies(skb, sdata)) {
2432 pr_err("o11s: couldn't add ies!\n");
2433 goto out;
2434 }
Johannes Berg9d139c82008-07-09 14:40:37 +02002435 } else {
2436 WARN_ON(1);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002437 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02002438 }
2439
Johannes Berge039fa42008-05-15 12:55:29 +02002440 info = IEEE80211_SKB_CB(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002441
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002442 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002443 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Johannes Berge039fa42008-05-15 12:55:29 +02002444 info->band = band;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002445
2446 memset(&txrc, 0, sizeof(txrc));
2447 txrc.hw = hw;
2448 txrc.sband = sband;
2449 txrc.bss_conf = &sdata->vif.bss_conf;
2450 txrc.skb = skb;
2451 txrc.reported_rate.idx = -1;
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002452 txrc.rate_idx_mask = sdata->rc_rateidx_mask[band];
2453 if (txrc.rate_idx_mask == (1 << sband->n_bitrates) - 1)
2454 txrc.max_rate_idx = -1;
2455 else
2456 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
Simon Wunderlich19468412012-01-28 17:25:33 +01002457 memcpy(txrc.rate_idx_mcs_mask, sdata->rc_rateidx_mcs_mask[band],
2458 sizeof(txrc.rate_idx_mcs_mask));
Felix Fietkau8f0729b2010-11-11 15:07:23 +01002459 txrc.bss = true;
Jouni Malinene00cfce2009-12-29 12:59:19 +02002460 rate_control_get_rate(sdata, NULL, &txrc);
Johannes Berge039fa42008-05-15 12:55:29 +02002461
2462 info->control.vif = vif;
Johannes Bergf591fa52008-07-10 11:21:26 +02002463
John W. Linvillea472e712010-05-06 14:45:17 -04002464 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT |
2465 IEEE80211_TX_CTL_ASSIGN_SEQ |
2466 IEEE80211_TX_CTL_FIRST_FRAGMENT;
Johannes Berge6a98542008-10-21 12:40:02 +02002467 out:
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002468 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002469 return skb;
2470}
Johannes Bergeddcbb92009-10-29 08:30:35 +01002471EXPORT_SYMBOL(ieee80211_beacon_get_tim);
Johannes Berge2ebc742007-07-27 15:43:22 +02002472
Arik Nemtsov02945822011-11-10 11:28:57 +02002473struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw,
2474 struct ieee80211_vif *vif)
2475{
2476 struct ieee80211_if_ap *ap = NULL;
2477 struct sk_buff *presp = NULL, *skb = NULL;
2478 struct ieee80211_hdr *hdr;
2479 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2480
2481 if (sdata->vif.type != NL80211_IFTYPE_AP)
2482 return NULL;
2483
2484 rcu_read_lock();
2485
2486 ap = &sdata->u.ap;
2487 presp = rcu_dereference(ap->probe_resp);
2488 if (!presp)
2489 goto out;
2490
2491 skb = skb_copy(presp, GFP_ATOMIC);
2492 if (!skb)
2493 goto out;
2494
2495 hdr = (struct ieee80211_hdr *) skb->data;
2496 memset(hdr->addr1, 0, sizeof(hdr->addr1));
2497
2498out:
2499 rcu_read_unlock();
2500 return skb;
2501}
2502EXPORT_SYMBOL(ieee80211_proberesp_get);
2503
Kalle Valo7044cc52010-01-05 20:16:19 +02002504struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw,
2505 struct ieee80211_vif *vif)
2506{
2507 struct ieee80211_sub_if_data *sdata;
2508 struct ieee80211_if_managed *ifmgd;
2509 struct ieee80211_pspoll *pspoll;
2510 struct ieee80211_local *local;
2511 struct sk_buff *skb;
2512
2513 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2514 return NULL;
2515
2516 sdata = vif_to_sdata(vif);
2517 ifmgd = &sdata->u.mgd;
2518 local = sdata->local;
2519
2520 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
Joe Perchesd15b8452011-08-29 14:17:31 -07002521 if (!skb)
Kalle Valo7044cc52010-01-05 20:16:19 +02002522 return NULL;
Joe Perchesd15b8452011-08-29 14:17:31 -07002523
Kalle Valo7044cc52010-01-05 20:16:19 +02002524 skb_reserve(skb, local->hw.extra_tx_headroom);
2525
2526 pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll));
2527 memset(pspoll, 0, sizeof(*pspoll));
2528 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
2529 IEEE80211_STYPE_PSPOLL);
2530 pspoll->aid = cpu_to_le16(ifmgd->aid);
2531
2532 /* aid in PS-Poll has its two MSBs each set to 1 */
2533 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
2534
2535 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
2536 memcpy(pspoll->ta, vif->addr, ETH_ALEN);
2537
2538 return skb;
2539}
2540EXPORT_SYMBOL(ieee80211_pspoll_get);
2541
2542struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw,
2543 struct ieee80211_vif *vif)
2544{
2545 struct ieee80211_hdr_3addr *nullfunc;
2546 struct ieee80211_sub_if_data *sdata;
2547 struct ieee80211_if_managed *ifmgd;
2548 struct ieee80211_local *local;
2549 struct sk_buff *skb;
2550
2551 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2552 return NULL;
2553
2554 sdata = vif_to_sdata(vif);
2555 ifmgd = &sdata->u.mgd;
2556 local = sdata->local;
2557
2558 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*nullfunc));
Joe Perchesd15b8452011-08-29 14:17:31 -07002559 if (!skb)
Kalle Valo7044cc52010-01-05 20:16:19 +02002560 return NULL;
Joe Perchesd15b8452011-08-29 14:17:31 -07002561
Kalle Valo7044cc52010-01-05 20:16:19 +02002562 skb_reserve(skb, local->hw.extra_tx_headroom);
2563
2564 nullfunc = (struct ieee80211_hdr_3addr *) skb_put(skb,
2565 sizeof(*nullfunc));
2566 memset(nullfunc, 0, sizeof(*nullfunc));
2567 nullfunc->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
2568 IEEE80211_STYPE_NULLFUNC |
2569 IEEE80211_FCTL_TODS);
2570 memcpy(nullfunc->addr1, ifmgd->bssid, ETH_ALEN);
2571 memcpy(nullfunc->addr2, vif->addr, ETH_ALEN);
2572 memcpy(nullfunc->addr3, ifmgd->bssid, ETH_ALEN);
2573
2574 return skb;
2575}
2576EXPORT_SYMBOL(ieee80211_nullfunc_get);
2577
Kalle Valo05e54ea2010-01-05 20:16:38 +02002578struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw,
2579 struct ieee80211_vif *vif,
2580 const u8 *ssid, size_t ssid_len,
2581 const u8 *ie, size_t ie_len)
2582{
2583 struct ieee80211_sub_if_data *sdata;
2584 struct ieee80211_local *local;
2585 struct ieee80211_hdr_3addr *hdr;
2586 struct sk_buff *skb;
2587 size_t ie_ssid_len;
2588 u8 *pos;
2589
2590 sdata = vif_to_sdata(vif);
2591 local = sdata->local;
2592 ie_ssid_len = 2 + ssid_len;
2593
2594 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*hdr) +
2595 ie_ssid_len + ie_len);
Joe Perchesd15b8452011-08-29 14:17:31 -07002596 if (!skb)
Kalle Valo05e54ea2010-01-05 20:16:38 +02002597 return NULL;
Kalle Valo05e54ea2010-01-05 20:16:38 +02002598
2599 skb_reserve(skb, local->hw.extra_tx_headroom);
2600
2601 hdr = (struct ieee80211_hdr_3addr *) skb_put(skb, sizeof(*hdr));
2602 memset(hdr, 0, sizeof(*hdr));
2603 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2604 IEEE80211_STYPE_PROBE_REQ);
2605 memset(hdr->addr1, 0xff, ETH_ALEN);
2606 memcpy(hdr->addr2, vif->addr, ETH_ALEN);
2607 memset(hdr->addr3, 0xff, ETH_ALEN);
2608
2609 pos = skb_put(skb, ie_ssid_len);
2610 *pos++ = WLAN_EID_SSID;
2611 *pos++ = ssid_len;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002612 if (ssid_len)
Kalle Valo05e54ea2010-01-05 20:16:38 +02002613 memcpy(pos, ssid, ssid_len);
2614 pos += ssid_len;
2615
2616 if (ie) {
2617 pos = skb_put(skb, ie_len);
2618 memcpy(pos, ie, ie_len);
2619 }
2620
2621 return skb;
2622}
2623EXPORT_SYMBOL(ieee80211_probereq_get);
2624
Johannes Berg32bfd352007-12-19 01:31:26 +01002625void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02002626 const void *frame, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +02002627 const struct ieee80211_tx_info *frame_txctl,
Johannes Berge2ebc742007-07-27 15:43:22 +02002628 struct ieee80211_rts *rts)
2629{
2630 const struct ieee80211_hdr *hdr = frame;
Johannes Berge2ebc742007-07-27 15:43:22 +02002631
Harvey Harrison065e96052008-06-22 16:45:27 -07002632 rts->frame_control =
2633 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
Johannes Berg32bfd352007-12-19 01:31:26 +01002634 rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
2635 frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02002636 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
2637 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
2638}
2639EXPORT_SYMBOL(ieee80211_rts_get);
2640
Johannes Berg32bfd352007-12-19 01:31:26 +01002641void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02002642 const void *frame, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +02002643 const struct ieee80211_tx_info *frame_txctl,
Johannes Berge2ebc742007-07-27 15:43:22 +02002644 struct ieee80211_cts *cts)
2645{
2646 const struct ieee80211_hdr *hdr = frame;
Johannes Berge2ebc742007-07-27 15:43:22 +02002647
Harvey Harrison065e96052008-06-22 16:45:27 -07002648 cts->frame_control =
2649 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
Johannes Berg32bfd352007-12-19 01:31:26 +01002650 cts->duration = ieee80211_ctstoself_duration(hw, vif,
2651 frame_len, frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02002652 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
2653}
2654EXPORT_SYMBOL(ieee80211_ctstoself_get);
2655
2656struct sk_buff *
Johannes Berg32bfd352007-12-19 01:31:26 +01002657ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
Johannes Berge039fa42008-05-15 12:55:29 +02002658 struct ieee80211_vif *vif)
Johannes Berge2ebc742007-07-27 15:43:22 +02002659{
2660 struct ieee80211_local *local = hw_to_local(hw);
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002661 struct sk_buff *skb = NULL;
Johannes Berg5cf121c2008-02-25 16:27:43 +01002662 struct ieee80211_tx_data tx;
Johannes Berge2ebc742007-07-27 15:43:22 +02002663 struct ieee80211_sub_if_data *sdata;
2664 struct ieee80211_if_ap *bss = NULL;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002665 struct beacon_data *beacon;
Johannes Berge039fa42008-05-15 12:55:29 +02002666 struct ieee80211_tx_info *info;
Johannes Berge2ebc742007-07-27 15:43:22 +02002667
Johannes Berg32bfd352007-12-19 01:31:26 +01002668 sdata = vif_to_sdata(vif);
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002669 bss = &sdata->u.ap;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002670
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002671 rcu_read_lock();
2672 beacon = rcu_dereference(bss->beacon);
2673
Johannes Berg05c914f2008-09-11 00:01:58 +02002674 if (sdata->vif.type != NL80211_IFTYPE_AP || !beacon || !beacon->head)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002675 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01002676
Christian Lamparter512119b2011-01-31 20:48:44 +02002677 if (bss->dtim_count != 0 || !bss->dtim_bc_mc)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002678 goto out; /* send buffered bc/mc only after DTIM beacon */
Johannes Berge039fa42008-05-15 12:55:29 +02002679
Johannes Berge2ebc742007-07-27 15:43:22 +02002680 while (1) {
2681 skb = skb_dequeue(&bss->ps_bc_buf);
2682 if (!skb)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03002683 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02002684 local->total_ps_buffered--;
2685
2686 if (!skb_queue_empty(&bss->ps_bc_buf) && skb->len >= 2) {
2687 struct ieee80211_hdr *hdr =
2688 (struct ieee80211_hdr *) skb->data;
2689 /* more buffered multicast/broadcast frames ==> set
2690 * MoreData flag in IEEE 802.11 header to inform PS
2691 * STAs */
2692 hdr->frame_control |=
2693 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
2694 }
2695
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002696 if (!ieee80211_tx_prepare(sdata, &tx, skb))
Johannes Berge2ebc742007-07-27 15:43:22 +02002697 break;
2698 dev_kfree_skb_any(skb);
2699 }
Johannes Berge039fa42008-05-15 12:55:29 +02002700
2701 info = IEEE80211_SKB_CB(skb);
2702
Johannes Berg5cf121c2008-02-25 16:27:43 +01002703 tx.flags |= IEEE80211_TX_PS_BUFFERED;
2704 tx.channel = local->hw.conf.channel;
Johannes Berge039fa42008-05-15 12:55:29 +02002705 info->band = tx.channel->band;
Johannes Berge2ebc742007-07-27 15:43:22 +02002706
Johannes Berg97b045d2008-06-20 01:22:30 +02002707 if (invoke_tx_handlers(&tx))
Johannes Berge2ebc742007-07-27 15:43:22 +02002708 skb = NULL;
Johannes Berg97b045d2008-06-20 01:22:30 +02002709 out:
Johannes Bergd0709a62008-02-25 16:27:46 +01002710 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002711
2712 return skb;
2713}
2714EXPORT_SYMBOL(ieee80211_get_buffered_bc);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002715
Helmut Schaacf6bb792011-12-15 10:18:34 +01002716void ieee80211_tx_skb_tid(struct ieee80211_sub_if_data *sdata,
2717 struct sk_buff *skb, int tid)
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002718{
Johannes Berg3a25a8c2012-04-03 16:28:50 +02002719 int ac = ieee802_1d_to_ac[tid];
2720
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002721 skb_set_mac_header(skb, 0);
2722 skb_set_network_header(skb, 0);
2723 skb_set_transport_header(skb, 0);
2724
Johannes Berg3a25a8c2012-04-03 16:28:50 +02002725 skb_set_queue_mapping(skb, ac);
Helmut Schaacf6bb792011-12-15 10:18:34 +01002726 skb->priority = tid;
Johannes Bergcf0277e2010-01-05 18:00:58 +01002727
Johannes Berg3d34deb2009-06-18 17:25:11 +02002728 /*
2729 * The other path calling ieee80211_xmit is from the tasklet,
2730 * and while we can handle concurrent transmissions locking
2731 * requirements are that we do not come into tx with bhs on.
2732 */
2733 local_bh_disable();
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002734 ieee80211_xmit(sdata, skb);
Johannes Berg3d34deb2009-06-18 17:25:11 +02002735 local_bh_enable();
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002736}