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"
32 #include "ieee80211_rate.h"
34 #define IEEE80211_TX_OK 0
35 #define IEEE80211_TX_AGAIN 1
36 #define IEEE80211_TX_FRAG_AGAIN 2
40 static inline void ieee80211_include_sequence(struct ieee80211_sub_if_data *sdata,
41 struct ieee80211_hdr *hdr)
43 /* Set the sequence number for this frame. */
44 hdr->seq_ctrl = cpu_to_le16(sdata->sequence);
46 /* Increase the sequence number. */
47 sdata->sequence = (sdata->sequence + 0x10) & IEEE80211_SCTL_SEQ;
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)
54 const struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
59 printk(KERN_DEBUG "%s: %s (len=%d)", ifname, title, skb->len);
65 fc = le16_to_cpu(hdr->frame_control);
66 hdrlen = ieee80211_get_hdrlen(fc);
67 if (hdrlen > skb->len)
70 printk(" FC=0x%04x DUR=0x%04x",
71 fc, le16_to_cpu(hdr->duration_id));
73 printk(" A1=%s", print_mac(mac, hdr->addr1));
75 printk(" A2=%s", print_mac(mac, hdr->addr2));
77 printk(" A3=%s", print_mac(mac, hdr->addr3));
79 printk(" A4=%s", print_mac(mac, hdr->addr4));
82 #else /* CONFIG_MAC80211_LOWTX_FRAME_DUMP */
83 static inline void ieee80211_dump_frame(const char *ifname, const char *title,
87 #endif /* CONFIG_MAC80211_LOWTX_FRAME_DUMP */
89 static u16 ieee80211_duration(struct ieee80211_txrx_data *tx, int group_addr,
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;
97 erp = txrate->flags & IEEE80211_RATE_ERP;
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
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
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.
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
130 * PS Poll: BIT(15) | BIT(14) | aid
136 if (0 /* FIX: data/mgmt during CFP */)
139 if (group_addr) /* Group address as the destination - no ACK */
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
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)
159 if (IEEE80211_RATE_MODULATION(txrate->flags) !=
160 IEEE80211_RATE_MODULATION(r->flags))
163 if (r->flags & IEEE80211_RATE_BASIC)
165 else if (r->flags & IEEE80211_RATE_MANDATORY)
169 /* No matching basic rate found; use highest suitable mandatory
174 /* Time needed to transmit ACK
175 * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
176 * to closest integer */
178 dur = ieee80211_frame_duration(local, 10, rate, erp,
179 tx->sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE);
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 */
186 dur += ieee80211_frame_duration(local, next_frag_len,
189 IEEE80211_SDATA_SHORT_PREAMBLE);
195 static inline int __ieee80211_queue_stopped(const struct ieee80211_local *local,
198 return test_bit(IEEE80211_LINK_STATE_XOFF, &local->state[queue]);
201 static inline int __ieee80211_queue_pending(const struct ieee80211_local *local,
204 return test_bit(IEEE80211_LINK_STATE_PENDING, &local->state[queue]);
207 static int inline is_ieee80211_device(struct net_device *dev,
208 struct net_device *master)
210 return (wdev_priv(dev->ieee80211_ptr) ==
211 wdev_priv(master->ieee80211_ptr));
216 static ieee80211_txrx_result
217 ieee80211_tx_h_check_assoc(struct ieee80211_txrx_data *tx)
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 */
225 if (unlikely(tx->flags & IEEE80211_TXRXD_TX_INJECTED))
226 return TXRX_CONTINUE;
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))
233 if (tx->flags & IEEE80211_TXRXD_TXPS_BUFFERED)
234 return TXRX_CONTINUE;
236 sta_flags = tx->sta ? tx->sta->flags : 0;
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);
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)) {
256 * No associated STAs - no need to send multicast
261 return TXRX_CONTINUE;
264 if (unlikely(/* !injected && */ tx->sdata->ieee802_1x &&
265 !(sta_flags & WLAN_STA_AUTHORIZED))) {
266 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
267 DECLARE_MAC_BUF(mac);
268 printk(KERN_DEBUG "%s: dropped frame to %s"
269 " (unauthorized port)\n", tx->dev->name,
270 print_mac(mac, hdr->addr1));
272 I802_DEBUG_INC(tx->local->tx_handlers_drop_unauth_port);
276 return TXRX_CONTINUE;
279 static ieee80211_txrx_result
280 ieee80211_tx_h_sequence(struct ieee80211_txrx_data *tx)
282 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
284 if (ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_control)) >= 24)
285 ieee80211_include_sequence(tx->sdata, hdr);
287 return TXRX_CONTINUE;
290 /* This function is called whenever the AP is about to exceed the maximum limit
291 * of buffered frames for power saving STAs. This situation should not really
292 * happen often during normal operation, so dropping the oldest buffered packet
293 * from each queue should be OK to make some room for new frames. */
294 static void purge_old_ps_buffers(struct ieee80211_local *local)
296 int total = 0, purged = 0;
298 struct ieee80211_sub_if_data *sdata;
299 struct sta_info *sta;
302 * virtual interfaces are protected by RCU
306 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
307 struct ieee80211_if_ap *ap;
308 if (sdata->dev == local->mdev ||
309 sdata->type != IEEE80211_IF_TYPE_AP)
312 skb = skb_dequeue(&ap->ps_bc_buf);
317 total += skb_queue_len(&ap->ps_bc_buf);
321 read_lock_bh(&local->sta_lock);
322 list_for_each_entry(sta, &local->sta_list, list) {
323 skb = skb_dequeue(&sta->ps_tx_buf);
328 total += skb_queue_len(&sta->ps_tx_buf);
330 read_unlock_bh(&local->sta_lock);
332 local->total_ps_buffered = total;
333 printk(KERN_DEBUG "%s: PS buffers full - purged %d frames\n",
334 wiphy_name(local->hw.wiphy), purged);
337 static inline ieee80211_txrx_result
338 ieee80211_tx_h_multicast_ps_buf(struct ieee80211_txrx_data *tx)
340 /* broadcast/multicast frame */
341 /* If any of the associated stations is in power save mode,
342 * the frame is buffered to be sent after DTIM beacon frame */
343 if ((tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING) &&
344 tx->sdata->type != IEEE80211_IF_TYPE_WDS &&
345 tx->sdata->bss && atomic_read(&tx->sdata->bss->num_sta_ps) &&
346 !(tx->fc & IEEE80211_FCTL_ORDER)) {
347 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
348 purge_old_ps_buffers(tx->local);
349 if (skb_queue_len(&tx->sdata->bss->ps_bc_buf) >=
351 if (net_ratelimit()) {
352 printk(KERN_DEBUG "%s: BC TX buffer full - "
353 "dropping the oldest frame\n",
356 dev_kfree_skb(skb_dequeue(&tx->sdata->bss->ps_bc_buf));
358 tx->local->total_ps_buffered++;
359 skb_queue_tail(&tx->sdata->bss->ps_bc_buf, tx->skb);
363 return TXRX_CONTINUE;
366 static inline ieee80211_txrx_result
367 ieee80211_tx_h_unicast_ps_buf(struct ieee80211_txrx_data *tx)
369 struct sta_info *sta = tx->sta;
370 DECLARE_MAC_BUF(mac);
373 ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT &&
374 (tx->fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP)))
375 return TXRX_CONTINUE;
377 if (unlikely((sta->flags & WLAN_STA_PS) && !sta->pspoll)) {
378 struct ieee80211_tx_packet_data *pkt_data;
379 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
380 printk(KERN_DEBUG "STA %s aid %d: PS buffer (entries "
382 print_mac(mac, sta->addr), sta->aid,
383 skb_queue_len(&sta->ps_tx_buf));
384 #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
385 sta->flags |= WLAN_STA_TIM;
386 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
387 purge_old_ps_buffers(tx->local);
388 if (skb_queue_len(&sta->ps_tx_buf) >= STA_MAX_TX_BUFFER) {
389 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf);
390 if (net_ratelimit()) {
391 printk(KERN_DEBUG "%s: STA %s TX "
392 "buffer full - dropping oldest frame\n",
393 tx->dev->name, print_mac(mac, sta->addr));
397 tx->local->total_ps_buffered++;
398 /* Queue frame to be sent after STA sends an PS Poll frame */
399 if (skb_queue_empty(&sta->ps_tx_buf)) {
400 if (tx->local->ops->set_tim)
401 tx->local->ops->set_tim(local_to_hw(tx->local),
404 bss_tim_set(tx->local, tx->sdata->bss, sta->aid);
406 pkt_data = (struct ieee80211_tx_packet_data *)tx->skb->cb;
407 pkt_data->jiffies = jiffies;
408 skb_queue_tail(&sta->ps_tx_buf, tx->skb);
411 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
412 else if (unlikely(sta->flags & WLAN_STA_PS)) {
413 printk(KERN_DEBUG "%s: STA %s in PS mode, but pspoll "
414 "set -> send frame\n", tx->dev->name,
415 print_mac(mac, sta->addr));
417 #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
420 return TXRX_CONTINUE;
423 static ieee80211_txrx_result
424 ieee80211_tx_h_ps_buf(struct ieee80211_txrx_data *tx)
426 if (unlikely(tx->flags & IEEE80211_TXRXD_TXPS_BUFFERED))
427 return TXRX_CONTINUE;
429 if (tx->flags & IEEE80211_TXRXD_TXUNICAST)
430 return ieee80211_tx_h_unicast_ps_buf(tx);
432 return ieee80211_tx_h_multicast_ps_buf(tx);
435 static ieee80211_txrx_result
436 ieee80211_tx_h_select_key(struct ieee80211_txrx_data *tx)
438 struct ieee80211_key *key;
439 const struct ieee80211_hdr *hdr;
442 hdr = (const struct ieee80211_hdr *) tx->skb->data;
443 fc = le16_to_cpu(hdr->frame_control);
445 if (unlikely(tx->u.tx.control->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
447 else if (tx->sta && (key = rcu_dereference(tx->sta->key)))
449 else if ((key = rcu_dereference(tx->sdata->default_key)))
451 else if (tx->sdata->drop_unencrypted &&
452 !(tx->sdata->eapol &&
453 ieee80211_is_eapol(tx->skb, ieee80211_get_hdrlen(fc)))) {
454 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
458 tx->u.tx.control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
462 tx->key->tx_rx_count++;
463 /* TODO: add threshold stuff again */
466 return TXRX_CONTINUE;
469 static ieee80211_txrx_result
470 ieee80211_tx_h_fragment(struct ieee80211_txrx_data *tx)
472 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
473 size_t hdrlen, per_fragm, num_fragm, payload_len, left;
474 struct sk_buff **frags, *first, *frag;
478 int frag_threshold = tx->local->fragmentation_threshold;
480 if (!(tx->flags & IEEE80211_TXRXD_FRAGMENTED))
481 return TXRX_CONTINUE;
485 hdrlen = ieee80211_get_hdrlen(tx->fc);
486 payload_len = first->len - hdrlen;
487 per_fragm = frag_threshold - hdrlen - FCS_LEN;
488 num_fragm = DIV_ROUND_UP(payload_len, per_fragm);
490 frags = kzalloc(num_fragm * sizeof(struct sk_buff *), GFP_ATOMIC);
494 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
495 seq = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_SEQ;
496 pos = first->data + hdrlen + per_fragm;
497 left = payload_len - per_fragm;
498 for (i = 0; i < num_fragm - 1; i++) {
499 struct ieee80211_hdr *fhdr;
505 /* reserve enough extra head and tail room for possible
508 dev_alloc_skb(tx->local->tx_headroom +
510 IEEE80211_ENCRYPT_HEADROOM +
511 IEEE80211_ENCRYPT_TAILROOM);
514 /* Make sure that all fragments use the same priority so
515 * that they end up using the same TX queue */
516 frag->priority = first->priority;
517 skb_reserve(frag, tx->local->tx_headroom +
518 IEEE80211_ENCRYPT_HEADROOM);
519 fhdr = (struct ieee80211_hdr *) skb_put(frag, hdrlen);
520 memcpy(fhdr, first->data, hdrlen);
521 if (i == num_fragm - 2)
522 fhdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREFRAGS);
523 fhdr->seq_ctrl = cpu_to_le16(seq | ((i + 1) & IEEE80211_SCTL_FRAG));
524 copylen = left > per_fragm ? per_fragm : left;
525 memcpy(skb_put(frag, copylen), pos, copylen);
530 skb_trim(first, hdrlen + per_fragm);
532 tx->u.tx.num_extra_frag = num_fragm - 1;
533 tx->u.tx.extra_frag = frags;
535 return TXRX_CONTINUE;
538 printk(KERN_DEBUG "%s: failed to fragment frame\n", tx->dev->name);
540 for (i = 0; i < num_fragm - 1; i++)
542 dev_kfree_skb(frags[i]);
545 I802_DEBUG_INC(tx->local->tx_handlers_drop_fragment);
549 static ieee80211_txrx_result
550 ieee80211_tx_h_encrypt(struct ieee80211_txrx_data *tx)
553 return TXRX_CONTINUE;
555 switch (tx->key->conf.alg) {
557 return ieee80211_crypto_wep_encrypt(tx);
559 return ieee80211_crypto_tkip_encrypt(tx);
561 return ieee80211_crypto_ccmp_encrypt(tx);
569 static ieee80211_txrx_result
570 ieee80211_tx_h_rate_ctrl(struct ieee80211_txrx_data *tx)
572 struct rate_control_extra extra;
574 if (likely(!tx->u.tx.rate)) {
575 memset(&extra, 0, sizeof(extra));
576 extra.mode = tx->u.tx.mode;
577 extra.ethertype = tx->ethertype;
579 tx->u.tx.rate = rate_control_get_rate(tx->local, tx->dev,
581 if (unlikely(extra.probe != NULL)) {
582 tx->u.tx.control->flags |=
583 IEEE80211_TXCTL_RATE_CTRL_PROBE;
584 tx->flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
585 tx->u.tx.control->alt_retry_rate = tx->u.tx.rate->val;
586 tx->u.tx.rate = extra.probe;
588 tx->u.tx.control->alt_retry_rate = -1;
593 tx->u.tx.control->alt_retry_rate = -1;
595 if (tx->u.tx.mode->mode == MODE_IEEE80211G &&
596 (tx->sdata->flags & IEEE80211_SDATA_USE_PROTECTION) &&
597 (tx->flags & IEEE80211_TXRXD_FRAGMENTED) && extra.nonerp) {
598 tx->u.tx.last_frag_rate = tx->u.tx.rate;
600 tx->flags &= ~IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
602 tx->flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
603 tx->u.tx.rate = extra.nonerp;
604 tx->u.tx.control->rate = extra.nonerp;
605 tx->u.tx.control->flags &= ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
607 tx->u.tx.last_frag_rate = tx->u.tx.rate;
608 tx->u.tx.control->rate = tx->u.tx.rate;
610 tx->u.tx.control->tx_rate = tx->u.tx.rate->val;
612 return TXRX_CONTINUE;
615 static ieee80211_txrx_result
616 ieee80211_tx_h_misc(struct ieee80211_txrx_data *tx)
618 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
619 u16 fc = le16_to_cpu(hdr->frame_control);
621 struct ieee80211_tx_control *control = tx->u.tx.control;
622 struct ieee80211_hw_mode *mode = tx->u.tx.mode;
624 if (!control->retry_limit) {
625 if (!is_multicast_ether_addr(hdr->addr1)) {
626 if (tx->skb->len + FCS_LEN > tx->local->rts_threshold
627 && tx->local->rts_threshold <
628 IEEE80211_MAX_RTS_THRESHOLD) {
630 IEEE80211_TXCTL_USE_RTS_CTS;
632 IEEE80211_TXCTL_LONG_RETRY_LIMIT;
633 control->retry_limit =
634 tx->local->long_retry_limit;
636 control->retry_limit =
637 tx->local->short_retry_limit;
640 control->retry_limit = 1;
644 if (tx->flags & IEEE80211_TXRXD_FRAGMENTED) {
645 /* Do not use multiple retry rates when sending fragmented
647 * TODO: The last fragment could still use multiple retry
649 control->alt_retry_rate = -1;
652 /* Use CTS protection for unicast frames sent using extended rates if
653 * there are associated non-ERP stations and RTS/CTS is not configured
655 if (mode->mode == MODE_IEEE80211G &&
656 (tx->u.tx.rate->flags & IEEE80211_RATE_ERP) &&
657 (tx->flags & IEEE80211_TXRXD_TXUNICAST) &&
658 (tx->sdata->flags & IEEE80211_SDATA_USE_PROTECTION) &&
659 !(control->flags & IEEE80211_TXCTL_USE_RTS_CTS))
660 control->flags |= IEEE80211_TXCTL_USE_CTS_PROTECT;
662 /* Transmit data frames using short preambles if the driver supports
663 * short preambles at the selected rate and short preambles are
664 * available on the network at the current point in time. */
665 if (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA) &&
666 (tx->u.tx.rate->flags & IEEE80211_RATE_PREAMBLE2) &&
667 (tx->sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE) &&
668 (!tx->sta || (tx->sta->flags & WLAN_STA_SHORT_PREAMBLE))) {
669 tx->u.tx.control->tx_rate = tx->u.tx.rate->val2;
672 /* Setup duration field for the first fragment of the frame. Duration
673 * for remaining fragments will be updated when they are being sent
674 * to low-level driver in ieee80211_tx(). */
675 dur = ieee80211_duration(tx, is_multicast_ether_addr(hdr->addr1),
676 (tx->flags & IEEE80211_TXRXD_FRAGMENTED) ?
677 tx->u.tx.extra_frag[0]->len : 0);
678 hdr->duration_id = cpu_to_le16(dur);
680 if ((control->flags & IEEE80211_TXCTL_USE_RTS_CTS) ||
681 (control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)) {
682 struct ieee80211_rate *rate;
684 /* Do not use multiple retry rates when using RTS/CTS */
685 control->alt_retry_rate = -1;
687 /* Use min(data rate, max base rate) as CTS/RTS rate */
688 rate = tx->u.tx.rate;
689 while (rate > mode->rates &&
690 !(rate->flags & IEEE80211_RATE_BASIC))
693 control->rts_cts_rate = rate->val;
694 control->rts_rate = rate;
698 tx->sta->tx_packets++;
699 tx->sta->tx_fragments++;
700 tx->sta->tx_bytes += tx->skb->len;
701 if (tx->u.tx.extra_frag) {
703 tx->sta->tx_fragments += tx->u.tx.num_extra_frag;
704 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
706 tx->u.tx.extra_frag[i]->len;
712 * Tell hardware to not encrypt when we had sw crypto.
713 * Because we use the same flag to internally indicate that
714 * no (software) encryption should be done, we have to set it
715 * after all crypto handlers.
717 if (tx->key && !(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
718 tx->u.tx.control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
720 return TXRX_CONTINUE;
723 static ieee80211_txrx_result
724 ieee80211_tx_h_load_stats(struct ieee80211_txrx_data *tx)
726 struct ieee80211_local *local = tx->local;
727 struct ieee80211_hw_mode *mode = tx->u.tx.mode;
728 struct sk_buff *skb = tx->skb;
729 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
730 u32 load = 0, hdrtime;
732 /* TODO: this could be part of tx_status handling, so that the number
733 * of retries would be known; TX rate should in that case be stored
734 * somewhere with the packet */
736 /* Estimate total channel use caused by this frame */
738 /* 1 bit at 1 Mbit/s takes 1 usec; in channel_use values,
739 * 1 usec = 1/8 * (1080 / 10) = 13.5 */
741 if (mode->mode == MODE_IEEE80211A ||
742 (mode->mode == MODE_IEEE80211G &&
743 tx->u.tx.rate->flags & IEEE80211_RATE_ERP))
744 hdrtime = CHAN_UTIL_HDR_SHORT;
746 hdrtime = CHAN_UTIL_HDR_LONG;
749 if (!is_multicast_ether_addr(hdr->addr1))
752 if (tx->u.tx.control->flags & IEEE80211_TXCTL_USE_RTS_CTS)
754 else if (tx->u.tx.control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)
757 load += skb->len * tx->u.tx.rate->rate_inv;
759 if (tx->u.tx.extra_frag) {
761 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
763 load += tx->u.tx.extra_frag[i]->len *
768 /* Divide channel_use by 8 to avoid wrapping around the counter */
769 load >>= CHAN_UTIL_SHIFT;
770 local->channel_use_raw += load;
772 tx->sta->channel_use_raw += load;
773 tx->sdata->channel_use_raw += load;
775 return TXRX_CONTINUE;
778 /* TODO: implement register/unregister functions for adding TX/RX handlers
779 * into ordered list */
781 ieee80211_tx_handler ieee80211_tx_handlers[] =
783 ieee80211_tx_h_check_assoc,
784 ieee80211_tx_h_sequence,
785 ieee80211_tx_h_ps_buf,
786 ieee80211_tx_h_select_key,
787 ieee80211_tx_h_michael_mic_add,
788 ieee80211_tx_h_fragment,
789 ieee80211_tx_h_encrypt,
790 ieee80211_tx_h_rate_ctrl,
792 ieee80211_tx_h_load_stats,
796 /* actual transmit path */
799 * deal with packet injection down monitor interface
800 * with Radiotap Header -- only called for monitor mode interface
802 static ieee80211_txrx_result
803 __ieee80211_parse_tx_radiotap(struct ieee80211_txrx_data *tx,
807 * this is the moment to interpret and discard the radiotap header that
808 * must be at the start of the packet injected in Monitor mode
810 * Need to take some care with endian-ness since radiotap
811 * args are little-endian
814 struct ieee80211_radiotap_iterator iterator;
815 struct ieee80211_radiotap_header *rthdr =
816 (struct ieee80211_radiotap_header *) skb->data;
817 struct ieee80211_hw_mode *mode = tx->local->hw.conf.mode;
818 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len);
819 struct ieee80211_tx_control *control = tx->u.tx.control;
821 control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
822 tx->flags |= IEEE80211_TXRXD_TX_INJECTED;
823 tx->flags &= ~IEEE80211_TXRXD_FRAGMENTED;
826 * for every radiotap entry that is present
827 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
828 * entries present, or -EINVAL on error)
834 ret = ieee80211_radiotap_iterator_next(&iterator);
839 /* see if this argument is something we can use */
840 switch (iterator.this_arg_index) {
842 * You must take care when dereferencing iterator.this_arg
843 * for multibyte types... the pointer is not aligned. Use
844 * get_unaligned((type *)iterator.this_arg) to dereference
845 * iterator.this_arg for type "type" safely on all arches.
847 case IEEE80211_RADIOTAP_RATE:
849 * radiotap rate u8 is in 500kbps units eg, 0x02=1Mbps
850 * ieee80211 rate int is in 100kbps units eg, 0x0a=1Mbps
852 target_rate = (*iterator.this_arg) * 5;
853 for (i = 0; i < mode->num_rates; i++) {
854 struct ieee80211_rate *r = &mode->rates[i];
856 if (r->rate == target_rate) {
863 case IEEE80211_RADIOTAP_ANTENNA:
865 * radiotap uses 0 for 1st ant, mac80211 is 1 for
868 control->antenna_sel_tx = (*iterator.this_arg) + 1;
871 case IEEE80211_RADIOTAP_DBM_TX_POWER:
872 control->power_level = *iterator.this_arg;
875 case IEEE80211_RADIOTAP_FLAGS:
876 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
878 * this indicates that the skb we have been
879 * handed has the 32-bit FCS CRC at the end...
880 * we should react to that by snipping it off
881 * because it will be recomputed and added
884 if (skb->len < (iterator.max_length + FCS_LEN))
887 skb_trim(skb, skb->len - FCS_LEN);
889 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
891 ~IEEE80211_TXCTL_DO_NOT_ENCRYPT;
892 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
893 tx->flags |= IEEE80211_TXRXD_FRAGMENTED;
897 * Please update the file
898 * Documentation/networking/mac80211-injection.txt
899 * when parsing new fields here.
907 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
911 * remove the radiotap header
912 * iterator->max_length was sanity-checked against
913 * skb->len by iterator init
915 skb_pull(skb, iterator.max_length);
917 return TXRX_CONTINUE;
923 static ieee80211_txrx_result
924 __ieee80211_tx_prepare(struct ieee80211_txrx_data *tx,
926 struct net_device *dev,
927 struct ieee80211_tx_control *control)
929 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
930 struct ieee80211_hdr *hdr;
931 struct ieee80211_sub_if_data *sdata;
932 ieee80211_txrx_result res = TXRX_CONTINUE;
936 memset(tx, 0, sizeof(*tx));
938 tx->dev = dev; /* use original interface */
940 tx->sdata = IEEE80211_DEV_TO_SUB_IF(dev);
941 tx->u.tx.control = control;
943 * Set this flag (used below to indicate "automatic fragmentation"),
944 * it will be cleared/left by radiotap as desired.
946 tx->flags |= IEEE80211_TXRXD_FRAGMENTED;
948 /* process and remove the injection radiotap header */
949 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
950 if (unlikely(sdata->type == IEEE80211_IF_TYPE_MNTR)) {
951 if (__ieee80211_parse_tx_radiotap(tx, skb) == TXRX_DROP)
955 * __ieee80211_parse_tx_radiotap has now removed
956 * the radiotap header that was present and pre-filled
957 * 'tx' with tx control information.
961 hdr = (struct ieee80211_hdr *) skb->data;
963 tx->sta = sta_info_get(local, hdr->addr1);
964 tx->fc = le16_to_cpu(hdr->frame_control);
966 if (is_multicast_ether_addr(hdr->addr1)) {
967 tx->flags &= ~IEEE80211_TXRXD_TXUNICAST;
968 control->flags |= IEEE80211_TXCTL_NO_ACK;
970 tx->flags |= IEEE80211_TXRXD_TXUNICAST;
971 control->flags &= ~IEEE80211_TXCTL_NO_ACK;
974 if (tx->flags & IEEE80211_TXRXD_FRAGMENTED) {
975 if ((tx->flags & IEEE80211_TXRXD_TXUNICAST) &&
976 skb->len + FCS_LEN > local->fragmentation_threshold &&
977 !local->ops->set_frag_threshold)
978 tx->flags |= IEEE80211_TXRXD_FRAGMENTED;
980 tx->flags &= ~IEEE80211_TXRXD_FRAGMENTED;
984 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
985 else if (tx->sta->clear_dst_mask) {
986 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
987 tx->sta->clear_dst_mask = 0;
990 hdrlen = ieee80211_get_hdrlen(tx->fc);
991 if (skb->len > hdrlen + sizeof(rfc1042_header) + 2) {
992 u8 *pos = &skb->data[hdrlen + sizeof(rfc1042_header)];
993 tx->ethertype = (pos[0] << 8) | pos[1];
995 control->flags |= IEEE80211_TXCTL_FIRST_FRAGMENT;
1000 /* Device in tx->dev has a reference added; use dev_put(tx->dev) when
1003 * NB: @tx is uninitialised when passed in here
1005 static int ieee80211_tx_prepare(struct ieee80211_txrx_data *tx,
1006 struct sk_buff *skb,
1007 struct net_device *mdev,
1008 struct ieee80211_tx_control *control)
1010 struct ieee80211_tx_packet_data *pkt_data;
1011 struct net_device *dev;
1013 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1014 dev = dev_get_by_index(&init_net, pkt_data->ifindex);
1015 if (unlikely(dev && !is_ieee80211_device(dev, mdev))) {
1021 /* initialises tx with control */
1022 __ieee80211_tx_prepare(tx, skb, dev, control);
1026 static int __ieee80211_tx(struct ieee80211_local *local, struct sk_buff *skb,
1027 struct ieee80211_txrx_data *tx)
1029 struct ieee80211_tx_control *control = tx->u.tx.control;
1032 if (!ieee80211_qdisc_installed(local->mdev) &&
1033 __ieee80211_queue_stopped(local, 0)) {
1034 netif_stop_queue(local->mdev);
1035 return IEEE80211_TX_AGAIN;
1038 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
1039 "TX to low-level driver", skb);
1040 ret = local->ops->tx(local_to_hw(local), skb, control);
1042 return IEEE80211_TX_AGAIN;
1043 local->mdev->trans_start = jiffies;
1044 ieee80211_led_tx(local, 1);
1046 if (tx->u.tx.extra_frag) {
1047 control->flags &= ~(IEEE80211_TXCTL_USE_RTS_CTS |
1048 IEEE80211_TXCTL_USE_CTS_PROTECT |
1049 IEEE80211_TXCTL_CLEAR_DST_MASK |
1050 IEEE80211_TXCTL_FIRST_FRAGMENT);
1051 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
1052 if (!tx->u.tx.extra_frag[i])
1054 if (__ieee80211_queue_stopped(local, control->queue))
1055 return IEEE80211_TX_FRAG_AGAIN;
1056 if (i == tx->u.tx.num_extra_frag) {
1057 control->tx_rate = tx->u.tx.last_frag_hwrate;
1058 control->rate = tx->u.tx.last_frag_rate;
1059 if (tx->flags & IEEE80211_TXRXD_TXPROBE_LAST_FRAG)
1061 IEEE80211_TXCTL_RATE_CTRL_PROBE;
1064 ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
1067 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
1068 "TX to low-level driver",
1069 tx->u.tx.extra_frag[i]);
1070 ret = local->ops->tx(local_to_hw(local),
1071 tx->u.tx.extra_frag[i],
1074 return IEEE80211_TX_FRAG_AGAIN;
1075 local->mdev->trans_start = jiffies;
1076 ieee80211_led_tx(local, 1);
1077 tx->u.tx.extra_frag[i] = NULL;
1079 kfree(tx->u.tx.extra_frag);
1080 tx->u.tx.extra_frag = NULL;
1082 return IEEE80211_TX_OK;
1085 static int ieee80211_tx(struct net_device *dev, struct sk_buff *skb,
1086 struct ieee80211_tx_control *control)
1088 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1089 struct sta_info *sta;
1090 ieee80211_tx_handler *handler;
1091 struct ieee80211_txrx_data tx;
1092 ieee80211_txrx_result res = TXRX_DROP, res_prepare;
1095 WARN_ON(__ieee80211_queue_pending(local, control->queue));
1097 if (unlikely(skb->len < 10)) {
1102 /* initialises tx */
1103 res_prepare = __ieee80211_tx_prepare(&tx, skb, dev, control);
1105 if (res_prepare == TXRX_DROP) {
1111 * key references are protected using RCU and this requires that
1112 * we are in a read-site RCU section during receive processing
1117 tx.u.tx.mode = local->hw.conf.mode;
1119 for (handler = local->tx_handlers; *handler != NULL;
1121 res = (*handler)(&tx);
1122 if (res != TXRX_CONTINUE)
1126 skb = tx.skb; /* handlers are allowed to change skb */
1131 if (unlikely(res == TXRX_DROP)) {
1132 I802_DEBUG_INC(local->tx_handlers_drop);
1136 if (unlikely(res == TXRX_QUEUED)) {
1137 I802_DEBUG_INC(local->tx_handlers_queued);
1142 if (tx.u.tx.extra_frag) {
1143 for (i = 0; i < tx.u.tx.num_extra_frag; i++) {
1145 struct ieee80211_hdr *hdr =
1146 (struct ieee80211_hdr *)
1147 tx.u.tx.extra_frag[i]->data;
1149 if (i + 1 < tx.u.tx.num_extra_frag) {
1150 next_len = tx.u.tx.extra_frag[i + 1]->len;
1153 tx.u.tx.rate = tx.u.tx.last_frag_rate;
1154 tx.u.tx.last_frag_hwrate = tx.u.tx.rate->val;
1156 dur = ieee80211_duration(&tx, 0, next_len);
1157 hdr->duration_id = cpu_to_le16(dur);
1162 ret = __ieee80211_tx(local, skb, &tx);
1164 struct ieee80211_tx_stored_packet *store =
1165 &local->pending_packet[control->queue];
1167 if (ret == IEEE80211_TX_FRAG_AGAIN)
1169 set_bit(IEEE80211_LINK_STATE_PENDING,
1170 &local->state[control->queue]);
1172 /* When the driver gets out of buffers during sending of
1173 * fragments and calls ieee80211_stop_queue, there is
1174 * a small window between IEEE80211_LINK_STATE_XOFF and
1175 * IEEE80211_LINK_STATE_PENDING flags are set. If a buffer
1176 * gets available in that window (i.e. driver calls
1177 * ieee80211_wake_queue), we would end up with ieee80211_tx
1178 * called with IEEE80211_LINK_STATE_PENDING. Prevent this by
1179 * continuing transmitting here when that situation is
1180 * possible to have happened. */
1181 if (!__ieee80211_queue_stopped(local, control->queue)) {
1182 clear_bit(IEEE80211_LINK_STATE_PENDING,
1183 &local->state[control->queue]);
1186 memcpy(&store->control, control,
1187 sizeof(struct ieee80211_tx_control));
1189 store->extra_frag = tx.u.tx.extra_frag;
1190 store->num_extra_frag = tx.u.tx.num_extra_frag;
1191 store->last_frag_hwrate = tx.u.tx.last_frag_hwrate;
1192 store->last_frag_rate = tx.u.tx.last_frag_rate;
1193 store->last_frag_rate_ctrl_probe =
1194 !!(tx.flags & IEEE80211_TXRXD_TXPROBE_LAST_FRAG);
1202 for (i = 0; i < tx.u.tx.num_extra_frag; i++)
1203 if (tx.u.tx.extra_frag[i])
1204 dev_kfree_skb(tx.u.tx.extra_frag[i]);
1205 kfree(tx.u.tx.extra_frag);
1210 /* device xmit handlers */
1212 int ieee80211_master_start_xmit(struct sk_buff *skb,
1213 struct net_device *dev)
1215 struct ieee80211_tx_control control;
1216 struct ieee80211_tx_packet_data *pkt_data;
1217 struct net_device *odev = NULL;
1218 struct ieee80211_sub_if_data *osdata;
1223 * copy control out of the skb so other people can use skb->cb
1225 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1226 memset(&control, 0, sizeof(struct ieee80211_tx_control));
1228 if (pkt_data->ifindex)
1229 odev = dev_get_by_index(&init_net, pkt_data->ifindex);
1230 if (unlikely(odev && !is_ieee80211_device(odev, dev))) {
1234 if (unlikely(!odev)) {
1235 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1236 printk(KERN_DEBUG "%s: Discarded packet with nonexistent "
1237 "originating device\n", dev->name);
1242 osdata = IEEE80211_DEV_TO_SUB_IF(odev);
1244 headroom = osdata->local->tx_headroom + IEEE80211_ENCRYPT_HEADROOM;
1245 if (skb_headroom(skb) < headroom) {
1246 if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) {
1253 control.ifindex = odev->ifindex;
1254 control.type = osdata->type;
1255 if (pkt_data->flags & IEEE80211_TXPD_REQ_TX_STATUS)
1256 control.flags |= IEEE80211_TXCTL_REQ_TX_STATUS;
1257 if (pkt_data->flags & IEEE80211_TXPD_DO_NOT_ENCRYPT)
1258 control.flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
1259 if (pkt_data->flags & IEEE80211_TXPD_REQUEUE)
1260 control.flags |= IEEE80211_TXCTL_REQUEUE;
1261 control.queue = pkt_data->queue;
1263 ret = ieee80211_tx(odev, skb, &control);
1269 int ieee80211_monitor_start_xmit(struct sk_buff *skb,
1270 struct net_device *dev)
1272 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1273 struct ieee80211_tx_packet_data *pkt_data;
1274 struct ieee80211_radiotap_header *prthdr =
1275 (struct ieee80211_radiotap_header *)skb->data;
1278 /* check for not even having the fixed radiotap header part */
1279 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1280 goto fail; /* too short to be possibly valid */
1282 /* is it a header version we can trust to find length from? */
1283 if (unlikely(prthdr->it_version))
1284 goto fail; /* only version 0 is supported */
1286 /* then there must be a radiotap header with a length we can use */
1287 len_rthdr = ieee80211_get_radiotap_len(skb->data);
1289 /* does the skb contain enough to deliver on the alleged length? */
1290 if (unlikely(skb->len < len_rthdr))
1291 goto fail; /* skb too short for claimed rt header extent */
1293 skb->dev = local->mdev;
1295 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1296 memset(pkt_data, 0, sizeof(*pkt_data));
1297 /* needed because we set skb device to master */
1298 pkt_data->ifindex = dev->ifindex;
1300 pkt_data->flags |= IEEE80211_TXPD_DO_NOT_ENCRYPT;
1303 * fix up the pointers accounting for the radiotap
1304 * header still being in there. We are being given
1305 * a precooked IEEE80211 header so no need for
1308 skb_set_mac_header(skb, len_rthdr);
1310 * these are just fixed to the end of the rt area since we
1311 * don't have any better information and at this point, nobody cares
1313 skb_set_network_header(skb, len_rthdr);
1314 skb_set_transport_header(skb, len_rthdr);
1316 /* pass the radiotap header up to the next stage intact */
1317 dev_queue_xmit(skb);
1318 return NETDEV_TX_OK;
1322 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
1326 * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type
1327 * subinterfaces (wlan#, WDS, and VLAN interfaces)
1328 * @skb: packet to be sent
1329 * @dev: incoming interface
1331 * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will
1332 * not be freed, and caller is responsible for either retrying later or freeing
1335 * This function takes in an Ethernet header and encapsulates it with suitable
1336 * IEEE 802.11 header based on which interface the packet is coming in. The
1337 * encapsulated packet will then be passed to master interface, wlan#.11, for
1338 * transmission (through low-level driver).
1340 int ieee80211_subif_start_xmit(struct sk_buff *skb,
1341 struct net_device *dev)
1343 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1344 struct ieee80211_tx_packet_data *pkt_data;
1345 struct ieee80211_sub_if_data *sdata;
1346 int ret = 1, head_need;
1347 u16 ethertype, hdrlen, fc;
1348 struct ieee80211_hdr hdr;
1349 const u8 *encaps_data;
1350 int encaps_len, skip_header_bytes;
1352 struct sta_info *sta;
1354 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1355 if (unlikely(skb->len < ETH_HLEN)) {
1356 printk(KERN_DEBUG "%s: short skb (len=%d)\n",
1357 dev->name, skb->len);
1362 nh_pos = skb_network_header(skb) - skb->data;
1363 h_pos = skb_transport_header(skb) - skb->data;
1365 /* convert Ethernet header to proper 802.11 header (based on
1366 * operation mode) */
1367 ethertype = (skb->data[12] << 8) | skb->data[13];
1368 /* TODO: handling for 802.1x authorized/unauthorized port */
1369 fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA;
1371 switch (sdata->type) {
1372 case IEEE80211_IF_TYPE_AP:
1373 case IEEE80211_IF_TYPE_VLAN:
1374 fc |= IEEE80211_FCTL_FROMDS;
1376 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1377 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1378 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1381 case IEEE80211_IF_TYPE_WDS:
1382 fc |= IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS;
1384 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
1385 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1386 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1387 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1390 case IEEE80211_IF_TYPE_STA:
1391 fc |= IEEE80211_FCTL_TODS;
1393 memcpy(hdr.addr1, sdata->u.sta.bssid, ETH_ALEN);
1394 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1395 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1398 case IEEE80211_IF_TYPE_IBSS:
1400 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1401 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1402 memcpy(hdr.addr3, sdata->u.sta.bssid, ETH_ALEN);
1410 /* receiver is QoS enabled, use a QoS type frame */
1411 sta = sta_info_get(local, hdr.addr1);
1413 if (sta->flags & WLAN_STA_WME) {
1414 fc |= IEEE80211_STYPE_QOS_DATA;
1420 hdr.frame_control = cpu_to_le16(fc);
1421 hdr.duration_id = 0;
1424 skip_header_bytes = ETH_HLEN;
1425 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
1426 encaps_data = bridge_tunnel_header;
1427 encaps_len = sizeof(bridge_tunnel_header);
1428 skip_header_bytes -= 2;
1429 } else if (ethertype >= 0x600) {
1430 encaps_data = rfc1042_header;
1431 encaps_len = sizeof(rfc1042_header);
1432 skip_header_bytes -= 2;
1438 skb_pull(skb, skip_header_bytes);
1439 nh_pos -= skip_header_bytes;
1440 h_pos -= skip_header_bytes;
1442 /* TODO: implement support for fragments so that there is no need to
1443 * reallocate and copy payload; it might be enough to support one
1444 * extra fragment that would be copied in the beginning of the frame
1445 * data.. anyway, it would be nice to include this into skb structure
1448 * There are few options for this:
1449 * use skb->cb as an extra space for 802.11 header
1450 * allocate new buffer if not enough headroom
1451 * make sure that there is enough headroom in every skb by increasing
1452 * build in headroom in __dev_alloc_skb() (linux/skbuff.h) and
1453 * alloc_skb() (net/core/skbuff.c)
1455 head_need = hdrlen + encaps_len + local->tx_headroom;
1456 head_need -= skb_headroom(skb);
1458 /* We are going to modify skb data, so make a copy of it if happens to
1459 * be cloned. This could happen, e.g., with Linux bridge code passing
1460 * us broadcast frames. */
1462 if (head_need > 0 || skb_cloned(skb)) {
1464 printk(KERN_DEBUG "%s: need to reallocate buffer for %d bytes "
1465 "of headroom\n", dev->name, head_need);
1468 if (skb_cloned(skb))
1469 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
1471 I802_DEBUG_INC(local->tx_expand_skb_head);
1472 /* Since we have to reallocate the buffer, make sure that there
1473 * is enough room for possible WEP IV/ICV and TKIP (8 bytes
1474 * before payload and 12 after). */
1475 if (pskb_expand_head(skb, (head_need > 0 ? head_need + 8 : 8),
1477 printk(KERN_DEBUG "%s: failed to reallocate TX buffer"
1484 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
1485 nh_pos += encaps_len;
1486 h_pos += encaps_len;
1489 if (fc & IEEE80211_STYPE_QOS_DATA) {
1490 __le16 *qos_control;
1492 qos_control = (__le16*) skb_push(skb, 2);
1493 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
1495 * Maybe we could actually set some fields here, for now just
1496 * initialise to zero to indicate no special operation.
1500 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
1505 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1506 memset(pkt_data, 0, sizeof(struct ieee80211_tx_packet_data));
1507 pkt_data->ifindex = dev->ifindex;
1509 skb->dev = local->mdev;
1510 dev->stats.tx_packets++;
1511 dev->stats.tx_bytes += skb->len;
1513 /* Update skb pointers to various headers since this modified frame
1514 * is going to go through Linux networking code that may potentially
1515 * need things like pointer to IP header. */
1516 skb_set_mac_header(skb, 0);
1517 skb_set_network_header(skb, nh_pos);
1518 skb_set_transport_header(skb, h_pos);
1520 dev->trans_start = jiffies;
1521 dev_queue_xmit(skb);
1532 /* helper functions for pending packets for when queues are stopped */
1534 void ieee80211_clear_tx_pending(struct ieee80211_local *local)
1537 struct ieee80211_tx_stored_packet *store;
1539 for (i = 0; i < local->hw.queues; i++) {
1540 if (!__ieee80211_queue_pending(local, i))
1542 store = &local->pending_packet[i];
1543 kfree_skb(store->skb);
1544 for (j = 0; j < store->num_extra_frag; j++)
1545 kfree_skb(store->extra_frag[j]);
1546 kfree(store->extra_frag);
1547 clear_bit(IEEE80211_LINK_STATE_PENDING, &local->state[i]);
1551 void ieee80211_tx_pending(unsigned long data)
1553 struct ieee80211_local *local = (struct ieee80211_local *)data;
1554 struct net_device *dev = local->mdev;
1555 struct ieee80211_tx_stored_packet *store;
1556 struct ieee80211_txrx_data tx;
1557 int i, ret, reschedule = 0;
1559 netif_tx_lock_bh(dev);
1560 for (i = 0; i < local->hw.queues; i++) {
1561 if (__ieee80211_queue_stopped(local, i))
1563 if (!__ieee80211_queue_pending(local, i)) {
1567 store = &local->pending_packet[i];
1568 tx.u.tx.control = &store->control;
1569 tx.u.tx.extra_frag = store->extra_frag;
1570 tx.u.tx.num_extra_frag = store->num_extra_frag;
1571 tx.u.tx.last_frag_hwrate = store->last_frag_hwrate;
1572 tx.u.tx.last_frag_rate = store->last_frag_rate;
1574 if (store->last_frag_rate_ctrl_probe)
1575 tx.flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
1576 ret = __ieee80211_tx(local, store->skb, &tx);
1578 if (ret == IEEE80211_TX_FRAG_AGAIN)
1581 clear_bit(IEEE80211_LINK_STATE_PENDING,
1586 netif_tx_unlock_bh(dev);
1588 if (!ieee80211_qdisc_installed(dev)) {
1589 if (!__ieee80211_queue_stopped(local, 0))
1590 netif_wake_queue(dev);
1592 netif_schedule(dev);
1596 /* functions for drivers to get certain frames */
1598 static void ieee80211_beacon_add_tim(struct ieee80211_local *local,
1599 struct ieee80211_if_ap *bss,
1600 struct sk_buff *skb)
1604 int i, have_bits = 0, n1, n2;
1606 /* Generate bitmap for TIM only if there are any STAs in power save
1608 read_lock_bh(&local->sta_lock);
1609 if (atomic_read(&bss->num_sta_ps) > 0)
1610 /* in the hope that this is faster than
1611 * checking byte-for-byte */
1612 have_bits = !bitmap_empty((unsigned long*)bss->tim,
1613 IEEE80211_MAX_AID+1);
1615 if (bss->dtim_count == 0)
1616 bss->dtim_count = bss->dtim_period - 1;
1620 tim = pos = (u8 *) skb_put(skb, 6);
1621 *pos++ = WLAN_EID_TIM;
1623 *pos++ = bss->dtim_count;
1624 *pos++ = bss->dtim_period;
1626 if (bss->dtim_count == 0 && !skb_queue_empty(&bss->ps_bc_buf))
1630 /* Find largest even number N1 so that bits numbered 1 through
1631 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
1632 * (N2 + 1) x 8 through 2007 are 0. */
1634 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
1641 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
1648 /* Bitmap control */
1650 /* Part Virt Bitmap */
1651 memcpy(pos, bss->tim + n1, n2 - n1 + 1);
1653 tim[1] = n2 - n1 + 4;
1654 skb_put(skb, n2 - n1);
1656 *pos++ = aid0; /* Bitmap control */
1657 *pos++ = 0; /* Part Virt Bitmap */
1659 read_unlock_bh(&local->sta_lock);
1662 struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw, int if_id,
1663 struct ieee80211_tx_control *control)
1665 struct ieee80211_local *local = hw_to_local(hw);
1666 struct sk_buff *skb;
1667 struct net_device *bdev;
1668 struct ieee80211_sub_if_data *sdata = NULL;
1669 struct ieee80211_if_ap *ap = NULL;
1670 struct ieee80211_rate *rate;
1671 struct rate_control_extra extra;
1672 u8 *b_head, *b_tail;
1675 bdev = dev_get_by_index(&init_net, if_id);
1677 sdata = IEEE80211_DEV_TO_SUB_IF(bdev);
1682 if (!ap || sdata->type != IEEE80211_IF_TYPE_AP ||
1684 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1685 if (net_ratelimit())
1686 printk(KERN_DEBUG "no beacon data avail for idx=%d "
1687 "(%s)\n", if_id, bdev ? bdev->name : "N/A");
1688 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
1692 /* Assume we are generating the normal beacon locally */
1693 b_head = ap->beacon_head;
1694 b_tail = ap->beacon_tail;
1695 bh_len = ap->beacon_head_len;
1696 bt_len = ap->beacon_tail_len;
1698 skb = dev_alloc_skb(local->tx_headroom +
1699 bh_len + bt_len + 256 /* maximum TIM len */);
1703 skb_reserve(skb, local->tx_headroom);
1704 memcpy(skb_put(skb, bh_len), b_head, bh_len);
1706 ieee80211_include_sequence(sdata, (struct ieee80211_hdr *)skb->data);
1708 ieee80211_beacon_add_tim(local, ap, skb);
1711 memcpy(skb_put(skb, bt_len), b_tail, bt_len);
1715 memset(&extra, 0, sizeof(extra));
1716 extra.mode = local->oper_hw_mode;
1718 rate = rate_control_get_rate(local, local->mdev, skb, &extra);
1720 if (net_ratelimit()) {
1721 printk(KERN_DEBUG "%s: ieee80211_beacon_get: no rate "
1722 "found\n", wiphy_name(local->hw.wiphy));
1729 ((sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE) &&
1730 (rate->flags & IEEE80211_RATE_PREAMBLE2)) ?
1731 rate->val2 : rate->val;
1732 control->antenna_sel_tx = local->hw.conf.antenna_sel_tx;
1733 control->power_level = local->hw.conf.power_level;
1734 control->flags |= IEEE80211_TXCTL_NO_ACK;
1735 control->retry_limit = 1;
1736 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
1742 EXPORT_SYMBOL(ieee80211_beacon_get);
1744 void ieee80211_rts_get(struct ieee80211_hw *hw, int if_id,
1745 const void *frame, size_t frame_len,
1746 const struct ieee80211_tx_control *frame_txctl,
1747 struct ieee80211_rts *rts)
1749 const struct ieee80211_hdr *hdr = frame;
1752 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS;
1753 rts->frame_control = cpu_to_le16(fctl);
1754 rts->duration = ieee80211_rts_duration(hw, if_id, frame_len, frame_txctl);
1755 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
1756 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
1758 EXPORT_SYMBOL(ieee80211_rts_get);
1760 void ieee80211_ctstoself_get(struct ieee80211_hw *hw, int if_id,
1761 const void *frame, size_t frame_len,
1762 const struct ieee80211_tx_control *frame_txctl,
1763 struct ieee80211_cts *cts)
1765 const struct ieee80211_hdr *hdr = frame;
1768 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS;
1769 cts->frame_control = cpu_to_le16(fctl);
1770 cts->duration = ieee80211_ctstoself_duration(hw, if_id, frame_len, frame_txctl);
1771 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
1773 EXPORT_SYMBOL(ieee80211_ctstoself_get);
1776 ieee80211_get_buffered_bc(struct ieee80211_hw *hw, int if_id,
1777 struct ieee80211_tx_control *control)
1779 struct ieee80211_local *local = hw_to_local(hw);
1780 struct sk_buff *skb;
1781 struct sta_info *sta;
1782 ieee80211_tx_handler *handler;
1783 struct ieee80211_txrx_data tx;
1784 ieee80211_txrx_result res = TXRX_DROP;
1785 struct net_device *bdev;
1786 struct ieee80211_sub_if_data *sdata;
1787 struct ieee80211_if_ap *bss = NULL;
1789 bdev = dev_get_by_index(&init_net, if_id);
1791 sdata = IEEE80211_DEV_TO_SUB_IF(bdev);
1795 if (!bss || sdata->type != IEEE80211_IF_TYPE_AP || !bss->beacon_head)
1798 if (bss->dtim_count != 0)
1799 return NULL; /* send buffered bc/mc only after DTIM beacon */
1800 memset(control, 0, sizeof(*control));
1802 skb = skb_dequeue(&bss->ps_bc_buf);
1805 local->total_ps_buffered--;
1807 if (!skb_queue_empty(&bss->ps_bc_buf) && skb->len >= 2) {
1808 struct ieee80211_hdr *hdr =
1809 (struct ieee80211_hdr *) skb->data;
1810 /* more buffered multicast/broadcast frames ==> set
1811 * MoreData flag in IEEE 802.11 header to inform PS
1813 hdr->frame_control |=
1814 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1817 if (!ieee80211_tx_prepare(&tx, skb, local->mdev, control))
1819 dev_kfree_skb_any(skb);
1822 tx.flags |= IEEE80211_TXRXD_TXPS_BUFFERED;
1823 tx.u.tx.mode = local->hw.conf.mode;
1825 for (handler = local->tx_handlers; *handler != NULL; handler++) {
1826 res = (*handler)(&tx);
1827 if (res == TXRX_DROP || res == TXRX_QUEUED)
1831 skb = tx.skb; /* handlers are allowed to change skb */
1833 if (res == TXRX_DROP) {
1834 I802_DEBUG_INC(local->tx_handlers_drop);
1837 } else if (res == TXRX_QUEUED) {
1838 I802_DEBUG_INC(local->tx_handlers_queued);
1847 EXPORT_SYMBOL(ieee80211_get_buffered_bc);