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