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