[NETNS][IPV6] tcp - assign the netns for timewait sockets
[linux-2.6.git] / net / mac80211 / tx.c
blob80f4343a3007e6351294962805974e64c3acf8df
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>
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.
12 * Transmit and frame generation functions.
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>
27 #include "ieee80211_i.h"
28 #include "ieee80211_led.h"
29 #include "mesh.h"
30 #include "wep.h"
31 #include "wpa.h"
32 #include "wme.h"
33 #include "ieee80211_rate.h"
35 #define IEEE80211_TX_OK 0
36 #define IEEE80211_TX_AGAIN 1
37 #define IEEE80211_TX_FRAG_AGAIN 2
39 /* misc utils */
41 static inline void ieee80211_include_sequence(struct ieee80211_sub_if_data *sdata,
42 struct ieee80211_hdr *hdr)
44 /* Set the sequence number for this frame. */
45 hdr->seq_ctrl = cpu_to_le16(sdata->sequence);
47 /* Increase the sequence number. */
48 sdata->sequence = (sdata->sequence + 0x10) & IEEE80211_SCTL_SEQ;
51 #ifdef CONFIG_MAC80211_LOWTX_FRAME_DUMP
52 static void ieee80211_dump_frame(const char *ifname, const char *title,
53 const struct sk_buff *skb)
55 const struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
56 u16 fc;
57 int hdrlen;
58 DECLARE_MAC_BUF(mac);
60 printk(KERN_DEBUG "%s: %s (len=%d)", ifname, title, skb->len);
61 if (skb->len < 4) {
62 printk("\n");
63 return;
66 fc = le16_to_cpu(hdr->frame_control);
67 hdrlen = ieee80211_get_hdrlen(fc);
68 if (hdrlen > skb->len)
69 hdrlen = skb->len;
70 if (hdrlen >= 4)
71 printk(" FC=0x%04x DUR=0x%04x",
72 fc, le16_to_cpu(hdr->duration_id));
73 if (hdrlen >= 10)
74 printk(" A1=%s", print_mac(mac, hdr->addr1));
75 if (hdrlen >= 16)
76 printk(" A2=%s", print_mac(mac, hdr->addr2));
77 if (hdrlen >= 24)
78 printk(" A3=%s", print_mac(mac, hdr->addr3));
79 if (hdrlen >= 30)
80 printk(" A4=%s", print_mac(mac, hdr->addr4));
81 printk("\n");
83 #else /* CONFIG_MAC80211_LOWTX_FRAME_DUMP */
84 static inline void ieee80211_dump_frame(const char *ifname, const char *title,
85 struct sk_buff *skb)
88 #endif /* CONFIG_MAC80211_LOWTX_FRAME_DUMP */
90 static u16 ieee80211_duration(struct ieee80211_tx_data *tx, int group_addr,
91 int next_frag_len)
93 int rate, mrate, erp, dur, i;
94 struct ieee80211_rate *txrate = tx->rate;
95 struct ieee80211_local *local = tx->local;
96 struct ieee80211_supported_band *sband;
98 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
100 erp = 0;
101 if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
102 erp = txrate->flags & IEEE80211_RATE_ERP_G;
105 * data and mgmt (except PS Poll):
106 * - during CFP: 32768
107 * - during contention period:
108 * if addr1 is group address: 0
109 * if more fragments = 0 and addr1 is individual address: time to
110 * transmit one ACK plus SIFS
111 * if more fragments = 1 and addr1 is individual address: time to
112 * transmit next fragment plus 2 x ACK plus 3 x SIFS
114 * IEEE 802.11, 9.6:
115 * - control response frame (CTS or ACK) shall be transmitted using the
116 * same rate as the immediately previous frame in the frame exchange
117 * sequence, if this rate belongs to the PHY mandatory rates, or else
118 * at the highest possible rate belonging to the PHY rates in the
119 * BSSBasicRateSet
122 if ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL) {
123 /* TODO: These control frames are not currently sent by
124 * 80211.o, but should they be implemented, this function
125 * needs to be updated to support duration field calculation.
127 * RTS: time needed to transmit pending data/mgmt frame plus
128 * one CTS frame plus one ACK frame plus 3 x SIFS
129 * CTS: duration of immediately previous RTS minus time
130 * required to transmit CTS and its SIFS
131 * ACK: 0 if immediately previous directed data/mgmt had
132 * more=0, with more=1 duration in ACK frame is duration
133 * from previous frame minus time needed to transmit ACK
134 * and its SIFS
135 * PS Poll: BIT(15) | BIT(14) | aid
137 return 0;
140 /* data/mgmt */
141 if (0 /* FIX: data/mgmt during CFP */)
142 return 32768;
144 if (group_addr) /* Group address as the destination - no ACK */
145 return 0;
147 /* Individual destination address:
148 * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
149 * CTS and ACK frames shall be transmitted using the highest rate in
150 * basic rate set that is less than or equal to the rate of the
151 * immediately previous frame and that is using the same modulation
152 * (CCK or OFDM). If no basic rate set matches with these requirements,
153 * the highest mandatory rate of the PHY that is less than or equal to
154 * the rate of the previous frame is used.
155 * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
157 rate = -1;
158 /* use lowest available if everything fails */
159 mrate = sband->bitrates[0].bitrate;
160 for (i = 0; i < sband->n_bitrates; i++) {
161 struct ieee80211_rate *r = &sband->bitrates[i];
163 if (r->bitrate > txrate->bitrate)
164 break;
166 if (tx->sdata->basic_rates & BIT(i))
167 rate = r->bitrate;
169 switch (sband->band) {
170 case IEEE80211_BAND_2GHZ: {
171 u32 flag;
172 if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
173 flag = IEEE80211_RATE_MANDATORY_G;
174 else
175 flag = IEEE80211_RATE_MANDATORY_B;
176 if (r->flags & flag)
177 mrate = r->bitrate;
178 break;
180 case IEEE80211_BAND_5GHZ:
181 if (r->flags & IEEE80211_RATE_MANDATORY_A)
182 mrate = r->bitrate;
183 break;
184 case IEEE80211_NUM_BANDS:
185 WARN_ON(1);
186 break;
189 if (rate == -1) {
190 /* No matching basic rate found; use highest suitable mandatory
191 * PHY rate */
192 rate = mrate;
195 /* Time needed to transmit ACK
196 * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
197 * to closest integer */
199 dur = ieee80211_frame_duration(local, 10, rate, erp,
200 tx->sdata->bss_conf.use_short_preamble);
202 if (next_frag_len) {
203 /* Frame is fragmented: duration increases with time needed to
204 * transmit next fragment plus ACK and 2 x SIFS. */
205 dur *= 2; /* ACK + SIFS */
206 /* next fragment */
207 dur += ieee80211_frame_duration(local, next_frag_len,
208 txrate->bitrate, erp,
209 tx->sdata->bss_conf.use_short_preamble);
212 return dur;
215 static inline int __ieee80211_queue_stopped(const struct ieee80211_local *local,
216 int queue)
218 return test_bit(IEEE80211_LINK_STATE_XOFF, &local->state[queue]);
221 static inline int __ieee80211_queue_pending(const struct ieee80211_local *local,
222 int queue)
224 return test_bit(IEEE80211_LINK_STATE_PENDING, &local->state[queue]);
227 static int inline is_ieee80211_device(struct net_device *dev,
228 struct net_device *master)
230 return (wdev_priv(dev->ieee80211_ptr) ==
231 wdev_priv(master->ieee80211_ptr));
234 /* tx handlers */
236 static ieee80211_tx_result
237 ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx)
239 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
240 struct sk_buff *skb = tx->skb;
241 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
242 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
243 u32 sta_flags;
245 if (unlikely(tx->flags & IEEE80211_TX_INJECTED))
246 return TX_CONTINUE;
248 if (unlikely(tx->local->sta_sw_scanning) &&
249 ((tx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT ||
250 (tx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_PROBE_REQ))
251 return TX_DROP;
253 if (tx->sdata->vif.type == IEEE80211_IF_TYPE_MESH_POINT)
254 return TX_CONTINUE;
256 if (tx->flags & IEEE80211_TX_PS_BUFFERED)
257 return TX_CONTINUE;
259 sta_flags = tx->sta ? tx->sta->flags : 0;
261 if (likely(tx->flags & IEEE80211_TX_UNICAST)) {
262 if (unlikely(!(sta_flags & WLAN_STA_ASSOC) &&
263 tx->sdata->vif.type != IEEE80211_IF_TYPE_IBSS &&
264 (tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)) {
265 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
266 DECLARE_MAC_BUF(mac);
267 printk(KERN_DEBUG "%s: dropped data frame to not "
268 "associated station %s\n",
269 tx->dev->name, print_mac(mac, hdr->addr1));
270 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
271 I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
272 return TX_DROP;
274 } else {
275 if (unlikely((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA &&
276 tx->local->num_sta == 0 &&
277 tx->sdata->vif.type != IEEE80211_IF_TYPE_IBSS)) {
279 * No associated STAs - no need to send multicast
280 * frames.
282 return TX_DROP;
284 return TX_CONTINUE;
287 return TX_CONTINUE;
290 static ieee80211_tx_result
291 ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
293 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
295 if (ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_control)) >= 24)
296 ieee80211_include_sequence(tx->sdata, hdr);
298 return TX_CONTINUE;
301 /* This function is called whenever the AP is about to exceed the maximum limit
302 * of buffered frames for power saving STAs. This situation should not really
303 * happen often during normal operation, so dropping the oldest buffered packet
304 * from each queue should be OK to make some room for new frames. */
305 static void purge_old_ps_buffers(struct ieee80211_local *local)
307 int total = 0, purged = 0;
308 struct sk_buff *skb;
309 struct ieee80211_sub_if_data *sdata;
310 struct sta_info *sta;
313 * virtual interfaces are protected by RCU
315 rcu_read_lock();
317 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
318 struct ieee80211_if_ap *ap;
319 if (sdata->dev == local->mdev ||
320 sdata->vif.type != IEEE80211_IF_TYPE_AP)
321 continue;
322 ap = &sdata->u.ap;
323 skb = skb_dequeue(&ap->ps_bc_buf);
324 if (skb) {
325 purged++;
326 dev_kfree_skb(skb);
328 total += skb_queue_len(&ap->ps_bc_buf);
331 list_for_each_entry_rcu(sta, &local->sta_list, list) {
332 skb = skb_dequeue(&sta->ps_tx_buf);
333 if (skb) {
334 purged++;
335 dev_kfree_skb(skb);
337 total += skb_queue_len(&sta->ps_tx_buf);
340 rcu_read_unlock();
342 local->total_ps_buffered = total;
343 printk(KERN_DEBUG "%s: PS buffers full - purged %d frames\n",
344 wiphy_name(local->hw.wiphy), purged);
347 static ieee80211_tx_result
348 ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
351 * broadcast/multicast frame
353 * If any of the associated stations is in power save mode,
354 * the frame is buffered to be sent after DTIM beacon frame.
355 * This is done either by the hardware or us.
358 /* not AP/IBSS or ordered frame */
359 if (!tx->sdata->bss || (tx->fc & IEEE80211_FCTL_ORDER))
360 return TX_CONTINUE;
362 /* no stations in PS mode */
363 if (!atomic_read(&tx->sdata->bss->num_sta_ps))
364 return TX_CONTINUE;
366 /* buffered in mac80211 */
367 if (tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING) {
368 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
369 purge_old_ps_buffers(tx->local);
370 if (skb_queue_len(&tx->sdata->bss->ps_bc_buf) >=
371 AP_MAX_BC_BUFFER) {
372 if (net_ratelimit()) {
373 printk(KERN_DEBUG "%s: BC TX buffer full - "
374 "dropping the oldest frame\n",
375 tx->dev->name);
377 dev_kfree_skb(skb_dequeue(&tx->sdata->bss->ps_bc_buf));
378 } else
379 tx->local->total_ps_buffered++;
380 skb_queue_tail(&tx->sdata->bss->ps_bc_buf, tx->skb);
381 return TX_QUEUED;
384 /* buffered in hardware */
385 tx->control->flags |= IEEE80211_TXCTL_SEND_AFTER_DTIM;
387 return TX_CONTINUE;
390 static ieee80211_tx_result
391 ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
393 struct sta_info *sta = tx->sta;
394 DECLARE_MAC_BUF(mac);
396 if (unlikely(!sta ||
397 ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT &&
398 (tx->fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP)))
399 return TX_CONTINUE;
401 if (unlikely((sta->flags & WLAN_STA_PS) &&
402 !(sta->flags & WLAN_STA_PSPOLL))) {
403 struct ieee80211_tx_packet_data *pkt_data;
404 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
405 printk(KERN_DEBUG "STA %s aid %d: PS buffer (entries "
406 "before %d)\n",
407 print_mac(mac, sta->addr), sta->aid,
408 skb_queue_len(&sta->ps_tx_buf));
409 #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
410 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
411 purge_old_ps_buffers(tx->local);
412 if (skb_queue_len(&sta->ps_tx_buf) >= STA_MAX_TX_BUFFER) {
413 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf);
414 if (net_ratelimit()) {
415 printk(KERN_DEBUG "%s: STA %s TX "
416 "buffer full - dropping oldest frame\n",
417 tx->dev->name, print_mac(mac, sta->addr));
419 dev_kfree_skb(old);
420 } else
421 tx->local->total_ps_buffered++;
423 /* Queue frame to be sent after STA sends an PS Poll frame */
424 if (skb_queue_empty(&sta->ps_tx_buf))
425 sta_info_set_tim_bit(sta);
427 pkt_data = (struct ieee80211_tx_packet_data *)tx->skb->cb;
428 pkt_data->jiffies = jiffies;
429 skb_queue_tail(&sta->ps_tx_buf, tx->skb);
430 return TX_QUEUED;
432 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
433 else if (unlikely(sta->flags & WLAN_STA_PS)) {
434 printk(KERN_DEBUG "%s: STA %s in PS mode, but pspoll "
435 "set -> send frame\n", tx->dev->name,
436 print_mac(mac, sta->addr));
438 #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
439 sta->flags &= ~WLAN_STA_PSPOLL;
441 return TX_CONTINUE;
444 static ieee80211_tx_result
445 ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
447 if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
448 return TX_CONTINUE;
450 if (tx->flags & IEEE80211_TX_UNICAST)
451 return ieee80211_tx_h_unicast_ps_buf(tx);
452 else
453 return ieee80211_tx_h_multicast_ps_buf(tx);
456 static ieee80211_tx_result
457 ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx)
459 struct ieee80211_key *key;
460 u16 fc = tx->fc;
462 if (unlikely(tx->control->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
463 tx->key = NULL;
464 else if (tx->sta && (key = rcu_dereference(tx->sta->key)))
465 tx->key = key;
466 else if ((key = rcu_dereference(tx->sdata->default_key)))
467 tx->key = key;
468 else if (tx->sdata->drop_unencrypted &&
469 !(tx->control->flags & IEEE80211_TXCTL_EAPOL_FRAME) &&
470 !(tx->flags & IEEE80211_TX_INJECTED)) {
471 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
472 return TX_DROP;
473 } else
474 tx->key = NULL;
476 if (tx->key) {
477 u16 ftype, stype;
479 tx->key->tx_rx_count++;
480 /* TODO: add threshold stuff again */
482 switch (tx->key->conf.alg) {
483 case ALG_WEP:
484 ftype = fc & IEEE80211_FCTL_FTYPE;
485 stype = fc & IEEE80211_FCTL_STYPE;
487 if (ftype == IEEE80211_FTYPE_MGMT &&
488 stype == IEEE80211_STYPE_AUTH)
489 break;
490 case ALG_TKIP:
491 case ALG_CCMP:
492 if (!WLAN_FC_DATA_PRESENT(fc))
493 tx->key = NULL;
494 break;
498 if (!tx->key || !(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
499 tx->control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
501 return TX_CONTINUE;
504 static ieee80211_tx_result
505 ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
507 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
508 size_t hdrlen, per_fragm, num_fragm, payload_len, left;
509 struct sk_buff **frags, *first, *frag;
510 int i;
511 u16 seq;
512 u8 *pos;
513 int frag_threshold = tx->local->fragmentation_threshold;
515 if (!(tx->flags & IEEE80211_TX_FRAGMENTED))
516 return TX_CONTINUE;
518 first = tx->skb;
520 hdrlen = ieee80211_get_hdrlen(tx->fc);
521 payload_len = first->len - hdrlen;
522 per_fragm = frag_threshold - hdrlen - FCS_LEN;
523 num_fragm = DIV_ROUND_UP(payload_len, per_fragm);
525 frags = kzalloc(num_fragm * sizeof(struct sk_buff *), GFP_ATOMIC);
526 if (!frags)
527 goto fail;
529 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
530 seq = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_SEQ;
531 pos = first->data + hdrlen + per_fragm;
532 left = payload_len - per_fragm;
533 for (i = 0; i < num_fragm - 1; i++) {
534 struct ieee80211_hdr *fhdr;
535 size_t copylen;
537 if (left <= 0)
538 goto fail;
540 /* reserve enough extra head and tail room for possible
541 * encryption */
542 frag = frags[i] =
543 dev_alloc_skb(tx->local->tx_headroom +
544 frag_threshold +
545 IEEE80211_ENCRYPT_HEADROOM +
546 IEEE80211_ENCRYPT_TAILROOM);
547 if (!frag)
548 goto fail;
549 /* Make sure that all fragments use the same priority so
550 * that they end up using the same TX queue */
551 frag->priority = first->priority;
552 skb_reserve(frag, tx->local->tx_headroom +
553 IEEE80211_ENCRYPT_HEADROOM);
554 fhdr = (struct ieee80211_hdr *) skb_put(frag, hdrlen);
555 memcpy(fhdr, first->data, hdrlen);
556 if (i == num_fragm - 2)
557 fhdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREFRAGS);
558 fhdr->seq_ctrl = cpu_to_le16(seq | ((i + 1) & IEEE80211_SCTL_FRAG));
559 copylen = left > per_fragm ? per_fragm : left;
560 memcpy(skb_put(frag, copylen), pos, copylen);
562 pos += copylen;
563 left -= copylen;
565 skb_trim(first, hdrlen + per_fragm);
567 tx->num_extra_frag = num_fragm - 1;
568 tx->extra_frag = frags;
570 return TX_CONTINUE;
572 fail:
573 printk(KERN_DEBUG "%s: failed to fragment frame\n", tx->dev->name);
574 if (frags) {
575 for (i = 0; i < num_fragm - 1; i++)
576 if (frags[i])
577 dev_kfree_skb(frags[i]);
578 kfree(frags);
580 I802_DEBUG_INC(tx->local->tx_handlers_drop_fragment);
581 return TX_DROP;
584 static ieee80211_tx_result
585 ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
587 if (!tx->key)
588 return TX_CONTINUE;
590 switch (tx->key->conf.alg) {
591 case ALG_WEP:
592 return ieee80211_crypto_wep_encrypt(tx);
593 case ALG_TKIP:
594 return ieee80211_crypto_tkip_encrypt(tx);
595 case ALG_CCMP:
596 return ieee80211_crypto_ccmp_encrypt(tx);
599 /* not reached */
600 WARN_ON(1);
601 return TX_DROP;
604 static ieee80211_tx_result
605 ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
607 struct rate_selection rsel;
608 struct ieee80211_supported_band *sband;
610 sband = tx->local->hw.wiphy->bands[tx->local->hw.conf.channel->band];
612 if (likely(!tx->rate)) {
613 rate_control_get_rate(tx->dev, sband, tx->skb, &rsel);
614 tx->rate = rsel.rate;
615 if (unlikely(rsel.probe)) {
616 tx->control->flags |=
617 IEEE80211_TXCTL_RATE_CTRL_PROBE;
618 tx->flags |= IEEE80211_TX_PROBE_LAST_FRAG;
619 tx->control->alt_retry_rate = tx->rate;
620 tx->rate = rsel.probe;
621 } else
622 tx->control->alt_retry_rate = NULL;
624 if (!tx->rate)
625 return TX_DROP;
626 } else
627 tx->control->alt_retry_rate = NULL;
629 if (tx->sdata->bss_conf.use_cts_prot &&
630 (tx->flags & IEEE80211_TX_FRAGMENTED) && rsel.nonerp) {
631 tx->last_frag_rate = tx->rate;
632 if (rsel.probe)
633 tx->flags &= ~IEEE80211_TX_PROBE_LAST_FRAG;
634 else
635 tx->flags |= IEEE80211_TX_PROBE_LAST_FRAG;
636 tx->rate = rsel.nonerp;
637 tx->control->tx_rate = rsel.nonerp;
638 tx->control->flags &= ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
639 } else {
640 tx->last_frag_rate = tx->rate;
641 tx->control->tx_rate = tx->rate;
643 tx->control->tx_rate = tx->rate;
645 return TX_CONTINUE;
648 static ieee80211_tx_result
649 ieee80211_tx_h_misc(struct ieee80211_tx_data *tx)
651 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
652 u16 fc = le16_to_cpu(hdr->frame_control);
653 u16 dur;
654 struct ieee80211_tx_control *control = tx->control;
656 if (!control->retry_limit) {
657 if (!is_multicast_ether_addr(hdr->addr1)) {
658 if (tx->skb->len + FCS_LEN > tx->local->rts_threshold
659 && tx->local->rts_threshold <
660 IEEE80211_MAX_RTS_THRESHOLD) {
661 control->flags |=
662 IEEE80211_TXCTL_USE_RTS_CTS;
663 control->flags |=
664 IEEE80211_TXCTL_LONG_RETRY_LIMIT;
665 control->retry_limit =
666 tx->local->long_retry_limit;
667 } else {
668 control->retry_limit =
669 tx->local->short_retry_limit;
671 } else {
672 control->retry_limit = 1;
676 if (tx->flags & IEEE80211_TX_FRAGMENTED) {
677 /* Do not use multiple retry rates when sending fragmented
678 * frames.
679 * TODO: The last fragment could still use multiple retry
680 * rates. */
681 control->alt_retry_rate = NULL;
684 /* Use CTS protection for unicast frames sent using extended rates if
685 * there are associated non-ERP stations and RTS/CTS is not configured
686 * for the frame. */
687 if ((tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE) &&
688 (tx->rate->flags & IEEE80211_RATE_ERP_G) &&
689 (tx->flags & IEEE80211_TX_UNICAST) &&
690 tx->sdata->bss_conf.use_cts_prot &&
691 !(control->flags & IEEE80211_TXCTL_USE_RTS_CTS))
692 control->flags |= IEEE80211_TXCTL_USE_CTS_PROTECT;
694 /* Transmit data frames using short preambles if the driver supports
695 * short preambles at the selected rate and short preambles are
696 * available on the network at the current point in time. */
697 if (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA) &&
698 (tx->rate->flags & IEEE80211_RATE_SHORT_PREAMBLE) &&
699 tx->sdata->bss_conf.use_short_preamble &&
700 (!tx->sta || (tx->sta->flags & WLAN_STA_SHORT_PREAMBLE))) {
701 tx->control->flags |= IEEE80211_TXCTL_SHORT_PREAMBLE;
704 /* Setup duration field for the first fragment of the frame. Duration
705 * for remaining fragments will be updated when they are being sent
706 * to low-level driver in ieee80211_tx(). */
707 dur = ieee80211_duration(tx, is_multicast_ether_addr(hdr->addr1),
708 (tx->flags & IEEE80211_TX_FRAGMENTED) ?
709 tx->extra_frag[0]->len : 0);
710 hdr->duration_id = cpu_to_le16(dur);
712 if ((control->flags & IEEE80211_TXCTL_USE_RTS_CTS) ||
713 (control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)) {
714 struct ieee80211_supported_band *sband;
715 struct ieee80211_rate *rate, *baserate;
716 int idx;
718 sband = tx->local->hw.wiphy->bands[
719 tx->local->hw.conf.channel->band];
721 /* Do not use multiple retry rates when using RTS/CTS */
722 control->alt_retry_rate = NULL;
724 /* Use min(data rate, max base rate) as CTS/RTS rate */
725 rate = tx->rate;
726 baserate = NULL;
728 for (idx = 0; idx < sband->n_bitrates; idx++) {
729 if (sband->bitrates[idx].bitrate > rate->bitrate)
730 continue;
731 if (tx->sdata->basic_rates & BIT(idx) &&
732 (!baserate ||
733 (baserate->bitrate < sband->bitrates[idx].bitrate)))
734 baserate = &sband->bitrates[idx];
737 if (baserate)
738 control->rts_cts_rate = baserate;
739 else
740 control->rts_cts_rate = &sband->bitrates[0];
743 if (tx->sta) {
744 tx->sta->tx_packets++;
745 tx->sta->tx_fragments++;
746 tx->sta->tx_bytes += tx->skb->len;
747 if (tx->extra_frag) {
748 int i;
749 tx->sta->tx_fragments += tx->num_extra_frag;
750 for (i = 0; i < tx->num_extra_frag; i++) {
751 tx->sta->tx_bytes +=
752 tx->extra_frag[i]->len;
757 return TX_CONTINUE;
760 static ieee80211_tx_result
761 ieee80211_tx_h_load_stats(struct ieee80211_tx_data *tx)
763 struct ieee80211_local *local = tx->local;
764 struct sk_buff *skb = tx->skb;
765 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
766 u32 load = 0, hdrtime;
767 struct ieee80211_rate *rate = tx->rate;
769 /* TODO: this could be part of tx_status handling, so that the number
770 * of retries would be known; TX rate should in that case be stored
771 * somewhere with the packet */
773 /* Estimate total channel use caused by this frame */
775 /* 1 bit at 1 Mbit/s takes 1 usec; in channel_use values,
776 * 1 usec = 1/8 * (1080 / 10) = 13.5 */
778 if (tx->channel->band == IEEE80211_BAND_5GHZ ||
779 (tx->channel->band == IEEE80211_BAND_2GHZ &&
780 rate->flags & IEEE80211_RATE_ERP_G))
781 hdrtime = CHAN_UTIL_HDR_SHORT;
782 else
783 hdrtime = CHAN_UTIL_HDR_LONG;
785 load = hdrtime;
786 if (!is_multicast_ether_addr(hdr->addr1))
787 load += hdrtime;
789 if (tx->control->flags & IEEE80211_TXCTL_USE_RTS_CTS)
790 load += 2 * hdrtime;
791 else if (tx->control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)
792 load += hdrtime;
794 /* TODO: optimise again */
795 load += skb->len * CHAN_UTIL_RATE_LCM / rate->bitrate;
797 if (tx->extra_frag) {
798 int i;
799 for (i = 0; i < tx->num_extra_frag; i++) {
800 load += 2 * hdrtime;
801 load += tx->extra_frag[i]->len *
802 tx->rate->bitrate;
806 /* Divide channel_use by 8 to avoid wrapping around the counter */
807 load >>= CHAN_UTIL_SHIFT;
808 local->channel_use_raw += load;
809 if (tx->sta)
810 tx->sta->channel_use_raw += load;
811 tx->sdata->channel_use_raw += load;
813 return TX_CONTINUE;
817 typedef ieee80211_tx_result (*ieee80211_tx_handler)(struct ieee80211_tx_data *);
818 static ieee80211_tx_handler ieee80211_tx_handlers[] =
820 ieee80211_tx_h_check_assoc,
821 ieee80211_tx_h_sequence,
822 ieee80211_tx_h_ps_buf,
823 ieee80211_tx_h_select_key,
824 ieee80211_tx_h_michael_mic_add,
825 ieee80211_tx_h_fragment,
826 ieee80211_tx_h_encrypt,
827 ieee80211_tx_h_rate_ctrl,
828 ieee80211_tx_h_misc,
829 ieee80211_tx_h_load_stats,
830 NULL
833 /* actual transmit path */
836 * deal with packet injection down monitor interface
837 * with Radiotap Header -- only called for monitor mode interface
839 static ieee80211_tx_result
840 __ieee80211_parse_tx_radiotap(struct ieee80211_tx_data *tx,
841 struct sk_buff *skb)
844 * this is the moment to interpret and discard the radiotap header that
845 * must be at the start of the packet injected in Monitor mode
847 * Need to take some care with endian-ness since radiotap
848 * args are little-endian
851 struct ieee80211_radiotap_iterator iterator;
852 struct ieee80211_radiotap_header *rthdr =
853 (struct ieee80211_radiotap_header *) skb->data;
854 struct ieee80211_supported_band *sband;
855 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len);
856 struct ieee80211_tx_control *control = tx->control;
858 sband = tx->local->hw.wiphy->bands[tx->local->hw.conf.channel->band];
860 control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
861 tx->flags |= IEEE80211_TX_INJECTED;
862 tx->flags &= ~IEEE80211_TX_FRAGMENTED;
865 * for every radiotap entry that is present
866 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
867 * entries present, or -EINVAL on error)
870 while (!ret) {
871 int i, target_rate;
873 ret = ieee80211_radiotap_iterator_next(&iterator);
875 if (ret)
876 continue;
878 /* see if this argument is something we can use */
879 switch (iterator.this_arg_index) {
881 * You must take care when dereferencing iterator.this_arg
882 * for multibyte types... the pointer is not aligned. Use
883 * get_unaligned((type *)iterator.this_arg) to dereference
884 * iterator.this_arg for type "type" safely on all arches.
886 case IEEE80211_RADIOTAP_RATE:
888 * radiotap rate u8 is in 500kbps units eg, 0x02=1Mbps
889 * ieee80211 rate int is in 100kbps units eg, 0x0a=1Mbps
891 target_rate = (*iterator.this_arg) * 5;
892 for (i = 0; i < sband->n_bitrates; i++) {
893 struct ieee80211_rate *r;
895 r = &sband->bitrates[i];
897 if (r->bitrate == target_rate) {
898 tx->rate = r;
899 break;
902 break;
904 case IEEE80211_RADIOTAP_ANTENNA:
906 * radiotap uses 0 for 1st ant, mac80211 is 1 for
907 * 1st ant
909 control->antenna_sel_tx = (*iterator.this_arg) + 1;
910 break;
912 #if 0
913 case IEEE80211_RADIOTAP_DBM_TX_POWER:
914 control->power_level = *iterator.this_arg;
915 break;
916 #endif
918 case IEEE80211_RADIOTAP_FLAGS:
919 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
921 * this indicates that the skb we have been
922 * handed has the 32-bit FCS CRC at the end...
923 * we should react to that by snipping it off
924 * because it will be recomputed and added
925 * on transmission
927 if (skb->len < (iterator.max_length + FCS_LEN))
928 return TX_DROP;
930 skb_trim(skb, skb->len - FCS_LEN);
932 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
933 control->flags &=
934 ~IEEE80211_TXCTL_DO_NOT_ENCRYPT;
935 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
936 tx->flags |= IEEE80211_TX_FRAGMENTED;
937 break;
940 * Please update the file
941 * Documentation/networking/mac80211-injection.txt
942 * when parsing new fields here.
945 default:
946 break;
950 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
951 return TX_DROP;
954 * remove the radiotap header
955 * iterator->max_length was sanity-checked against
956 * skb->len by iterator init
958 skb_pull(skb, iterator.max_length);
960 return TX_CONTINUE;
964 * initialises @tx
966 static ieee80211_tx_result
967 __ieee80211_tx_prepare(struct ieee80211_tx_data *tx,
968 struct sk_buff *skb,
969 struct net_device *dev,
970 struct ieee80211_tx_control *control)
972 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
973 struct ieee80211_hdr *hdr;
974 struct ieee80211_sub_if_data *sdata;
976 int hdrlen;
978 memset(tx, 0, sizeof(*tx));
979 tx->skb = skb;
980 tx->dev = dev; /* use original interface */
981 tx->local = local;
982 tx->sdata = IEEE80211_DEV_TO_SUB_IF(dev);
983 tx->control = control;
985 * Set this flag (used below to indicate "automatic fragmentation"),
986 * it will be cleared/left by radiotap as desired.
988 tx->flags |= IEEE80211_TX_FRAGMENTED;
990 /* process and remove the injection radiotap header */
991 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
992 if (unlikely(sdata->vif.type == IEEE80211_IF_TYPE_MNTR)) {
993 if (__ieee80211_parse_tx_radiotap(tx, skb) == TX_DROP)
994 return TX_DROP;
997 * __ieee80211_parse_tx_radiotap has now removed
998 * the radiotap header that was present and pre-filled
999 * 'tx' with tx control information.
1003 hdr = (struct ieee80211_hdr *) skb->data;
1005 tx->sta = sta_info_get(local, hdr->addr1);
1006 tx->fc = le16_to_cpu(hdr->frame_control);
1008 if (is_multicast_ether_addr(hdr->addr1)) {
1009 tx->flags &= ~IEEE80211_TX_UNICAST;
1010 control->flags |= IEEE80211_TXCTL_NO_ACK;
1011 } else {
1012 tx->flags |= IEEE80211_TX_UNICAST;
1013 control->flags &= ~IEEE80211_TXCTL_NO_ACK;
1016 if (tx->flags & IEEE80211_TX_FRAGMENTED) {
1017 if ((tx->flags & IEEE80211_TX_UNICAST) &&
1018 skb->len + FCS_LEN > local->fragmentation_threshold &&
1019 !local->ops->set_frag_threshold)
1020 tx->flags |= IEEE80211_TX_FRAGMENTED;
1021 else
1022 tx->flags &= ~IEEE80211_TX_FRAGMENTED;
1025 if (!tx->sta)
1026 control->flags |= IEEE80211_TXCTL_CLEAR_PS_FILT;
1027 else if (tx->sta->flags & WLAN_STA_CLEAR_PS_FILT) {
1028 control->flags |= IEEE80211_TXCTL_CLEAR_PS_FILT;
1029 tx->sta->flags &= ~WLAN_STA_CLEAR_PS_FILT;
1032 hdrlen = ieee80211_get_hdrlen(tx->fc);
1033 if (skb->len > hdrlen + sizeof(rfc1042_header) + 2) {
1034 u8 *pos = &skb->data[hdrlen + sizeof(rfc1042_header)];
1035 tx->ethertype = (pos[0] << 8) | pos[1];
1037 control->flags |= IEEE80211_TXCTL_FIRST_FRAGMENT;
1039 return TX_CONTINUE;
1043 * NB: @tx is uninitialised when passed in here
1045 static int ieee80211_tx_prepare(struct ieee80211_tx_data *tx,
1046 struct sk_buff *skb,
1047 struct net_device *mdev,
1048 struct ieee80211_tx_control *control)
1050 struct ieee80211_tx_packet_data *pkt_data;
1051 struct net_device *dev;
1053 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1054 dev = dev_get_by_index(&init_net, pkt_data->ifindex);
1055 if (unlikely(dev && !is_ieee80211_device(dev, mdev))) {
1056 dev_put(dev);
1057 dev = NULL;
1059 if (unlikely(!dev))
1060 return -ENODEV;
1061 /* initialises tx with control */
1062 __ieee80211_tx_prepare(tx, skb, dev, control);
1063 dev_put(dev);
1064 return 0;
1067 static int __ieee80211_tx(struct ieee80211_local *local, struct sk_buff *skb,
1068 struct ieee80211_tx_data *tx)
1070 struct ieee80211_tx_control *control = tx->control;
1071 int ret, i;
1073 if (!ieee80211_qdisc_installed(local->mdev) &&
1074 __ieee80211_queue_stopped(local, 0)) {
1075 netif_stop_queue(local->mdev);
1076 return IEEE80211_TX_AGAIN;
1078 if (skb) {
1079 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
1080 "TX to low-level driver", skb);
1081 ret = local->ops->tx(local_to_hw(local), skb, control);
1082 if (ret)
1083 return IEEE80211_TX_AGAIN;
1084 local->mdev->trans_start = jiffies;
1085 ieee80211_led_tx(local, 1);
1087 if (tx->extra_frag) {
1088 control->flags &= ~(IEEE80211_TXCTL_USE_RTS_CTS |
1089 IEEE80211_TXCTL_USE_CTS_PROTECT |
1090 IEEE80211_TXCTL_CLEAR_PS_FILT |
1091 IEEE80211_TXCTL_FIRST_FRAGMENT);
1092 for (i = 0; i < tx->num_extra_frag; i++) {
1093 if (!tx->extra_frag[i])
1094 continue;
1095 if (__ieee80211_queue_stopped(local, control->queue))
1096 return IEEE80211_TX_FRAG_AGAIN;
1097 if (i == tx->num_extra_frag) {
1098 control->tx_rate = tx->last_frag_rate;
1100 if (tx->flags & IEEE80211_TX_PROBE_LAST_FRAG)
1101 control->flags |=
1102 IEEE80211_TXCTL_RATE_CTRL_PROBE;
1103 else
1104 control->flags &=
1105 ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
1108 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
1109 "TX to low-level driver",
1110 tx->extra_frag[i]);
1111 ret = local->ops->tx(local_to_hw(local),
1112 tx->extra_frag[i],
1113 control);
1114 if (ret)
1115 return IEEE80211_TX_FRAG_AGAIN;
1116 local->mdev->trans_start = jiffies;
1117 ieee80211_led_tx(local, 1);
1118 tx->extra_frag[i] = NULL;
1120 kfree(tx->extra_frag);
1121 tx->extra_frag = NULL;
1123 return IEEE80211_TX_OK;
1126 static int ieee80211_tx(struct net_device *dev, struct sk_buff *skb,
1127 struct ieee80211_tx_control *control)
1129 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1130 struct sta_info *sta;
1131 ieee80211_tx_handler *handler;
1132 struct ieee80211_tx_data tx;
1133 ieee80211_tx_result res = TX_DROP, res_prepare;
1134 int ret, i;
1136 WARN_ON(__ieee80211_queue_pending(local, control->queue));
1138 if (unlikely(skb->len < 10)) {
1139 dev_kfree_skb(skb);
1140 return 0;
1143 rcu_read_lock();
1145 /* initialises tx */
1146 res_prepare = __ieee80211_tx_prepare(&tx, skb, dev, control);
1148 if (res_prepare == TX_DROP) {
1149 dev_kfree_skb(skb);
1150 rcu_read_unlock();
1151 return 0;
1154 sta = tx.sta;
1155 tx.channel = local->hw.conf.channel;
1157 for (handler = ieee80211_tx_handlers; *handler != NULL;
1158 handler++) {
1159 res = (*handler)(&tx);
1160 if (res != TX_CONTINUE)
1161 break;
1164 skb = tx.skb; /* handlers are allowed to change skb */
1166 if (unlikely(res == TX_DROP)) {
1167 I802_DEBUG_INC(local->tx_handlers_drop);
1168 goto drop;
1171 if (unlikely(res == TX_QUEUED)) {
1172 I802_DEBUG_INC(local->tx_handlers_queued);
1173 rcu_read_unlock();
1174 return 0;
1177 if (tx.extra_frag) {
1178 for (i = 0; i < tx.num_extra_frag; i++) {
1179 int next_len, dur;
1180 struct ieee80211_hdr *hdr =
1181 (struct ieee80211_hdr *)
1182 tx.extra_frag[i]->data;
1184 if (i + 1 < tx.num_extra_frag) {
1185 next_len = tx.extra_frag[i + 1]->len;
1186 } else {
1187 next_len = 0;
1188 tx.rate = tx.last_frag_rate;
1190 dur = ieee80211_duration(&tx, 0, next_len);
1191 hdr->duration_id = cpu_to_le16(dur);
1195 retry:
1196 ret = __ieee80211_tx(local, skb, &tx);
1197 if (ret) {
1198 struct ieee80211_tx_stored_packet *store =
1199 &local->pending_packet[control->queue];
1201 if (ret == IEEE80211_TX_FRAG_AGAIN)
1202 skb = NULL;
1203 set_bit(IEEE80211_LINK_STATE_PENDING,
1204 &local->state[control->queue]);
1205 smp_mb();
1206 /* When the driver gets out of buffers during sending of
1207 * fragments and calls ieee80211_stop_queue, there is
1208 * a small window between IEEE80211_LINK_STATE_XOFF and
1209 * IEEE80211_LINK_STATE_PENDING flags are set. If a buffer
1210 * gets available in that window (i.e. driver calls
1211 * ieee80211_wake_queue), we would end up with ieee80211_tx
1212 * called with IEEE80211_LINK_STATE_PENDING. Prevent this by
1213 * continuing transmitting here when that situation is
1214 * possible to have happened. */
1215 if (!__ieee80211_queue_stopped(local, control->queue)) {
1216 clear_bit(IEEE80211_LINK_STATE_PENDING,
1217 &local->state[control->queue]);
1218 goto retry;
1220 memcpy(&store->control, control,
1221 sizeof(struct ieee80211_tx_control));
1222 store->skb = skb;
1223 store->extra_frag = tx.extra_frag;
1224 store->num_extra_frag = tx.num_extra_frag;
1225 store->last_frag_rate = tx.last_frag_rate;
1226 store->last_frag_rate_ctrl_probe =
1227 !!(tx.flags & IEEE80211_TX_PROBE_LAST_FRAG);
1229 rcu_read_unlock();
1230 return 0;
1232 drop:
1233 if (skb)
1234 dev_kfree_skb(skb);
1235 for (i = 0; i < tx.num_extra_frag; i++)
1236 if (tx.extra_frag[i])
1237 dev_kfree_skb(tx.extra_frag[i]);
1238 kfree(tx.extra_frag);
1239 rcu_read_unlock();
1240 return 0;
1243 /* device xmit handlers */
1245 int ieee80211_master_start_xmit(struct sk_buff *skb,
1246 struct net_device *dev)
1248 struct ieee80211_tx_control control;
1249 struct ieee80211_tx_packet_data *pkt_data;
1250 struct net_device *odev = NULL;
1251 struct ieee80211_sub_if_data *osdata;
1252 int headroom;
1253 int ret;
1256 * copy control out of the skb so other people can use skb->cb
1258 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1259 memset(&control, 0, sizeof(struct ieee80211_tx_control));
1261 if (pkt_data->ifindex)
1262 odev = dev_get_by_index(&init_net, pkt_data->ifindex);
1263 if (unlikely(odev && !is_ieee80211_device(odev, dev))) {
1264 dev_put(odev);
1265 odev = NULL;
1267 if (unlikely(!odev)) {
1268 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1269 printk(KERN_DEBUG "%s: Discarded packet with nonexistent "
1270 "originating device\n", dev->name);
1271 #endif
1272 dev_kfree_skb(skb);
1273 return 0;
1275 osdata = IEEE80211_DEV_TO_SUB_IF(odev);
1277 headroom = osdata->local->tx_headroom + IEEE80211_ENCRYPT_HEADROOM;
1278 if (skb_headroom(skb) < headroom) {
1279 if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) {
1280 dev_kfree_skb(skb);
1281 dev_put(odev);
1282 return 0;
1286 control.vif = &osdata->vif;
1287 control.type = osdata->vif.type;
1288 if (pkt_data->flags & IEEE80211_TXPD_REQ_TX_STATUS)
1289 control.flags |= IEEE80211_TXCTL_REQ_TX_STATUS;
1290 if (pkt_data->flags & IEEE80211_TXPD_DO_NOT_ENCRYPT)
1291 control.flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
1292 if (pkt_data->flags & IEEE80211_TXPD_REQUEUE)
1293 control.flags |= IEEE80211_TXCTL_REQUEUE;
1294 if (pkt_data->flags & IEEE80211_TXPD_EAPOL_FRAME)
1295 control.flags |= IEEE80211_TXCTL_EAPOL_FRAME;
1296 if (pkt_data->flags & IEEE80211_TXPD_AMPDU)
1297 control.flags |= IEEE80211_TXCTL_AMPDU;
1298 control.queue = pkt_data->queue;
1300 ret = ieee80211_tx(odev, skb, &control);
1301 dev_put(odev);
1303 return ret;
1306 int ieee80211_monitor_start_xmit(struct sk_buff *skb,
1307 struct net_device *dev)
1309 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1310 struct ieee80211_tx_packet_data *pkt_data;
1311 struct ieee80211_radiotap_header *prthdr =
1312 (struct ieee80211_radiotap_header *)skb->data;
1313 u16 len_rthdr;
1315 /* check for not even having the fixed radiotap header part */
1316 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1317 goto fail; /* too short to be possibly valid */
1319 /* is it a header version we can trust to find length from? */
1320 if (unlikely(prthdr->it_version))
1321 goto fail; /* only version 0 is supported */
1323 /* then there must be a radiotap header with a length we can use */
1324 len_rthdr = ieee80211_get_radiotap_len(skb->data);
1326 /* does the skb contain enough to deliver on the alleged length? */
1327 if (unlikely(skb->len < len_rthdr))
1328 goto fail; /* skb too short for claimed rt header extent */
1330 skb->dev = local->mdev;
1332 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1333 memset(pkt_data, 0, sizeof(*pkt_data));
1334 /* needed because we set skb device to master */
1335 pkt_data->ifindex = dev->ifindex;
1337 pkt_data->flags |= IEEE80211_TXPD_DO_NOT_ENCRYPT;
1340 * fix up the pointers accounting for the radiotap
1341 * header still being in there. We are being given
1342 * a precooked IEEE80211 header so no need for
1343 * normal processing
1345 skb_set_mac_header(skb, len_rthdr);
1347 * these are just fixed to the end of the rt area since we
1348 * don't have any better information and at this point, nobody cares
1350 skb_set_network_header(skb, len_rthdr);
1351 skb_set_transport_header(skb, len_rthdr);
1353 /* pass the radiotap header up to the next stage intact */
1354 dev_queue_xmit(skb);
1355 return NETDEV_TX_OK;
1357 fail:
1358 dev_kfree_skb(skb);
1359 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
1363 * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type
1364 * subinterfaces (wlan#, WDS, and VLAN interfaces)
1365 * @skb: packet to be sent
1366 * @dev: incoming interface
1368 * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will
1369 * not be freed, and caller is responsible for either retrying later or freeing
1370 * skb).
1372 * This function takes in an Ethernet header and encapsulates it with suitable
1373 * IEEE 802.11 header based on which interface the packet is coming in. The
1374 * encapsulated packet will then be passed to master interface, wlan#.11, for
1375 * transmission (through low-level driver).
1377 int ieee80211_subif_start_xmit(struct sk_buff *skb,
1378 struct net_device *dev)
1380 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1381 struct ieee80211_tx_packet_data *pkt_data;
1382 struct ieee80211_sub_if_data *sdata;
1383 int ret = 1, head_need;
1384 u16 ethertype, hdrlen, meshhdrlen = 0, fc;
1385 struct ieee80211_hdr hdr;
1386 struct ieee80211s_hdr mesh_hdr;
1387 const u8 *encaps_data;
1388 int encaps_len, skip_header_bytes;
1389 int nh_pos, h_pos;
1390 struct sta_info *sta;
1391 u32 sta_flags = 0;
1393 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1394 if (unlikely(skb->len < ETH_HLEN)) {
1395 printk(KERN_DEBUG "%s: short skb (len=%d)\n",
1396 dev->name, skb->len);
1397 ret = 0;
1398 goto fail;
1401 nh_pos = skb_network_header(skb) - skb->data;
1402 h_pos = skb_transport_header(skb) - skb->data;
1404 /* convert Ethernet header to proper 802.11 header (based on
1405 * operation mode) */
1406 ethertype = (skb->data[12] << 8) | skb->data[13];
1407 fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA;
1409 switch (sdata->vif.type) {
1410 case IEEE80211_IF_TYPE_AP:
1411 case IEEE80211_IF_TYPE_VLAN:
1412 fc |= IEEE80211_FCTL_FROMDS;
1413 /* DA BSSID SA */
1414 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1415 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1416 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1417 hdrlen = 24;
1418 break;
1419 case IEEE80211_IF_TYPE_WDS:
1420 fc |= IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS;
1421 /* RA TA DA SA */
1422 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
1423 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1424 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1425 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1426 hdrlen = 30;
1427 break;
1428 #ifdef CONFIG_MAC80211_MESH
1429 case IEEE80211_IF_TYPE_MESH_POINT:
1430 fc |= IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS;
1431 /* RA TA DA SA */
1432 if (is_multicast_ether_addr(skb->data))
1433 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1434 else if (mesh_nexthop_lookup(hdr.addr1, skb, dev))
1435 return 0;
1436 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1437 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1438 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1439 if (skb->pkt_type == PACKET_OTHERHOST) {
1440 /* Forwarded frame, keep mesh ttl and seqnum */
1441 struct ieee80211s_hdr *prev_meshhdr;
1442 prev_meshhdr = ((struct ieee80211s_hdr *)skb->cb);
1443 meshhdrlen = ieee80211_get_mesh_hdrlen(prev_meshhdr);
1444 memcpy(&mesh_hdr, prev_meshhdr, meshhdrlen);
1445 sdata->u.sta.mshstats.fwded_frames++;
1446 } else {
1447 if (!sdata->u.sta.mshcfg.dot11MeshTTL) {
1448 /* Do not send frames with mesh_ttl == 0 */
1449 sdata->u.sta.mshstats.dropped_frames_ttl++;
1450 ret = 0;
1451 goto fail;
1453 meshhdrlen = ieee80211_new_mesh_header(&mesh_hdr,
1454 sdata);
1456 hdrlen = 30;
1457 break;
1458 #endif
1459 case IEEE80211_IF_TYPE_STA:
1460 fc |= IEEE80211_FCTL_TODS;
1461 /* BSSID SA DA */
1462 memcpy(hdr.addr1, sdata->u.sta.bssid, ETH_ALEN);
1463 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1464 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1465 hdrlen = 24;
1466 break;
1467 case IEEE80211_IF_TYPE_IBSS:
1468 /* DA SA BSSID */
1469 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1470 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1471 memcpy(hdr.addr3, sdata->u.sta.bssid, ETH_ALEN);
1472 hdrlen = 24;
1473 break;
1474 default:
1475 ret = 0;
1476 goto fail;
1480 * There's no need to try to look up the destination
1481 * if it is a multicast address (which can only happen
1482 * in AP mode)
1484 if (!is_multicast_ether_addr(hdr.addr1)) {
1485 rcu_read_lock();
1486 sta = sta_info_get(local, hdr.addr1);
1487 if (sta)
1488 sta_flags = sta->flags;
1489 rcu_read_unlock();
1492 /* receiver is QoS enabled, use a QoS type frame */
1493 if (sta_flags & WLAN_STA_WME) {
1494 fc |= IEEE80211_STYPE_QOS_DATA;
1495 hdrlen += 2;
1499 * Drop unicast frames to unauthorised stations unless they are
1500 * EAPOL frames from the local station.
1502 if (unlikely(!is_multicast_ether_addr(hdr.addr1) &&
1503 !(sta_flags & WLAN_STA_AUTHORIZED) &&
1504 !(ethertype == ETH_P_PAE &&
1505 compare_ether_addr(dev->dev_addr,
1506 skb->data + ETH_ALEN) == 0))) {
1507 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1508 DECLARE_MAC_BUF(mac);
1510 if (net_ratelimit())
1511 printk(KERN_DEBUG "%s: dropped frame to %s"
1512 " (unauthorized port)\n", dev->name,
1513 print_mac(mac, hdr.addr1));
1514 #endif
1516 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
1518 ret = 0;
1519 goto fail;
1522 hdr.frame_control = cpu_to_le16(fc);
1523 hdr.duration_id = 0;
1524 hdr.seq_ctrl = 0;
1526 skip_header_bytes = ETH_HLEN;
1527 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
1528 encaps_data = bridge_tunnel_header;
1529 encaps_len = sizeof(bridge_tunnel_header);
1530 skip_header_bytes -= 2;
1531 } else if (ethertype >= 0x600) {
1532 encaps_data = rfc1042_header;
1533 encaps_len = sizeof(rfc1042_header);
1534 skip_header_bytes -= 2;
1535 } else {
1536 encaps_data = NULL;
1537 encaps_len = 0;
1540 skb_pull(skb, skip_header_bytes);
1541 nh_pos -= skip_header_bytes;
1542 h_pos -= skip_header_bytes;
1544 /* TODO: implement support for fragments so that there is no need to
1545 * reallocate and copy payload; it might be enough to support one
1546 * extra fragment that would be copied in the beginning of the frame
1547 * data.. anyway, it would be nice to include this into skb structure
1548 * somehow
1550 * There are few options for this:
1551 * use skb->cb as an extra space for 802.11 header
1552 * allocate new buffer if not enough headroom
1553 * make sure that there is enough headroom in every skb by increasing
1554 * build in headroom in __dev_alloc_skb() (linux/skbuff.h) and
1555 * alloc_skb() (net/core/skbuff.c)
1557 head_need = hdrlen + encaps_len + meshhdrlen + local->tx_headroom;
1558 head_need -= skb_headroom(skb);
1560 /* We are going to modify skb data, so make a copy of it if happens to
1561 * be cloned. This could happen, e.g., with Linux bridge code passing
1562 * us broadcast frames. */
1564 if (head_need > 0 || skb_cloned(skb)) {
1565 #if 0
1566 printk(KERN_DEBUG "%s: need to reallocate buffer for %d bytes "
1567 "of headroom\n", dev->name, head_need);
1568 #endif
1570 if (skb_cloned(skb))
1571 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
1572 else
1573 I802_DEBUG_INC(local->tx_expand_skb_head);
1574 /* Since we have to reallocate the buffer, make sure that there
1575 * is enough room for possible WEP IV/ICV and TKIP (8 bytes
1576 * before payload and 12 after). */
1577 if (pskb_expand_head(skb, (head_need > 0 ? head_need + 8 : 8),
1578 12, GFP_ATOMIC)) {
1579 printk(KERN_DEBUG "%s: failed to reallocate TX buffer"
1580 "\n", dev->name);
1581 goto fail;
1585 if (encaps_data) {
1586 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
1587 nh_pos += encaps_len;
1588 h_pos += encaps_len;
1591 if (meshhdrlen > 0) {
1592 memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
1593 nh_pos += meshhdrlen;
1594 h_pos += meshhdrlen;
1597 if (fc & IEEE80211_STYPE_QOS_DATA) {
1598 __le16 *qos_control;
1600 qos_control = (__le16*) skb_push(skb, 2);
1601 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
1603 * Maybe we could actually set some fields here, for now just
1604 * initialise to zero to indicate no special operation.
1606 *qos_control = 0;
1607 } else
1608 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
1610 nh_pos += hdrlen;
1611 h_pos += hdrlen;
1613 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1614 memset(pkt_data, 0, sizeof(struct ieee80211_tx_packet_data));
1615 pkt_data->ifindex = dev->ifindex;
1616 if (ethertype == ETH_P_PAE)
1617 pkt_data->flags |= IEEE80211_TXPD_EAPOL_FRAME;
1619 skb->dev = local->mdev;
1620 dev->stats.tx_packets++;
1621 dev->stats.tx_bytes += skb->len;
1623 /* Update skb pointers to various headers since this modified frame
1624 * is going to go through Linux networking code that may potentially
1625 * need things like pointer to IP header. */
1626 skb_set_mac_header(skb, 0);
1627 skb_set_network_header(skb, nh_pos);
1628 skb_set_transport_header(skb, h_pos);
1630 dev->trans_start = jiffies;
1631 dev_queue_xmit(skb);
1633 return 0;
1635 fail:
1636 if (!ret)
1637 dev_kfree_skb(skb);
1639 return ret;
1642 /* helper functions for pending packets for when queues are stopped */
1644 void ieee80211_clear_tx_pending(struct ieee80211_local *local)
1646 int i, j;
1647 struct ieee80211_tx_stored_packet *store;
1649 for (i = 0; i < local->hw.queues; i++) {
1650 if (!__ieee80211_queue_pending(local, i))
1651 continue;
1652 store = &local->pending_packet[i];
1653 kfree_skb(store->skb);
1654 for (j = 0; j < store->num_extra_frag; j++)
1655 kfree_skb(store->extra_frag[j]);
1656 kfree(store->extra_frag);
1657 clear_bit(IEEE80211_LINK_STATE_PENDING, &local->state[i]);
1661 void ieee80211_tx_pending(unsigned long data)
1663 struct ieee80211_local *local = (struct ieee80211_local *)data;
1664 struct net_device *dev = local->mdev;
1665 struct ieee80211_tx_stored_packet *store;
1666 struct ieee80211_tx_data tx;
1667 int i, ret, reschedule = 0;
1669 netif_tx_lock_bh(dev);
1670 for (i = 0; i < local->hw.queues; i++) {
1671 if (__ieee80211_queue_stopped(local, i))
1672 continue;
1673 if (!__ieee80211_queue_pending(local, i)) {
1674 reschedule = 1;
1675 continue;
1677 store = &local->pending_packet[i];
1678 tx.control = &store->control;
1679 tx.extra_frag = store->extra_frag;
1680 tx.num_extra_frag = store->num_extra_frag;
1681 tx.last_frag_rate = store->last_frag_rate;
1682 tx.flags = 0;
1683 if (store->last_frag_rate_ctrl_probe)
1684 tx.flags |= IEEE80211_TX_PROBE_LAST_FRAG;
1685 ret = __ieee80211_tx(local, store->skb, &tx);
1686 if (ret) {
1687 if (ret == IEEE80211_TX_FRAG_AGAIN)
1688 store->skb = NULL;
1689 } else {
1690 clear_bit(IEEE80211_LINK_STATE_PENDING,
1691 &local->state[i]);
1692 reschedule = 1;
1695 netif_tx_unlock_bh(dev);
1696 if (reschedule) {
1697 if (!ieee80211_qdisc_installed(dev)) {
1698 if (!__ieee80211_queue_stopped(local, 0))
1699 netif_wake_queue(dev);
1700 } else
1701 netif_schedule(dev);
1705 /* functions for drivers to get certain frames */
1707 static void ieee80211_beacon_add_tim(struct ieee80211_local *local,
1708 struct ieee80211_if_ap *bss,
1709 struct sk_buff *skb,
1710 struct beacon_data *beacon)
1712 u8 *pos, *tim;
1713 int aid0 = 0;
1714 int i, have_bits = 0, n1, n2;
1716 /* Generate bitmap for TIM only if there are any STAs in power save
1717 * mode. */
1718 if (atomic_read(&bss->num_sta_ps) > 0)
1719 /* in the hope that this is faster than
1720 * checking byte-for-byte */
1721 have_bits = !bitmap_empty((unsigned long*)bss->tim,
1722 IEEE80211_MAX_AID+1);
1724 if (bss->dtim_count == 0)
1725 bss->dtim_count = beacon->dtim_period - 1;
1726 else
1727 bss->dtim_count--;
1729 tim = pos = (u8 *) skb_put(skb, 6);
1730 *pos++ = WLAN_EID_TIM;
1731 *pos++ = 4;
1732 *pos++ = bss->dtim_count;
1733 *pos++ = beacon->dtim_period;
1735 if (bss->dtim_count == 0 && !skb_queue_empty(&bss->ps_bc_buf))
1736 aid0 = 1;
1738 if (have_bits) {
1739 /* Find largest even number N1 so that bits numbered 1 through
1740 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
1741 * (N2 + 1) x 8 through 2007 are 0. */
1742 n1 = 0;
1743 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
1744 if (bss->tim[i]) {
1745 n1 = i & 0xfe;
1746 break;
1749 n2 = n1;
1750 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
1751 if (bss->tim[i]) {
1752 n2 = i;
1753 break;
1757 /* Bitmap control */
1758 *pos++ = n1 | aid0;
1759 /* Part Virt Bitmap */
1760 memcpy(pos, bss->tim + n1, n2 - n1 + 1);
1762 tim[1] = n2 - n1 + 4;
1763 skb_put(skb, n2 - n1);
1764 } else {
1765 *pos++ = aid0; /* Bitmap control */
1766 *pos++ = 0; /* Part Virt Bitmap */
1770 struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw,
1771 struct ieee80211_vif *vif,
1772 struct ieee80211_tx_control *control)
1774 struct ieee80211_local *local = hw_to_local(hw);
1775 struct sk_buff *skb;
1776 struct net_device *bdev;
1777 struct ieee80211_sub_if_data *sdata = NULL;
1778 struct ieee80211_if_ap *ap = NULL;
1779 struct rate_selection rsel;
1780 struct beacon_data *beacon;
1781 struct ieee80211_supported_band *sband;
1782 struct ieee80211_mgmt *mgmt;
1783 int *num_beacons;
1784 bool err = true;
1785 u8 *pos;
1787 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1789 rcu_read_lock();
1791 sdata = vif_to_sdata(vif);
1792 bdev = sdata->dev;
1794 if (sdata->vif.type == IEEE80211_IF_TYPE_AP) {
1795 ap = &sdata->u.ap;
1796 beacon = rcu_dereference(ap->beacon);
1797 if (ap && beacon) {
1799 * headroom, head length,
1800 * tail length and maximum TIM length
1802 skb = dev_alloc_skb(local->tx_headroom +
1803 beacon->head_len +
1804 beacon->tail_len + 256);
1805 if (!skb)
1806 goto out;
1808 skb_reserve(skb, local->tx_headroom);
1809 memcpy(skb_put(skb, beacon->head_len), beacon->head,
1810 beacon->head_len);
1812 ieee80211_include_sequence(sdata,
1813 (struct ieee80211_hdr *)skb->data);
1816 * Not very nice, but we want to allow the driver to call
1817 * ieee80211_beacon_get() as a response to the set_tim()
1818 * callback. That, however, is already invoked under the
1819 * sta_lock to guarantee consistent and race-free update
1820 * of the tim bitmap in mac80211 and the driver.
1822 if (local->tim_in_locked_section) {
1823 ieee80211_beacon_add_tim(local, ap, skb, beacon);
1824 } else {
1825 unsigned long flags;
1827 spin_lock_irqsave(&local->sta_lock, flags);
1828 ieee80211_beacon_add_tim(local, ap, skb, beacon);
1829 spin_unlock_irqrestore(&local->sta_lock, flags);
1832 if (beacon->tail)
1833 memcpy(skb_put(skb, beacon->tail_len),
1834 beacon->tail, beacon->tail_len);
1836 num_beacons = &ap->num_beacons;
1838 err = false;
1840 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
1841 /* headroom, head length, tail length and maximum TIM length */
1842 skb = dev_alloc_skb(local->tx_headroom + 400);
1843 if (!skb)
1844 goto out;
1846 skb_reserve(skb, local->hw.extra_tx_headroom);
1847 mgmt = (struct ieee80211_mgmt *)
1848 skb_put(skb, 24 + sizeof(mgmt->u.beacon));
1849 memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon));
1850 mgmt->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT,
1851 IEEE80211_STYPE_BEACON);
1852 memset(mgmt->da, 0xff, ETH_ALEN);
1853 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
1854 /* BSSID is left zeroed, wildcard value */
1855 mgmt->u.beacon.beacon_int =
1856 cpu_to_le16(local->hw.conf.beacon_int);
1857 mgmt->u.beacon.capab_info = 0x0; /* 0x0 for MPs */
1859 pos = skb_put(skb, 2);
1860 *pos++ = WLAN_EID_SSID;
1861 *pos++ = 0x0;
1863 mesh_mgmt_ies_add(skb, sdata->dev);
1865 num_beacons = &sdata->u.sta.num_beacons;
1867 err = false;
1870 if (err) {
1871 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1872 if (net_ratelimit())
1873 printk(KERN_DEBUG "no beacon data avail for %s\n",
1874 bdev->name);
1875 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
1876 skb = NULL;
1877 goto out;
1880 if (control) {
1881 rate_control_get_rate(local->mdev, sband, skb, &rsel);
1882 if (!rsel.rate) {
1883 if (net_ratelimit()) {
1884 printk(KERN_DEBUG "%s: ieee80211_beacon_get: "
1885 "no rate found\n",
1886 wiphy_name(local->hw.wiphy));
1888 dev_kfree_skb(skb);
1889 skb = NULL;
1890 goto out;
1893 control->vif = vif;
1894 control->tx_rate = rsel.rate;
1895 if (sdata->bss_conf.use_short_preamble &&
1896 rsel.rate->flags & IEEE80211_RATE_SHORT_PREAMBLE)
1897 control->flags |= IEEE80211_TXCTL_SHORT_PREAMBLE;
1898 control->antenna_sel_tx = local->hw.conf.antenna_sel_tx;
1899 control->flags |= IEEE80211_TXCTL_NO_ACK;
1900 control->retry_limit = 1;
1901 control->flags |= IEEE80211_TXCTL_CLEAR_PS_FILT;
1903 (*num_beacons)++;
1904 out:
1905 rcu_read_unlock();
1906 return skb;
1908 EXPORT_SYMBOL(ieee80211_beacon_get);
1910 void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1911 const void *frame, size_t frame_len,
1912 const struct ieee80211_tx_control *frame_txctl,
1913 struct ieee80211_rts *rts)
1915 const struct ieee80211_hdr *hdr = frame;
1916 u16 fctl;
1918 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS;
1919 rts->frame_control = cpu_to_le16(fctl);
1920 rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
1921 frame_txctl);
1922 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
1923 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
1925 EXPORT_SYMBOL(ieee80211_rts_get);
1927 void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1928 const void *frame, size_t frame_len,
1929 const struct ieee80211_tx_control *frame_txctl,
1930 struct ieee80211_cts *cts)
1932 const struct ieee80211_hdr *hdr = frame;
1933 u16 fctl;
1935 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS;
1936 cts->frame_control = cpu_to_le16(fctl);
1937 cts->duration = ieee80211_ctstoself_duration(hw, vif,
1938 frame_len, frame_txctl);
1939 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
1941 EXPORT_SYMBOL(ieee80211_ctstoself_get);
1943 struct sk_buff *
1944 ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
1945 struct ieee80211_vif *vif,
1946 struct ieee80211_tx_control *control)
1948 struct ieee80211_local *local = hw_to_local(hw);
1949 struct sk_buff *skb;
1950 struct sta_info *sta;
1951 ieee80211_tx_handler *handler;
1952 struct ieee80211_tx_data tx;
1953 ieee80211_tx_result res = TX_DROP;
1954 struct net_device *bdev;
1955 struct ieee80211_sub_if_data *sdata;
1956 struct ieee80211_if_ap *bss = NULL;
1957 struct beacon_data *beacon;
1959 sdata = vif_to_sdata(vif);
1960 bdev = sdata->dev;
1963 if (!bss)
1964 return NULL;
1966 rcu_read_lock();
1967 beacon = rcu_dereference(bss->beacon);
1969 if (sdata->vif.type != IEEE80211_IF_TYPE_AP || !beacon ||
1970 !beacon->head) {
1971 rcu_read_unlock();
1972 return NULL;
1975 if (bss->dtim_count != 0)
1976 return NULL; /* send buffered bc/mc only after DTIM beacon */
1977 memset(control, 0, sizeof(*control));
1978 while (1) {
1979 skb = skb_dequeue(&bss->ps_bc_buf);
1980 if (!skb)
1981 return NULL;
1982 local->total_ps_buffered--;
1984 if (!skb_queue_empty(&bss->ps_bc_buf) && skb->len >= 2) {
1985 struct ieee80211_hdr *hdr =
1986 (struct ieee80211_hdr *) skb->data;
1987 /* more buffered multicast/broadcast frames ==> set
1988 * MoreData flag in IEEE 802.11 header to inform PS
1989 * STAs */
1990 hdr->frame_control |=
1991 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1994 if (!ieee80211_tx_prepare(&tx, skb, local->mdev, control))
1995 break;
1996 dev_kfree_skb_any(skb);
1998 sta = tx.sta;
1999 tx.flags |= IEEE80211_TX_PS_BUFFERED;
2000 tx.channel = local->hw.conf.channel;
2002 for (handler = ieee80211_tx_handlers; *handler != NULL; handler++) {
2003 res = (*handler)(&tx);
2004 if (res == TX_DROP || res == TX_QUEUED)
2005 break;
2007 skb = tx.skb; /* handlers are allowed to change skb */
2009 if (res == TX_DROP) {
2010 I802_DEBUG_INC(local->tx_handlers_drop);
2011 dev_kfree_skb(skb);
2012 skb = NULL;
2013 } else if (res == TX_QUEUED) {
2014 I802_DEBUG_INC(local->tx_handlers_queued);
2015 skb = NULL;
2018 rcu_read_unlock();
2020 return skb;
2022 EXPORT_SYMBOL(ieee80211_get_buffered_bc);