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