sctp: return error if the asoc has been peeled off in sctp_wait_for_sndbuf
[pandora-kernel.git] / net / mac80211 / tx.c
1 /*
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>
20 #include <linux/rcupdate.h>
21 #include <linux/export.h>
22 #include <net/net_namespace.h>
23 #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"
29 #include "driver-ops.h"
30 #include "led.h"
31 #include "mesh.h"
32 #include "wep.h"
33 #include "wpa.h"
34 #include "wme.h"
35 #include "rate.h"
36
37 /* misc utils */
38
39 static __le16 ieee80211_duration(struct ieee80211_tx_data *tx, int group_addr,
40                                  int next_frag_len)
41 {
42         int rate, mrate, erp, dur, i;
43         struct ieee80211_rate *txrate;
44         struct ieee80211_local *local = tx->local;
45         struct ieee80211_supported_band *sband;
46         struct ieee80211_hdr *hdr;
47         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
48
49         /* assume HW handles this */
50         if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS)
51                 return 0;
52
53         /* uh huh? */
54         if (WARN_ON_ONCE(info->control.rates[0].idx < 0))
55                 return 0;
56
57         sband = local->hw.wiphy->bands[tx->channel->band];
58         txrate = &sband->bitrates[info->control.rates[0].idx];
59
60         erp = txrate->flags & IEEE80211_RATE_ERP_G;
61
62         /*
63          * data and mgmt (except PS Poll):
64          * - during CFP: 32768
65          * - during contention period:
66          *   if addr1 is group address: 0
67          *   if more fragments = 0 and addr1 is individual address: time to
68          *      transmit one ACK plus SIFS
69          *   if more fragments = 1 and addr1 is individual address: time to
70          *      transmit next fragment plus 2 x ACK plus 3 x SIFS
71          *
72          * IEEE 802.11, 9.6:
73          * - control response frame (CTS or ACK) shall be transmitted using the
74          *   same rate as the immediately previous frame in the frame exchange
75          *   sequence, if this rate belongs to the PHY mandatory rates, or else
76          *   at the highest possible rate belonging to the PHY rates in the
77          *   BSSBasicRateSet
78          */
79         hdr = (struct ieee80211_hdr *)tx->skb->data;
80         if (ieee80211_is_ctl(hdr->frame_control)) {
81                 /* TODO: These control frames are not currently sent by
82                  * mac80211, but should they be implemented, this function
83                  * needs to be updated to support duration field calculation.
84                  *
85                  * RTS: time needed to transmit pending data/mgmt frame plus
86                  *    one CTS frame plus one ACK frame plus 3 x SIFS
87                  * CTS: duration of immediately previous RTS minus time
88                  *    required to transmit CTS and its SIFS
89                  * ACK: 0 if immediately previous directed data/mgmt had
90                  *    more=0, with more=1 duration in ACK frame is duration
91                  *    from previous frame minus time needed to transmit ACK
92                  *    and its SIFS
93                  * PS Poll: BIT(15) | BIT(14) | aid
94                  */
95                 return 0;
96         }
97
98         /* data/mgmt */
99         if (0 /* FIX: data/mgmt during CFP */)
100                 return cpu_to_le16(32768);
101
102         if (group_addr) /* Group address as the destination - no ACK */
103                 return 0;
104
105         /* Individual destination address:
106          * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
107          * CTS and ACK frames shall be transmitted using the highest rate in
108          * basic rate set that is less than or equal to the rate of the
109          * immediately previous frame and that is using the same modulation
110          * (CCK or OFDM). If no basic rate set matches with these requirements,
111          * the highest mandatory rate of the PHY that is less than or equal to
112          * the rate of the previous frame is used.
113          * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
114          */
115         rate = -1;
116         /* use lowest available if everything fails */
117         mrate = sband->bitrates[0].bitrate;
118         for (i = 0; i < sband->n_bitrates; i++) {
119                 struct ieee80211_rate *r = &sband->bitrates[i];
120
121                 if (r->bitrate > txrate->bitrate)
122                         break;
123
124                 if (tx->sdata->vif.bss_conf.basic_rates & BIT(i))
125                         rate = r->bitrate;
126
127                 switch (sband->band) {
128                 case IEEE80211_BAND_2GHZ: {
129                         u32 flag;
130                         if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
131                                 flag = IEEE80211_RATE_MANDATORY_G;
132                         else
133                                 flag = IEEE80211_RATE_MANDATORY_B;
134                         if (r->flags & flag)
135                                 mrate = r->bitrate;
136                         break;
137                 }
138                 case IEEE80211_BAND_5GHZ:
139                         if (r->flags & IEEE80211_RATE_MANDATORY_A)
140                                 mrate = r->bitrate;
141                         break;
142                 case IEEE80211_NUM_BANDS:
143                         WARN_ON(1);
144                         break;
145                 }
146         }
147         if (rate == -1) {
148                 /* No matching basic rate found; use highest suitable mandatory
149                  * PHY rate */
150                 rate = mrate;
151         }
152
153         /* Time needed to transmit ACK
154          * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
155          * to closest integer */
156
157         dur = ieee80211_frame_duration(local, 10, rate, erp,
158                                 tx->sdata->vif.bss_conf.use_short_preamble);
159
160         if (next_frag_len) {
161                 /* Frame is fragmented: duration increases with time needed to
162                  * transmit next fragment plus ACK and 2 x SIFS. */
163                 dur *= 2; /* ACK + SIFS */
164                 /* next fragment */
165                 dur += ieee80211_frame_duration(local, next_frag_len,
166                                 txrate->bitrate, erp,
167                                 tx->sdata->vif.bss_conf.use_short_preamble);
168         }
169
170         return cpu_to_le16(dur);
171 }
172
173 static inline int is_ieee80211_device(struct ieee80211_local *local,
174                                       struct net_device *dev)
175 {
176         return local == wdev_priv(dev->ieee80211_ptr);
177 }
178
179 /* tx handlers */
180 static ieee80211_tx_result debug_noinline
181 ieee80211_tx_h_dynamic_ps(struct ieee80211_tx_data *tx)
182 {
183         struct ieee80211_local *local = tx->local;
184         struct ieee80211_if_managed *ifmgd;
185
186         /* driver doesn't support power save */
187         if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
188                 return TX_CONTINUE;
189
190         /* hardware does dynamic power save */
191         if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
192                 return TX_CONTINUE;
193
194         /* dynamic power save disabled */
195         if (local->hw.conf.dynamic_ps_timeout <= 0)
196                 return TX_CONTINUE;
197
198         /* we are scanning, don't enable power save */
199         if (local->scanning)
200                 return TX_CONTINUE;
201
202         if (!local->ps_sdata)
203                 return TX_CONTINUE;
204
205         /* No point if we're going to suspend */
206         if (local->quiescing)
207                 return TX_CONTINUE;
208
209         /* dynamic ps is supported only in managed mode */
210         if (tx->sdata->vif.type != NL80211_IFTYPE_STATION)
211                 return TX_CONTINUE;
212
213         ifmgd = &tx->sdata->u.mgd;
214
215         /*
216          * Don't wakeup from power save if u-apsd is enabled, voip ac has
217          * u-apsd enabled and the frame is in voip class. This effectively
218          * means that even if all access categories have u-apsd enabled, in
219          * practise u-apsd is only used with the voip ac. This is a
220          * workaround for the case when received voip class packets do not
221          * have correct qos tag for some reason, due the network or the
222          * peer application.
223          *
224          * Note: local->uapsd_queues access is racy here. If the value is
225          * changed via debugfs, user needs to reassociate manually to have
226          * everything in sync.
227          */
228         if ((ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
229             && (local->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
230             && skb_get_queue_mapping(tx->skb) == 0)
231                 return TX_CONTINUE;
232
233         if (local->hw.conf.flags & IEEE80211_CONF_PS) {
234                 ieee80211_stop_queues_by_reason(&local->hw,
235                                                 IEEE80211_QUEUE_STOP_REASON_PS);
236                 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
237                 ieee80211_queue_work(&local->hw,
238                                      &local->dynamic_ps_disable_work);
239         }
240
241         /* Don't restart the timer if we're not disassociated */
242         if (!ifmgd->associated)
243                 return TX_CONTINUE;
244
245         mod_timer(&local->dynamic_ps_timer, jiffies +
246                   msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
247
248         return TX_CONTINUE;
249 }
250
251 static ieee80211_tx_result debug_noinline
252 ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx)
253 {
254
255         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
256         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
257         bool assoc = false;
258
259         if (unlikely(info->flags & IEEE80211_TX_CTL_INJECTED))
260                 return TX_CONTINUE;
261
262         if (unlikely(test_bit(SCAN_OFF_CHANNEL, &tx->local->scanning)) &&
263             !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                  */
276                 return TX_DROP;
277
278         if (tx->sdata->vif.type == NL80211_IFTYPE_WDS)
279                 return TX_CONTINUE;
280
281         if (tx->flags & IEEE80211_TX_PS_BUFFERED)
282                 return TX_CONTINUE;
283
284         if (tx->sta)
285                 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
286
287         if (likely(tx->flags & IEEE80211_TX_UNICAST)) {
288                 if (unlikely(!assoc &&
289                              tx->sdata->vif.type != NL80211_IFTYPE_ADHOC &&
290                              ieee80211_is_data(hdr->frame_control))) {
291 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
292                         printk(KERN_DEBUG "%s: dropped data frame to not "
293                                "associated station %pM\n",
294                                tx->sdata->name, hdr->addr1);
295 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
296                         I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
297                         return TX_DROP;
298                 }
299         } else {
300                 if (unlikely(ieee80211_is_data(hdr->frame_control) &&
301                              tx->local->num_sta == 0 &&
302                              tx->sdata->vif.type != NL80211_IFTYPE_ADHOC)) {
303                         /*
304                          * No associated STAs - no need to send multicast
305                          * frames.
306                          */
307                         return TX_DROP;
308                 }
309                 return TX_CONTINUE;
310         }
311
312         return TX_CONTINUE;
313 }
314
315 /* This function is called whenever the AP is about to exceed the maximum limit
316  * of buffered frames for power saving STAs. This situation should not really
317  * happen often during normal operation, so dropping the oldest buffered packet
318  * from each queue should be OK to make some room for new frames. */
319 static void purge_old_ps_buffers(struct ieee80211_local *local)
320 {
321         int total = 0, purged = 0;
322         struct sk_buff *skb;
323         struct ieee80211_sub_if_data *sdata;
324         struct sta_info *sta;
325
326         /*
327          * virtual interfaces are protected by RCU
328          */
329         rcu_read_lock();
330
331         list_for_each_entry_rcu(sdata, &local->interfaces, list) {
332                 struct ieee80211_if_ap *ap;
333                 if (sdata->vif.type != NL80211_IFTYPE_AP)
334                         continue;
335                 ap = &sdata->u.ap;
336                 skb = skb_dequeue(&ap->ps_bc_buf);
337                 if (skb) {
338                         purged++;
339                         dev_kfree_skb(skb);
340                 }
341                 total += skb_queue_len(&ap->ps_bc_buf);
342         }
343
344         /*
345          * Drop one frame from each station from the lowest-priority
346          * AC that has frames at all.
347          */
348         list_for_each_entry_rcu(sta, &local->sta_list, list) {
349                 int ac;
350
351                 for (ac = IEEE80211_AC_BK; ac >= IEEE80211_AC_VO; ac--) {
352                         skb = skb_dequeue(&sta->ps_tx_buf[ac]);
353                         total += skb_queue_len(&sta->ps_tx_buf[ac]);
354                         if (skb) {
355                                 purged++;
356                                 dev_kfree_skb(skb);
357                                 break;
358                         }
359                 }
360         }
361
362         rcu_read_unlock();
363
364         local->total_ps_buffered = total;
365 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
366         wiphy_debug(local->hw.wiphy, "PS buffers full - purged %d frames\n",
367                     purged);
368 #endif
369 }
370
371 static ieee80211_tx_result
372 ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
373 {
374         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
375         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
376
377         /*
378          * broadcast/multicast frame
379          *
380          * If any of the associated stations is in power save mode,
381          * the frame is buffered to be sent after DTIM beacon frame.
382          * This is done either by the hardware or us.
383          */
384
385         /* powersaving STAs only in AP/VLAN mode */
386         if (!tx->sdata->bss)
387                 return TX_CONTINUE;
388
389         /* no buffering for ordered frames */
390         if (ieee80211_has_order(hdr->frame_control))
391                 return TX_CONTINUE;
392
393         /* no stations in PS mode */
394         if (!atomic_read(&tx->sdata->bss->num_sta_ps))
395                 return TX_CONTINUE;
396
397         info->flags |= IEEE80211_TX_CTL_SEND_AFTER_DTIM;
398
399         /* device releases frame after DTIM beacon */
400         if (!(tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING))
401                 return TX_CONTINUE;
402
403         /* buffered in mac80211 */
404         if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
405                 purge_old_ps_buffers(tx->local);
406
407         if (skb_queue_len(&tx->sdata->bss->ps_bc_buf) >= AP_MAX_BC_BUFFER) {
408 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
409                 if (net_ratelimit())
410                         printk(KERN_DEBUG "%s: BC TX buffer full - dropping the oldest frame\n",
411                                tx->sdata->name);
412 #endif
413                 dev_kfree_skb(skb_dequeue(&tx->sdata->bss->ps_bc_buf));
414         } else
415                 tx->local->total_ps_buffered++;
416
417         skb_queue_tail(&tx->sdata->bss->ps_bc_buf, tx->skb);
418
419         return TX_QUEUED;
420 }
421
422 static int ieee80211_use_mfp(__le16 fc, struct sta_info *sta,
423                              struct sk_buff *skb)
424 {
425         if (!ieee80211_is_mgmt(fc))
426                 return 0;
427
428         if (sta == NULL || !test_sta_flag(sta, WLAN_STA_MFP))
429                 return 0;
430
431         if (!ieee80211_is_robust_mgmt_frame((struct ieee80211_hdr *)
432                                             skb->data))
433                 return 0;
434
435         return 1;
436 }
437
438 static ieee80211_tx_result
439 ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
440 {
441         struct sta_info *sta = tx->sta;
442         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
443         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
444         struct ieee80211_local *local = tx->local;
445
446         if (unlikely(!sta ||
447                      ieee80211_is_probe_resp(hdr->frame_control) ||
448                      ieee80211_is_auth(hdr->frame_control) ||
449                      ieee80211_is_assoc_resp(hdr->frame_control) ||
450                      ieee80211_is_reassoc_resp(hdr->frame_control)))
451                 return TX_CONTINUE;
452
453         if (unlikely((test_sta_flag(sta, WLAN_STA_PS_STA) ||
454                       test_sta_flag(sta, WLAN_STA_PS_DRIVER)) &&
455                      !(info->flags & IEEE80211_TX_CTL_POLL_RESPONSE))) {
456                 int ac = skb_get_queue_mapping(tx->skb);
457
458 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
459                 printk(KERN_DEBUG "STA %pM aid %d: PS buffer for AC %d\n",
460                        sta->sta.addr, sta->sta.aid, ac);
461 #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
462                 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
463                         purge_old_ps_buffers(tx->local);
464
465                 /* sync with ieee80211_sta_ps_deliver_wakeup */
466                 spin_lock(&sta->ps_lock);
467                 /*
468                  * STA woke up the meantime and all the frames on ps_tx_buf have
469                  * been queued to pending queue. No reordering can happen, go
470                  * ahead and Tx the packet.
471                  */
472                 if (!test_sta_flag(sta, WLAN_STA_PS_STA) &&
473                     !test_sta_flag(sta, WLAN_STA_PS_DRIVER)) {
474                         spin_unlock(&sta->ps_lock);
475                         return TX_CONTINUE;
476                 }
477
478                 if (skb_queue_len(&sta->ps_tx_buf[ac]) >= STA_MAX_TX_BUFFER) {
479                         struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf[ac]);
480 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
481                         if (net_ratelimit())
482                                 printk(KERN_DEBUG "%s: STA %pM TX buffer for "
483                                        "AC %d full - dropping oldest frame\n",
484                                        tx->sdata->name, sta->sta.addr, ac);
485 #endif
486                         dev_kfree_skb(old);
487                 } else
488                         tx->local->total_ps_buffered++;
489
490                 info->control.jiffies = jiffies;
491                 info->control.vif = &tx->sdata->vif;
492                 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
493                 skb_queue_tail(&sta->ps_tx_buf[ac], tx->skb);
494                 spin_unlock(&sta->ps_lock);
495
496                 if (!timer_pending(&local->sta_cleanup))
497                         mod_timer(&local->sta_cleanup,
498                                   round_jiffies(jiffies +
499                                                 STA_INFO_CLEANUP_INTERVAL));
500
501                 /*
502                  * We queued up some frames, so the TIM bit might
503                  * need to be set, recalculate it.
504                  */
505                 sta_info_recalc_tim(sta);
506
507                 return TX_QUEUED;
508         }
509 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
510         else if (unlikely(test_sta_flag(sta, WLAN_STA_PS_STA))) {
511                 printk(KERN_DEBUG
512                        "%s: STA %pM in PS mode, but polling/in SP -> send frame\n",
513                        tx->sdata->name, sta->sta.addr);
514         }
515 #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
516
517         return TX_CONTINUE;
518 }
519
520 static ieee80211_tx_result debug_noinline
521 ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
522 {
523         if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
524                 return TX_CONTINUE;
525
526         if (tx->flags & IEEE80211_TX_UNICAST)
527                 return ieee80211_tx_h_unicast_ps_buf(tx);
528         else
529                 return ieee80211_tx_h_multicast_ps_buf(tx);
530 }
531
532 static ieee80211_tx_result debug_noinline
533 ieee80211_tx_h_check_control_port_protocol(struct ieee80211_tx_data *tx)
534 {
535         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
536
537         if (unlikely(tx->sdata->control_port_protocol == tx->skb->protocol)) {
538                 if (tx->sdata->control_port_no_encrypt)
539                         info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
540                 info->flags |= IEEE80211_TX_CTL_USE_MINRATE;
541         }
542
543         return TX_CONTINUE;
544 }
545
546 static ieee80211_tx_result debug_noinline
547 ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx)
548 {
549         struct ieee80211_key *key = NULL;
550         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
551         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
552
553         if (unlikely(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT))
554                 tx->key = NULL;
555         else if (tx->sta && (key = rcu_dereference(tx->sta->ptk)))
556                 tx->key = key;
557         else if (ieee80211_is_mgmt(hdr->frame_control) &&
558                  is_multicast_ether_addr(hdr->addr1) &&
559                  ieee80211_is_robust_mgmt_frame(hdr) &&
560                  (key = rcu_dereference(tx->sdata->default_mgmt_key)))
561                 tx->key = key;
562         else if (is_multicast_ether_addr(hdr->addr1) &&
563                  (key = rcu_dereference(tx->sdata->default_multicast_key)))
564                 tx->key = key;
565         else if (!is_multicast_ether_addr(hdr->addr1) &&
566                  (key = rcu_dereference(tx->sdata->default_unicast_key)))
567                 tx->key = key;
568         else if (tx->sdata->drop_unencrypted &&
569                  (tx->skb->protocol != tx->sdata->control_port_protocol) &&
570                  !(info->flags & IEEE80211_TX_CTL_INJECTED) &&
571                  (!ieee80211_is_robust_mgmt_frame(hdr) ||
572                   (ieee80211_is_action(hdr->frame_control) &&
573                    tx->sta && test_sta_flag(tx->sta, WLAN_STA_MFP)))) {
574                 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
575                 return TX_DROP;
576         } else
577                 tx->key = NULL;
578
579         if (tx->key) {
580                 bool skip_hw = false;
581
582                 tx->key->tx_rx_count++;
583                 /* TODO: add threshold stuff again */
584
585                 switch (tx->key->conf.cipher) {
586                 case WLAN_CIPHER_SUITE_WEP40:
587                 case WLAN_CIPHER_SUITE_WEP104:
588                         if (ieee80211_is_auth(hdr->frame_control))
589                                 break;
590                 case WLAN_CIPHER_SUITE_TKIP:
591                         if (!ieee80211_is_data_present(hdr->frame_control))
592                                 tx->key = NULL;
593                         break;
594                 case WLAN_CIPHER_SUITE_CCMP:
595                         if (!ieee80211_is_data_present(hdr->frame_control) &&
596                             !ieee80211_use_mfp(hdr->frame_control, tx->sta,
597                                                tx->skb))
598                                 tx->key = NULL;
599                         else
600                                 skip_hw = (tx->key->conf.flags &
601                                            IEEE80211_KEY_FLAG_SW_MGMT) &&
602                                         ieee80211_is_mgmt(hdr->frame_control);
603                         break;
604                 case WLAN_CIPHER_SUITE_AES_CMAC:
605                         if (!ieee80211_is_mgmt(hdr->frame_control))
606                                 tx->key = NULL;
607                         break;
608                 }
609
610                 if (unlikely(tx->key && tx->key->flags & KEY_FLAG_TAINTED))
611                         return TX_DROP;
612
613                 if (!skip_hw && tx->key &&
614                     tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
615                         info->control.hw_key = &tx->key->conf;
616         }
617
618         return TX_CONTINUE;
619 }
620
621 static ieee80211_tx_result debug_noinline
622 ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
623 {
624         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
625         struct ieee80211_hdr *hdr = (void *)tx->skb->data;
626         struct ieee80211_supported_band *sband;
627         struct ieee80211_rate *rate;
628         int i;
629         u32 len;
630         bool inval = false, rts = false, short_preamble = false;
631         struct ieee80211_tx_rate_control txrc;
632         bool assoc = false;
633
634         memset(&txrc, 0, sizeof(txrc));
635
636         sband = tx->local->hw.wiphy->bands[tx->channel->band];
637
638         len = min_t(u32, tx->skb->len + FCS_LEN,
639                          tx->local->hw.wiphy->frag_threshold);
640
641         /* set up the tx rate control struct we give the RC algo */
642         txrc.hw = local_to_hw(tx->local);
643         txrc.sband = sband;
644         txrc.bss_conf = &tx->sdata->vif.bss_conf;
645         txrc.skb = tx->skb;
646         txrc.reported_rate.idx = -1;
647         txrc.rate_idx_mask = tx->sdata->rc_rateidx_mask[tx->channel->band];
648         if (txrc.rate_idx_mask == (1 << sband->n_bitrates) - 1)
649                 txrc.max_rate_idx = -1;
650         else
651                 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
652         txrc.bss = (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
653                     tx->sdata->vif.type == NL80211_IFTYPE_ADHOC);
654
655         /* set up RTS protection if desired */
656         if (len > tx->local->hw.wiphy->rts_threshold) {
657                 txrc.rts = rts = true;
658         }
659
660         /*
661          * Use short preamble if the BSS can handle it, but not for
662          * management frames unless we know the receiver can handle
663          * that -- the management frame might be to a station that
664          * just wants a probe response.
665          */
666         if (tx->sdata->vif.bss_conf.use_short_preamble &&
667             (ieee80211_is_data(hdr->frame_control) ||
668              (tx->sta && test_sta_flag(tx->sta, WLAN_STA_SHORT_PREAMBLE))))
669                 txrc.short_preamble = short_preamble = true;
670
671         if (tx->sta)
672                 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
673
674         /*
675          * Lets not bother rate control if we're associated and cannot
676          * talk to the sta. This should not happen.
677          */
678         if (WARN(test_bit(SCAN_SW_SCANNING, &tx->local->scanning) && assoc &&
679                  !rate_usable_index_exists(sband, &tx->sta->sta),
680                  "%s: Dropped data frame as no usable bitrate found while "
681                  "scanning and associated. Target station: "
682                  "%pM on %d GHz band\n",
683                  tx->sdata->name, hdr->addr1,
684                  tx->channel->band ? 5 : 2))
685                 return TX_DROP;
686
687         /*
688          * If we're associated with the sta at this point we know we can at
689          * least send the frame at the lowest bit rate.
690          */
691         rate_control_get_rate(tx->sdata, tx->sta, &txrc);
692
693         if (unlikely(info->control.rates[0].idx < 0))
694                 return TX_DROP;
695
696         if (txrc.reported_rate.idx < 0) {
697                 txrc.reported_rate = info->control.rates[0];
698                 if (tx->sta && ieee80211_is_data(hdr->frame_control))
699                         tx->sta->last_tx_rate = txrc.reported_rate;
700         } else if (tx->sta)
701                 tx->sta->last_tx_rate = txrc.reported_rate;
702
703         if (unlikely(!info->control.rates[0].count))
704                 info->control.rates[0].count = 1;
705
706         if (WARN_ON_ONCE((info->control.rates[0].count > 1) &&
707                          (info->flags & IEEE80211_TX_CTL_NO_ACK)))
708                 info->control.rates[0].count = 1;
709
710         if (is_multicast_ether_addr(hdr->addr1)) {
711                 /*
712                  * XXX: verify the rate is in the basic rateset
713                  */
714                 return TX_CONTINUE;
715         }
716
717         /*
718          * set up the RTS/CTS rate as the fastest basic rate
719          * that is not faster than the data rate
720          *
721          * XXX: Should this check all retry rates?
722          */
723         if (!(info->control.rates[0].flags & IEEE80211_TX_RC_MCS)) {
724                 s8 baserate = 0;
725
726                 rate = &sband->bitrates[info->control.rates[0].idx];
727
728                 for (i = 0; i < sband->n_bitrates; i++) {
729                         /* must be a basic rate */
730                         if (!(tx->sdata->vif.bss_conf.basic_rates & BIT(i)))
731                                 continue;
732                         /* must not be faster than the data rate */
733                         if (sband->bitrates[i].bitrate > rate->bitrate)
734                                 continue;
735                         /* maximum */
736                         if (sband->bitrates[baserate].bitrate <
737                              sband->bitrates[i].bitrate)
738                                 baserate = i;
739                 }
740
741                 info->control.rts_cts_rate_idx = baserate;
742         }
743
744         for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
745                 /*
746                  * make sure there's no valid rate following
747                  * an invalid one, just in case drivers don't
748                  * take the API seriously to stop at -1.
749                  */
750                 if (inval) {
751                         info->control.rates[i].idx = -1;
752                         continue;
753                 }
754                 if (info->control.rates[i].idx < 0) {
755                         inval = true;
756                         continue;
757                 }
758
759                 /*
760                  * For now assume MCS is already set up correctly, this
761                  * needs to be fixed.
762                  */
763                 if (info->control.rates[i].flags & IEEE80211_TX_RC_MCS) {
764                         WARN_ON(info->control.rates[i].idx > 76);
765                         continue;
766                 }
767
768                 /* set up RTS protection if desired */
769                 if (rts)
770                         info->control.rates[i].flags |=
771                                 IEEE80211_TX_RC_USE_RTS_CTS;
772
773                 /* RC is busted */
774                 if (WARN_ON_ONCE(info->control.rates[i].idx >=
775                                  sband->n_bitrates)) {
776                         info->control.rates[i].idx = -1;
777                         continue;
778                 }
779
780                 rate = &sband->bitrates[info->control.rates[i].idx];
781
782                 /* set up short preamble */
783                 if (short_preamble &&
784                     rate->flags & IEEE80211_RATE_SHORT_PREAMBLE)
785                         info->control.rates[i].flags |=
786                                 IEEE80211_TX_RC_USE_SHORT_PREAMBLE;
787
788                 /* set up G protection */
789                 if (!rts && tx->sdata->vif.bss_conf.use_cts_prot &&
790                     rate->flags & IEEE80211_RATE_ERP_G)
791                         info->control.rates[i].flags |=
792                                 IEEE80211_TX_RC_USE_CTS_PROTECT;
793         }
794
795         return TX_CONTINUE;
796 }
797
798 static ieee80211_tx_result debug_noinline
799 ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
800 {
801         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
802         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
803         u16 *seq;
804         u8 *qc;
805         int tid;
806
807         /*
808          * Packet injection may want to control the sequence
809          * number, if we have no matching interface then we
810          * neither assign one ourselves nor ask the driver to.
811          */
812         if (unlikely(info->control.vif->type == NL80211_IFTYPE_MONITOR))
813                 return TX_CONTINUE;
814
815         if (unlikely(ieee80211_is_ctl(hdr->frame_control)))
816                 return TX_CONTINUE;
817
818         if (ieee80211_hdrlen(hdr->frame_control) < 24)
819                 return TX_CONTINUE;
820
821         if (ieee80211_is_qos_nullfunc(hdr->frame_control))
822                 return TX_CONTINUE;
823
824         /*
825          * Anything but QoS data that has a sequence number field
826          * (is long enough) gets a sequence number from the global
827          * counter.
828          */
829         if (!ieee80211_is_data_qos(hdr->frame_control)) {
830                 /* driver should assign sequence number */
831                 info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
832                 /* for pure STA mode without beacons, we can do it */
833                 hdr->seq_ctrl = cpu_to_le16(tx->sdata->sequence_number);
834                 tx->sdata->sequence_number += 0x10;
835                 return TX_CONTINUE;
836         }
837
838         /*
839          * This should be true for injected/management frames only, for
840          * management frames we have set the IEEE80211_TX_CTL_ASSIGN_SEQ
841          * above since they are not QoS-data frames.
842          */
843         if (!tx->sta)
844                 return TX_CONTINUE;
845
846         /* include per-STA, per-TID sequence counter */
847
848         qc = ieee80211_get_qos_ctl(hdr);
849         tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
850         seq = &tx->sta->tid_seq[tid];
851
852         hdr->seq_ctrl = cpu_to_le16(*seq);
853
854         /* Increase the sequence number. */
855         *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ;
856
857         return TX_CONTINUE;
858 }
859
860 static int ieee80211_fragment(struct ieee80211_local *local,
861                               struct sk_buff *skb, int hdrlen,
862                               int frag_threshold)
863 {
864         struct sk_buff *tail = skb, *tmp;
865         int per_fragm = frag_threshold - hdrlen - FCS_LEN;
866         int pos = hdrlen + per_fragm;
867         int rem = skb->len - hdrlen - per_fragm;
868
869         if (WARN_ON(rem < 0))
870                 return -EINVAL;
871
872         while (rem) {
873                 int fraglen = per_fragm;
874
875                 if (fraglen > rem)
876                         fraglen = rem;
877                 rem -= fraglen;
878                 tmp = dev_alloc_skb(local->tx_headroom +
879                                     frag_threshold +
880                                     IEEE80211_ENCRYPT_HEADROOM +
881                                     IEEE80211_ENCRYPT_TAILROOM);
882                 if (!tmp)
883                         return -ENOMEM;
884                 tail->next = tmp;
885                 tail = tmp;
886                 skb_reserve(tmp, local->tx_headroom +
887                                  IEEE80211_ENCRYPT_HEADROOM);
888                 /* copy control information */
889                 memcpy(tmp->cb, skb->cb, sizeof(tmp->cb));
890                 skb_copy_queue_mapping(tmp, skb);
891                 tmp->priority = skb->priority;
892                 tmp->dev = skb->dev;
893
894                 /* copy header and data */
895                 memcpy(skb_put(tmp, hdrlen), skb->data, hdrlen);
896                 memcpy(skb_put(tmp, fraglen), skb->data + pos, fraglen);
897
898                 pos += fraglen;
899         }
900
901         skb_trim(skb, hdrlen + per_fragm);
902         return 0;
903 }
904
905 static ieee80211_tx_result debug_noinline
906 ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
907 {
908         struct sk_buff *skb = tx->skb;
909         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
910         struct ieee80211_hdr *hdr = (void *)skb->data;
911         int frag_threshold = tx->local->hw.wiphy->frag_threshold;
912         int hdrlen;
913         int fragnum;
914
915         if (info->flags & IEEE80211_TX_CTL_DONTFRAG)
916                 return TX_CONTINUE;
917
918         if (tx->local->ops->set_frag_threshold)
919                 return TX_CONTINUE;
920
921         /*
922          * Warn when submitting a fragmented A-MPDU frame and drop it.
923          * This scenario is handled in ieee80211_tx_prepare but extra
924          * caution taken here as fragmented ampdu may cause Tx stop.
925          */
926         if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU))
927                 return TX_DROP;
928
929         hdrlen = ieee80211_hdrlen(hdr->frame_control);
930
931         /* internal error, why isn't DONTFRAG set? */
932         if (WARN_ON(skb->len + FCS_LEN <= frag_threshold))
933                 return TX_DROP;
934
935         /*
936          * Now fragment the frame. This will allocate all the fragments and
937          * chain them (using skb as the first fragment) to skb->next.
938          * During transmission, we will remove the successfully transmitted
939          * fragments from this list. When the low-level driver rejects one
940          * of the fragments then we will simply pretend to accept the skb
941          * but store it away as pending.
942          */
943         if (ieee80211_fragment(tx->local, skb, hdrlen, frag_threshold))
944                 return TX_DROP;
945
946         /* update duration/seq/flags of fragments */
947         fragnum = 0;
948         do {
949                 int next_len;
950                 const __le16 morefrags = cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
951
952                 hdr = (void *)skb->data;
953                 info = IEEE80211_SKB_CB(skb);
954
955                 if (skb->next) {
956                         hdr->frame_control |= morefrags;
957                         next_len = skb->next->len;
958                         /*
959                          * No multi-rate retries for fragmented frames, that
960                          * would completely throw off the NAV at other STAs.
961                          */
962                         info->control.rates[1].idx = -1;
963                         info->control.rates[2].idx = -1;
964                         info->control.rates[3].idx = -1;
965                         info->control.rates[4].idx = -1;
966                         BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 5);
967                         info->flags &= ~IEEE80211_TX_CTL_RATE_CTRL_PROBE;
968                 } else {
969                         hdr->frame_control &= ~morefrags;
970                         next_len = 0;
971                 }
972                 hdr->duration_id = ieee80211_duration(tx, 0, next_len);
973                 hdr->seq_ctrl |= cpu_to_le16(fragnum & IEEE80211_SCTL_FRAG);
974                 fragnum++;
975         } while ((skb = skb->next));
976
977         return TX_CONTINUE;
978 }
979
980 static ieee80211_tx_result debug_noinline
981 ieee80211_tx_h_stats(struct ieee80211_tx_data *tx)
982 {
983         struct sk_buff *skb = tx->skb;
984
985         if (!tx->sta)
986                 return TX_CONTINUE;
987
988         tx->sta->tx_packets++;
989         do {
990                 tx->sta->tx_fragments++;
991                 tx->sta->tx_bytes += skb->len;
992         } while ((skb = skb->next));
993
994         return TX_CONTINUE;
995 }
996
997 static ieee80211_tx_result debug_noinline
998 ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
999 {
1000         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
1001
1002         if (!tx->key)
1003                 return TX_CONTINUE;
1004
1005         switch (tx->key->conf.cipher) {
1006         case WLAN_CIPHER_SUITE_WEP40:
1007         case WLAN_CIPHER_SUITE_WEP104:
1008                 return ieee80211_crypto_wep_encrypt(tx);
1009         case WLAN_CIPHER_SUITE_TKIP:
1010                 return ieee80211_crypto_tkip_encrypt(tx);
1011         case WLAN_CIPHER_SUITE_CCMP:
1012                 return ieee80211_crypto_ccmp_encrypt(tx);
1013         case WLAN_CIPHER_SUITE_AES_CMAC:
1014                 return ieee80211_crypto_aes_cmac_encrypt(tx);
1015         default:
1016                 /* handle hw-only algorithm */
1017                 if (info->control.hw_key) {
1018                         ieee80211_tx_set_protected(tx);
1019                         return TX_CONTINUE;
1020                 }
1021                 break;
1022
1023         }
1024
1025         return TX_DROP;
1026 }
1027
1028 static ieee80211_tx_result debug_noinline
1029 ieee80211_tx_h_calculate_duration(struct ieee80211_tx_data *tx)
1030 {
1031         struct sk_buff *skb = tx->skb;
1032         struct ieee80211_hdr *hdr;
1033         int next_len;
1034         bool group_addr;
1035
1036         do {
1037                 hdr = (void *) skb->data;
1038                 if (unlikely(ieee80211_is_pspoll(hdr->frame_control)))
1039                         break; /* must not overwrite AID */
1040                 next_len = skb->next ? skb->next->len : 0;
1041                 group_addr = is_multicast_ether_addr(hdr->addr1);
1042
1043                 hdr->duration_id =
1044                         ieee80211_duration(tx, group_addr, next_len);
1045         } while ((skb = skb->next));
1046
1047         return TX_CONTINUE;
1048 }
1049
1050 /* actual transmit path */
1051
1052 static bool ieee80211_tx_prep_agg(struct ieee80211_tx_data *tx,
1053                                   struct sk_buff *skb,
1054                                   struct ieee80211_tx_info *info,
1055                                   struct tid_ampdu_tx *tid_tx,
1056                                   int tid)
1057 {
1058         bool queued = false;
1059
1060         if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1061                 info->flags |= IEEE80211_TX_CTL_AMPDU;
1062         } else if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
1063                 /*
1064                  * nothing -- this aggregation session is being started
1065                  * but that might still fail with the driver
1066                  */
1067         } else {
1068                 spin_lock(&tx->sta->lock);
1069                 /*
1070                  * Need to re-check now, because we may get here
1071                  *
1072                  *  1) in the window during which the setup is actually
1073                  *     already done, but not marked yet because not all
1074                  *     packets are spliced over to the driver pending
1075                  *     queue yet -- if this happened we acquire the lock
1076                  *     either before or after the splice happens, but
1077                  *     need to recheck which of these cases happened.
1078                  *
1079                  *  2) during session teardown, if the OPERATIONAL bit
1080                  *     was cleared due to the teardown but the pointer
1081                  *     hasn't been assigned NULL yet (or we loaded it
1082                  *     before it was assigned) -- in this case it may
1083                  *     now be NULL which means we should just let the
1084                  *     packet pass through because splicing the frames
1085                  *     back is already done.
1086                  */
1087                 tid_tx = rcu_dereference_protected_tid_tx(tx->sta, tid);
1088
1089                 if (!tid_tx) {
1090                         /* do nothing, let packet pass through */
1091                 } else if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1092                         info->flags |= IEEE80211_TX_CTL_AMPDU;
1093                 } else {
1094                         queued = true;
1095                         info->control.vif = &tx->sdata->vif;
1096                         info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1097                         __skb_queue_tail(&tid_tx->pending, skb);
1098                 }
1099                 spin_unlock(&tx->sta->lock);
1100         }
1101
1102         return queued;
1103 }
1104
1105 /*
1106  * initialises @tx
1107  */
1108 static ieee80211_tx_result
1109 ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
1110                      struct ieee80211_tx_data *tx,
1111                      struct sk_buff *skb)
1112 {
1113         struct ieee80211_local *local = sdata->local;
1114         struct ieee80211_hdr *hdr;
1115         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1116         int tid;
1117         u8 *qc;
1118
1119         memset(tx, 0, sizeof(*tx));
1120         tx->skb = skb;
1121         tx->local = local;
1122         tx->sdata = sdata;
1123         tx->channel = local->hw.conf.channel;
1124
1125         /*
1126          * If this flag is set to true anywhere, and we get here,
1127          * we are doing the needed processing, so remove the flag
1128          * now.
1129          */
1130         info->flags &= ~IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1131
1132         hdr = (struct ieee80211_hdr *) skb->data;
1133
1134         if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
1135                 tx->sta = rcu_dereference(sdata->u.vlan.sta);
1136                 if (!tx->sta && sdata->dev->ieee80211_ptr->use_4addr)
1137                         return TX_DROP;
1138         } else if (info->flags & IEEE80211_TX_CTL_INJECTED ||
1139                    tx->sdata->control_port_protocol == tx->skb->protocol) {
1140                 tx->sta = sta_info_get_bss(sdata, hdr->addr1);
1141         }
1142         if (!tx->sta)
1143                 tx->sta = sta_info_get(sdata, hdr->addr1);
1144
1145         if (tx->sta && ieee80211_is_data_qos(hdr->frame_control) &&
1146             !ieee80211_is_qos_nullfunc(hdr->frame_control) &&
1147             (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION) &&
1148             !(local->hw.flags & IEEE80211_HW_TX_AMPDU_SETUP_IN_HW)) {
1149                 struct tid_ampdu_tx *tid_tx;
1150
1151                 qc = ieee80211_get_qos_ctl(hdr);
1152                 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
1153
1154                 tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]);
1155                 if (tid_tx) {
1156                         bool queued;
1157
1158                         queued = ieee80211_tx_prep_agg(tx, skb, info,
1159                                                        tid_tx, tid);
1160
1161                         if (unlikely(queued))
1162                                 return TX_QUEUED;
1163                 }
1164         }
1165
1166         if (is_multicast_ether_addr(hdr->addr1)) {
1167                 tx->flags &= ~IEEE80211_TX_UNICAST;
1168                 info->flags |= IEEE80211_TX_CTL_NO_ACK;
1169         } else {
1170                 tx->flags |= IEEE80211_TX_UNICAST;
1171                 if (unlikely(local->wifi_wme_noack_test))
1172                         info->flags |= IEEE80211_TX_CTL_NO_ACK;
1173                 /*
1174                  * Flags are initialized to 0. Hence, no need to
1175                  * explicitly unset IEEE80211_TX_CTL_NO_ACK since
1176                  * it might already be set for injected frames.
1177                  */
1178         }
1179
1180         if (!(info->flags & IEEE80211_TX_CTL_DONTFRAG)) {
1181                 if (!(tx->flags & IEEE80211_TX_UNICAST) ||
1182                     skb->len + FCS_LEN <= local->hw.wiphy->frag_threshold ||
1183                     info->flags & IEEE80211_TX_CTL_AMPDU)
1184                         info->flags |= IEEE80211_TX_CTL_DONTFRAG;
1185         }
1186
1187         if (!tx->sta)
1188                 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
1189         else if (test_and_clear_sta_flag(tx->sta, WLAN_STA_CLEAR_PS_FILT))
1190                 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
1191
1192         info->flags |= IEEE80211_TX_CTL_FIRST_FRAGMENT;
1193
1194         return TX_CONTINUE;
1195 }
1196
1197 /*
1198  * Returns false if the frame couldn't be transmitted but was queued instead.
1199  */
1200 static bool __ieee80211_tx(struct ieee80211_local *local, struct sk_buff **skbp,
1201                            struct sta_info *sta, bool txpending)
1202 {
1203         struct sk_buff *skb = *skbp, *next;
1204         struct ieee80211_tx_info *info;
1205         struct ieee80211_sub_if_data *sdata;
1206         unsigned long flags;
1207         int len;
1208         bool fragm = false;
1209
1210         while (skb) {
1211                 int q = skb_get_queue_mapping(skb);
1212                 __le16 fc;
1213
1214                 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1215                 if (local->queue_stop_reasons[q] ||
1216                     (!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                          */
1222
1223                         do {
1224                                 next = skb->next;
1225                                 skb->next = NULL;
1226                                 /*
1227                                  * NB: If txpending is true, next must already
1228                                  * be NULL since we must've gone through this
1229                                  * loop before already; therefore we can just
1230                                  * queue the frame to the head without worrying
1231                                  * about reordering of fragments.
1232                                  */
1233                                 if (unlikely(txpending))
1234                                         __skb_queue_head(&local->pending[q],
1235                                                          skb);
1236                                 else
1237                                         __skb_queue_tail(&local->pending[q],
1238                                                          skb);
1239                         } while ((skb = next));
1240
1241                         spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1242                                                flags);
1243                         return false;
1244                 }
1245                 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
1246
1247                 info = IEEE80211_SKB_CB(skb);
1248
1249                 if (fragm)
1250                         info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT |
1251                                          IEEE80211_TX_CTL_FIRST_FRAGMENT);
1252
1253                 next = skb->next;
1254                 len = skb->len;
1255
1256                 if (next)
1257                         info->flags |= IEEE80211_TX_CTL_MORE_FRAMES;
1258
1259                 sdata = vif_to_sdata(info->control.vif);
1260
1261                 switch (sdata->vif.type) {
1262                 case NL80211_IFTYPE_MONITOR:
1263                         info->control.vif = NULL;
1264                         break;
1265                 case NL80211_IFTYPE_AP_VLAN:
1266                         info->control.vif = &container_of(sdata->bss,
1267                                 struct ieee80211_sub_if_data, u.ap)->vif;
1268                         break;
1269                 default:
1270                         /* keep */
1271                         break;
1272                 }
1273
1274                 if (sta && sta->uploaded)
1275                         info->control.sta = &sta->sta;
1276                 else
1277                         info->control.sta = NULL;
1278
1279                 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
1280                 drv_tx(local, skb);
1281
1282                 ieee80211_tpt_led_trig_tx(local, fc, len);
1283                 *skbp = skb = next;
1284                 ieee80211_led_tx(local, 1);
1285                 fragm = true;
1286         }
1287
1288         return true;
1289 }
1290
1291 /*
1292  * Invoke TX handlers, return 0 on success and non-zero if the
1293  * frame was dropped or queued.
1294  */
1295 static int invoke_tx_handlers(struct ieee80211_tx_data *tx)
1296 {
1297         struct sk_buff *skb = tx->skb;
1298         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1299         ieee80211_tx_result res = TX_DROP;
1300
1301 #define CALL_TXH(txh) \
1302         do {                            \
1303                 res = txh(tx);          \
1304                 if (res != TX_CONTINUE) \
1305                         goto txh_done;  \
1306         } while (0)
1307
1308         CALL_TXH(ieee80211_tx_h_dynamic_ps);
1309         CALL_TXH(ieee80211_tx_h_check_assoc);
1310         CALL_TXH(ieee80211_tx_h_ps_buf);
1311         CALL_TXH(ieee80211_tx_h_check_control_port_protocol);
1312         CALL_TXH(ieee80211_tx_h_select_key);
1313         if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL))
1314                 CALL_TXH(ieee80211_tx_h_rate_ctrl);
1315
1316         if (unlikely(info->flags & IEEE80211_TX_INTFL_RETRANSMISSION))
1317                 goto txh_done;
1318
1319         CALL_TXH(ieee80211_tx_h_michael_mic_add);
1320         CALL_TXH(ieee80211_tx_h_sequence);
1321         CALL_TXH(ieee80211_tx_h_fragment);
1322         /* handlers after fragment must be aware of tx info fragmentation! */
1323         CALL_TXH(ieee80211_tx_h_stats);
1324         CALL_TXH(ieee80211_tx_h_encrypt);
1325         if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL))
1326                 CALL_TXH(ieee80211_tx_h_calculate_duration);
1327 #undef CALL_TXH
1328
1329  txh_done:
1330         if (unlikely(res == TX_DROP)) {
1331                 I802_DEBUG_INC(tx->local->tx_handlers_drop);
1332                 while (skb) {
1333                         struct sk_buff *next;
1334
1335                         next = skb->next;
1336                         dev_kfree_skb(skb);
1337                         skb = next;
1338                 }
1339                 return -1;
1340         } else if (unlikely(res == TX_QUEUED)) {
1341                 I802_DEBUG_INC(tx->local->tx_handlers_queued);
1342                 return -1;
1343         }
1344
1345         return 0;
1346 }
1347
1348 /*
1349  * Returns false if the frame couldn't be transmitted but was queued instead.
1350  */
1351 static bool ieee80211_tx(struct ieee80211_sub_if_data *sdata,
1352                          struct sk_buff *skb, bool txpending)
1353 {
1354         struct ieee80211_local *local = sdata->local;
1355         struct ieee80211_tx_data tx;
1356         ieee80211_tx_result res_prepare;
1357         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1358         bool result = true;
1359
1360         if (unlikely(skb->len < 10)) {
1361                 dev_kfree_skb(skb);
1362                 return true;
1363         }
1364
1365         rcu_read_lock();
1366
1367         /* initialises tx */
1368         res_prepare = ieee80211_tx_prepare(sdata, &tx, skb);
1369
1370         if (unlikely(res_prepare == TX_DROP)) {
1371                 dev_kfree_skb(skb);
1372                 goto out;
1373         } else if (unlikely(res_prepare == TX_QUEUED)) {
1374                 goto out;
1375         }
1376
1377         tx.channel = local->hw.conf.channel;
1378         info->band = tx.channel->band;
1379
1380         if (!invoke_tx_handlers(&tx))
1381                 result = __ieee80211_tx(local, &tx.skb, tx.sta, txpending);
1382  out:
1383         rcu_read_unlock();
1384         return result;
1385 }
1386
1387 /* device xmit handlers */
1388
1389 static int ieee80211_skb_resize(struct ieee80211_sub_if_data *sdata,
1390                                 struct sk_buff *skb,
1391                                 int head_need, bool may_encrypt)
1392 {
1393         struct ieee80211_local *local = sdata->local;
1394         int tail_need = 0;
1395
1396         if (may_encrypt && sdata->crypto_tx_tailroom_needed_cnt) {
1397                 tail_need = IEEE80211_ENCRYPT_TAILROOM;
1398                 tail_need -= skb_tailroom(skb);
1399                 tail_need = max_t(int, tail_need, 0);
1400         }
1401
1402         if (skb_cloned(skb))
1403                 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
1404         else if (head_need || tail_need)
1405                 I802_DEBUG_INC(local->tx_expand_skb_head);
1406         else
1407                 return 0;
1408
1409         if (pskb_expand_head(skb, head_need, tail_need, GFP_ATOMIC)) {
1410                 wiphy_debug(local->hw.wiphy,
1411                             "failed to reallocate TX buffer\n");
1412                 return -ENOMEM;
1413         }
1414
1415         return 0;
1416 }
1417
1418 void ieee80211_xmit(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
1419 {
1420         struct ieee80211_local *local = sdata->local;
1421         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1422         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1423         int headroom;
1424         bool may_encrypt;
1425
1426         rcu_read_lock();
1427
1428         may_encrypt = !(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT);
1429
1430         headroom = local->tx_headroom;
1431         if (may_encrypt)
1432                 headroom += IEEE80211_ENCRYPT_HEADROOM;
1433         headroom -= skb_headroom(skb);
1434         headroom = max_t(int, 0, headroom);
1435
1436         if (ieee80211_skb_resize(sdata, skb, headroom, may_encrypt)) {
1437                 dev_kfree_skb(skb);
1438                 rcu_read_unlock();
1439                 return;
1440         }
1441
1442         hdr = (struct ieee80211_hdr *) skb->data;
1443         info->control.vif = &sdata->vif;
1444
1445         if (ieee80211_vif_is_mesh(&sdata->vif) &&
1446             ieee80211_is_data(hdr->frame_control) &&
1447                 !is_multicast_ether_addr(hdr->addr1))
1448                         if (mesh_nexthop_lookup(skb, sdata)) {
1449                                 /* skb queued: don't free */
1450                                 rcu_read_unlock();
1451                                 return;
1452                         }
1453
1454         ieee80211_set_qos_hdr(sdata, skb);
1455         ieee80211_tx(sdata, skb, false);
1456         rcu_read_unlock();
1457 }
1458
1459 static bool ieee80211_parse_tx_radiotap(struct sk_buff *skb)
1460 {
1461         struct ieee80211_radiotap_iterator iterator;
1462         struct ieee80211_radiotap_header *rthdr =
1463                 (struct ieee80211_radiotap_header *) skb->data;
1464         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1465         int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len,
1466                                                    NULL);
1467         u16 txflags;
1468
1469         info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
1470                        IEEE80211_TX_CTL_DONTFRAG;
1471
1472         /*
1473          * for every radiotap entry that is present
1474          * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
1475          * entries present, or -EINVAL on error)
1476          */
1477
1478         while (!ret) {
1479                 ret = ieee80211_radiotap_iterator_next(&iterator);
1480
1481                 if (ret)
1482                         continue;
1483
1484                 /* see if this argument is something we can use */
1485                 switch (iterator.this_arg_index) {
1486                 /*
1487                  * You must take care when dereferencing iterator.this_arg
1488                  * for multibyte types... the pointer is not aligned.  Use
1489                  * get_unaligned((type *)iterator.this_arg) to dereference
1490                  * iterator.this_arg for type "type" safely on all arches.
1491                 */
1492                 case IEEE80211_RADIOTAP_FLAGS:
1493                         if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
1494                                 /*
1495                                  * this indicates that the skb we have been
1496                                  * handed has the 32-bit FCS CRC at the end...
1497                                  * we should react to that by snipping it off
1498                                  * because it will be recomputed and added
1499                                  * on transmission
1500                                  */
1501                                 if (skb->len < (iterator._max_length + FCS_LEN))
1502                                         return false;
1503
1504                                 skb_trim(skb, skb->len - FCS_LEN);
1505                         }
1506                         if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
1507                                 info->flags &= ~IEEE80211_TX_INTFL_DONT_ENCRYPT;
1508                         if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
1509                                 info->flags &= ~IEEE80211_TX_CTL_DONTFRAG;
1510                         break;
1511
1512                 case IEEE80211_RADIOTAP_TX_FLAGS:
1513                         txflags = get_unaligned_le16(iterator.this_arg);
1514                         if (txflags & IEEE80211_RADIOTAP_F_TX_NOACK)
1515                                 info->flags |= IEEE80211_TX_CTL_NO_ACK;
1516                         break;
1517
1518                 /*
1519                  * Please update the file
1520                  * Documentation/networking/mac80211-injection.txt
1521                  * when parsing new fields here.
1522                  */
1523
1524                 default:
1525                         break;
1526                 }
1527         }
1528
1529         if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
1530                 return false;
1531
1532         /*
1533          * remove the radiotap header
1534          * iterator->_max_length was sanity-checked against
1535          * skb->len by iterator init
1536          */
1537         skb_pull(skb, iterator._max_length);
1538
1539         return true;
1540 }
1541
1542 netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
1543                                          struct net_device *dev)
1544 {
1545         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1546         struct ieee80211_channel *chan = local->hw.conf.channel;
1547         struct ieee80211_radiotap_header *prthdr =
1548                 (struct ieee80211_radiotap_header *)skb->data;
1549         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1550         struct ieee80211_hdr *hdr;
1551         struct ieee80211_sub_if_data *tmp_sdata, *sdata;
1552         u16 len_rthdr;
1553         int hdrlen;
1554
1555         /*
1556          * Frame injection is not allowed if beaconing is not allowed
1557          * or if we need radar detection. Beaconing is usually not allowed when
1558          * the mode or operation (Adhoc, AP, Mesh) does not support DFS.
1559          * Passive scan is also used in world regulatory domains where
1560          * your country is not known and as such it should be treated as
1561          * NO TX unless the channel is explicitly allowed in which case
1562          * your current regulatory domain would not have the passive scan
1563          * flag.
1564          *
1565          * Since AP mode uses monitor interfaces to inject/TX management
1566          * frames we can make AP mode the exception to this rule once it
1567          * supports radar detection as its implementation can deal with
1568          * radar detection by itself. We can do that later by adding a
1569          * monitor flag interfaces used for AP support.
1570          */
1571         if ((chan->flags & (IEEE80211_CHAN_NO_IBSS | IEEE80211_CHAN_RADAR |
1572              IEEE80211_CHAN_PASSIVE_SCAN)))
1573                 goto fail;
1574
1575         /* check for not even having the fixed radiotap header part */
1576         if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1577                 goto fail; /* too short to be possibly valid */
1578
1579         /* is it a header version we can trust to find length from? */
1580         if (unlikely(prthdr->it_version))
1581                 goto fail; /* only version 0 is supported */
1582
1583         /* then there must be a radiotap header with a length we can use */
1584         len_rthdr = ieee80211_get_radiotap_len(skb->data);
1585
1586         /* does the skb contain enough to deliver on the alleged length? */
1587         if (unlikely(skb->len < len_rthdr))
1588                 goto fail; /* skb too short for claimed rt header extent */
1589
1590         /*
1591          * fix up the pointers accounting for the radiotap
1592          * header still being in there.  We are being given
1593          * a precooked IEEE80211 header so no need for
1594          * normal processing
1595          */
1596         skb_set_mac_header(skb, len_rthdr);
1597         /*
1598          * these are just fixed to the end of the rt area since we
1599          * don't have any better information and at this point, nobody cares
1600          */
1601         skb_set_network_header(skb, len_rthdr);
1602         skb_set_transport_header(skb, len_rthdr);
1603
1604         if (skb->len < len_rthdr + 2)
1605                 goto fail;
1606
1607         hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr);
1608         hdrlen = ieee80211_hdrlen(hdr->frame_control);
1609
1610         if (skb->len < len_rthdr + hdrlen)
1611                 goto fail;
1612
1613         /*
1614          * Initialize skb->protocol if the injected frame is a data frame
1615          * carrying a rfc1042 header
1616          */
1617         if (ieee80211_is_data(hdr->frame_control) &&
1618             skb->len >= len_rthdr + hdrlen + sizeof(rfc1042_header) + 2) {
1619                 u8 *payload = (u8 *)hdr + hdrlen;
1620
1621                 if (compare_ether_addr(payload, rfc1042_header) == 0)
1622                         skb->protocol = cpu_to_be16((payload[6] << 8) |
1623                                                     payload[7]);
1624         }
1625
1626         memset(info, 0, sizeof(*info));
1627
1628         info->flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
1629                       IEEE80211_TX_CTL_INJECTED;
1630
1631         /* process and remove the injection radiotap header */
1632         if (!ieee80211_parse_tx_radiotap(skb))
1633                 goto fail;
1634
1635         rcu_read_lock();
1636
1637         /*
1638          * We process outgoing injected frames that have a local address
1639          * we handle as though they are non-injected frames.
1640          * This code here isn't entirely correct, the local MAC address
1641          * isn't always enough to find the interface to use; for proper
1642          * VLAN/WDS support we will need a different mechanism (which
1643          * likely isn't going to be monitor interfaces).
1644          */
1645         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1646
1647         list_for_each_entry_rcu(tmp_sdata, &local->interfaces, list) {
1648                 if (!ieee80211_sdata_running(tmp_sdata))
1649                         continue;
1650                 if (tmp_sdata->vif.type == NL80211_IFTYPE_MONITOR ||
1651                     tmp_sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1652                     tmp_sdata->vif.type == NL80211_IFTYPE_WDS)
1653                         continue;
1654                 if (compare_ether_addr(tmp_sdata->vif.addr, hdr->addr2) == 0) {
1655                         sdata = tmp_sdata;
1656                         break;
1657                 }
1658         }
1659
1660         ieee80211_xmit(sdata, skb);
1661         rcu_read_unlock();
1662
1663         return NETDEV_TX_OK;
1664
1665 fail:
1666         dev_kfree_skb(skb);
1667         return NETDEV_TX_OK; /* meaning, we dealt with the skb */
1668 }
1669
1670 /**
1671  * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type
1672  * subinterfaces (wlan#, WDS, and VLAN interfaces)
1673  * @skb: packet to be sent
1674  * @dev: incoming interface
1675  *
1676  * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will
1677  * not be freed, and caller is responsible for either retrying later or freeing
1678  * skb).
1679  *
1680  * This function takes in an Ethernet header and encapsulates it with suitable
1681  * IEEE 802.11 header based on which interface the packet is coming in. The
1682  * encapsulated packet will then be passed to master interface, wlan#.11, for
1683  * transmission (through low-level driver).
1684  */
1685 netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb,
1686                                     struct net_device *dev)
1687 {
1688         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1689         struct ieee80211_local *local = sdata->local;
1690         struct ieee80211_tx_info *info;
1691         int ret = NETDEV_TX_BUSY, head_need;
1692         u16 ethertype, hdrlen,  meshhdrlen = 0;
1693         __le16 fc;
1694         struct ieee80211_hdr hdr;
1695         struct ieee80211s_hdr mesh_hdr __maybe_unused;
1696         struct mesh_path __maybe_unused *mppath = NULL;
1697         const u8 *encaps_data;
1698         int encaps_len, skip_header_bytes;
1699         int nh_pos, h_pos;
1700         struct sta_info *sta = NULL;
1701         bool wme_sta = false, authorized = false, tdls_auth = false;
1702         struct sk_buff *tmp_skb;
1703         bool tdls_direct = false;
1704
1705         if (unlikely(skb->len < ETH_HLEN)) {
1706                 ret = NETDEV_TX_OK;
1707                 goto fail;
1708         }
1709
1710         /* convert Ethernet header to proper 802.11 header (based on
1711          * operation mode) */
1712         ethertype = (skb->data[12] << 8) | skb->data[13];
1713         fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
1714
1715         switch (sdata->vif.type) {
1716         case NL80211_IFTYPE_AP_VLAN:
1717                 rcu_read_lock();
1718                 sta = rcu_dereference(sdata->u.vlan.sta);
1719                 if (sta) {
1720                         fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
1721                         /* RA TA DA SA */
1722                         memcpy(hdr.addr1, sta->sta.addr, ETH_ALEN);
1723                         memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
1724                         memcpy(hdr.addr3, skb->data, ETH_ALEN);
1725                         memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1726                         hdrlen = 30;
1727                         authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
1728                         wme_sta = test_sta_flag(sta, WLAN_STA_WME);
1729                 }
1730                 rcu_read_unlock();
1731                 if (sta)
1732                         break;
1733                 /* fall through */
1734         case NL80211_IFTYPE_AP:
1735                 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
1736                 /* DA BSSID SA */
1737                 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1738                 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
1739                 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1740                 hdrlen = 24;
1741                 break;
1742         case NL80211_IFTYPE_WDS:
1743                 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
1744                 /* RA TA DA SA */
1745                 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
1746                 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
1747                 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1748                 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1749                 hdrlen = 30;
1750                 break;
1751 #ifdef CONFIG_MAC80211_MESH
1752         case NL80211_IFTYPE_MESH_POINT:
1753                 if (!sdata->u.mesh.mshcfg.dot11MeshTTL) {
1754                         /* Do not send frames with mesh_ttl == 0 */
1755                         sdata->u.mesh.mshstats.dropped_frames_ttl++;
1756                         ret = NETDEV_TX_OK;
1757                         goto fail;
1758                 }
1759                 rcu_read_lock();
1760                 if (!is_multicast_ether_addr(skb->data))
1761                         mppath = mpp_path_lookup(skb->data, sdata);
1762
1763                 /*
1764                  * Use address extension if it is a packet from
1765                  * another interface or if we know the destination
1766                  * is being proxied by a portal (i.e. portal address
1767                  * differs from proxied address)
1768                  */
1769                 if (compare_ether_addr(sdata->vif.addr,
1770                                        skb->data + ETH_ALEN) == 0 &&
1771                     !(mppath && compare_ether_addr(mppath->mpp, skb->data))) {
1772                         hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
1773                                         skb->data, skb->data + ETH_ALEN);
1774                         rcu_read_unlock();
1775                         meshhdrlen = ieee80211_new_mesh_header(&mesh_hdr,
1776                                         sdata, NULL, NULL);
1777                 } else {
1778                         int is_mesh_mcast = 1;
1779                         const u8 *mesh_da;
1780
1781                         if (is_multicast_ether_addr(skb->data))
1782                                 /* DA TA mSA AE:SA */
1783                                 mesh_da = skb->data;
1784                         else {
1785                                 static const u8 bcast[ETH_ALEN] =
1786                                         { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
1787                                 if (mppath) {
1788                                         /* RA TA mDA mSA AE:DA SA */
1789                                         mesh_da = mppath->mpp;
1790                                         is_mesh_mcast = 0;
1791                                 } else {
1792                                         /* DA TA mSA AE:SA */
1793                                         mesh_da = bcast;
1794                                 }
1795                         }
1796                         hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
1797                                         mesh_da, sdata->vif.addr);
1798                         rcu_read_unlock();
1799                         if (is_mesh_mcast)
1800                                 meshhdrlen =
1801                                         ieee80211_new_mesh_header(&mesh_hdr,
1802                                                         sdata,
1803                                                         skb->data + ETH_ALEN,
1804                                                         NULL);
1805                         else
1806                                 meshhdrlen =
1807                                         ieee80211_new_mesh_header(&mesh_hdr,
1808                                                         sdata,
1809                                                         skb->data,
1810                                                         skb->data + ETH_ALEN);
1811
1812                 }
1813                 break;
1814 #endif
1815         case NL80211_IFTYPE_STATION:
1816                 if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) {
1817                         bool tdls_peer = false;
1818
1819                         rcu_read_lock();
1820                         sta = sta_info_get(sdata, skb->data);
1821                         if (sta) {
1822                                 authorized = test_sta_flag(sta,
1823                                                         WLAN_STA_AUTHORIZED);
1824                                 wme_sta = test_sta_flag(sta, WLAN_STA_WME);
1825                                 tdls_peer = test_sta_flag(sta,
1826                                                          WLAN_STA_TDLS_PEER);
1827                                 tdls_auth = test_sta_flag(sta,
1828                                                 WLAN_STA_TDLS_PEER_AUTH);
1829                         }
1830                         rcu_read_unlock();
1831
1832                         /*
1833                          * If the TDLS link is enabled, send everything
1834                          * directly. Otherwise, allow TDLS setup frames
1835                          * to be transmitted indirectly.
1836                          */
1837                         tdls_direct = tdls_peer && (tdls_auth ||
1838                                  !(ethertype == ETH_P_TDLS && skb->len > 14 &&
1839                                    skb->data[14] == WLAN_TDLS_SNAP_RFTYPE));
1840                 }
1841
1842                 if (tdls_direct) {
1843                         /* link during setup - throw out frames to peer */
1844                         if (!tdls_auth) {
1845                                 ret = NETDEV_TX_OK;
1846                                 goto fail;
1847                         }
1848
1849                         /* DA SA BSSID */
1850                         memcpy(hdr.addr1, skb->data, ETH_ALEN);
1851                         memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1852                         memcpy(hdr.addr3, sdata->u.mgd.bssid, ETH_ALEN);
1853                         hdrlen = 24;
1854                 }  else if (sdata->u.mgd.use_4addr &&
1855                             cpu_to_be16(ethertype) != sdata->control_port_protocol) {
1856                         fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
1857                                           IEEE80211_FCTL_TODS);
1858                         /* RA TA DA SA */
1859                         memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
1860                         memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
1861                         memcpy(hdr.addr3, skb->data, ETH_ALEN);
1862                         memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1863                         hdrlen = 30;
1864                 } else {
1865                         fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
1866                         /* BSSID SA DA */
1867                         memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
1868                         memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1869                         memcpy(hdr.addr3, skb->data, ETH_ALEN);
1870                         hdrlen = 24;
1871                 }
1872                 break;
1873         case NL80211_IFTYPE_ADHOC:
1874                 /* DA SA BSSID */
1875                 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1876                 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1877                 memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN);
1878                 hdrlen = 24;
1879                 break;
1880         default:
1881                 ret = NETDEV_TX_OK;
1882                 goto fail;
1883         }
1884
1885         /*
1886          * There's no need to try to look up the destination
1887          * if it is a multicast address (which can only happen
1888          * in AP mode)
1889          */
1890         if (!is_multicast_ether_addr(hdr.addr1)) {
1891                 rcu_read_lock();
1892                 sta = sta_info_get(sdata, hdr.addr1);
1893                 if (sta) {
1894                         authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
1895                         wme_sta = test_sta_flag(sta, WLAN_STA_WME);
1896                 }
1897                 rcu_read_unlock();
1898         }
1899
1900         /* For mesh, the use of the QoS header is mandatory */
1901         if (ieee80211_vif_is_mesh(&sdata->vif))
1902                 wme_sta = true;
1903
1904         /* receiver and we are QoS enabled, use a QoS type frame */
1905         if (wme_sta && local->hw.queues >= 4) {
1906                 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
1907                 hdrlen += 2;
1908         }
1909
1910         /*
1911          * Drop unicast frames to unauthorised stations unless they are
1912          * EAPOL frames from the local station.
1913          */
1914         if (unlikely(!ieee80211_vif_is_mesh(&sdata->vif) &&
1915                      !is_multicast_ether_addr(hdr.addr1) && !authorized &&
1916                      (cpu_to_be16(ethertype) != sdata->control_port_protocol ||
1917                       compare_ether_addr(sdata->vif.addr, skb->data + ETH_ALEN)))) {
1918 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1919                 if (net_ratelimit())
1920                         printk(KERN_DEBUG "%s: dropped frame to %pM"
1921                                " (unauthorized port)\n", dev->name,
1922                                hdr.addr1);
1923 #endif
1924
1925                 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
1926
1927                 ret = NETDEV_TX_OK;
1928                 goto fail;
1929         }
1930
1931         /*
1932          * If the skb is shared we need to obtain our own copy.
1933          */
1934         if (skb_shared(skb)) {
1935                 tmp_skb = skb;
1936                 skb = skb_clone(skb, GFP_ATOMIC);
1937                 kfree_skb(tmp_skb);
1938
1939                 if (!skb) {
1940                         ret = NETDEV_TX_OK;
1941                         goto fail;
1942                 }
1943         }
1944
1945         hdr.frame_control = fc;
1946         hdr.duration_id = 0;
1947         hdr.seq_ctrl = 0;
1948
1949         skip_header_bytes = ETH_HLEN;
1950         if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
1951                 encaps_data = bridge_tunnel_header;
1952                 encaps_len = sizeof(bridge_tunnel_header);
1953                 skip_header_bytes -= 2;
1954         } else if (ethertype >= 0x600) {
1955                 encaps_data = rfc1042_header;
1956                 encaps_len = sizeof(rfc1042_header);
1957                 skip_header_bytes -= 2;
1958         } else {
1959                 encaps_data = NULL;
1960                 encaps_len = 0;
1961         }
1962
1963         nh_pos = skb_network_header(skb) - skb->data;
1964         h_pos = skb_transport_header(skb) - skb->data;
1965
1966         skb_pull(skb, skip_header_bytes);
1967         nh_pos -= skip_header_bytes;
1968         h_pos -= skip_header_bytes;
1969
1970         head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb);
1971
1972         /*
1973          * So we need to modify the skb header and hence need a copy of
1974          * that. The head_need variable above doesn't, so far, include
1975          * the needed header space that we don't need right away. If we
1976          * can, then we don't reallocate right now but only after the
1977          * frame arrives at the master device (if it does...)
1978          *
1979          * If we cannot, however, then we will reallocate to include all
1980          * the ever needed space. Also, if we need to reallocate it anyway,
1981          * make it big enough for everything we may ever need.
1982          */
1983
1984         if (head_need > 0 || skb_cloned(skb)) {
1985                 head_need += IEEE80211_ENCRYPT_HEADROOM;
1986                 head_need += local->tx_headroom;
1987                 head_need = max_t(int, 0, head_need);
1988                 if (ieee80211_skb_resize(sdata, skb, head_need, true))
1989                         goto fail;
1990         }
1991
1992         if (encaps_data) {
1993                 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
1994                 nh_pos += encaps_len;
1995                 h_pos += encaps_len;
1996         }
1997
1998 #ifdef CONFIG_MAC80211_MESH
1999         if (meshhdrlen > 0) {
2000                 memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
2001                 nh_pos += meshhdrlen;
2002                 h_pos += meshhdrlen;
2003         }
2004 #endif
2005
2006         if (ieee80211_is_data_qos(fc)) {
2007                 __le16 *qos_control;
2008
2009                 qos_control = (__le16*) skb_push(skb, 2);
2010                 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
2011                 /*
2012                  * Maybe we could actually set some fields here, for now just
2013                  * initialise to zero to indicate no special operation.
2014                  */
2015                 *qos_control = 0;
2016         } else
2017                 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
2018
2019         nh_pos += hdrlen;
2020         h_pos += hdrlen;
2021
2022         dev->stats.tx_packets++;
2023         dev->stats.tx_bytes += skb->len;
2024
2025         /* Update skb pointers to various headers since this modified frame
2026          * is going to go through Linux networking code that may potentially
2027          * need things like pointer to IP header. */
2028         skb_set_mac_header(skb, 0);
2029         skb_set_network_header(skb, nh_pos);
2030         skb_set_transport_header(skb, h_pos);
2031
2032         info = IEEE80211_SKB_CB(skb);
2033         memset(info, 0, sizeof(*info));
2034
2035         dev->trans_start = jiffies;
2036         ieee80211_xmit(sdata, skb);
2037
2038         return NETDEV_TX_OK;
2039
2040  fail:
2041         if (ret == NETDEV_TX_OK)
2042                 dev_kfree_skb(skb);
2043
2044         return ret;
2045 }
2046
2047
2048 /*
2049  * ieee80211_clear_tx_pending may not be called in a context where
2050  * it is possible that it packets could come in again.
2051  */
2052 void ieee80211_clear_tx_pending(struct ieee80211_local *local)
2053 {
2054         int i;
2055
2056         for (i = 0; i < local->hw.queues; i++)
2057                 skb_queue_purge(&local->pending[i]);
2058 }
2059
2060 /*
2061  * Returns false if the frame couldn't be transmitted but was queued instead,
2062  * which in this case means re-queued -- take as an indication to stop sending
2063  * more pending frames.
2064  */
2065 static bool ieee80211_tx_pending_skb(struct ieee80211_local *local,
2066                                      struct sk_buff *skb)
2067 {
2068         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2069         struct ieee80211_sub_if_data *sdata;
2070         struct sta_info *sta;
2071         struct ieee80211_hdr *hdr;
2072         bool result;
2073
2074         sdata = vif_to_sdata(info->control.vif);
2075
2076         if (info->flags & IEEE80211_TX_INTFL_NEED_TXPROCESSING) {
2077                 result = ieee80211_tx(sdata, skb, true);
2078         } else {
2079                 hdr = (struct ieee80211_hdr *)skb->data;
2080                 sta = sta_info_get(sdata, hdr->addr1);
2081
2082                 result = __ieee80211_tx(local, &skb, sta, true);
2083         }
2084
2085         return result;
2086 }
2087
2088 /*
2089  * Transmit all pending packets. Called from tasklet.
2090  */
2091 void ieee80211_tx_pending(unsigned long data)
2092 {
2093         struct ieee80211_local *local = (struct ieee80211_local *)data;
2094         struct ieee80211_sub_if_data *sdata;
2095         unsigned long flags;
2096         int i;
2097         bool txok;
2098
2099         rcu_read_lock();
2100
2101         spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
2102         for (i = 0; i < local->hw.queues; i++) {
2103                 /*
2104                  * If queue is stopped by something other than due to pending
2105                  * frames, or we have no pending frames, proceed to next queue.
2106                  */
2107                 if (local->queue_stop_reasons[i] ||
2108                     skb_queue_empty(&local->pending[i]))
2109                         continue;
2110
2111                 while (!skb_queue_empty(&local->pending[i])) {
2112                         struct sk_buff *skb = __skb_dequeue(&local->pending[i]);
2113                         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2114
2115                         if (WARN_ON(!info->control.vif)) {
2116                                 kfree_skb(skb);
2117                                 continue;
2118                         }
2119
2120                         spin_unlock_irqrestore(&local->queue_stop_reason_lock,
2121                                                 flags);
2122
2123                         txok = ieee80211_tx_pending_skb(local, skb);
2124                         spin_lock_irqsave(&local->queue_stop_reason_lock,
2125                                           flags);
2126                         if (!txok)
2127                                 break;
2128                 }
2129
2130                 if (skb_queue_empty(&local->pending[i]))
2131                         list_for_each_entry_rcu(sdata, &local->interfaces, list)
2132                                 netif_wake_subqueue(sdata->dev, i);
2133         }
2134         spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
2135
2136         rcu_read_unlock();
2137 }
2138
2139 /* functions for drivers to get certain frames */
2140
2141 static void ieee80211_beacon_add_tim(struct ieee80211_if_ap *bss,
2142                                      struct sk_buff *skb,
2143                                      struct beacon_data *beacon)
2144 {
2145         u8 *pos, *tim;
2146         int aid0 = 0;
2147         int i, have_bits = 0, n1, n2;
2148
2149         /* Generate bitmap for TIM only if there are any STAs in power save
2150          * mode. */
2151         if (atomic_read(&bss->num_sta_ps) > 0)
2152                 /* in the hope that this is faster than
2153                  * checking byte-for-byte */
2154                 have_bits = !bitmap_empty((unsigned long*)bss->tim,
2155                                           IEEE80211_MAX_AID+1);
2156
2157         if (bss->dtim_count == 0)
2158                 bss->dtim_count = beacon->dtim_period - 1;
2159         else
2160                 bss->dtim_count--;
2161
2162         tim = pos = (u8 *) skb_put(skb, 6);
2163         *pos++ = WLAN_EID_TIM;
2164         *pos++ = 4;
2165         *pos++ = bss->dtim_count;
2166         *pos++ = beacon->dtim_period;
2167
2168         if (bss->dtim_count == 0 && !skb_queue_empty(&bss->ps_bc_buf))
2169                 aid0 = 1;
2170
2171         bss->dtim_bc_mc = aid0 == 1;
2172
2173         if (have_bits) {
2174                 /* Find largest even number N1 so that bits numbered 1 through
2175                  * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
2176                  * (N2 + 1) x 8 through 2007 are 0. */
2177                 n1 = 0;
2178                 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
2179                         if (bss->tim[i]) {
2180                                 n1 = i & 0xfe;
2181                                 break;
2182                         }
2183                 }
2184                 n2 = n1;
2185                 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
2186                         if (bss->tim[i]) {
2187                                 n2 = i;
2188                                 break;
2189                         }
2190                 }
2191
2192                 /* Bitmap control */
2193                 *pos++ = n1 | aid0;
2194                 /* Part Virt Bitmap */
2195                 memcpy(pos, bss->tim + n1, n2 - n1 + 1);
2196
2197                 tim[1] = n2 - n1 + 4;
2198                 skb_put(skb, n2 - n1);
2199         } else {
2200                 *pos++ = aid0; /* Bitmap control */
2201                 *pos++ = 0; /* Part Virt Bitmap */
2202         }
2203 }
2204
2205 struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
2206                                          struct ieee80211_vif *vif,
2207                                          u16 *tim_offset, u16 *tim_length)
2208 {
2209         struct ieee80211_local *local = hw_to_local(hw);
2210         struct sk_buff *skb = NULL;
2211         struct ieee80211_tx_info *info;
2212         struct ieee80211_sub_if_data *sdata = NULL;
2213         struct ieee80211_if_ap *ap = NULL;
2214         struct beacon_data *beacon;
2215         struct ieee80211_supported_band *sband;
2216         enum ieee80211_band band = local->hw.conf.channel->band;
2217         struct ieee80211_tx_rate_control txrc;
2218
2219         sband = local->hw.wiphy->bands[band];
2220
2221         rcu_read_lock();
2222
2223         sdata = vif_to_sdata(vif);
2224
2225         if (!ieee80211_sdata_running(sdata))
2226                 goto out;
2227
2228         if (tim_offset)
2229                 *tim_offset = 0;
2230         if (tim_length)
2231                 *tim_length = 0;
2232
2233         if (sdata->vif.type == NL80211_IFTYPE_AP) {
2234                 ap = &sdata->u.ap;
2235                 beacon = rcu_dereference(ap->beacon);
2236                 if (beacon) {
2237                         /*
2238                          * headroom, head length,
2239                          * tail length and maximum TIM length
2240                          */
2241                         skb = dev_alloc_skb(local->tx_headroom +
2242                                             beacon->head_len +
2243                                             beacon->tail_len + 256);
2244                         if (!skb)
2245                                 goto out;
2246
2247                         skb_reserve(skb, local->tx_headroom);
2248                         memcpy(skb_put(skb, beacon->head_len), beacon->head,
2249                                beacon->head_len);
2250
2251                         /*
2252                          * Not very nice, but we want to allow the driver to call
2253                          * ieee80211_beacon_get() as a response to the set_tim()
2254                          * callback. That, however, is already invoked under the
2255                          * sta_lock to guarantee consistent and race-free update
2256                          * of the tim bitmap in mac80211 and the driver.
2257                          */
2258                         if (local->tim_in_locked_section) {
2259                                 ieee80211_beacon_add_tim(ap, skb, beacon);
2260                         } else {
2261                                 unsigned long flags;
2262
2263                                 spin_lock_irqsave(&local->sta_lock, flags);
2264                                 ieee80211_beacon_add_tim(ap, skb, beacon);
2265                                 spin_unlock_irqrestore(&local->sta_lock, flags);
2266                         }
2267
2268                         if (tim_offset)
2269                                 *tim_offset = beacon->head_len;
2270                         if (tim_length)
2271                                 *tim_length = skb->len - beacon->head_len;
2272
2273                         if (beacon->tail)
2274                                 memcpy(skb_put(skb, beacon->tail_len),
2275                                        beacon->tail, beacon->tail_len);
2276                 } else
2277                         goto out;
2278         } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
2279                 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
2280                 struct ieee80211_hdr *hdr;
2281                 struct sk_buff *presp = rcu_dereference(ifibss->presp);
2282
2283                 if (!presp)
2284                         goto out;
2285
2286                 skb = skb_copy(presp, GFP_ATOMIC);
2287                 if (!skb)
2288                         goto out;
2289
2290                 hdr = (struct ieee80211_hdr *) skb->data;
2291                 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2292                                                  IEEE80211_STYPE_BEACON);
2293         } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
2294                 struct ieee80211_mgmt *mgmt;
2295                 u8 *pos;
2296
2297 #ifdef CONFIG_MAC80211_MESH
2298                 if (!sdata->u.mesh.mesh_id_len)
2299                         goto out;
2300 #endif
2301
2302                 /* headroom, head length, tail length and maximum TIM length */
2303                 skb = dev_alloc_skb(local->tx_headroom + 400 +
2304                                 sdata->u.mesh.ie_len);
2305                 if (!skb)
2306                         goto out;
2307
2308                 skb_reserve(skb, local->hw.extra_tx_headroom);
2309                 mgmt = (struct ieee80211_mgmt *)
2310                         skb_put(skb, 24 + sizeof(mgmt->u.beacon));
2311                 memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon));
2312                 mgmt->frame_control =
2313                     cpu_to_le16(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_BEACON);
2314                 memset(mgmt->da, 0xff, ETH_ALEN);
2315                 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
2316                 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
2317                 mgmt->u.beacon.beacon_int =
2318                         cpu_to_le16(sdata->vif.bss_conf.beacon_int);
2319                 mgmt->u.beacon.capab_info |= cpu_to_le16(
2320                         sdata->u.mesh.security ? WLAN_CAPABILITY_PRIVACY : 0);
2321
2322                 pos = skb_put(skb, 2);
2323                 *pos++ = WLAN_EID_SSID;
2324                 *pos++ = 0x0;
2325
2326                 if (ieee80211_add_srates_ie(&sdata->vif, skb) ||
2327                     mesh_add_ds_params_ie(skb, sdata) ||
2328                     ieee80211_add_ext_srates_ie(&sdata->vif, skb) ||
2329                     mesh_add_rsn_ie(skb, sdata) ||
2330                     mesh_add_meshid_ie(skb, sdata) ||
2331                     mesh_add_meshconf_ie(skb, sdata) ||
2332                     mesh_add_vendor_ies(skb, sdata)) {
2333                         pr_err("o11s: couldn't add ies!\n");
2334                         goto out;
2335                 }
2336         } else {
2337                 WARN_ON(1);
2338                 goto out;
2339         }
2340
2341         info = IEEE80211_SKB_CB(skb);
2342
2343         info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
2344         info->flags |= IEEE80211_TX_CTL_NO_ACK;
2345         info->band = band;
2346
2347         memset(&txrc, 0, sizeof(txrc));
2348         txrc.hw = hw;
2349         txrc.sband = sband;
2350         txrc.bss_conf = &sdata->vif.bss_conf;
2351         txrc.skb = skb;
2352         txrc.reported_rate.idx = -1;
2353         txrc.rate_idx_mask = sdata->rc_rateidx_mask[band];
2354         if (txrc.rate_idx_mask == (1 << sband->n_bitrates) - 1)
2355                 txrc.max_rate_idx = -1;
2356         else
2357                 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
2358         txrc.bss = true;
2359         rate_control_get_rate(sdata, NULL, &txrc);
2360
2361         info->control.vif = vif;
2362
2363         info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT |
2364                         IEEE80211_TX_CTL_ASSIGN_SEQ |
2365                         IEEE80211_TX_CTL_FIRST_FRAGMENT;
2366  out:
2367         rcu_read_unlock();
2368         return skb;
2369 }
2370 EXPORT_SYMBOL(ieee80211_beacon_get_tim);
2371
2372 struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw,
2373                                      struct ieee80211_vif *vif)
2374 {
2375         struct ieee80211_sub_if_data *sdata;
2376         struct ieee80211_if_managed *ifmgd;
2377         struct ieee80211_pspoll *pspoll;
2378         struct ieee80211_local *local;
2379         struct sk_buff *skb;
2380
2381         if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2382                 return NULL;
2383
2384         sdata = vif_to_sdata(vif);
2385         ifmgd = &sdata->u.mgd;
2386         local = sdata->local;
2387
2388         skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
2389         if (!skb)
2390                 return NULL;
2391
2392         skb_reserve(skb, local->hw.extra_tx_headroom);
2393
2394         pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll));
2395         memset(pspoll, 0, sizeof(*pspoll));
2396         pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
2397                                             IEEE80211_STYPE_PSPOLL);
2398         pspoll->aid = cpu_to_le16(ifmgd->aid);
2399
2400         /* aid in PS-Poll has its two MSBs each set to 1 */
2401         pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
2402
2403         memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
2404         memcpy(pspoll->ta, vif->addr, ETH_ALEN);
2405
2406         return skb;
2407 }
2408 EXPORT_SYMBOL(ieee80211_pspoll_get);
2409
2410 struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw,
2411                                        struct ieee80211_vif *vif)
2412 {
2413         struct ieee80211_hdr_3addr *nullfunc;
2414         struct ieee80211_sub_if_data *sdata;
2415         struct ieee80211_if_managed *ifmgd;
2416         struct ieee80211_local *local;
2417         struct sk_buff *skb;
2418
2419         if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2420                 return NULL;
2421
2422         sdata = vif_to_sdata(vif);
2423         ifmgd = &sdata->u.mgd;
2424         local = sdata->local;
2425
2426         skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*nullfunc));
2427         if (!skb)
2428                 return NULL;
2429
2430         skb_reserve(skb, local->hw.extra_tx_headroom);
2431
2432         nullfunc = (struct ieee80211_hdr_3addr *) skb_put(skb,
2433                                                           sizeof(*nullfunc));
2434         memset(nullfunc, 0, sizeof(*nullfunc));
2435         nullfunc->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
2436                                               IEEE80211_STYPE_NULLFUNC |
2437                                               IEEE80211_FCTL_TODS);
2438         memcpy(nullfunc->addr1, ifmgd->bssid, ETH_ALEN);
2439         memcpy(nullfunc->addr2, vif->addr, ETH_ALEN);
2440         memcpy(nullfunc->addr3, ifmgd->bssid, ETH_ALEN);
2441
2442         return skb;
2443 }
2444 EXPORT_SYMBOL(ieee80211_nullfunc_get);
2445
2446 struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw,
2447                                        struct ieee80211_vif *vif,
2448                                        const u8 *ssid, size_t ssid_len,
2449                                        const u8 *ie, size_t ie_len)
2450 {
2451         struct ieee80211_sub_if_data *sdata;
2452         struct ieee80211_local *local;
2453         struct ieee80211_hdr_3addr *hdr;
2454         struct sk_buff *skb;
2455         size_t ie_ssid_len;
2456         u8 *pos;
2457
2458         sdata = vif_to_sdata(vif);
2459         local = sdata->local;
2460         ie_ssid_len = 2 + ssid_len;
2461
2462         skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*hdr) +
2463                             ie_ssid_len + ie_len);
2464         if (!skb)
2465                 return NULL;
2466
2467         skb_reserve(skb, local->hw.extra_tx_headroom);
2468
2469         hdr = (struct ieee80211_hdr_3addr *) skb_put(skb, sizeof(*hdr));
2470         memset(hdr, 0, sizeof(*hdr));
2471         hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2472                                          IEEE80211_STYPE_PROBE_REQ);
2473         memset(hdr->addr1, 0xff, ETH_ALEN);
2474         memcpy(hdr->addr2, vif->addr, ETH_ALEN);
2475         memset(hdr->addr3, 0xff, ETH_ALEN);
2476
2477         pos = skb_put(skb, ie_ssid_len);
2478         *pos++ = WLAN_EID_SSID;
2479         *pos++ = ssid_len;
2480         if (ssid)
2481                 memcpy(pos, ssid, ssid_len);
2482         pos += ssid_len;
2483
2484         if (ie) {
2485                 pos = skb_put(skb, ie_len);
2486                 memcpy(pos, ie, ie_len);
2487         }
2488
2489         return skb;
2490 }
2491 EXPORT_SYMBOL(ieee80211_probereq_get);
2492
2493 void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2494                        const void *frame, size_t frame_len,
2495                        const struct ieee80211_tx_info *frame_txctl,
2496                        struct ieee80211_rts *rts)
2497 {
2498         const struct ieee80211_hdr *hdr = frame;
2499
2500         rts->frame_control =
2501             cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
2502         rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
2503                                                frame_txctl);
2504         memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
2505         memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
2506 }
2507 EXPORT_SYMBOL(ieee80211_rts_get);
2508
2509 void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2510                              const void *frame, size_t frame_len,
2511                              const struct ieee80211_tx_info *frame_txctl,
2512                              struct ieee80211_cts *cts)
2513 {
2514         const struct ieee80211_hdr *hdr = frame;
2515
2516         cts->frame_control =
2517             cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
2518         cts->duration = ieee80211_ctstoself_duration(hw, vif,
2519                                                      frame_len, frame_txctl);
2520         memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
2521 }
2522 EXPORT_SYMBOL(ieee80211_ctstoself_get);
2523
2524 struct sk_buff *
2525 ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
2526                           struct ieee80211_vif *vif)
2527 {
2528         struct ieee80211_local *local = hw_to_local(hw);
2529         struct sk_buff *skb = NULL;
2530         struct ieee80211_tx_data tx;
2531         struct ieee80211_sub_if_data *sdata;
2532         struct ieee80211_if_ap *bss = NULL;
2533         struct beacon_data *beacon;
2534         struct ieee80211_tx_info *info;
2535
2536         sdata = vif_to_sdata(vif);
2537         bss = &sdata->u.ap;
2538
2539         rcu_read_lock();
2540         beacon = rcu_dereference(bss->beacon);
2541
2542         if (sdata->vif.type != NL80211_IFTYPE_AP || !beacon || !beacon->head)
2543                 goto out;
2544
2545         if (bss->dtim_count != 0 || !bss->dtim_bc_mc)
2546                 goto out; /* send buffered bc/mc only after DTIM beacon */
2547
2548         while (1) {
2549                 skb = skb_dequeue(&bss->ps_bc_buf);
2550                 if (!skb)
2551                         goto out;
2552                 local->total_ps_buffered--;
2553
2554                 if (!skb_queue_empty(&bss->ps_bc_buf) && skb->len >= 2) {
2555                         struct ieee80211_hdr *hdr =
2556                                 (struct ieee80211_hdr *) skb->data;
2557                         /* more buffered multicast/broadcast frames ==> set
2558                          * MoreData flag in IEEE 802.11 header to inform PS
2559                          * STAs */
2560                         hdr->frame_control |=
2561                                 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
2562                 }
2563
2564                 if (!ieee80211_tx_prepare(sdata, &tx, skb))
2565                         break;
2566                 dev_kfree_skb_any(skb);
2567         }
2568
2569         info = IEEE80211_SKB_CB(skb);
2570
2571         tx.flags |= IEEE80211_TX_PS_BUFFERED;
2572         tx.channel = local->hw.conf.channel;
2573         info->band = tx.channel->band;
2574
2575         if (invoke_tx_handlers(&tx))
2576                 skb = NULL;
2577  out:
2578         rcu_read_unlock();
2579
2580         return skb;
2581 }
2582 EXPORT_SYMBOL(ieee80211_get_buffered_bc);
2583
2584 void ieee80211_tx_skb(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
2585 {
2586         skb_set_mac_header(skb, 0);
2587         skb_set_network_header(skb, 0);
2588         skb_set_transport_header(skb, 0);
2589
2590         /* Send all internal mgmt frames on VO. Accordingly set TID to 7. */
2591         skb_set_queue_mapping(skb, IEEE80211_AC_VO);
2592         skb->priority = 7;
2593
2594         /*
2595          * The other path calling ieee80211_xmit is from the tasklet,
2596          * and while we can handle concurrent transmissions locking
2597          * requirements are that we do not come into tx with bhs on.
2598          */
2599         local_bh_disable();
2600         ieee80211_xmit(sdata, skb);
2601         local_bh_enable();
2602 }