[PATCH] mac80211: fix virtual interface locking
[firefly-linux-kernel-4.4.55.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 <net/net_namespace.h>
22 #include <net/ieee80211_radiotap.h>
23 #include <net/cfg80211.h>
24 #include <net/mac80211.h>
25 #include <asm/unaligned.h>
26
27 #include "ieee80211_i.h"
28 #include "ieee80211_led.h"
29 #include "wep.h"
30 #include "wpa.h"
31 #include "wme.h"
32 #include "ieee80211_rate.h"
33
34 #define IEEE80211_TX_OK         0
35 #define IEEE80211_TX_AGAIN      1
36 #define IEEE80211_TX_FRAG_AGAIN 2
37
38 /* misc utils */
39
40 static inline void ieee80211_include_sequence(struct ieee80211_sub_if_data *sdata,
41                                               struct ieee80211_hdr *hdr)
42 {
43         /* Set the sequence number for this frame. */
44         hdr->seq_ctrl = cpu_to_le16(sdata->sequence);
45
46         /* Increase the sequence number. */
47         sdata->sequence = (sdata->sequence + 0x10) & IEEE80211_SCTL_SEQ;
48 }
49
50 #ifdef CONFIG_MAC80211_LOWTX_FRAME_DUMP
51 static void ieee80211_dump_frame(const char *ifname, const char *title,
52                                  const struct sk_buff *skb)
53 {
54         const struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
55         u16 fc;
56         int hdrlen;
57         DECLARE_MAC_BUF(mac);
58
59         printk(KERN_DEBUG "%s: %s (len=%d)", ifname, title, skb->len);
60         if (skb->len < 4) {
61                 printk("\n");
62                 return;
63         }
64
65         fc = le16_to_cpu(hdr->frame_control);
66         hdrlen = ieee80211_get_hdrlen(fc);
67         if (hdrlen > skb->len)
68                 hdrlen = skb->len;
69         if (hdrlen >= 4)
70                 printk(" FC=0x%04x DUR=0x%04x",
71                        fc, le16_to_cpu(hdr->duration_id));
72         if (hdrlen >= 10)
73                 printk(" A1=%s", print_mac(mac, hdr->addr1));
74         if (hdrlen >= 16)
75                 printk(" A2=%s", print_mac(mac, hdr->addr2));
76         if (hdrlen >= 24)
77                 printk(" A3=%s", print_mac(mac, hdr->addr3));
78         if (hdrlen >= 30)
79                 printk(" A4=%s", print_mac(mac, hdr->addr4));
80         printk("\n");
81 }
82 #else /* CONFIG_MAC80211_LOWTX_FRAME_DUMP */
83 static inline void ieee80211_dump_frame(const char *ifname, const char *title,
84                                         struct sk_buff *skb)
85 {
86 }
87 #endif /* CONFIG_MAC80211_LOWTX_FRAME_DUMP */
88
89 static u16 ieee80211_duration(struct ieee80211_txrx_data *tx, int group_addr,
90                               int next_frag_len)
91 {
92         int rate, mrate, erp, dur, i;
93         struct ieee80211_rate *txrate = tx->u.tx.rate;
94         struct ieee80211_local *local = tx->local;
95         struct ieee80211_hw_mode *mode = tx->u.tx.mode;
96
97         erp = txrate->flags & IEEE80211_RATE_ERP;
98
99         /*
100          * data and mgmt (except PS Poll):
101          * - during CFP: 32768
102          * - during contention period:
103          *   if addr1 is group address: 0
104          *   if more fragments = 0 and addr1 is individual address: time to
105          *      transmit one ACK plus SIFS
106          *   if more fragments = 1 and addr1 is individual address: time to
107          *      transmit next fragment plus 2 x ACK plus 3 x SIFS
108          *
109          * IEEE 802.11, 9.6:
110          * - control response frame (CTS or ACK) shall be transmitted using the
111          *   same rate as the immediately previous frame in the frame exchange
112          *   sequence, if this rate belongs to the PHY mandatory rates, or else
113          *   at the highest possible rate belonging to the PHY rates in the
114          *   BSSBasicRateSet
115          */
116
117         if ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL) {
118                 /* TODO: These control frames are not currently sent by
119                  * 80211.o, but should they be implemented, this function
120                  * needs to be updated to support duration field calculation.
121                  *
122                  * RTS: time needed to transmit pending data/mgmt frame plus
123                  *    one CTS frame plus one ACK frame plus 3 x SIFS
124                  * CTS: duration of immediately previous RTS minus time
125                  *    required to transmit CTS and its SIFS
126                  * ACK: 0 if immediately previous directed data/mgmt had
127                  *    more=0, with more=1 duration in ACK frame is duration
128                  *    from previous frame minus time needed to transmit ACK
129                  *    and its SIFS
130                  * PS Poll: BIT(15) | BIT(14) | aid
131                  */
132                 return 0;
133         }
134
135         /* data/mgmt */
136         if (0 /* FIX: data/mgmt during CFP */)
137                 return 32768;
138
139         if (group_addr) /* Group address as the destination - no ACK */
140                 return 0;
141
142         /* Individual destination address:
143          * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
144          * CTS and ACK frames shall be transmitted using the highest rate in
145          * basic rate set that is less than or equal to the rate of the
146          * immediately previous frame and that is using the same modulation
147          * (CCK or OFDM). If no basic rate set matches with these requirements,
148          * the highest mandatory rate of the PHY that is less than or equal to
149          * the rate of the previous frame is used.
150          * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
151          */
152         rate = -1;
153         mrate = 10; /* use 1 Mbps if everything fails */
154         for (i = 0; i < mode->num_rates; i++) {
155                 struct ieee80211_rate *r = &mode->rates[i];
156                 if (r->rate > txrate->rate)
157                         break;
158
159                 if (IEEE80211_RATE_MODULATION(txrate->flags) !=
160                     IEEE80211_RATE_MODULATION(r->flags))
161                         continue;
162
163                 if (r->flags & IEEE80211_RATE_BASIC)
164                         rate = r->rate;
165                 else if (r->flags & IEEE80211_RATE_MANDATORY)
166                         mrate = r->rate;
167         }
168         if (rate == -1) {
169                 /* No matching basic rate found; use highest suitable mandatory
170                  * PHY rate */
171                 rate = mrate;
172         }
173
174         /* Time needed to transmit ACK
175          * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
176          * to closest integer */
177
178         dur = ieee80211_frame_duration(local, 10, rate, erp,
179                        tx->sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE);
180
181         if (next_frag_len) {
182                 /* Frame is fragmented: duration increases with time needed to
183                  * transmit next fragment plus ACK and 2 x SIFS. */
184                 dur *= 2; /* ACK + SIFS */
185                 /* next fragment */
186                 dur += ieee80211_frame_duration(local, next_frag_len,
187                                 txrate->rate, erp,
188                                 tx->sdata->flags &
189                                         IEEE80211_SDATA_SHORT_PREAMBLE);
190         }
191
192         return dur;
193 }
194
195 static inline int __ieee80211_queue_stopped(const struct ieee80211_local *local,
196                                             int queue)
197 {
198         return test_bit(IEEE80211_LINK_STATE_XOFF, &local->state[queue]);
199 }
200
201 static inline int __ieee80211_queue_pending(const struct ieee80211_local *local,
202                                             int queue)
203 {
204         return test_bit(IEEE80211_LINK_STATE_PENDING, &local->state[queue]);
205 }
206
207 static int inline is_ieee80211_device(struct net_device *dev,
208                                       struct net_device *master)
209 {
210         return (wdev_priv(dev->ieee80211_ptr) ==
211                 wdev_priv(master->ieee80211_ptr));
212 }
213
214 /* tx handlers */
215
216 static ieee80211_txrx_result
217 ieee80211_tx_h_check_assoc(struct ieee80211_txrx_data *tx)
218 {
219 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
220         struct sk_buff *skb = tx->skb;
221         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
222 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
223         u32 sta_flags;
224
225         if (unlikely(tx->local->sta_scanning != 0) &&
226             ((tx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT ||
227              (tx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_PROBE_REQ))
228                 return TXRX_DROP;
229
230         if (tx->flags & IEEE80211_TXRXD_TXPS_BUFFERED)
231                 return TXRX_CONTINUE;
232
233         sta_flags = tx->sta ? tx->sta->flags : 0;
234
235         if (likely(tx->flags & IEEE80211_TXRXD_TXUNICAST)) {
236                 if (unlikely(!(sta_flags & WLAN_STA_ASSOC) &&
237                              tx->sdata->type != IEEE80211_IF_TYPE_IBSS &&
238                              (tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)) {
239 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
240                         DECLARE_MAC_BUF(mac);
241                         printk(KERN_DEBUG "%s: dropped data frame to not "
242                                "associated station %s\n",
243                                tx->dev->name, print_mac(mac, hdr->addr1));
244 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
245                         I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
246                         return TXRX_DROP;
247                 }
248         } else {
249                 if (unlikely((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA &&
250                              tx->local->num_sta == 0 &&
251                              tx->sdata->type != IEEE80211_IF_TYPE_IBSS)) {
252                         /*
253                          * No associated STAs - no need to send multicast
254                          * frames.
255                          */
256                         return TXRX_DROP;
257                 }
258                 return TXRX_CONTINUE;
259         }
260
261         if (unlikely(!tx->u.tx.mgmt_interface && tx->sdata->ieee802_1x &&
262                      !(sta_flags & WLAN_STA_AUTHORIZED))) {
263 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
264                 DECLARE_MAC_BUF(mac);
265                 printk(KERN_DEBUG "%s: dropped frame to %s"
266                        " (unauthorized port)\n", tx->dev->name,
267                        print_mac(mac, hdr->addr1));
268 #endif
269                 I802_DEBUG_INC(tx->local->tx_handlers_drop_unauth_port);
270                 return TXRX_DROP;
271         }
272
273         return TXRX_CONTINUE;
274 }
275
276 static ieee80211_txrx_result
277 ieee80211_tx_h_sequence(struct ieee80211_txrx_data *tx)
278 {
279         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
280
281         if (ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_control)) >= 24)
282                 ieee80211_include_sequence(tx->sdata, hdr);
283
284         return TXRX_CONTINUE;
285 }
286
287 /* This function is called whenever the AP is about to exceed the maximum limit
288  * of buffered frames for power saving STAs. This situation should not really
289  * happen often during normal operation, so dropping the oldest buffered packet
290  * from each queue should be OK to make some room for new frames. */
291 static void purge_old_ps_buffers(struct ieee80211_local *local)
292 {
293         int total = 0, purged = 0;
294         struct sk_buff *skb;
295         struct ieee80211_sub_if_data *sdata;
296         struct sta_info *sta;
297
298         /*
299          * virtual interfaces are protected by RCU
300          */
301         rcu_read_lock();
302
303         list_for_each_entry_rcu(sdata, &local->interfaces, list) {
304                 struct ieee80211_if_ap *ap;
305                 if (sdata->dev == local->mdev ||
306                     sdata->type != IEEE80211_IF_TYPE_AP)
307                         continue;
308                 ap = &sdata->u.ap;
309                 skb = skb_dequeue(&ap->ps_bc_buf);
310                 if (skb) {
311                         purged++;
312                         dev_kfree_skb(skb);
313                 }
314                 total += skb_queue_len(&ap->ps_bc_buf);
315         }
316         rcu_read_unlock();
317
318         read_lock_bh(&local->sta_lock);
319         list_for_each_entry(sta, &local->sta_list, list) {
320                 skb = skb_dequeue(&sta->ps_tx_buf);
321                 if (skb) {
322                         purged++;
323                         dev_kfree_skb(skb);
324                 }
325                 total += skb_queue_len(&sta->ps_tx_buf);
326         }
327         read_unlock_bh(&local->sta_lock);
328
329         local->total_ps_buffered = total;
330         printk(KERN_DEBUG "%s: PS buffers full - purged %d frames\n",
331                wiphy_name(local->hw.wiphy), purged);
332 }
333
334 static inline ieee80211_txrx_result
335 ieee80211_tx_h_multicast_ps_buf(struct ieee80211_txrx_data *tx)
336 {
337         /* broadcast/multicast frame */
338         /* If any of the associated stations is in power save mode,
339          * the frame is buffered to be sent after DTIM beacon frame */
340         if ((tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING) &&
341             tx->sdata->type != IEEE80211_IF_TYPE_WDS &&
342             tx->sdata->bss && atomic_read(&tx->sdata->bss->num_sta_ps) &&
343             !(tx->fc & IEEE80211_FCTL_ORDER)) {
344                 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
345                         purge_old_ps_buffers(tx->local);
346                 if (skb_queue_len(&tx->sdata->bss->ps_bc_buf) >=
347                     AP_MAX_BC_BUFFER) {
348                         if (net_ratelimit()) {
349                                 printk(KERN_DEBUG "%s: BC TX buffer full - "
350                                        "dropping the oldest frame\n",
351                                        tx->dev->name);
352                         }
353                         dev_kfree_skb(skb_dequeue(&tx->sdata->bss->ps_bc_buf));
354                 } else
355                         tx->local->total_ps_buffered++;
356                 skb_queue_tail(&tx->sdata->bss->ps_bc_buf, tx->skb);
357                 return TXRX_QUEUED;
358         }
359
360         return TXRX_CONTINUE;
361 }
362
363 static inline ieee80211_txrx_result
364 ieee80211_tx_h_unicast_ps_buf(struct ieee80211_txrx_data *tx)
365 {
366         struct sta_info *sta = tx->sta;
367         DECLARE_MAC_BUF(mac);
368
369         if (unlikely(!sta ||
370                      ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT &&
371                       (tx->fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP)))
372                 return TXRX_CONTINUE;
373
374         if (unlikely((sta->flags & WLAN_STA_PS) && !sta->pspoll)) {
375                 struct ieee80211_tx_packet_data *pkt_data;
376 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
377                 printk(KERN_DEBUG "STA %s aid %d: PS buffer (entries "
378                        "before %d)\n",
379                        print_mac(mac, sta->addr), sta->aid,
380                        skb_queue_len(&sta->ps_tx_buf));
381 #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
382                 sta->flags |= WLAN_STA_TIM;
383                 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
384                         purge_old_ps_buffers(tx->local);
385                 if (skb_queue_len(&sta->ps_tx_buf) >= STA_MAX_TX_BUFFER) {
386                         struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf);
387                         if (net_ratelimit()) {
388                                 printk(KERN_DEBUG "%s: STA %s TX "
389                                        "buffer full - dropping oldest frame\n",
390                                        tx->dev->name, print_mac(mac, sta->addr));
391                         }
392                         dev_kfree_skb(old);
393                 } else
394                         tx->local->total_ps_buffered++;
395                 /* Queue frame to be sent after STA sends an PS Poll frame */
396                 if (skb_queue_empty(&sta->ps_tx_buf)) {
397                         if (tx->local->ops->set_tim)
398                                 tx->local->ops->set_tim(local_to_hw(tx->local),
399                                                        sta->aid, 1);
400                         if (tx->sdata->bss)
401                                 bss_tim_set(tx->local, tx->sdata->bss, sta->aid);
402                 }
403                 pkt_data = (struct ieee80211_tx_packet_data *)tx->skb->cb;
404                 pkt_data->jiffies = jiffies;
405                 skb_queue_tail(&sta->ps_tx_buf, tx->skb);
406                 return TXRX_QUEUED;
407         }
408 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
409         else if (unlikely(sta->flags & WLAN_STA_PS)) {
410                 printk(KERN_DEBUG "%s: STA %s in PS mode, but pspoll "
411                        "set -> send frame\n", tx->dev->name,
412                        print_mac(mac, sta->addr));
413         }
414 #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
415         sta->pspoll = 0;
416
417         return TXRX_CONTINUE;
418 }
419
420
421 static ieee80211_txrx_result
422 ieee80211_tx_h_ps_buf(struct ieee80211_txrx_data *tx)
423 {
424         if (unlikely(tx->flags & IEEE80211_TXRXD_TXPS_BUFFERED))
425                 return TXRX_CONTINUE;
426
427         if (tx->flags & IEEE80211_TXRXD_TXUNICAST)
428                 return ieee80211_tx_h_unicast_ps_buf(tx);
429         else
430                 return ieee80211_tx_h_multicast_ps_buf(tx);
431 }
432
433
434
435
436 static ieee80211_txrx_result
437 ieee80211_tx_h_select_key(struct ieee80211_txrx_data *tx)
438 {
439         struct ieee80211_key *key;
440
441         if (unlikely(tx->u.tx.control->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
442                 tx->key = NULL;
443         else if (tx->sta && (key = rcu_dereference(tx->sta->key)))
444                 tx->key = key;
445         else if ((key = rcu_dereference(tx->sdata->default_key)))
446                 tx->key = key;
447         else if (tx->sdata->drop_unencrypted &&
448                  !(tx->sdata->eapol && ieee80211_is_eapol(tx->skb))) {
449                 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
450                 return TXRX_DROP;
451         } else {
452                 tx->key = NULL;
453                 tx->u.tx.control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
454         }
455
456         if (tx->key) {
457                 tx->key->tx_rx_count++;
458                 /* TODO: add threshold stuff again */
459         }
460
461         return TXRX_CONTINUE;
462 }
463
464 static ieee80211_txrx_result
465 ieee80211_tx_h_fragment(struct ieee80211_txrx_data *tx)
466 {
467         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
468         size_t hdrlen, per_fragm, num_fragm, payload_len, left;
469         struct sk_buff **frags, *first, *frag;
470         int i;
471         u16 seq;
472         u8 *pos;
473         int frag_threshold = tx->local->fragmentation_threshold;
474
475         if (!(tx->flags & IEEE80211_TXRXD_FRAGMENTED))
476                 return TXRX_CONTINUE;
477
478         first = tx->skb;
479
480         hdrlen = ieee80211_get_hdrlen(tx->fc);
481         payload_len = first->len - hdrlen;
482         per_fragm = frag_threshold - hdrlen - FCS_LEN;
483         num_fragm = DIV_ROUND_UP(payload_len, per_fragm);
484
485         frags = kzalloc(num_fragm * sizeof(struct sk_buff *), GFP_ATOMIC);
486         if (!frags)
487                 goto fail;
488
489         hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
490         seq = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_SEQ;
491         pos = first->data + hdrlen + per_fragm;
492         left = payload_len - per_fragm;
493         for (i = 0; i < num_fragm - 1; i++) {
494                 struct ieee80211_hdr *fhdr;
495                 size_t copylen;
496
497                 if (left <= 0)
498                         goto fail;
499
500                 /* reserve enough extra head and tail room for possible
501                  * encryption */
502                 frag = frags[i] =
503                         dev_alloc_skb(tx->local->tx_headroom +
504                                       frag_threshold +
505                                       IEEE80211_ENCRYPT_HEADROOM +
506                                       IEEE80211_ENCRYPT_TAILROOM);
507                 if (!frag)
508                         goto fail;
509                 /* Make sure that all fragments use the same priority so
510                  * that they end up using the same TX queue */
511                 frag->priority = first->priority;
512                 skb_reserve(frag, tx->local->tx_headroom +
513                                   IEEE80211_ENCRYPT_HEADROOM);
514                 fhdr = (struct ieee80211_hdr *) skb_put(frag, hdrlen);
515                 memcpy(fhdr, first->data, hdrlen);
516                 if (i == num_fragm - 2)
517                         fhdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREFRAGS);
518                 fhdr->seq_ctrl = cpu_to_le16(seq | ((i + 1) & IEEE80211_SCTL_FRAG));
519                 copylen = left > per_fragm ? per_fragm : left;
520                 memcpy(skb_put(frag, copylen), pos, copylen);
521
522                 pos += copylen;
523                 left -= copylen;
524         }
525         skb_trim(first, hdrlen + per_fragm);
526
527         tx->u.tx.num_extra_frag = num_fragm - 1;
528         tx->u.tx.extra_frag = frags;
529
530         return TXRX_CONTINUE;
531
532  fail:
533         printk(KERN_DEBUG "%s: failed to fragment frame\n", tx->dev->name);
534         if (frags) {
535                 for (i = 0; i < num_fragm - 1; i++)
536                         if (frags[i])
537                                 dev_kfree_skb(frags[i]);
538                 kfree(frags);
539         }
540         I802_DEBUG_INC(tx->local->tx_handlers_drop_fragment);
541         return TXRX_DROP;
542 }
543
544 static int wep_encrypt_skb(struct ieee80211_txrx_data *tx, struct sk_buff *skb)
545 {
546         if (!(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)) {
547                 if (ieee80211_wep_encrypt(tx->local, skb, tx->key))
548                         return -1;
549         } else {
550                 tx->u.tx.control->key_idx = tx->key->conf.hw_key_idx;
551                 if (tx->key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV) {
552                         if (!ieee80211_wep_add_iv(tx->local, skb, tx->key))
553                                 return -1;
554                 }
555         }
556         return 0;
557 }
558
559 static ieee80211_txrx_result
560 ieee80211_tx_h_wep_encrypt(struct ieee80211_txrx_data *tx)
561 {
562         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
563         u16 fc;
564
565         fc = le16_to_cpu(hdr->frame_control);
566
567         if (!tx->key || tx->key->conf.alg != ALG_WEP ||
568             ((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA &&
569              ((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT ||
570               (fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_AUTH)))
571                 return TXRX_CONTINUE;
572
573         tx->u.tx.control->iv_len = WEP_IV_LEN;
574         tx->u.tx.control->icv_len = WEP_ICV_LEN;
575         ieee80211_tx_set_iswep(tx);
576
577         if (wep_encrypt_skb(tx, tx->skb) < 0) {
578                 I802_DEBUG_INC(tx->local->tx_handlers_drop_wep);
579                 return TXRX_DROP;
580         }
581
582         if (tx->u.tx.extra_frag) {
583                 int i;
584                 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
585                         if (wep_encrypt_skb(tx, tx->u.tx.extra_frag[i]) < 0) {
586                                 I802_DEBUG_INC(tx->local->
587                                                tx_handlers_drop_wep);
588                                 return TXRX_DROP;
589                         }
590                 }
591         }
592
593         return TXRX_CONTINUE;
594 }
595
596 static ieee80211_txrx_result
597 ieee80211_tx_h_rate_ctrl(struct ieee80211_txrx_data *tx)
598 {
599         struct rate_control_extra extra;
600
601         memset(&extra, 0, sizeof(extra));
602         extra.mode = tx->u.tx.mode;
603         extra.mgmt_data = tx->sdata &&
604                 tx->sdata->type == IEEE80211_IF_TYPE_MGMT;
605         extra.ethertype = tx->ethertype;
606
607         tx->u.tx.rate = rate_control_get_rate(tx->local, tx->dev, tx->skb,
608                                               &extra);
609         if (unlikely(extra.probe != NULL)) {
610                 tx->u.tx.control->flags |= IEEE80211_TXCTL_RATE_CTRL_PROBE;
611                 tx->flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
612                 tx->u.tx.control->alt_retry_rate = tx->u.tx.rate->val;
613                 tx->u.tx.rate = extra.probe;
614         } else {
615                 tx->u.tx.control->alt_retry_rate = -1;
616         }
617         if (!tx->u.tx.rate)
618                 return TXRX_DROP;
619         if (tx->u.tx.mode->mode == MODE_IEEE80211G &&
620             (tx->sdata->flags & IEEE80211_SDATA_USE_PROTECTION) &&
621             (tx->flags & IEEE80211_TXRXD_FRAGMENTED) && extra.nonerp) {
622                 tx->u.tx.last_frag_rate = tx->u.tx.rate;
623                 if (extra.probe)
624                         tx->flags &= ~IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
625                 else
626                         tx->flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
627                 tx->u.tx.rate = extra.nonerp;
628                 tx->u.tx.control->rate = extra.nonerp;
629                 tx->u.tx.control->flags &= ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
630         } else {
631                 tx->u.tx.last_frag_rate = tx->u.tx.rate;
632                 tx->u.tx.control->rate = tx->u.tx.rate;
633         }
634         tx->u.tx.control->tx_rate = tx->u.tx.rate->val;
635
636         return TXRX_CONTINUE;
637 }
638
639 static ieee80211_txrx_result
640 ieee80211_tx_h_misc(struct ieee80211_txrx_data *tx)
641 {
642         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
643         u16 fc = le16_to_cpu(hdr->frame_control);
644         u16 dur;
645         struct ieee80211_tx_control *control = tx->u.tx.control;
646         struct ieee80211_hw_mode *mode = tx->u.tx.mode;
647
648         if (!is_multicast_ether_addr(hdr->addr1)) {
649                 if (tx->skb->len + FCS_LEN > tx->local->rts_threshold &&
650                     tx->local->rts_threshold < IEEE80211_MAX_RTS_THRESHOLD) {
651                         control->flags |= IEEE80211_TXCTL_USE_RTS_CTS;
652                         control->flags |= IEEE80211_TXCTL_LONG_RETRY_LIMIT;
653                         control->retry_limit =
654                                 tx->local->long_retry_limit;
655                 } else {
656                         control->retry_limit =
657                                 tx->local->short_retry_limit;
658                 }
659         } else {
660                 control->retry_limit = 1;
661         }
662
663         if (tx->flags & IEEE80211_TXRXD_FRAGMENTED) {
664                 /* Do not use multiple retry rates when sending fragmented
665                  * frames.
666                  * TODO: The last fragment could still use multiple retry
667                  * rates. */
668                 control->alt_retry_rate = -1;
669         }
670
671         /* Use CTS protection for unicast frames sent using extended rates if
672          * there are associated non-ERP stations and RTS/CTS is not configured
673          * for the frame. */
674         if (mode->mode == MODE_IEEE80211G &&
675             (tx->u.tx.rate->flags & IEEE80211_RATE_ERP) &&
676             (tx->flags & IEEE80211_TXRXD_TXUNICAST) &&
677             (tx->sdata->flags & IEEE80211_SDATA_USE_PROTECTION) &&
678             !(control->flags & IEEE80211_TXCTL_USE_RTS_CTS))
679                 control->flags |= IEEE80211_TXCTL_USE_CTS_PROTECT;
680
681         /* Transmit data frames using short preambles if the driver supports
682          * short preambles at the selected rate and short preambles are
683          * available on the network at the current point in time. */
684         if (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA) &&
685             (tx->u.tx.rate->flags & IEEE80211_RATE_PREAMBLE2) &&
686             (tx->sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE) &&
687             (!tx->sta || (tx->sta->flags & WLAN_STA_SHORT_PREAMBLE))) {
688                 tx->u.tx.control->tx_rate = tx->u.tx.rate->val2;
689         }
690
691         /* Setup duration field for the first fragment of the frame. Duration
692          * for remaining fragments will be updated when they are being sent
693          * to low-level driver in ieee80211_tx(). */
694         dur = ieee80211_duration(tx, is_multicast_ether_addr(hdr->addr1),
695                                  (tx->flags & IEEE80211_TXRXD_FRAGMENTED) ?
696                                  tx->u.tx.extra_frag[0]->len : 0);
697         hdr->duration_id = cpu_to_le16(dur);
698
699         if ((control->flags & IEEE80211_TXCTL_USE_RTS_CTS) ||
700             (control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)) {
701                 struct ieee80211_rate *rate;
702
703                 /* Do not use multiple retry rates when using RTS/CTS */
704                 control->alt_retry_rate = -1;
705
706                 /* Use min(data rate, max base rate) as CTS/RTS rate */
707                 rate = tx->u.tx.rate;
708                 while (rate > mode->rates &&
709                        !(rate->flags & IEEE80211_RATE_BASIC))
710                         rate--;
711
712                 control->rts_cts_rate = rate->val;
713                 control->rts_rate = rate;
714         }
715
716         if (tx->sta) {
717                 tx->sta->tx_packets++;
718                 tx->sta->tx_fragments++;
719                 tx->sta->tx_bytes += tx->skb->len;
720                 if (tx->u.tx.extra_frag) {
721                         int i;
722                         tx->sta->tx_fragments += tx->u.tx.num_extra_frag;
723                         for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
724                                 tx->sta->tx_bytes +=
725                                         tx->u.tx.extra_frag[i]->len;
726                         }
727                 }
728         }
729
730         /*
731          * Tell hardware to not encrypt when we had sw crypto.
732          * Because we use the same flag to internally indicate that
733          * no (software) encryption should be done, we have to set it
734          * after all crypto handlers.
735          */
736         if (tx->key && !(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
737                 tx->u.tx.control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
738
739         return TXRX_CONTINUE;
740 }
741
742 static ieee80211_txrx_result
743 ieee80211_tx_h_load_stats(struct ieee80211_txrx_data *tx)
744 {
745         struct ieee80211_local *local = tx->local;
746         struct ieee80211_hw_mode *mode = tx->u.tx.mode;
747         struct sk_buff *skb = tx->skb;
748         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
749         u32 load = 0, hdrtime;
750
751         /* TODO: this could be part of tx_status handling, so that the number
752          * of retries would be known; TX rate should in that case be stored
753          * somewhere with the packet */
754
755         /* Estimate total channel use caused by this frame */
756
757         /* 1 bit at 1 Mbit/s takes 1 usec; in channel_use values,
758          * 1 usec = 1/8 * (1080 / 10) = 13.5 */
759
760         if (mode->mode == MODE_IEEE80211A ||
761             (mode->mode == MODE_IEEE80211G &&
762              tx->u.tx.rate->flags & IEEE80211_RATE_ERP))
763                 hdrtime = CHAN_UTIL_HDR_SHORT;
764         else
765                 hdrtime = CHAN_UTIL_HDR_LONG;
766
767         load = hdrtime;
768         if (!is_multicast_ether_addr(hdr->addr1))
769                 load += hdrtime;
770
771         if (tx->u.tx.control->flags & IEEE80211_TXCTL_USE_RTS_CTS)
772                 load += 2 * hdrtime;
773         else if (tx->u.tx.control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)
774                 load += hdrtime;
775
776         load += skb->len * tx->u.tx.rate->rate_inv;
777
778         if (tx->u.tx.extra_frag) {
779                 int i;
780                 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
781                         load += 2 * hdrtime;
782                         load += tx->u.tx.extra_frag[i]->len *
783                                 tx->u.tx.rate->rate;
784                 }
785         }
786
787         /* Divide channel_use by 8 to avoid wrapping around the counter */
788         load >>= CHAN_UTIL_SHIFT;
789         local->channel_use_raw += load;
790         if (tx->sta)
791                 tx->sta->channel_use_raw += load;
792         tx->sdata->channel_use_raw += load;
793
794         return TXRX_CONTINUE;
795 }
796
797 /* TODO: implement register/unregister functions for adding TX/RX handlers
798  * into ordered list */
799
800 ieee80211_tx_handler ieee80211_tx_handlers[] =
801 {
802         ieee80211_tx_h_check_assoc,
803         ieee80211_tx_h_sequence,
804         ieee80211_tx_h_ps_buf,
805         ieee80211_tx_h_select_key,
806         ieee80211_tx_h_michael_mic_add,
807         ieee80211_tx_h_fragment,
808         ieee80211_tx_h_tkip_encrypt,
809         ieee80211_tx_h_ccmp_encrypt,
810         ieee80211_tx_h_wep_encrypt,
811         ieee80211_tx_h_rate_ctrl,
812         ieee80211_tx_h_misc,
813         ieee80211_tx_h_load_stats,
814         NULL
815 };
816
817 /* actual transmit path */
818
819 /*
820  * deal with packet injection down monitor interface
821  * with Radiotap Header -- only called for monitor mode interface
822  */
823 static ieee80211_txrx_result
824 __ieee80211_parse_tx_radiotap(
825         struct ieee80211_txrx_data *tx,
826         struct sk_buff *skb, struct ieee80211_tx_control *control)
827 {
828         /*
829          * this is the moment to interpret and discard the radiotap header that
830          * must be at the start of the packet injected in Monitor mode
831          *
832          * Need to take some care with endian-ness since radiotap
833          * args are little-endian
834          */
835
836         struct ieee80211_radiotap_iterator iterator;
837         struct ieee80211_radiotap_header *rthdr =
838                 (struct ieee80211_radiotap_header *) skb->data;
839         struct ieee80211_hw_mode *mode = tx->local->hw.conf.mode;
840         int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len);
841
842         /*
843          * default control situation for all injected packets
844          * FIXME: this does not suit all usage cases, expand to allow control
845          */
846
847         control->retry_limit = 1; /* no retry */
848         control->flags &= ~(IEEE80211_TXCTL_USE_RTS_CTS |
849                             IEEE80211_TXCTL_USE_CTS_PROTECT);
850         control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT |
851                           IEEE80211_TXCTL_NO_ACK;
852         control->antenna_sel_tx = 0; /* default to default antenna */
853
854         /*
855          * for every radiotap entry that is present
856          * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
857          * entries present, or -EINVAL on error)
858          */
859
860         while (!ret) {
861                 int i, target_rate;
862
863                 ret = ieee80211_radiotap_iterator_next(&iterator);
864
865                 if (ret)
866                         continue;
867
868                 /* see if this argument is something we can use */
869                 switch (iterator.this_arg_index) {
870                 /*
871                  * You must take care when dereferencing iterator.this_arg
872                  * for multibyte types... the pointer is not aligned.  Use
873                  * get_unaligned((type *)iterator.this_arg) to dereference
874                  * iterator.this_arg for type "type" safely on all arches.
875                 */
876                 case IEEE80211_RADIOTAP_RATE:
877                         /*
878                          * radiotap rate u8 is in 500kbps units eg, 0x02=1Mbps
879                          * ieee80211 rate int is in 100kbps units eg, 0x0a=1Mbps
880                          */
881                         target_rate = (*iterator.this_arg) * 5;
882                         for (i = 0; i < mode->num_rates; i++) {
883                                 struct ieee80211_rate *r = &mode->rates[i];
884
885                                 if (r->rate > target_rate)
886                                         continue;
887
888                                 control->rate = r;
889
890                                 if (r->flags & IEEE80211_RATE_PREAMBLE2)
891                                         control->tx_rate = r->val2;
892                                 else
893                                         control->tx_rate = r->val;
894
895                                 /* end on exact match */
896                                 if (r->rate == target_rate)
897                                         i = mode->num_rates;
898                         }
899                         break;
900
901                 case IEEE80211_RADIOTAP_ANTENNA:
902                         /*
903                          * radiotap uses 0 for 1st ant, mac80211 is 1 for
904                          * 1st ant
905                          */
906                         control->antenna_sel_tx = (*iterator.this_arg) + 1;
907                         break;
908
909                 case IEEE80211_RADIOTAP_DBM_TX_POWER:
910                         control->power_level = *iterator.this_arg;
911                         break;
912
913                 case IEEE80211_RADIOTAP_FLAGS:
914                         if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
915                                 /*
916                                  * this indicates that the skb we have been
917                                  * handed has the 32-bit FCS CRC at the end...
918                                  * we should react to that by snipping it off
919                                  * because it will be recomputed and added
920                                  * on transmission
921                                  */
922                                 if (skb->len < (iterator.max_length + FCS_LEN))
923                                         return TXRX_DROP;
924
925                                 skb_trim(skb, skb->len - FCS_LEN);
926                         }
927                         break;
928
929                 default:
930                         break;
931                 }
932         }
933
934         if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
935                 return TXRX_DROP;
936
937         /*
938          * remove the radiotap header
939          * iterator->max_length was sanity-checked against
940          * skb->len by iterator init
941          */
942         skb_pull(skb, iterator.max_length);
943
944         return TXRX_CONTINUE;
945 }
946
947 static ieee80211_txrx_result inline
948 __ieee80211_tx_prepare(struct ieee80211_txrx_data *tx,
949                        struct sk_buff *skb,
950                        struct net_device *dev,
951                        struct ieee80211_tx_control *control)
952 {
953         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
954         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
955         struct ieee80211_sub_if_data *sdata;
956         ieee80211_txrx_result res = TXRX_CONTINUE;
957
958         int hdrlen;
959
960         memset(tx, 0, sizeof(*tx));
961         tx->skb = skb;
962         tx->dev = dev; /* use original interface */
963         tx->local = local;
964         tx->sdata = IEEE80211_DEV_TO_SUB_IF(dev);
965
966         /*
967          * set defaults for things that can be set by
968          * injected radiotap headers
969          */
970         control->power_level = local->hw.conf.power_level;
971         control->antenna_sel_tx = local->hw.conf.antenna_sel_tx;
972
973         /* process and remove the injection radiotap header */
974         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
975         if (unlikely(sdata->type == IEEE80211_IF_TYPE_MNTR)) {
976                 if (__ieee80211_parse_tx_radiotap(tx, skb, control) ==
977                                                                 TXRX_DROP) {
978                         return TXRX_DROP;
979                 }
980                 /*
981                  * we removed the radiotap header after this point,
982                  * we filled control with what we could use
983                  * set to the actual ieee header now
984                  */
985                 hdr = (struct ieee80211_hdr *) skb->data;
986                 res = TXRX_QUEUED; /* indication it was monitor packet */
987         }
988
989         tx->sta = sta_info_get(local, hdr->addr1);
990         tx->fc = le16_to_cpu(hdr->frame_control);
991         tx->u.tx.control = control;
992         if (is_multicast_ether_addr(hdr->addr1)) {
993                 tx->flags &= ~IEEE80211_TXRXD_TXUNICAST;
994                 control->flags |= IEEE80211_TXCTL_NO_ACK;
995         } else {
996                 tx->flags |= IEEE80211_TXRXD_TXUNICAST;
997                 control->flags &= ~IEEE80211_TXCTL_NO_ACK;
998         }
999         if (local->fragmentation_threshold < IEEE80211_MAX_FRAG_THRESHOLD &&
1000             (tx->flags & IEEE80211_TXRXD_TXUNICAST) &&
1001             skb->len + FCS_LEN > local->fragmentation_threshold &&
1002             !local->ops->set_frag_threshold)
1003                 tx->flags |= IEEE80211_TXRXD_FRAGMENTED;
1004         else
1005                 tx->flags &= ~IEEE80211_TXRXD_FRAGMENTED;
1006         if (!tx->sta)
1007                 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
1008         else if (tx->sta->clear_dst_mask) {
1009                 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
1010                 tx->sta->clear_dst_mask = 0;
1011         }
1012         hdrlen = ieee80211_get_hdrlen(tx->fc);
1013         if (skb->len > hdrlen + sizeof(rfc1042_header) + 2) {
1014                 u8 *pos = &skb->data[hdrlen + sizeof(rfc1042_header)];
1015                 tx->ethertype = (pos[0] << 8) | pos[1];
1016         }
1017         control->flags |= IEEE80211_TXCTL_FIRST_FRAGMENT;
1018
1019         return res;
1020 }
1021
1022 /* Device in tx->dev has a reference added; use dev_put(tx->dev) when
1023  * finished with it. */
1024 static int inline ieee80211_tx_prepare(struct ieee80211_txrx_data *tx,
1025                                        struct sk_buff *skb,
1026                                        struct net_device *mdev,
1027                                        struct ieee80211_tx_control *control)
1028 {
1029         struct ieee80211_tx_packet_data *pkt_data;
1030         struct net_device *dev;
1031
1032         pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1033         dev = dev_get_by_index(&init_net, pkt_data->ifindex);
1034         if (unlikely(dev && !is_ieee80211_device(dev, mdev))) {
1035                 dev_put(dev);
1036                 dev = NULL;
1037         }
1038         if (unlikely(!dev))
1039                 return -ENODEV;
1040         __ieee80211_tx_prepare(tx, skb, dev, control);
1041         return 0;
1042 }
1043
1044 static int __ieee80211_tx(struct ieee80211_local *local, struct sk_buff *skb,
1045                           struct ieee80211_txrx_data *tx)
1046 {
1047         struct ieee80211_tx_control *control = tx->u.tx.control;
1048         int ret, i;
1049
1050         if (!ieee80211_qdisc_installed(local->mdev) &&
1051             __ieee80211_queue_stopped(local, 0)) {
1052                 netif_stop_queue(local->mdev);
1053                 return IEEE80211_TX_AGAIN;
1054         }
1055         if (skb) {
1056                 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
1057                                      "TX to low-level driver", skb);
1058                 ret = local->ops->tx(local_to_hw(local), skb, control);
1059                 if (ret)
1060                         return IEEE80211_TX_AGAIN;
1061                 local->mdev->trans_start = jiffies;
1062                 ieee80211_led_tx(local, 1);
1063         }
1064         if (tx->u.tx.extra_frag) {
1065                 control->flags &= ~(IEEE80211_TXCTL_USE_RTS_CTS |
1066                                     IEEE80211_TXCTL_USE_CTS_PROTECT |
1067                                     IEEE80211_TXCTL_CLEAR_DST_MASK |
1068                                     IEEE80211_TXCTL_FIRST_FRAGMENT);
1069                 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
1070                         if (!tx->u.tx.extra_frag[i])
1071                                 continue;
1072                         if (__ieee80211_queue_stopped(local, control->queue))
1073                                 return IEEE80211_TX_FRAG_AGAIN;
1074                         if (i == tx->u.tx.num_extra_frag) {
1075                                 control->tx_rate = tx->u.tx.last_frag_hwrate;
1076                                 control->rate = tx->u.tx.last_frag_rate;
1077                                 if (tx->flags & IEEE80211_TXRXD_TXPROBE_LAST_FRAG)
1078                                         control->flags |=
1079                                                 IEEE80211_TXCTL_RATE_CTRL_PROBE;
1080                                 else
1081                                         control->flags &=
1082                                                 ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
1083                         }
1084
1085                         ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
1086                                              "TX to low-level driver",
1087                                              tx->u.tx.extra_frag[i]);
1088                         ret = local->ops->tx(local_to_hw(local),
1089                                             tx->u.tx.extra_frag[i],
1090                                             control);
1091                         if (ret)
1092                                 return IEEE80211_TX_FRAG_AGAIN;
1093                         local->mdev->trans_start = jiffies;
1094                         ieee80211_led_tx(local, 1);
1095                         tx->u.tx.extra_frag[i] = NULL;
1096                 }
1097                 kfree(tx->u.tx.extra_frag);
1098                 tx->u.tx.extra_frag = NULL;
1099         }
1100         return IEEE80211_TX_OK;
1101 }
1102
1103 static int ieee80211_tx(struct net_device *dev, struct sk_buff *skb,
1104                         struct ieee80211_tx_control *control, int mgmt)
1105 {
1106         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1107         struct sta_info *sta;
1108         ieee80211_tx_handler *handler;
1109         struct ieee80211_txrx_data tx;
1110         ieee80211_txrx_result res = TXRX_DROP, res_prepare;
1111         int ret, i;
1112
1113         WARN_ON(__ieee80211_queue_pending(local, control->queue));
1114
1115         if (unlikely(skb->len < 10)) {
1116                 dev_kfree_skb(skb);
1117                 return 0;
1118         }
1119
1120         res_prepare = __ieee80211_tx_prepare(&tx, skb, dev, control);
1121
1122         if (res_prepare == TXRX_DROP) {
1123                 dev_kfree_skb(skb);
1124                 return 0;
1125         }
1126
1127         /*
1128          * key references are protected using RCU and this requires that
1129          * we are in a read-site RCU section during receive processing
1130          */
1131         rcu_read_lock();
1132
1133         sta = tx.sta;
1134         tx.u.tx.mgmt_interface = mgmt;
1135         tx.u.tx.mode = local->hw.conf.mode;
1136
1137         if (res_prepare == TXRX_QUEUED) { /* if it was an injected packet */
1138                 res = TXRX_CONTINUE;
1139         } else {
1140                 for (handler = local->tx_handlers; *handler != NULL;
1141                      handler++) {
1142                         res = (*handler)(&tx);
1143                         if (res != TXRX_CONTINUE)
1144                                 break;
1145                 }
1146         }
1147
1148         skb = tx.skb; /* handlers are allowed to change skb */
1149
1150         if (sta)
1151                 sta_info_put(sta);
1152
1153         if (unlikely(res == TXRX_DROP)) {
1154                 I802_DEBUG_INC(local->tx_handlers_drop);
1155                 goto drop;
1156         }
1157
1158         if (unlikely(res == TXRX_QUEUED)) {
1159                 I802_DEBUG_INC(local->tx_handlers_queued);
1160                 rcu_read_unlock();
1161                 return 0;
1162         }
1163
1164         if (tx.u.tx.extra_frag) {
1165                 for (i = 0; i < tx.u.tx.num_extra_frag; i++) {
1166                         int next_len, dur;
1167                         struct ieee80211_hdr *hdr =
1168                                 (struct ieee80211_hdr *)
1169                                 tx.u.tx.extra_frag[i]->data;
1170
1171                         if (i + 1 < tx.u.tx.num_extra_frag) {
1172                                 next_len = tx.u.tx.extra_frag[i + 1]->len;
1173                         } else {
1174                                 next_len = 0;
1175                                 tx.u.tx.rate = tx.u.tx.last_frag_rate;
1176                                 tx.u.tx.last_frag_hwrate = tx.u.tx.rate->val;
1177                         }
1178                         dur = ieee80211_duration(&tx, 0, next_len);
1179                         hdr->duration_id = cpu_to_le16(dur);
1180                 }
1181         }
1182
1183 retry:
1184         ret = __ieee80211_tx(local, skb, &tx);
1185         if (ret) {
1186                 struct ieee80211_tx_stored_packet *store =
1187                         &local->pending_packet[control->queue];
1188
1189                 if (ret == IEEE80211_TX_FRAG_AGAIN)
1190                         skb = NULL;
1191                 set_bit(IEEE80211_LINK_STATE_PENDING,
1192                         &local->state[control->queue]);
1193                 smp_mb();
1194                 /* When the driver gets out of buffers during sending of
1195                  * fragments and calls ieee80211_stop_queue, there is
1196                  * a small window between IEEE80211_LINK_STATE_XOFF and
1197                  * IEEE80211_LINK_STATE_PENDING flags are set. If a buffer
1198                  * gets available in that window (i.e. driver calls
1199                  * ieee80211_wake_queue), we would end up with ieee80211_tx
1200                  * called with IEEE80211_LINK_STATE_PENDING. Prevent this by
1201                  * continuing transmitting here when that situation is
1202                  * possible to have happened. */
1203                 if (!__ieee80211_queue_stopped(local, control->queue)) {
1204                         clear_bit(IEEE80211_LINK_STATE_PENDING,
1205                                   &local->state[control->queue]);
1206                         goto retry;
1207                 }
1208                 memcpy(&store->control, control,
1209                        sizeof(struct ieee80211_tx_control));
1210                 store->skb = skb;
1211                 store->extra_frag = tx.u.tx.extra_frag;
1212                 store->num_extra_frag = tx.u.tx.num_extra_frag;
1213                 store->last_frag_hwrate = tx.u.tx.last_frag_hwrate;
1214                 store->last_frag_rate = tx.u.tx.last_frag_rate;
1215                 store->last_frag_rate_ctrl_probe =
1216                         !!(tx.flags & IEEE80211_TXRXD_TXPROBE_LAST_FRAG);
1217         }
1218         rcu_read_unlock();
1219         return 0;
1220
1221  drop:
1222         if (skb)
1223                 dev_kfree_skb(skb);
1224         for (i = 0; i < tx.u.tx.num_extra_frag; i++)
1225                 if (tx.u.tx.extra_frag[i])
1226                         dev_kfree_skb(tx.u.tx.extra_frag[i]);
1227         kfree(tx.u.tx.extra_frag);
1228         rcu_read_unlock();
1229         return 0;
1230 }
1231
1232 /* device xmit handlers */
1233
1234 int ieee80211_master_start_xmit(struct sk_buff *skb,
1235                                 struct net_device *dev)
1236 {
1237         struct ieee80211_tx_control control;
1238         struct ieee80211_tx_packet_data *pkt_data;
1239         struct net_device *odev = NULL;
1240         struct ieee80211_sub_if_data *osdata;
1241         int headroom;
1242         int ret;
1243
1244         /*
1245          * copy control out of the skb so other people can use skb->cb
1246          */
1247         pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1248         memset(&control, 0, sizeof(struct ieee80211_tx_control));
1249
1250         if (pkt_data->ifindex)
1251                 odev = dev_get_by_index(&init_net, pkt_data->ifindex);
1252         if (unlikely(odev && !is_ieee80211_device(odev, dev))) {
1253                 dev_put(odev);
1254                 odev = NULL;
1255         }
1256         if (unlikely(!odev)) {
1257 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1258                 printk(KERN_DEBUG "%s: Discarded packet with nonexistent "
1259                        "originating device\n", dev->name);
1260 #endif
1261                 dev_kfree_skb(skb);
1262                 return 0;
1263         }
1264         osdata = IEEE80211_DEV_TO_SUB_IF(odev);
1265
1266         headroom = osdata->local->tx_headroom + IEEE80211_ENCRYPT_HEADROOM;
1267         if (skb_headroom(skb) < headroom) {
1268                 if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) {
1269                         dev_kfree_skb(skb);
1270                         dev_put(odev);
1271                         return 0;
1272                 }
1273         }
1274
1275         control.ifindex = odev->ifindex;
1276         control.type = osdata->type;
1277         if (pkt_data->flags & IEEE80211_TXPD_REQ_TX_STATUS)
1278                 control.flags |= IEEE80211_TXCTL_REQ_TX_STATUS;
1279         if (pkt_data->flags & IEEE80211_TXPD_DO_NOT_ENCRYPT)
1280                 control.flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
1281         if (pkt_data->flags & IEEE80211_TXPD_REQUEUE)
1282                 control.flags |= IEEE80211_TXCTL_REQUEUE;
1283         control.queue = pkt_data->queue;
1284
1285         ret = ieee80211_tx(odev, skb, &control,
1286                            control.type == IEEE80211_IF_TYPE_MGMT);
1287         dev_put(odev);
1288
1289         return ret;
1290 }
1291
1292 int ieee80211_monitor_start_xmit(struct sk_buff *skb,
1293                                  struct net_device *dev)
1294 {
1295         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1296         struct ieee80211_tx_packet_data *pkt_data;
1297         struct ieee80211_radiotap_header *prthdr =
1298                 (struct ieee80211_radiotap_header *)skb->data;
1299         u16 len_rthdr;
1300
1301         /* check for not even having the fixed radiotap header part */
1302         if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1303                 goto fail; /* too short to be possibly valid */
1304
1305         /* is it a header version we can trust to find length from? */
1306         if (unlikely(prthdr->it_version))
1307                 goto fail; /* only version 0 is supported */
1308
1309         /* then there must be a radiotap header with a length we can use */
1310         len_rthdr = ieee80211_get_radiotap_len(skb->data);
1311
1312         /* does the skb contain enough to deliver on the alleged length? */
1313         if (unlikely(skb->len < len_rthdr))
1314                 goto fail; /* skb too short for claimed rt header extent */
1315
1316         skb->dev = local->mdev;
1317
1318         pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1319         memset(pkt_data, 0, sizeof(*pkt_data));
1320         /* needed because we set skb device to master */
1321         pkt_data->ifindex = dev->ifindex;
1322
1323         pkt_data->flags |= IEEE80211_TXPD_DO_NOT_ENCRYPT;
1324
1325         /*
1326          * fix up the pointers accounting for the radiotap
1327          * header still being in there.  We are being given
1328          * a precooked IEEE80211 header so no need for
1329          * normal processing
1330          */
1331         skb_set_mac_header(skb, len_rthdr);
1332         /*
1333          * these are just fixed to the end of the rt area since we
1334          * don't have any better information and at this point, nobody cares
1335          */
1336         skb_set_network_header(skb, len_rthdr);
1337         skb_set_transport_header(skb, len_rthdr);
1338
1339         /* pass the radiotap header up to the next stage intact */
1340         dev_queue_xmit(skb);
1341         return NETDEV_TX_OK;
1342
1343 fail:
1344         dev_kfree_skb(skb);
1345         return NETDEV_TX_OK; /* meaning, we dealt with the skb */
1346 }
1347
1348 /**
1349  * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type
1350  * subinterfaces (wlan#, WDS, and VLAN interfaces)
1351  * @skb: packet to be sent
1352  * @dev: incoming interface
1353  *
1354  * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will
1355  * not be freed, and caller is responsible for either retrying later or freeing
1356  * skb).
1357  *
1358  * This function takes in an Ethernet header and encapsulates it with suitable
1359  * IEEE 802.11 header based on which interface the packet is coming in. The
1360  * encapsulated packet will then be passed to master interface, wlan#.11, for
1361  * transmission (through low-level driver).
1362  */
1363 int ieee80211_subif_start_xmit(struct sk_buff *skb,
1364                                struct net_device *dev)
1365 {
1366         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1367         struct ieee80211_tx_packet_data *pkt_data;
1368         struct ieee80211_sub_if_data *sdata;
1369         int ret = 1, head_need;
1370         u16 ethertype, hdrlen, fc;
1371         struct ieee80211_hdr hdr;
1372         const u8 *encaps_data;
1373         int encaps_len, skip_header_bytes;
1374         int nh_pos, h_pos;
1375         struct sta_info *sta;
1376
1377         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1378         if (unlikely(skb->len < ETH_HLEN)) {
1379                 printk(KERN_DEBUG "%s: short skb (len=%d)\n",
1380                        dev->name, skb->len);
1381                 ret = 0;
1382                 goto fail;
1383         }
1384
1385         nh_pos = skb_network_header(skb) - skb->data;
1386         h_pos = skb_transport_header(skb) - skb->data;
1387
1388         /* convert Ethernet header to proper 802.11 header (based on
1389          * operation mode) */
1390         ethertype = (skb->data[12] << 8) | skb->data[13];
1391         /* TODO: handling for 802.1x authorized/unauthorized port */
1392         fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA;
1393
1394         switch (sdata->type) {
1395         case IEEE80211_IF_TYPE_AP:
1396         case IEEE80211_IF_TYPE_VLAN:
1397                 fc |= IEEE80211_FCTL_FROMDS;
1398                 /* DA BSSID SA */
1399                 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1400                 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1401                 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1402                 hdrlen = 24;
1403                 break;
1404         case IEEE80211_IF_TYPE_WDS:
1405                 fc |= IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS;
1406                 /* RA TA DA SA */
1407                 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
1408                 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1409                 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1410                 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1411                 hdrlen = 30;
1412                 break;
1413         case IEEE80211_IF_TYPE_STA:
1414                 fc |= IEEE80211_FCTL_TODS;
1415                 /* BSSID SA DA */
1416                 memcpy(hdr.addr1, sdata->u.sta.bssid, ETH_ALEN);
1417                 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1418                 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1419                 hdrlen = 24;
1420                 break;
1421         case IEEE80211_IF_TYPE_IBSS:
1422                 /* DA SA BSSID */
1423                 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1424                 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1425                 memcpy(hdr.addr3, sdata->u.sta.bssid, ETH_ALEN);
1426                 hdrlen = 24;
1427                 break;
1428         default:
1429                 ret = 0;
1430                 goto fail;
1431         }
1432
1433         /* receiver is QoS enabled, use a QoS type frame */
1434         sta = sta_info_get(local, hdr.addr1);
1435         if (sta) {
1436                 if (sta->flags & WLAN_STA_WME) {
1437                         fc |= IEEE80211_STYPE_QOS_DATA;
1438                         hdrlen += 2;
1439                 }
1440                 sta_info_put(sta);
1441         }
1442
1443         hdr.frame_control = cpu_to_le16(fc);
1444         hdr.duration_id = 0;
1445         hdr.seq_ctrl = 0;
1446
1447         skip_header_bytes = ETH_HLEN;
1448         if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
1449                 encaps_data = bridge_tunnel_header;
1450                 encaps_len = sizeof(bridge_tunnel_header);
1451                 skip_header_bytes -= 2;
1452         } else if (ethertype >= 0x600) {
1453                 encaps_data = rfc1042_header;
1454                 encaps_len = sizeof(rfc1042_header);
1455                 skip_header_bytes -= 2;
1456         } else {
1457                 encaps_data = NULL;
1458                 encaps_len = 0;
1459         }
1460
1461         skb_pull(skb, skip_header_bytes);
1462         nh_pos -= skip_header_bytes;
1463         h_pos -= skip_header_bytes;
1464
1465         /* TODO: implement support for fragments so that there is no need to
1466          * reallocate and copy payload; it might be enough to support one
1467          * extra fragment that would be copied in the beginning of the frame
1468          * data.. anyway, it would be nice to include this into skb structure
1469          * somehow
1470          *
1471          * There are few options for this:
1472          * use skb->cb as an extra space for 802.11 header
1473          * allocate new buffer if not enough headroom
1474          * make sure that there is enough headroom in every skb by increasing
1475          * build in headroom in __dev_alloc_skb() (linux/skbuff.h) and
1476          * alloc_skb() (net/core/skbuff.c)
1477          */
1478         head_need = hdrlen + encaps_len + local->tx_headroom;
1479         head_need -= skb_headroom(skb);
1480
1481         /* We are going to modify skb data, so make a copy of it if happens to
1482          * be cloned. This could happen, e.g., with Linux bridge code passing
1483          * us broadcast frames. */
1484
1485         if (head_need > 0 || skb_cloned(skb)) {
1486 #if 0
1487                 printk(KERN_DEBUG "%s: need to reallocate buffer for %d bytes "
1488                        "of headroom\n", dev->name, head_need);
1489 #endif
1490
1491                 if (skb_cloned(skb))
1492                         I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
1493                 else
1494                         I802_DEBUG_INC(local->tx_expand_skb_head);
1495                 /* Since we have to reallocate the buffer, make sure that there
1496                  * is enough room for possible WEP IV/ICV and TKIP (8 bytes
1497                  * before payload and 12 after). */
1498                 if (pskb_expand_head(skb, (head_need > 0 ? head_need + 8 : 8),
1499                                      12, GFP_ATOMIC)) {
1500                         printk(KERN_DEBUG "%s: failed to reallocate TX buffer"
1501                                "\n", dev->name);
1502                         goto fail;
1503                 }
1504         }
1505
1506         if (encaps_data) {
1507                 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
1508                 nh_pos += encaps_len;
1509                 h_pos += encaps_len;
1510         }
1511
1512         if (fc & IEEE80211_STYPE_QOS_DATA) {
1513                 __le16 *qos_control;
1514
1515                 qos_control = (__le16*) skb_push(skb, 2);
1516                 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
1517                 /*
1518                  * Maybe we could actually set some fields here, for now just
1519                  * initialise to zero to indicate no special operation.
1520                  */
1521                 *qos_control = 0;
1522         } else
1523                 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
1524
1525         nh_pos += hdrlen;
1526         h_pos += hdrlen;
1527
1528         pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1529         memset(pkt_data, 0, sizeof(struct ieee80211_tx_packet_data));
1530         pkt_data->ifindex = dev->ifindex;
1531         if (sdata->type == IEEE80211_IF_TYPE_MGMT)
1532                 pkt_data->flags |= IEEE80211_TXPD_MGMT_IFACE;
1533
1534         skb->dev = local->mdev;
1535         dev->stats.tx_packets++;
1536         dev->stats.tx_bytes += skb->len;
1537
1538         /* Update skb pointers to various headers since this modified frame
1539          * is going to go through Linux networking code that may potentially
1540          * need things like pointer to IP header. */
1541         skb_set_mac_header(skb, 0);
1542         skb_set_network_header(skb, nh_pos);
1543         skb_set_transport_header(skb, h_pos);
1544
1545         dev->trans_start = jiffies;
1546         dev_queue_xmit(skb);
1547
1548         return 0;
1549
1550  fail:
1551         if (!ret)
1552                 dev_kfree_skb(skb);
1553
1554         return ret;
1555 }
1556
1557 /*
1558  * This is the transmit routine for the 802.11 type interfaces
1559  * called by upper layers of the linux networking
1560  * stack when it has a frame to transmit
1561  */
1562 int ieee80211_mgmt_start_xmit(struct sk_buff *skb, struct net_device *dev)
1563 {
1564         struct ieee80211_sub_if_data *sdata;
1565         struct ieee80211_tx_packet_data *pkt_data;
1566         struct ieee80211_hdr *hdr;
1567         u16 fc;
1568
1569         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1570
1571         if (skb->len < 10) {
1572                 dev_kfree_skb(skb);
1573                 return 0;
1574         }
1575
1576         if (skb_headroom(skb) < sdata->local->tx_headroom) {
1577                 if (pskb_expand_head(skb, sdata->local->tx_headroom,
1578                                      0, GFP_ATOMIC)) {
1579                         dev_kfree_skb(skb);
1580                         return 0;
1581                 }
1582         }
1583
1584         hdr = (struct ieee80211_hdr *) skb->data;
1585         fc = le16_to_cpu(hdr->frame_control);
1586
1587         pkt_data = (struct ieee80211_tx_packet_data *) skb->cb;
1588         memset(pkt_data, 0, sizeof(struct ieee80211_tx_packet_data));
1589         pkt_data->ifindex = sdata->dev->ifindex;
1590         if (sdata->type == IEEE80211_IF_TYPE_MGMT)
1591                 pkt_data->flags |= IEEE80211_TXPD_MGMT_IFACE;
1592
1593         skb->priority = 20; /* use hardcoded priority for mgmt TX queue */
1594         skb->dev = sdata->local->mdev;
1595
1596         /*
1597          * We're using the protocol field of the the frame control header
1598          * to request TX callback for hostapd. BIT(1) is checked.
1599          */
1600         if ((fc & BIT(1)) == BIT(1)) {
1601                 pkt_data->flags |= IEEE80211_TXPD_REQ_TX_STATUS;
1602                 fc &= ~BIT(1);
1603                 hdr->frame_control = cpu_to_le16(fc);
1604         }
1605
1606         if (!(fc & IEEE80211_FCTL_PROTECTED))
1607                 pkt_data->flags |= IEEE80211_TXPD_DO_NOT_ENCRYPT;
1608
1609         dev->stats.tx_packets++;
1610         dev->stats.tx_bytes += skb->len;
1611
1612         dev_queue_xmit(skb);
1613
1614         return 0;
1615 }
1616
1617 /* helper functions for pending packets for when queues are stopped */
1618
1619 void ieee80211_clear_tx_pending(struct ieee80211_local *local)
1620 {
1621         int i, j;
1622         struct ieee80211_tx_stored_packet *store;
1623
1624         for (i = 0; i < local->hw.queues; i++) {
1625                 if (!__ieee80211_queue_pending(local, i))
1626                         continue;
1627                 store = &local->pending_packet[i];
1628                 kfree_skb(store->skb);
1629                 for (j = 0; j < store->num_extra_frag; j++)
1630                         kfree_skb(store->extra_frag[j]);
1631                 kfree(store->extra_frag);
1632                 clear_bit(IEEE80211_LINK_STATE_PENDING, &local->state[i]);
1633         }
1634 }
1635
1636 void ieee80211_tx_pending(unsigned long data)
1637 {
1638         struct ieee80211_local *local = (struct ieee80211_local *)data;
1639         struct net_device *dev = local->mdev;
1640         struct ieee80211_tx_stored_packet *store;
1641         struct ieee80211_txrx_data tx;
1642         int i, ret, reschedule = 0;
1643
1644         netif_tx_lock_bh(dev);
1645         for (i = 0; i < local->hw.queues; i++) {
1646                 if (__ieee80211_queue_stopped(local, i))
1647                         continue;
1648                 if (!__ieee80211_queue_pending(local, i)) {
1649                         reschedule = 1;
1650                         continue;
1651                 }
1652                 store = &local->pending_packet[i];
1653                 tx.u.tx.control = &store->control;
1654                 tx.u.tx.extra_frag = store->extra_frag;
1655                 tx.u.tx.num_extra_frag = store->num_extra_frag;
1656                 tx.u.tx.last_frag_hwrate = store->last_frag_hwrate;
1657                 tx.u.tx.last_frag_rate = store->last_frag_rate;
1658                 tx.flags = 0;
1659                 if (store->last_frag_rate_ctrl_probe)
1660                         tx.flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
1661                 ret = __ieee80211_tx(local, store->skb, &tx);
1662                 if (ret) {
1663                         if (ret == IEEE80211_TX_FRAG_AGAIN)
1664                                 store->skb = NULL;
1665                 } else {
1666                         clear_bit(IEEE80211_LINK_STATE_PENDING,
1667                                   &local->state[i]);
1668                         reschedule = 1;
1669                 }
1670         }
1671         netif_tx_unlock_bh(dev);
1672         if (reschedule) {
1673                 if (!ieee80211_qdisc_installed(dev)) {
1674                         if (!__ieee80211_queue_stopped(local, 0))
1675                                 netif_wake_queue(dev);
1676                 } else
1677                         netif_schedule(dev);
1678         }
1679 }
1680
1681 /* functions for drivers to get certain frames */
1682
1683 static void ieee80211_beacon_add_tim(struct ieee80211_local *local,
1684                                      struct ieee80211_if_ap *bss,
1685                                      struct sk_buff *skb)
1686 {
1687         u8 *pos, *tim;
1688         int aid0 = 0;
1689         int i, have_bits = 0, n1, n2;
1690
1691         /* Generate bitmap for TIM only if there are any STAs in power save
1692          * mode. */
1693         read_lock_bh(&local->sta_lock);
1694         if (atomic_read(&bss->num_sta_ps) > 0)
1695                 /* in the hope that this is faster than
1696                  * checking byte-for-byte */
1697                 have_bits = !bitmap_empty((unsigned long*)bss->tim,
1698                                           IEEE80211_MAX_AID+1);
1699
1700         if (bss->dtim_count == 0)
1701                 bss->dtim_count = bss->dtim_period - 1;
1702         else
1703                 bss->dtim_count--;
1704
1705         tim = pos = (u8 *) skb_put(skb, 6);
1706         *pos++ = WLAN_EID_TIM;
1707         *pos++ = 4;
1708         *pos++ = bss->dtim_count;
1709         *pos++ = bss->dtim_period;
1710
1711         if (bss->dtim_count == 0 && !skb_queue_empty(&bss->ps_bc_buf))
1712                 aid0 = 1;
1713
1714         if (have_bits) {
1715                 /* Find largest even number N1 so that bits numbered 1 through
1716                  * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
1717                  * (N2 + 1) x 8 through 2007 are 0. */
1718                 n1 = 0;
1719                 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
1720                         if (bss->tim[i]) {
1721                                 n1 = i & 0xfe;
1722                                 break;
1723                         }
1724                 }
1725                 n2 = n1;
1726                 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
1727                         if (bss->tim[i]) {
1728                                 n2 = i;
1729                                 break;
1730                         }
1731                 }
1732
1733                 /* Bitmap control */
1734                 *pos++ = n1 | aid0;
1735                 /* Part Virt Bitmap */
1736                 memcpy(pos, bss->tim + n1, n2 - n1 + 1);
1737
1738                 tim[1] = n2 - n1 + 4;
1739                 skb_put(skb, n2 - n1);
1740         } else {
1741                 *pos++ = aid0; /* Bitmap control */
1742                 *pos++ = 0; /* Part Virt Bitmap */
1743         }
1744         read_unlock_bh(&local->sta_lock);
1745 }
1746
1747 struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw, int if_id,
1748                                      struct ieee80211_tx_control *control)
1749 {
1750         struct ieee80211_local *local = hw_to_local(hw);
1751         struct sk_buff *skb;
1752         struct net_device *bdev;
1753         struct ieee80211_sub_if_data *sdata = NULL;
1754         struct ieee80211_if_ap *ap = NULL;
1755         struct ieee80211_rate *rate;
1756         struct rate_control_extra extra;
1757         u8 *b_head, *b_tail;
1758         int bh_len, bt_len;
1759
1760         bdev = dev_get_by_index(&init_net, if_id);
1761         if (bdev) {
1762                 sdata = IEEE80211_DEV_TO_SUB_IF(bdev);
1763                 ap = &sdata->u.ap;
1764                 dev_put(bdev);
1765         }
1766
1767         if (!ap || sdata->type != IEEE80211_IF_TYPE_AP ||
1768             !ap->beacon_head) {
1769 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1770                 if (net_ratelimit())
1771                         printk(KERN_DEBUG "no beacon data avail for idx=%d "
1772                                "(%s)\n", if_id, bdev ? bdev->name : "N/A");
1773 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
1774                 return NULL;
1775         }
1776
1777         /* Assume we are generating the normal beacon locally */
1778         b_head = ap->beacon_head;
1779         b_tail = ap->beacon_tail;
1780         bh_len = ap->beacon_head_len;
1781         bt_len = ap->beacon_tail_len;
1782
1783         skb = dev_alloc_skb(local->tx_headroom +
1784                 bh_len + bt_len + 256 /* maximum TIM len */);
1785         if (!skb)
1786                 return NULL;
1787
1788         skb_reserve(skb, local->tx_headroom);
1789         memcpy(skb_put(skb, bh_len), b_head, bh_len);
1790
1791         ieee80211_include_sequence(sdata, (struct ieee80211_hdr *)skb->data);
1792
1793         ieee80211_beacon_add_tim(local, ap, skb);
1794
1795         if (b_tail) {
1796                 memcpy(skb_put(skb, bt_len), b_tail, bt_len);
1797         }
1798
1799         if (control) {
1800                 memset(&extra, 0, sizeof(extra));
1801                 extra.mode = local->oper_hw_mode;
1802
1803                 rate = rate_control_get_rate(local, local->mdev, skb, &extra);
1804                 if (!rate) {
1805                         if (net_ratelimit()) {
1806                                 printk(KERN_DEBUG "%s: ieee80211_beacon_get: no rate "
1807                                        "found\n", wiphy_name(local->hw.wiphy));
1808                         }
1809                         dev_kfree_skb(skb);
1810                         return NULL;
1811                 }
1812
1813                 control->tx_rate =
1814                         ((sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE) &&
1815                         (rate->flags & IEEE80211_RATE_PREAMBLE2)) ?
1816                         rate->val2 : rate->val;
1817                 control->antenna_sel_tx = local->hw.conf.antenna_sel_tx;
1818                 control->power_level = local->hw.conf.power_level;
1819                 control->flags |= IEEE80211_TXCTL_NO_ACK;
1820                 control->retry_limit = 1;
1821                 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
1822         }
1823
1824         ap->num_beacons++;
1825         return skb;
1826 }
1827 EXPORT_SYMBOL(ieee80211_beacon_get);
1828
1829 void ieee80211_rts_get(struct ieee80211_hw *hw, int if_id,
1830                        const void *frame, size_t frame_len,
1831                        const struct ieee80211_tx_control *frame_txctl,
1832                        struct ieee80211_rts *rts)
1833 {
1834         const struct ieee80211_hdr *hdr = frame;
1835         u16 fctl;
1836
1837         fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS;
1838         rts->frame_control = cpu_to_le16(fctl);
1839         rts->duration = ieee80211_rts_duration(hw, if_id, frame_len, frame_txctl);
1840         memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
1841         memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
1842 }
1843 EXPORT_SYMBOL(ieee80211_rts_get);
1844
1845 void ieee80211_ctstoself_get(struct ieee80211_hw *hw, int if_id,
1846                              const void *frame, size_t frame_len,
1847                              const struct ieee80211_tx_control *frame_txctl,
1848                              struct ieee80211_cts *cts)
1849 {
1850         const struct ieee80211_hdr *hdr = frame;
1851         u16 fctl;
1852
1853         fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS;
1854         cts->frame_control = cpu_to_le16(fctl);
1855         cts->duration = ieee80211_ctstoself_duration(hw, if_id, frame_len, frame_txctl);
1856         memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
1857 }
1858 EXPORT_SYMBOL(ieee80211_ctstoself_get);
1859
1860 struct sk_buff *
1861 ieee80211_get_buffered_bc(struct ieee80211_hw *hw, int if_id,
1862                           struct ieee80211_tx_control *control)
1863 {
1864         struct ieee80211_local *local = hw_to_local(hw);
1865         struct sk_buff *skb;
1866         struct sta_info *sta;
1867         ieee80211_tx_handler *handler;
1868         struct ieee80211_txrx_data tx;
1869         ieee80211_txrx_result res = TXRX_DROP;
1870         struct net_device *bdev;
1871         struct ieee80211_sub_if_data *sdata;
1872         struct ieee80211_if_ap *bss = NULL;
1873
1874         bdev = dev_get_by_index(&init_net, if_id);
1875         if (bdev) {
1876                 sdata = IEEE80211_DEV_TO_SUB_IF(bdev);
1877                 bss = &sdata->u.ap;
1878                 dev_put(bdev);
1879         }
1880         if (!bss || sdata->type != IEEE80211_IF_TYPE_AP || !bss->beacon_head)
1881                 return NULL;
1882
1883         if (bss->dtim_count != 0)
1884                 return NULL; /* send buffered bc/mc only after DTIM beacon */
1885         memset(control, 0, sizeof(*control));
1886         while (1) {
1887                 skb = skb_dequeue(&bss->ps_bc_buf);
1888                 if (!skb)
1889                         return NULL;
1890                 local->total_ps_buffered--;
1891
1892                 if (!skb_queue_empty(&bss->ps_bc_buf) && skb->len >= 2) {
1893                         struct ieee80211_hdr *hdr =
1894                                 (struct ieee80211_hdr *) skb->data;
1895                         /* more buffered multicast/broadcast frames ==> set
1896                          * MoreData flag in IEEE 802.11 header to inform PS
1897                          * STAs */
1898                         hdr->frame_control |=
1899                                 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1900                 }
1901
1902                 if (ieee80211_tx_prepare(&tx, skb, local->mdev, control) == 0)
1903                         break;
1904                 dev_kfree_skb_any(skb);
1905         }
1906         sta = tx.sta;
1907         tx.flags |= IEEE80211_TXRXD_TXPS_BUFFERED;
1908         tx.u.tx.mode = local->hw.conf.mode;
1909
1910         for (handler = local->tx_handlers; *handler != NULL; handler++) {
1911                 res = (*handler)(&tx);
1912                 if (res == TXRX_DROP || res == TXRX_QUEUED)
1913                         break;
1914         }
1915         dev_put(tx.dev);
1916         skb = tx.skb; /* handlers are allowed to change skb */
1917
1918         if (res == TXRX_DROP) {
1919                 I802_DEBUG_INC(local->tx_handlers_drop);
1920                 dev_kfree_skb(skb);
1921                 skb = NULL;
1922         } else if (res == TXRX_QUEUED) {
1923                 I802_DEBUG_INC(local->tx_handlers_queued);
1924                 skb = NULL;
1925         }
1926
1927         if (sta)
1928                 sta_info_put(sta);
1929
1930         return skb;
1931 }
1932 EXPORT_SYMBOL(ieee80211_get_buffered_bc);