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