staging: rtl8192e: Remove extraneous log message
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / rtl8192e / rtllib_tx.c
blob7ccad8601821a241f60b7492342d870758270b7e
1 /******************************************************************************
3 Copyright(c) 2003 - 2004 Intel Corporation. All rights reserved.
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of version 2 of the GNU General Public License as
7 published by the Free Software Foundation.
9 This program is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 more details.
14 You should have received a copy of the GNU General Public License along with
15 this program; if not, write to the Free Software Foundation, Inc., 59
16 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 The full GNU General Public License is included in this distribution in the
19 file called LICENSE.
21 Contact Information:
22 James P. Ketrenos <ipw2100-admin@linux.intel.com>
23 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25 ******************************************************************************
27 Few modifications for Realtek's Wi-Fi drivers by
28 Andrea Merello <andreamrl@tiscali.it>
30 A special thanks goes to Realtek for their support !
32 ******************************************************************************/
34 #include <linux/compiler.h>
35 #include <linux/errno.h>
36 #include <linux/if_arp.h>
37 #include <linux/in6.h>
38 #include <linux/in.h>
39 #include <linux/ip.h>
40 #include <linux/kernel.h>
41 #include <linux/module.h>
42 #include <linux/netdevice.h>
43 #include <linux/pci.h>
44 #include <linux/proc_fs.h>
45 #include <linux/skbuff.h>
46 #include <linux/slab.h>
47 #include <linux/tcp.h>
48 #include <linux/types.h>
49 #include <linux/version.h>
50 #include <linux/wireless.h>
51 #include <linux/etherdevice.h>
52 #include <asm/uaccess.h>
53 #include <linux/if_vlan.h>
55 #include "rtllib.h"
60 802.11 Data Frame
63 802.11 frame_contorl for data frames - 2 bytes
64 ,-----------------------------------------------------------------------------------------.
65 bits | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | a | b | c | d | e |
66 |----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|------|
67 val | 0 | 0 | 0 | 1 | x | 0 | 0 | 0 | 1 | 0 | x | x | x | x | x |
68 |----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|------|
69 desc | ^-ver-^ | ^type-^ | ^-----subtype-----^ | to |from |more |retry| pwr |more |wep |
70 | | | x=0 data,x=1 data+ack | DS | DS |frag | | mgm |data | |
71 '-----------------------------------------------------------------------------------------'
74 802.11 Data Frame |
75 ,--------- 'ctrl' expands to >-----------'
77 ,--'---,-------------------------------------------------------------.
78 Bytes | 2 | 2 | 6 | 6 | 6 | 2 | 0..2312 | 4 |
79 |------|------|---------|---------|---------|------|---------|------|
80 Desc. | ctrl | dura | DA/RA | TA | SA | Sequ | Frame | fcs |
81 | | tion | (BSSID) | | | ence | data | |
82 `--------------------------------------------------| |------'
83 Total: 28 non-data bytes `----.----'
85 .- 'Frame data' expands to <---------------------------'
88 ,---------------------------------------------------.
89 Bytes | 1 | 1 | 1 | 3 | 2 | 0-2304 |
90 |------|------|---------|----------|------|---------|
91 Desc. | SNAP | SNAP | Control |Eth Tunnel| Type | IP |
92 | DSAP | SSAP | | | | Packet |
93 | 0xAA | 0xAA |0x03 (UI)|0x00-00-F8| | |
94 `-----------------------------------------| |
95 Total: 8 non-data bytes `----.----'
97 .- 'IP Packet' expands, if WEP enabled, to <--'
100 ,-----------------------.
101 Bytes | 4 | 0-2296 | 4 |
102 |-----|-----------|-----|
103 Desc. | IV | Encrypted | ICV |
104 | | IP Packet | |
105 `-----------------------'
106 Total: 8 non-data bytes
109 802.3 Ethernet Data Frame
111 ,-----------------------------------------.
112 Bytes | 6 | 6 | 2 | Variable | 4 |
113 |-------|-------|------|-----------|------|
114 Desc. | Dest. | Source| Type | IP Packet | fcs |
115 | MAC | MAC | | | |
116 `-----------------------------------------'
117 Total: 18 non-data bytes
119 In the event that fragmentation is required, the incoming payload is split into
120 N parts of size ieee->fts. The first fragment contains the SNAP header and the
121 remaining packets are just data.
123 If encryption is enabled, each fragment payload size is reduced by enough space
124 to add the prefix and postfix (IV and ICV totalling 8 bytes in the case of WEP)
125 So if you have 1500 bytes of payload with ieee->fts set to 500 without
126 encryption it will take 3 frames. With WEP it will take 4 frames as the
127 payload of each frame is reduced to 492 bytes.
129 * SKB visualization
131 * ,- skb->data
133 * | ETHERNET HEADER ,-<-- PAYLOAD
134 * | | 14 bytes from skb->data
135 * | 2 bytes for Type --> ,T. | (sizeof ethhdr)
136 * | | | |
137 * |,-Dest.--. ,--Src.---. | | |
138 * | 6 bytes| | 6 bytes | | | |
139 * v | | | | | |
140 * 0 | v 1 | v | v 2
141 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
142 * ^ | ^ | ^ |
143 * | | | | | |
144 * | | | | `T' <---- 2 bytes for Type
145 * | | | |
146 * | | '---SNAP--' <-------- 6 bytes for SNAP
147 * | |
148 * `-IV--' <-------------------- 4 bytes for IV (WEP)
150 * SNAP HEADER
154 static u8 P802_1H_OUI[P80211_OUI_LEN] = { 0x00, 0x00, 0xf8 };
155 static u8 RFC1042_OUI[P80211_OUI_LEN] = { 0x00, 0x00, 0x00 };
157 inline int rtllib_put_snap(u8 *data, u16 h_proto)
159 struct rtllib_snap_hdr *snap;
160 u8 *oui;
162 snap = (struct rtllib_snap_hdr *)data;
163 snap->dsap = 0xaa;
164 snap->ssap = 0xaa;
165 snap->ctrl = 0x03;
167 if (h_proto == 0x8137 || h_proto == 0x80f3)
168 oui = P802_1H_OUI;
169 else
170 oui = RFC1042_OUI;
171 snap->oui[0] = oui[0];
172 snap->oui[1] = oui[1];
173 snap->oui[2] = oui[2];
175 *(u16 *)(data + SNAP_SIZE) = htons(h_proto);
177 return SNAP_SIZE + sizeof(u16);
180 int rtllib_encrypt_fragment(
181 struct rtllib_device *ieee,
182 struct sk_buff *frag,
183 int hdr_len)
185 struct rtllib_crypt_data* crypt = NULL;
186 int res;
188 crypt = ieee->crypt[ieee->tx_keyidx];
190 if (!(crypt && crypt->ops))
192 printk("=========>%s(), crypt is null\n", __func__);
193 return -1;
195 /* To encrypt, frame format is:
196 * IV (4 bytes), clear payload (including SNAP), ICV (4 bytes) */
198 /* Host-based IEEE 802.11 fragmentation for TX is not yet supported, so
199 * call both MSDU and MPDU encryption functions from here. */
200 atomic_inc(&crypt->refcnt);
201 res = 0;
202 if (crypt->ops->encrypt_msdu)
203 res = crypt->ops->encrypt_msdu(frag, hdr_len, crypt->priv);
204 if (res == 0 && crypt->ops->encrypt_mpdu)
205 res = crypt->ops->encrypt_mpdu(frag, hdr_len, crypt->priv);
207 atomic_dec(&crypt->refcnt);
208 if (res < 0) {
209 printk(KERN_INFO "%s: Encryption failed: len=%d.\n",
210 ieee->dev->name, frag->len);
211 ieee->ieee_stats.tx_discards++;
212 return -1;
215 return 0;
219 void rtllib_txb_free(struct rtllib_txb *txb) {
220 if (unlikely(!txb))
221 return;
222 kfree(txb);
225 struct rtllib_txb *rtllib_alloc_txb(int nr_frags, int txb_size,
226 int gfp_mask)
228 struct rtllib_txb *txb;
229 int i;
230 txb = kmalloc(
231 sizeof(struct rtllib_txb) + (sizeof(u8*) * nr_frags),
232 gfp_mask);
233 if (!txb)
234 return NULL;
236 memset(txb, 0, sizeof(struct rtllib_txb));
237 txb->nr_frags = nr_frags;
238 txb->frag_size = txb_size;
240 for (i = 0; i < nr_frags; i++) {
241 txb->fragments[i] = dev_alloc_skb(txb_size);
242 if (unlikely(!txb->fragments[i])) {
243 i--;
244 break;
246 memset(txb->fragments[i]->cb, 0, sizeof(txb->fragments[i]->cb));
248 if (unlikely(i != nr_frags)) {
249 while (i >= 0)
250 dev_kfree_skb_any(txb->fragments[i--]);
251 kfree(txb);
252 return NULL;
254 return txb;
258 rtllib_classify(struct sk_buff *skb, u8 bIsAmsdu)
260 struct ethhdr *eth;
261 struct iphdr *ip;
263 eth = (struct ethhdr *)skb->data;
264 if (eth->h_proto != htons(ETH_P_IP))
265 return 0;
267 RTLLIB_DEBUG_DATA(RTLLIB_DL_DATA, skb->data, skb->len);
268 ip = ip_hdr(skb);
269 switch (ip->tos & 0xfc) {
270 case 0x20:
271 return 2;
272 case 0x40:
273 return 1;
274 case 0x60:
275 return 3;
276 case 0x80:
277 return 4;
278 case 0xa0:
279 return 5;
280 case 0xc0:
281 return 6;
282 case 0xe0:
283 return 7;
284 default:
285 return 0;
289 #define SN_LESS(a, b) (((a-b)&0x800)!=0)
290 void rtllib_tx_query_agg_cap(struct rtllib_device* ieee, struct sk_buff* skb, struct cb_desc * tcb_desc)
292 struct rt_hi_throughput *pHTInfo = ieee->pHTInfo;
293 struct tx_ts_record *pTxTs = NULL;
294 struct rtllib_hdr_1addr* hdr = (struct rtllib_hdr_1addr*)skb->data;
296 if (rtllib_act_scanning(ieee,false))
297 return;
299 if (!pHTInfo->bCurrentHTSupport||!pHTInfo->bEnableHT)
300 return;
301 if (!IsQoSDataFrame(skb->data))
302 return;
303 if (is_multicast_ether_addr(hdr->addr1) || is_broadcast_ether_addr(hdr->addr1))
304 return;
306 if (tcb_desc->bdhcp || ieee->CntAfterLink<2)
307 return;
309 if (pHTInfo->IOTAction & HT_IOT_ACT_TX_NO_AGGREGATION)
310 return;
312 if (!ieee->GetNmodeSupportBySecCfg(ieee->dev))
313 return;
314 if (pHTInfo->bCurrentAMPDUEnable){
315 if (!GetTs(ieee, (struct ts_common_info **)(&pTxTs), hdr->addr1, skb->priority, TX_DIR, true)){
316 printk("%s: can't get TS\n", __func__);
317 return;
319 if (pTxTs->TxAdmittedBARecord.bValid == false){
320 if (ieee->wpa_ie_len && (ieee->pairwise_key_type == KEY_TYPE_NA)) {
322 } else if (tcb_desc->bdhcp == 1){
324 } else if (!pTxTs->bDisable_AddBa){
325 TsStartAddBaProcess(ieee, pTxTs);
327 goto FORCED_AGG_SETTING;
328 } else if (pTxTs->bUsingBa == false) {
329 if (SN_LESS(pTxTs->TxAdmittedBARecord.BaStartSeqCtrl.field.SeqNum, (pTxTs->TxCurSeq+1)%4096))
330 pTxTs->bUsingBa = true;
331 else
332 goto FORCED_AGG_SETTING;
334 if (ieee->iw_mode == IW_MODE_INFRA) {
335 tcb_desc->bAMPDUEnable = true;
336 tcb_desc->ampdu_factor = pHTInfo->CurrentAMPDUFactor;
337 tcb_desc->ampdu_density = pHTInfo->CurrentMPDUDensity;
340 FORCED_AGG_SETTING:
341 switch (pHTInfo->ForcedAMPDUMode) {
342 case HT_AGG_AUTO:
343 break;
345 case HT_AGG_FORCE_ENABLE:
346 tcb_desc->bAMPDUEnable = true;
347 tcb_desc->ampdu_density = pHTInfo->ForcedMPDUDensity;
348 tcb_desc->ampdu_factor = pHTInfo->ForcedAMPDUFactor;
349 break;
351 case HT_AGG_FORCE_DISABLE:
352 tcb_desc->bAMPDUEnable = false;
353 tcb_desc->ampdu_density = 0;
354 tcb_desc->ampdu_factor = 0;
355 break;
358 return;
361 extern void rtllib_qurey_ShortPreambleMode(struct rtllib_device* ieee, struct cb_desc * tcb_desc)
363 tcb_desc->bUseShortPreamble = false;
364 if (tcb_desc->data_rate == 2)
366 return;
368 else if (ieee->current_network.capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
370 tcb_desc->bUseShortPreamble = true;
372 return;
375 extern void
376 rtllib_query_HTCapShortGI(struct rtllib_device *ieee, struct cb_desc *tcb_desc)
378 struct rt_hi_throughput *pHTInfo = ieee->pHTInfo;
380 tcb_desc->bUseShortGI = false;
382 if (!pHTInfo->bCurrentHTSupport||!pHTInfo->bEnableHT)
383 return;
385 if (pHTInfo->bForcedShortGI)
387 tcb_desc->bUseShortGI = true;
388 return;
391 if ((pHTInfo->bCurBW40MHz==true) && pHTInfo->bCurShortGI40MHz)
392 tcb_desc->bUseShortGI = true;
393 else if ((pHTInfo->bCurBW40MHz==false) && pHTInfo->bCurShortGI20MHz)
394 tcb_desc->bUseShortGI = true;
397 void rtllib_query_BandwidthMode(struct rtllib_device* ieee, struct cb_desc *tcb_desc)
399 struct rt_hi_throughput *pHTInfo = ieee->pHTInfo;
401 tcb_desc->bPacketBW = false;
403 if (!pHTInfo->bCurrentHTSupport||!pHTInfo->bEnableHT)
404 return;
406 if (tcb_desc->bMulticast || tcb_desc->bBroadcast)
407 return;
409 if ((tcb_desc->data_rate & 0x80)==0)
410 return;
411 if (pHTInfo->bCurBW40MHz && pHTInfo->bCurTxBW40MHz && !ieee->bandwidth_auto_switch.bforced_tx20Mhz)
412 tcb_desc->bPacketBW = true;
413 return;
416 void rtllib_query_protectionmode(struct rtllib_device* ieee, struct cb_desc * tcb_desc, struct sk_buff* skb)
418 tcb_desc->bRTSSTBC = false;
419 tcb_desc->bRTSUseShortGI = false;
420 tcb_desc->bCTSEnable = false;
421 tcb_desc->RTSSC = 0;
422 tcb_desc->bRTSBW = false;
424 if (tcb_desc->bBroadcast || tcb_desc->bMulticast)
425 return;
427 if (is_broadcast_ether_addr(skb->data+16))
428 return;
430 if (ieee->mode < IEEE_N_24G)
432 if (skb->len > ieee->rts)
434 tcb_desc->bRTSEnable = true;
435 tcb_desc->rts_rate = MGN_24M;
437 else if (ieee->current_network.buseprotection)
439 tcb_desc->bRTSEnable = true;
440 tcb_desc->bCTSEnable = true;
441 tcb_desc->rts_rate = MGN_24M;
443 return;
445 else
447 struct rt_hi_throughput *pHTInfo = ieee->pHTInfo;
448 while (true)
450 if (pHTInfo->IOTAction & HT_IOT_ACT_FORCED_CTS2SELF)
452 tcb_desc->bCTSEnable = true;
453 tcb_desc->rts_rate = MGN_24M;
454 tcb_desc->bRTSEnable = true;
455 break;
457 else if (pHTInfo->IOTAction & (HT_IOT_ACT_FORCED_RTS|HT_IOT_ACT_PURE_N_MODE))
459 tcb_desc->bRTSEnable = true;
460 tcb_desc->rts_rate = MGN_24M;
461 break;
463 if (ieee->current_network.buseprotection)
465 tcb_desc->bRTSEnable = true;
466 tcb_desc->bCTSEnable = true;
467 tcb_desc->rts_rate = MGN_24M;
468 break;
470 if (pHTInfo->bCurrentHTSupport && pHTInfo->bEnableHT)
472 u8 HTOpMode = pHTInfo->CurrentOpMode;
473 if ((pHTInfo->bCurBW40MHz && (HTOpMode == 2 || HTOpMode == 3)) ||
474 (!pHTInfo->bCurBW40MHz && HTOpMode == 3) )
476 tcb_desc->rts_rate = MGN_24M;
477 tcb_desc->bRTSEnable = true;
478 break;
481 if (skb->len > ieee->rts)
483 tcb_desc->rts_rate = MGN_24M;
484 tcb_desc->bRTSEnable = true;
485 break;
487 if (tcb_desc->bAMPDUEnable)
489 tcb_desc->rts_rate = MGN_24M;
490 tcb_desc->bRTSEnable = false;
491 break;
493 goto NO_PROTECTION;
496 if ( 0 )
498 tcb_desc->bCTSEnable = true;
499 tcb_desc->rts_rate = MGN_24M;
500 tcb_desc->bRTSEnable = true;
502 if (ieee->current_network.capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
503 tcb_desc->bUseShortPreamble = true;
504 if (ieee->iw_mode == IW_MODE_MASTER)
505 goto NO_PROTECTION;
506 return;
507 NO_PROTECTION:
508 tcb_desc->bRTSEnable = false;
509 tcb_desc->bCTSEnable = false;
510 tcb_desc->rts_rate = 0;
511 tcb_desc->RTSSC = 0;
512 tcb_desc->bRTSBW = false;
516 void rtllib_txrate_selectmode(struct rtllib_device* ieee, struct cb_desc * tcb_desc)
518 if (ieee->bTxDisableRateFallBack)
519 tcb_desc->bTxDisableRateFallBack = true;
521 if (ieee->bTxUseDriverAssingedRate)
522 tcb_desc->bTxUseDriverAssingedRate = true;
523 if (!tcb_desc->bTxDisableRateFallBack || !tcb_desc->bTxUseDriverAssingedRate)
525 if (ieee->iw_mode == IW_MODE_INFRA || ieee->iw_mode == IW_MODE_ADHOC)
526 tcb_desc->RATRIndex = 0;
530 u16 rtllib_query_seqnum(struct rtllib_device*ieee, struct sk_buff* skb, u8* dst)
532 u16 seqnum = 0;
534 if (is_multicast_ether_addr(dst) || is_broadcast_ether_addr(dst))
535 return 0;
536 if (IsQoSDataFrame(skb->data))
538 struct tx_ts_record *pTS = NULL;
539 if (!GetTs(ieee, (struct ts_common_info **)(&pTS), dst, skb->priority, TX_DIR, true))
541 return 0;
543 seqnum = pTS->TxCurSeq;
544 pTS->TxCurSeq = (pTS->TxCurSeq+1)%4096;
545 return seqnum;
547 return 0;
550 static int wme_downgrade_ac(struct sk_buff *skb)
552 switch (skb->priority) {
553 case 6:
554 case 7:
555 skb->priority = 5; /* VO -> VI */
556 return 0;
557 case 4:
558 case 5:
559 skb->priority = 3; /* VI -> BE */
560 return 0;
561 case 0:
562 case 3:
563 skb->priority = 1; /* BE -> BK */
564 return 0;
565 default:
566 return -1;
570 int rtllib_xmit_inter(struct sk_buff *skb, struct net_device *dev)
572 struct rtllib_device *ieee = (struct rtllib_device *)netdev_priv_rsl(dev);
573 struct rtllib_txb *txb = NULL;
574 struct rtllib_hdr_3addrqos *frag_hdr;
575 int i, bytes_per_frag, nr_frags, bytes_last_frag, frag_size;
576 unsigned long flags;
577 struct net_device_stats *stats = &ieee->stats;
578 int ether_type = 0, encrypt;
579 int bytes, fc, qos_ctl = 0, hdr_len;
580 struct sk_buff *skb_frag;
581 struct rtllib_hdr_3addrqos header = { /* Ensure zero initialized */
582 .duration_id = 0,
583 .seq_ctl = 0,
584 .qos_ctl = 0
586 u8 dest[ETH_ALEN], src[ETH_ALEN];
587 int qos_actived = ieee->current_network.qos_data.active;
588 struct rtllib_crypt_data* crypt = NULL;
589 struct cb_desc *tcb_desc;
590 u8 bIsMulticast = false;
591 u8 IsAmsdu = false;
593 bool bdhcp =false;
594 spin_lock_irqsave(&ieee->lock, flags);
596 /* If there is no driver handler to take the TXB, dont' bother
597 * creating it... */
598 if ((!ieee->hard_start_xmit && !(ieee->softmac_features & IEEE_SOFTMAC_TX_QUEUE))||
599 ((!ieee->softmac_data_hard_start_xmit && (ieee->softmac_features & IEEE_SOFTMAC_TX_QUEUE)))) {
600 printk(KERN_WARNING "%s: No xmit handler.\n",
601 ieee->dev->name);
602 goto success;
606 if (likely(ieee->raw_tx == 0)){
607 if (unlikely(skb->len < SNAP_SIZE + sizeof(u16))) {
608 printk(KERN_WARNING "%s: skb too small (%d).\n",
609 ieee->dev->name, skb->len);
610 goto success;
612 /* Save source and destination addresses */
613 memcpy(dest, skb->data, ETH_ALEN);
614 memcpy(src, skb->data+ETH_ALEN, ETH_ALEN);
616 memset(skb->cb, 0, sizeof(skb->cb));
617 ether_type = ntohs(((struct ethhdr *)skb->data)->h_proto);
619 if (ieee->iw_mode == IW_MODE_MONITOR)
621 txb = rtllib_alloc_txb(1, skb->len, GFP_ATOMIC);
622 if (unlikely(!txb)) {
623 printk(KERN_WARNING "%s: Could not allocate TXB\n",
624 ieee->dev->name);
625 goto failed;
628 txb->encrypted = 0;
629 txb->payload_size = skb->len;
630 memcpy(skb_put(txb->fragments[0],skb->len), skb->data, skb->len);
632 goto success;
635 if (skb->len > 282) {
636 if (ETH_P_IP == ether_type) {
637 const struct iphdr *ip = (struct iphdr *)((u8 *)skb->data+14);
638 if (IPPROTO_UDP == ip->protocol) {
639 struct udphdr *udp = (struct udphdr *)((u8 *)ip + (ip->ihl << 2));
640 if (((((u8 *)udp)[1] == 68) && (((u8 *)udp)[3] == 67)) ||
641 ((((u8 *)udp)[1] == 67) && (((u8 *)udp)[3] == 68))) {
642 bdhcp = true;
643 ieee->LPSDelayCnt = 200;
646 }else if (ETH_P_ARP == ether_type){
647 printk("=================>DHCP Protocol start tx ARP pkt!!\n");
648 bdhcp = true;
649 ieee->LPSDelayCnt = ieee->current_network.tim.tim_count;
655 skb->priority = rtllib_classify(skb, IsAmsdu);
656 crypt = ieee->crypt[ieee->tx_keyidx];
657 encrypt = !(ether_type == ETH_P_PAE && ieee->ieee802_1x) &&
658 ieee->host_encrypt && crypt && crypt->ops;
659 if (!encrypt && ieee->ieee802_1x &&
660 ieee->drop_unencrypted && ether_type != ETH_P_PAE) {
661 stats->tx_dropped++;
662 goto success;
664 if (crypt && !encrypt && ether_type == ETH_P_PAE) {
665 struct eapol *eap = (struct eapol *)(skb->data +
666 sizeof(struct ethhdr) - SNAP_SIZE - sizeof(u16));
667 RTLLIB_DEBUG_EAP("TX: IEEE 802.11 EAPOL frame: %s\n",
668 eap_get_type(eap->type));
671 /* Advance the SKB to the start of the payload */
672 skb_pull(skb, sizeof(struct ethhdr));
674 /* Determine total amount of storage required for TXB packets */
675 bytes = skb->len + SNAP_SIZE + sizeof(u16);
677 if (encrypt)
678 fc = RTLLIB_FTYPE_DATA | RTLLIB_FCTL_WEP;
679 else
680 fc = RTLLIB_FTYPE_DATA;
682 if (qos_actived)
683 fc |= RTLLIB_STYPE_QOS_DATA;
684 else
685 fc |= RTLLIB_STYPE_DATA;
687 if (ieee->iw_mode == IW_MODE_INFRA) {
688 fc |= RTLLIB_FCTL_TODS;
689 /* To DS: Addr1 = BSSID, Addr2 = SA,
690 Addr3 = DA */
691 memcpy(&header.addr1, ieee->current_network.bssid, ETH_ALEN);
692 memcpy(&header.addr2, &src, ETH_ALEN);
693 if (IsAmsdu)
694 memcpy(&header.addr3, ieee->current_network.bssid, ETH_ALEN);
695 else
696 memcpy(&header.addr3, &dest, ETH_ALEN);
697 } else if (ieee->iw_mode == IW_MODE_ADHOC) {
698 /* not From/To DS: Addr1 = DA, Addr2 = SA,
699 Addr3 = BSSID */
700 memcpy(&header.addr1, dest, ETH_ALEN);
701 memcpy(&header.addr2, src, ETH_ALEN);
702 memcpy(&header.addr3, ieee->current_network.bssid, ETH_ALEN);
705 bIsMulticast = is_broadcast_ether_addr(header.addr1) ||is_multicast_ether_addr(header.addr1);
707 header.frame_ctl = cpu_to_le16(fc);
709 /* Determine fragmentation size based on destination (multicast
710 * and broadcast are not fragmented) */
711 if (bIsMulticast) {
712 frag_size = MAX_FRAG_THRESHOLD;
713 qos_ctl |= QOS_CTL_NOTCONTAIN_ACK;
714 } else {
715 frag_size = ieee->fts;
716 qos_ctl = 0;
719 if (qos_actived) {
720 hdr_len = RTLLIB_3ADDR_LEN + 2;
722 /* in case we are a client verify acm is not set for this ac */
723 while (unlikely(ieee->wmm_acm & (0x01 << skb->priority))) {
724 printk("skb->priority = %x\n", skb->priority);
725 if (wme_downgrade_ac(skb)) {
726 break;
728 printk("converted skb->priority = %x\n", skb->priority);
730 qos_ctl |= skb->priority;
731 header.qos_ctl = cpu_to_le16(qos_ctl & RTLLIB_QOS_TID);
732 } else {
733 hdr_len = RTLLIB_3ADDR_LEN;
735 /* Determine amount of payload per fragment. Regardless of if
736 * this stack is providing the full 802.11 header, one will
737 * eventually be affixed to this fragment -- so we must account for
738 * it when determining the amount of payload space. */
739 bytes_per_frag = frag_size - hdr_len;
740 if (ieee->config &
741 (CFG_RTLLIB_COMPUTE_FCS | CFG_RTLLIB_RESERVE_FCS))
742 bytes_per_frag -= RTLLIB_FCS_LEN;
744 /* Each fragment may need to have room for encryptiong pre/postfix */
745 if (encrypt) {
746 bytes_per_frag -= crypt->ops->extra_prefix_len +
747 crypt->ops->extra_postfix_len;
749 /* Number of fragments is the total bytes_per_frag /
750 * payload_per_fragment */
751 nr_frags = bytes / bytes_per_frag;
752 bytes_last_frag = bytes % bytes_per_frag;
753 if (bytes_last_frag)
754 nr_frags++;
755 else
756 bytes_last_frag = bytes_per_frag;
758 /* When we allocate the TXB we allocate enough space for the reserve
759 * and full fragment bytes (bytes_per_frag doesn't include prefix,
760 * postfix, header, FCS, etc.) */
761 txb = rtllib_alloc_txb(nr_frags, frag_size + ieee->tx_headroom, GFP_ATOMIC);
762 if (unlikely(!txb)) {
763 printk(KERN_WARNING "%s: Could not allocate TXB\n",
764 ieee->dev->name);
765 goto failed;
767 txb->encrypted = encrypt;
768 txb->payload_size = bytes;
770 if (qos_actived)
772 txb->queue_index = UP2AC(skb->priority);
773 } else {
774 txb->queue_index = WME_AC_BE;;
777 for (i = 0; i < nr_frags; i++) {
778 skb_frag = txb->fragments[i];
779 tcb_desc = (struct cb_desc *)(skb_frag->cb + MAX_DEV_ADDR_SIZE);
780 if (qos_actived){
781 skb_frag->priority = skb->priority;
782 tcb_desc->queue_index = UP2AC(skb->priority);
783 } else {
784 skb_frag->priority = WME_AC_BE;
785 tcb_desc->queue_index = WME_AC_BE;
787 skb_reserve(skb_frag, ieee->tx_headroom);
789 if (encrypt){
790 if (ieee->hwsec_active)
791 tcb_desc->bHwSec = 1;
792 else
793 tcb_desc->bHwSec = 0;
794 skb_reserve(skb_frag, crypt->ops->extra_prefix_len);
795 } else {
796 tcb_desc->bHwSec = 0;
798 frag_hdr = (struct rtllib_hdr_3addrqos *)skb_put(skb_frag, hdr_len);
799 memcpy(frag_hdr, &header, hdr_len);
801 /* If this is not the last fragment, then add the MOREFRAGS
802 * bit to the frame control */
803 if (i != nr_frags - 1) {
804 frag_hdr->frame_ctl = cpu_to_le16(
805 fc | RTLLIB_FCTL_MOREFRAGS);
806 bytes = bytes_per_frag;
808 } else {
809 /* The last fragment takes the remaining length */
810 bytes = bytes_last_frag;
812 if ((qos_actived) && (!bIsMulticast))
814 frag_hdr->seq_ctl = rtllib_query_seqnum(ieee, skb_frag, header.addr1);
815 frag_hdr->seq_ctl = cpu_to_le16(frag_hdr->seq_ctl<<4 | i);
816 } else {
817 frag_hdr->seq_ctl = cpu_to_le16(ieee->seq_ctrl[0]<<4 | i);
819 /* Put a SNAP header on the first fragment */
820 if (i == 0) {
821 rtllib_put_snap(
822 skb_put(skb_frag, SNAP_SIZE + sizeof(u16)),
823 ether_type);
824 bytes -= SNAP_SIZE + sizeof(u16);
827 memcpy(skb_put(skb_frag, bytes), skb->data, bytes);
829 /* Advance the SKB... */
830 skb_pull(skb, bytes);
832 /* Encryption routine will move the header forward in order
833 * to insert the IV between the header and the payload */
834 if (encrypt)
835 rtllib_encrypt_fragment(ieee, skb_frag, hdr_len);
836 if (ieee->config &
837 (CFG_RTLLIB_COMPUTE_FCS | CFG_RTLLIB_RESERVE_FCS))
838 skb_put(skb_frag, 4);
841 if ((qos_actived) && (!bIsMulticast)) {
842 if (ieee->seq_ctrl[UP2AC(skb->priority) + 1] == 0xFFF)
843 ieee->seq_ctrl[UP2AC(skb->priority) + 1] = 0;
844 else
845 ieee->seq_ctrl[UP2AC(skb->priority) + 1]++;
846 } else {
847 if (ieee->seq_ctrl[0] == 0xFFF)
848 ieee->seq_ctrl[0] = 0;
849 else
850 ieee->seq_ctrl[0]++;
852 }else{
853 if (unlikely(skb->len < sizeof(struct rtllib_hdr_3addr))) {
854 printk(KERN_WARNING "%s: skb too small (%d).\n",
855 ieee->dev->name, skb->len);
856 goto success;
859 txb = rtllib_alloc_txb(1, skb->len, GFP_ATOMIC);
860 if (!txb){
861 printk(KERN_WARNING "%s: Could not allocate TXB\n",
862 ieee->dev->name);
863 goto failed;
866 txb->encrypted = 0;
867 txb->payload_size = skb->len;
868 memcpy(skb_put(txb->fragments[0],skb->len), skb->data, skb->len);
871 success:
872 if (txb)
874 struct cb_desc *tcb_desc = (struct cb_desc *)(txb->fragments[0]->cb + MAX_DEV_ADDR_SIZE);
875 tcb_desc->bTxEnableFwCalcDur = 1;
876 tcb_desc->priority = skb->priority;
878 if (ether_type == ETH_P_PAE) {
879 if (ieee->pHTInfo->IOTAction & HT_IOT_ACT_WA_IOT_Broadcom)
881 tcb_desc->data_rate = MgntQuery_TxRateExcludeCCKRates(ieee);
882 tcb_desc->bTxDisableRateFallBack = false;
883 }else{
884 tcb_desc->data_rate = ieee->basic_rate;
885 tcb_desc->bTxDisableRateFallBack = 1;
889 tcb_desc->RATRIndex = 7;
890 tcb_desc->bTxUseDriverAssingedRate = 1;
891 } else {
892 if (is_multicast_ether_addr(header.addr1))
893 tcb_desc->bMulticast = 1;
894 if (is_broadcast_ether_addr(header.addr1))
895 tcb_desc->bBroadcast = 1;
896 rtllib_txrate_selectmode(ieee, tcb_desc);
897 if ( tcb_desc->bMulticast || tcb_desc->bBroadcast)
898 tcb_desc->data_rate = ieee->basic_rate;
899 else
900 tcb_desc->data_rate = CURRENT_RATE(ieee->mode, ieee->rate, ieee->HTCurrentOperaRate);
902 if (bdhcp == true){
903 if (ieee->pHTInfo->IOTAction & HT_IOT_ACT_WA_IOT_Broadcom)
905 tcb_desc->data_rate = MgntQuery_TxRateExcludeCCKRates(ieee);
906 tcb_desc->bTxDisableRateFallBack = false;
907 }else{
908 tcb_desc->data_rate = MGN_1M;
909 tcb_desc->bTxDisableRateFallBack = 1;
913 tcb_desc->RATRIndex = 7;
914 tcb_desc->bTxUseDriverAssingedRate = 1;
915 tcb_desc->bdhcp = 1;
918 rtllib_qurey_ShortPreambleMode(ieee, tcb_desc);
919 rtllib_tx_query_agg_cap(ieee, txb->fragments[0], tcb_desc);
920 rtllib_query_HTCapShortGI(ieee, tcb_desc);
921 rtllib_query_BandwidthMode(ieee, tcb_desc);
922 rtllib_query_protectionmode(ieee, tcb_desc, txb->fragments[0]);
925 spin_unlock_irqrestore(&ieee->lock, flags);
926 dev_kfree_skb_any(skb);
927 if (txb) {
928 if (ieee->softmac_features & IEEE_SOFTMAC_TX_QUEUE){
929 dev->stats.tx_packets++;
930 dev->stats.tx_bytes += txb->payload_size;
931 rtllib_softmac_xmit(txb, ieee);
932 }else{
933 if ((*ieee->hard_start_xmit)(txb, dev) == 0) {
934 stats->tx_packets++;
935 stats->tx_bytes += txb->payload_size;
936 return 0;
938 rtllib_txb_free(txb);
942 return 0;
944 failed:
945 spin_unlock_irqrestore(&ieee->lock, flags);
946 netif_stop_queue(dev);
947 stats->tx_errors++;
948 return 1;
951 int rtllib_xmit(struct sk_buff *skb, struct net_device *dev)
953 memset(skb->cb, 0, sizeof(skb->cb));
954 return rtllib_xmit_inter(skb, dev);