提交 9d92ece8 编写于 作者: L Larry Finger 提交者: Greg Kroah-Hartman

staging: rtl8192e: Cleanup checkpatch -f errors - Part XIV

With this patch, all of the checkpatch errors are fixed; however, only
some of the lines that are too long were fixed. To complete the fixing
of these warnings, the file rtllib_softmac.c will need refactoring. In addition,
some of the variables may need renaming. Those changes can be deferred.
Signed-off-by: NLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 db8971b6
...@@ -20,27 +20,26 @@ ...@@ -20,27 +20,26 @@
#include <linux/random.h> #include <linux/random.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/version.h> #include <linux/version.h>
#include <asm/uaccess.h> #include <linux/uaccess.h>
#include "dot11d.h" #include "dot11d.h"
extern void _setup_timer( struct timer_list*, void*, unsigned long );
u8 rsn_authen_cipher_suite[16][4] = { u8 rsn_authen_cipher_suite[16][4] = {
{0x00,0x0F,0xAC,0x00}, {0x00, 0x0F, 0xAC, 0x00},
{0x00,0x0F,0xAC,0x01}, {0x00, 0x0F, 0xAC, 0x01},
{0x00,0x0F,0xAC,0x02}, {0x00, 0x0F, 0xAC, 0x02},
{0x00,0x0F,0xAC,0x03}, {0x00, 0x0F, 0xAC, 0x03},
{0x00,0x0F,0xAC,0x04}, {0x00, 0x0F, 0xAC, 0x04},
{0x00,0x0F,0xAC,0x05}, {0x00, 0x0F, 0xAC, 0x05},
}; };
short rtllib_is_54g(struct rtllib_network *net) short rtllib_is_54g(struct rtllib_network *net)
{ {
return ((net->rates_ex_len > 0) || (net->rates_len > 4)); return (net->rates_ex_len > 0) || (net->rates_len > 4);
} }
short rtllib_is_shortslot(struct rtllib_network net) short rtllib_is_shortslot(struct rtllib_network net)
{ {
return (net.capability & WLAN_CAPABILITY_SHORT_SLOT_TIME); return net.capability & WLAN_CAPABILITY_SHORT_SLOT_TIME;
} }
/* returns the total length needed for pleacing the RATE MFIE /* returns the total length needed for pleacing the RATE MFIE
...@@ -69,7 +68,7 @@ void rtllib_MFIE_Brate(struct rtllib_device *ieee, u8 **tag_p) ...@@ -69,7 +68,7 @@ void rtllib_MFIE_Brate(struct rtllib_device *ieee, u8 **tag_p)
{ {
u8 *tag = *tag_p; u8 *tag = *tag_p;
if (ieee->modulation & RTLLIB_CCK_MODULATION){ if (ieee->modulation & RTLLIB_CCK_MODULATION) {
*tag++ = MFIE_TYPE_RATES; *tag++ = MFIE_TYPE_RATES;
*tag++ = 4; *tag++ = 4;
*tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_1MB; *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_1MB;
...@@ -78,7 +77,8 @@ void rtllib_MFIE_Brate(struct rtllib_device *ieee, u8 **tag_p) ...@@ -78,7 +77,8 @@ void rtllib_MFIE_Brate(struct rtllib_device *ieee, u8 **tag_p)
*tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_11MB; *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_11MB;
} }
/* We may add an option for custom rates that specific HW might support */ /* We may add an option for custom rates that specific HW
* might support */
*tag_p = tag; *tag_p = tag;
} }
...@@ -86,8 +86,7 @@ void rtllib_MFIE_Grate(struct rtllib_device *ieee, u8 **tag_p) ...@@ -86,8 +86,7 @@ void rtllib_MFIE_Grate(struct rtllib_device *ieee, u8 **tag_p)
{ {
u8 *tag = *tag_p; u8 *tag = *tag_p;
if (ieee->modulation & RTLLIB_OFDM_MODULATION){ if (ieee->modulation & RTLLIB_OFDM_MODULATION) {
*tag++ = MFIE_TYPE_RATES_EX; *tag++ = MFIE_TYPE_RATES_EX;
*tag++ = 8; *tag++ = 8;
*tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_6MB; *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_6MB;
...@@ -98,14 +97,14 @@ void rtllib_MFIE_Grate(struct rtllib_device *ieee, u8 **tag_p) ...@@ -98,14 +97,14 @@ void rtllib_MFIE_Grate(struct rtllib_device *ieee, u8 **tag_p)
*tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_36MB; *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_36MB;
*tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_48MB; *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_48MB;
*tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_54MB; *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_54MB;
} }
/* We may add an option for custom rates that specific HW might
/* We may add an option for custom rates that specific HW might support */ * support */
*tag_p = tag; *tag_p = tag;
} }
void rtllib_WMM_Info(struct rtllib_device *ieee, u8 **tag_p) { void rtllib_WMM_Info(struct rtllib_device *ieee, u8 **tag_p)
{
u8 *tag = *tag_p; u8 *tag = *tag_p;
*tag++ = MFIE_TYPE_GENERIC; *tag++ = MFIE_TYPE_GENERIC;
...@@ -120,17 +119,18 @@ void rtllib_WMM_Info(struct rtllib_device *ieee, u8 **tag_p) { ...@@ -120,17 +119,18 @@ void rtllib_WMM_Info(struct rtllib_device *ieee, u8 **tag_p) {
*tag_p = tag; *tag_p = tag;
} }
void rtllib_TURBO_Info(struct rtllib_device *ieee, u8 **tag_p) { void rtllib_TURBO_Info(struct rtllib_device *ieee, u8 **tag_p)
{
u8 *tag = *tag_p; u8 *tag = *tag_p;
*tag++ = MFIE_TYPE_GENERIC; *tag++ = MFIE_TYPE_GENERIC;
*tag++ = 7; *tag++ = 7;
*tag++ = 0x00; *tag++ = 0x00;
*tag++ = 0xe0; *tag++ = 0xe0;
*tag++ = 0x4c; *tag++ = 0x4c;
*tag++ = 0x01; *tag++ = 0x01;
*tag++ = 0x02; *tag++ = 0x02;
*tag++ = 0x11; *tag++ = 0x11;
*tag++ = 0x00; *tag++ = 0x00;
*tag_p = tag; *tag_p = tag;
...@@ -140,7 +140,7 @@ void rtllib_TURBO_Info(struct rtllib_device *ieee, u8 **tag_p) { ...@@ -140,7 +140,7 @@ void rtllib_TURBO_Info(struct rtllib_device *ieee, u8 **tag_p) {
void enqueue_mgmt(struct rtllib_device *ieee, struct sk_buff *skb) void enqueue_mgmt(struct rtllib_device *ieee, struct sk_buff *skb)
{ {
int nh; int nh;
nh = (ieee->mgmt_queue_head +1) % MGMT_QUEUE_NUM; nh = (ieee->mgmt_queue_head + 1) % MGMT_QUEUE_NUM;
/* /*
* if the queue is full but we have newer frames then * if the queue is full but we have newer frames then
...@@ -183,29 +183,21 @@ MgntQuery_TxRateExcludeCCKRates(struct rtllib_device *ieee) ...@@ -183,29 +183,21 @@ MgntQuery_TxRateExcludeCCKRates(struct rtllib_device *ieee)
u8 BasicRate; u8 BasicRate;
for ( i = 0; i < ieee->current_network.rates_len; i++) for (i = 0; i < ieee->current_network.rates_len; i++) {
{
BasicRate = ieee->current_network.rates[i]&0x7F; BasicRate = ieee->current_network.rates[i]&0x7F;
if (!rtllib_is_cck_rate(BasicRate)) if (!rtllib_is_cck_rate(BasicRate)) {
{ if (QueryRate == 0) {
if (QueryRate == 0)
{
QueryRate = BasicRate; QueryRate = BasicRate;
} } else {
else
{
if (BasicRate < QueryRate) if (BasicRate < QueryRate)
{
QueryRate = BasicRate; QueryRate = BasicRate;
}
} }
} }
} }
if (QueryRate == 0) if (QueryRate == 0) {
{
QueryRate = 12; QueryRate = 12;
printk("No BasicRate found!!\n"); printk(KERN_INFO "No BasicRate found!!\n");
} }
return QueryRate; return QueryRate;
} }
...@@ -220,10 +212,10 @@ u8 MgntQuery_MgntFrameTxRate(struct rtllib_device *ieee) ...@@ -220,10 +212,10 @@ u8 MgntQuery_MgntFrameTxRate(struct rtllib_device *ieee)
else else
rate = ieee->basic_rate & 0x7f; rate = ieee->basic_rate & 0x7f;
if (rate == 0){ if (rate == 0) {
if (ieee->mode == IEEE_A|| if (ieee->mode == IEEE_A ||
ieee->mode== IEEE_N_5G|| ieee->mode == IEEE_N_5G ||
(ieee->mode== IEEE_N_24G&&!pHTInfo->bCurSuppCCK)) (ieee->mode == IEEE_N_24G && !pHTInfo->bCurSuppCCK))
rate = 0x0c; rate = 0x0c;
else else
rate = 0x02; rate = 0x02;
...@@ -232,21 +224,18 @@ u8 MgntQuery_MgntFrameTxRate(struct rtllib_device *ieee) ...@@ -232,21 +224,18 @@ u8 MgntQuery_MgntFrameTxRate(struct rtllib_device *ieee)
return rate; return rate;
} }
void rtllib_sta_wakeup(struct rtllib_device *ieee, short nl);
inline void softmac_mgmt_xmit(struct sk_buff *skb, struct rtllib_device *ieee) inline void softmac_mgmt_xmit(struct sk_buff *skb, struct rtllib_device *ieee)
{ {
unsigned long flags; unsigned long flags;
short single = ieee->softmac_features & IEEE_SOFTMAC_SINGLE_QUEUE; short single = ieee->softmac_features & IEEE_SOFTMAC_SINGLE_QUEUE;
struct rtllib_hdr_3addr *header= struct rtllib_hdr_3addr *header =
(struct rtllib_hdr_3addr *) skb->data; (struct rtllib_hdr_3addr *) skb->data;
struct cb_desc *tcb_desc = (struct cb_desc *)(skb->cb + 8); struct cb_desc *tcb_desc = (struct cb_desc *)(skb->cb + 8);
spin_lock_irqsave(&ieee->lock, flags); spin_lock_irqsave(&ieee->lock, flags);
/* called with 2nd param 0, no mgmt lock required */ /* called with 2nd param 0, no mgmt lock required */
rtllib_sta_wakeup(ieee,0); rtllib_sta_wakeup(ieee, 0);
if (header->frame_ctl == RTLLIB_STYPE_BEACON) if (header->frame_ctl == RTLLIB_STYPE_BEACON)
tcb_desc->queue_index = BEACON_QUEUE; tcb_desc->queue_index = BEACON_QUEUE;
...@@ -261,9 +250,9 @@ inline void softmac_mgmt_xmit(struct sk_buff *skb, struct rtllib_device *ieee) ...@@ -261,9 +250,9 @@ inline void softmac_mgmt_xmit(struct sk_buff *skb, struct rtllib_device *ieee)
tcb_desc->bTxDisableRateFallBack = 1; tcb_desc->bTxDisableRateFallBack = 1;
tcb_desc->bTxUseDriverAssingedRate = 1; tcb_desc->bTxUseDriverAssingedRate = 1;
if (single) { if (single) {
if (ieee->queue_stop){ if (ieee->queue_stop) {
enqueue_mgmt(ieee,skb); enqueue_mgmt(ieee, skb);
}else{ } else {
header->seq_ctl = cpu_to_le16(ieee->seq_ctrl[0]<<4); header->seq_ctl = cpu_to_le16(ieee->seq_ctrl[0]<<4);
if (ieee->seq_ctrl[0] == 0xFFF) if (ieee->seq_ctrl[0] == 0xFFF)
...@@ -272,11 +261,12 @@ inline void softmac_mgmt_xmit(struct sk_buff *skb, struct rtllib_device *ieee) ...@@ -272,11 +261,12 @@ inline void softmac_mgmt_xmit(struct sk_buff *skb, struct rtllib_device *ieee)
ieee->seq_ctrl[0]++; ieee->seq_ctrl[0]++;
/* avoid watchdog triggers */ /* avoid watchdog triggers */
ieee->softmac_data_hard_start_xmit(skb,ieee->dev,ieee->basic_rate); ieee->softmac_data_hard_start_xmit(skb, ieee->dev,
ieee->basic_rate);
} }
spin_unlock_irqrestore(&ieee->lock, flags); spin_unlock_irqrestore(&ieee->lock, flags);
}else{ } else {
spin_unlock_irqrestore(&ieee->lock, flags); spin_unlock_irqrestore(&ieee->lock, flags);
spin_lock_irqsave(&ieee->mgmt_tx_lock, flags); spin_lock_irqsave(&ieee->mgmt_tx_lock, flags);
...@@ -288,17 +278,19 @@ inline void softmac_mgmt_xmit(struct sk_buff *skb, struct rtllib_device *ieee) ...@@ -288,17 +278,19 @@ inline void softmac_mgmt_xmit(struct sk_buff *skb, struct rtllib_device *ieee)
ieee->seq_ctrl[0]++; ieee->seq_ctrl[0]++;
/* check wether the managed packet queued greater than 5 */ /* check wether the managed packet queued greater than 5 */
if (!ieee->check_nic_enough_desc(ieee->dev,tcb_desc->queue_index)||\ if (!ieee->check_nic_enough_desc(ieee->dev, tcb_desc->queue_index) ||
(skb_queue_len(&ieee->skb_waitQ[tcb_desc->queue_index]) != 0)||\ (skb_queue_len(&ieee->skb_waitQ[tcb_desc->queue_index]) != 0) ||
(ieee->queue_stop) ) { (ieee->queue_stop)) {
/* insert the skb packet to the management queue */ /* insert the skb packet to the management queue */
/* as for the completion function, it does not need /* as for the completion function, it does not need
* to check it any more. * to check it any more.
* */ * */
printk("%s():insert to waitqueue, queue_index:%d!\n",__func__,tcb_desc->queue_index); printk(KERN_INFO "%s():insert to waitqueue, queue_index"
skb_queue_tail(&ieee->skb_waitQ[tcb_desc->queue_index], skb); ":%d!\n", __func__, tcb_desc->queue_index);
skb_queue_tail(&ieee->skb_waitQ[tcb_desc->queue_index],
skb);
} else { } else {
ieee->softmac_hard_start_xmit(skb,ieee->dev); ieee->softmac_hard_start_xmit(skb, ieee->dev);
} }
spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags); spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags);
} }
...@@ -310,7 +302,7 @@ inline void softmac_ps_mgmt_xmit(struct sk_buff *skb, ...@@ -310,7 +302,7 @@ inline void softmac_ps_mgmt_xmit(struct sk_buff *skb,
short single = ieee->softmac_features & IEEE_SOFTMAC_SINGLE_QUEUE; short single = ieee->softmac_features & IEEE_SOFTMAC_SINGLE_QUEUE;
struct rtllib_hdr_3addr *header = struct rtllib_hdr_3addr *header =
(struct rtllib_hdr_3addr *) skb->data; (struct rtllib_hdr_3addr *) skb->data;
u16 fc,type,stype; u16 fc, type, stype;
struct cb_desc *tcb_desc = (struct cb_desc *)(skb->cb + 8); struct cb_desc *tcb_desc = (struct cb_desc *)(skb->cb + 8);
fc = header->frame_ctl; fc = header->frame_ctl;
...@@ -342,7 +334,8 @@ inline void softmac_ps_mgmt_xmit(struct sk_buff *skb, ...@@ -342,7 +334,8 @@ inline void softmac_ps_mgmt_xmit(struct sk_buff *skb,
} }
/* avoid watchdog triggers */ /* avoid watchdog triggers */
ieee->softmac_data_hard_start_xmit(skb,ieee->dev,ieee->basic_rate); ieee->softmac_data_hard_start_xmit(skb, ieee->dev,
ieee->basic_rate);
} else { } else {
if (type != RTLLIB_FTYPE_CTL) { if (type != RTLLIB_FTYPE_CTL) {
...@@ -353,14 +346,14 @@ inline void softmac_ps_mgmt_xmit(struct sk_buff *skb, ...@@ -353,14 +346,14 @@ inline void softmac_ps_mgmt_xmit(struct sk_buff *skb,
else else
ieee->seq_ctrl[0]++; ieee->seq_ctrl[0]++;
} }
ieee->softmac_hard_start_xmit(skb,ieee->dev); ieee->softmac_hard_start_xmit(skb, ieee->dev);
} }
} }
inline struct sk_buff *rtllib_probe_req(struct rtllib_device *ieee) inline struct sk_buff *rtllib_probe_req(struct rtllib_device *ieee)
{ {
unsigned int len,rate_len; unsigned int len, rate_len;
u8 *tag; u8 *tag;
struct sk_buff *skb; struct sk_buff *skb;
struct rtllib_probe_request *req; struct rtllib_probe_request *req;
...@@ -377,7 +370,8 @@ inline struct sk_buff *rtllib_probe_req(struct rtllib_device *ieee) ...@@ -377,7 +370,8 @@ inline struct sk_buff *rtllib_probe_req(struct rtllib_device *ieee)
skb_reserve(skb, ieee->tx_headroom); skb_reserve(skb, ieee->tx_headroom);
req = (struct rtllib_probe_request *) skb_put(skb,sizeof(struct rtllib_probe_request)); req = (struct rtllib_probe_request *) skb_put(skb,
sizeof(struct rtllib_probe_request));
req->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_PROBE_REQ); req->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_PROBE_REQ);
req->header.duration_id = 0; req->header.duration_id = 0;
...@@ -385,15 +379,15 @@ inline struct sk_buff *rtllib_probe_req(struct rtllib_device *ieee) ...@@ -385,15 +379,15 @@ inline struct sk_buff *rtllib_probe_req(struct rtllib_device *ieee)
memcpy(req->header.addr2, ieee->dev->dev_addr, ETH_ALEN); memcpy(req->header.addr2, ieee->dev->dev_addr, ETH_ALEN);
memset(req->header.addr3, 0xff, ETH_ALEN); memset(req->header.addr3, 0xff, ETH_ALEN);
tag = (u8 *) skb_put(skb,len+2+rate_len); tag = (u8 *) skb_put(skb, len + 2 + rate_len);
*tag++ = MFIE_TYPE_SSID; *tag++ = MFIE_TYPE_SSID;
*tag++ = len; *tag++ = len;
memcpy(tag, ieee->current_network.ssid, len); memcpy(tag, ieee->current_network.ssid, len);
tag += len; tag += len;
rtllib_MFIE_Brate(ieee,&tag); rtllib_MFIE_Brate(ieee, &tag);
rtllib_MFIE_Grate(ieee,&tag); rtllib_MFIE_Grate(ieee, &tag);
return skb; return skb;
} }
...@@ -407,14 +401,14 @@ void rtllib_send_beacon(struct rtllib_device *ieee) ...@@ -407,14 +401,14 @@ void rtllib_send_beacon(struct rtllib_device *ieee)
return; return;
skb = rtllib_get_beacon_(ieee); skb = rtllib_get_beacon_(ieee);
if (skb){ if (skb) {
softmac_mgmt_xmit(skb, ieee); softmac_mgmt_xmit(skb, ieee);
ieee->softmac_stats.tx_beacons++; ieee->softmac_stats.tx_beacons++;
} }
if (ieee->beacon_txing && ieee->ieee_up){ if (ieee->beacon_txing && ieee->ieee_up)
mod_timer(&ieee->beacon_timer,jiffies+(MSECS(ieee->current_network.beacon_interval-5))); mod_timer(&ieee->beacon_timer, jiffies +
} (MSECS(ieee->current_network.beacon_interval - 5)));
} }
...@@ -431,83 +425,86 @@ void rtllib_send_beacon_cb(unsigned long _ieee) ...@@ -431,83 +425,86 @@ void rtllib_send_beacon_cb(unsigned long _ieee)
/* /*
* Description: * Description:
* Enable network monitor mode, all rx packets will be received. * Enable network monitor mode, all rx packets will be received.
*/ */
void rtllib_EnableNetMonitorMode(struct net_device* dev, void rtllib_EnableNetMonitorMode(struct net_device *dev,
bool bInitState) bool bInitState)
{ {
struct rtllib_device* ieee = netdev_priv_rsl(dev); struct rtllib_device *ieee = netdev_priv_rsl(dev);
printk("========>Enter Monitor Mode\n"); printk(KERN_INFO "========>Enter Monitor Mode\n");
ieee->AllowAllDestAddrHandler(dev, true, !bInitState); ieee->AllowAllDestAddrHandler(dev, true, !bInitState);
} }
/* /*
* Description: * Description:
* Disable network network monitor mode, only packets destinated to * Disable network network monitor mode, only packets destinated to
* us will be received. * us will be received.
*/ */
void rtllib_DisableNetMonitorMode(struct net_device* dev, void rtllib_DisableNetMonitorMode(struct net_device *dev,
bool bInitState) bool bInitState)
{ {
struct rtllib_device* ieee = netdev_priv_rsl(dev); struct rtllib_device *ieee = netdev_priv_rsl(dev);
printk("========>Exit Monitor Mode\n"); printk(KERN_INFO "========>Exit Monitor Mode\n");
ieee->AllowAllDestAddrHandler(dev, false, !bInitState); ieee->AllowAllDestAddrHandler(dev, false, !bInitState);
} }
/* /*
* Description: * Description:
* This enables the specialized promiscuous mode required by Intel. * This enables the specialized promiscuous mode required by Intel.
* In this mode, Intel intends to hear traffics from/to other STAs in the same BSS. * In this mode, Intel intends to hear traffics from/to other STAs in the
* Therefore we don't have to disable checking BSSID and we only need to allow all dest. * same BSS. Therefore we don't have to disable checking BSSID and we only need
* BUT: if we enable checking BSSID then we can't recv packets from other STA. * to allow all dest. BUT: if we enable checking BSSID then we can't recv
* packets from other STA.
*/ */
void rtllib_EnableIntelPromiscuousMode(struct net_device* dev, void rtllib_EnableIntelPromiscuousMode(struct net_device *dev,
bool bInitState) bool bInitState)
{ {
bool bFilterOutNonAssociatedBSSID = false; bool bFilterOutNonAssociatedBSSID = false;
struct rtllib_device* ieee = netdev_priv_rsl(dev); struct rtllib_device *ieee = netdev_priv_rsl(dev);
printk("========>Enter Intel Promiscuous Mode\n"); printk(KERN_INFO "========>Enter Intel Promiscuous Mode\n");
ieee->AllowAllDestAddrHandler(dev, true, !bInitState); ieee->AllowAllDestAddrHandler(dev, true, !bInitState);
ieee->SetHwRegHandler(dev, HW_VAR_CECHK_BSSID, (u8*)&bFilterOutNonAssociatedBSSID); ieee->SetHwRegHandler(dev, HW_VAR_CECHK_BSSID,
(u8 *)&bFilterOutNonAssociatedBSSID);
ieee->bNetPromiscuousMode = true; ieee->bNetPromiscuousMode = true;
} }
/* /*
* Description: * Description:
* This disables the specialized promiscuous mode required by Intel. * This disables the specialized promiscuous mode required by Intel.
* See MgntEnableIntelPromiscuousMode for detail. * See MgntEnableIntelPromiscuousMode for detail.
*/ */
void rtllib_DisableIntelPromiscuousMode(struct net_device* dev, void rtllib_DisableIntelPromiscuousMode(struct net_device *dev,
bool bInitState) bool bInitState)
{ {
bool bFilterOutNonAssociatedBSSID = true; bool bFilterOutNonAssociatedBSSID = true;
struct rtllib_device* ieee = netdev_priv_rsl(dev); struct rtllib_device *ieee = netdev_priv_rsl(dev);
printk("========>Exit Intel Promiscuous Mode\n"); printk(KERN_INFO "========>Exit Intel Promiscuous Mode\n");
ieee->AllowAllDestAddrHandler(dev, false, !bInitState); ieee->AllowAllDestAddrHandler(dev, false, !bInitState);
ieee->SetHwRegHandler(dev, HW_VAR_CECHK_BSSID, (u8*)&bFilterOutNonAssociatedBSSID); ieee->SetHwRegHandler(dev, HW_VAR_CECHK_BSSID,
(u8 *)&bFilterOutNonAssociatedBSSID);
ieee->bNetPromiscuousMode = false; ieee->bNetPromiscuousMode = false;
} }
void rtllib_send_probe(struct rtllib_device *ieee, u8 is_mesh) void rtllib_send_probe(struct rtllib_device *ieee, u8 is_mesh)
{ {
struct sk_buff *skb; struct sk_buff *skb;
skb = rtllib_probe_req(ieee); skb = rtllib_probe_req(ieee);
if (skb){ if (skb) {
softmac_mgmt_xmit(skb, ieee); softmac_mgmt_xmit(skb, ieee);
ieee->softmac_stats.tx_probe_rq++; ieee->softmac_stats.tx_probe_rq++;
} }
...@@ -529,7 +526,8 @@ void rtllib_softmac_hint11d_wq(void *data) ...@@ -529,7 +526,8 @@ void rtllib_softmac_hint11d_wq(void *data)
void rtllib_update_active_chan_map(struct rtllib_device *ieee) void rtllib_update_active_chan_map(struct rtllib_device *ieee)
{ {
memcpy(ieee->active_channel_map, GET_DOT11D_INFO(ieee)->channel_map, MAX_CHANNEL_NUMBER+1); memcpy(ieee->active_channel_map, GET_DOT11D_INFO(ieee)->channel_map,
MAX_CHANNEL_NUMBER+1);
} }
/* this performs syncro scan blocking the caller until all channels /* this performs syncro scan blocking the caller until all channels
...@@ -537,6 +535,7 @@ void rtllib_update_active_chan_map(struct rtllib_device *ieee) ...@@ -537,6 +535,7 @@ void rtllib_update_active_chan_map(struct rtllib_device *ieee)
*/ */
void rtllib_softmac_scan_syncro(struct rtllib_device *ieee, u8 is_mesh) void rtllib_softmac_scan_syncro(struct rtllib_device *ieee, u8 is_mesh)
{ {
union iwreq_data wrqu;
short ch = 0; short ch = 0;
rtllib_update_active_chan_map(ieee); rtllib_update_active_chan_map(ieee);
...@@ -545,14 +544,12 @@ void rtllib_softmac_scan_syncro(struct rtllib_device *ieee, u8 is_mesh) ...@@ -545,14 +544,12 @@ void rtllib_softmac_scan_syncro(struct rtllib_device *ieee, u8 is_mesh)
down(&ieee->scan_sem); down(&ieee->scan_sem);
while(1) while (1) {
{
do { do {
ch++; ch++;
if (ch > MAX_CHANNEL_NUMBER) if (ch > MAX_CHANNEL_NUMBER)
goto out; /* scan completed */ goto out; /* scan completed */
} while(!ieee->active_channel_map[ch]); } while (!ieee->active_channel_map[ch]);
/* this fuction can be called in two situations /* this fuction can be called in two situations
* 1- We have switched to ad-hoc mode and we are * 1- We have switched to ad-hoc mode and we are
...@@ -575,14 +572,14 @@ void rtllib_softmac_scan_syncro(struct rtllib_device *ieee, u8 is_mesh) ...@@ -575,14 +572,14 @@ void rtllib_softmac_scan_syncro(struct rtllib_device *ieee, u8 is_mesh)
if (ieee->state == RTLLIB_LINKED) if (ieee->state == RTLLIB_LINKED)
goto out; goto out;
if (ieee->sync_scan_hurryup){ if (ieee->sync_scan_hurryup) {
printk("============>sync_scan_hurryup out\n"); printk(KERN_INFO "============>sync_scan_hurryup out\n");
goto out; goto out;
} }
ieee->set_chan(ieee->dev, ch); ieee->set_chan(ieee->dev, ch);
if (ieee->active_channel_map[ch] == 1) if (ieee->active_channel_map[ch] == 1)
rtllib_send_probe_requests(ieee, 0); rtllib_send_probe_requests(ieee, 0);
/* this prevent excessive time wait when we /* this prevent excessive time wait when we
* need to wait for a syncro scan to end.. * need to wait for a syncro scan to end..
...@@ -593,7 +590,7 @@ void rtllib_softmac_scan_syncro(struct rtllib_device *ieee, u8 is_mesh) ...@@ -593,7 +590,7 @@ void rtllib_softmac_scan_syncro(struct rtllib_device *ieee, u8 is_mesh)
ieee->actscanning = false; ieee->actscanning = false;
ieee->sync_scan_hurryup = 0; ieee->sync_scan_hurryup = 0;
if (ieee->state >= RTLLIB_LINKED){ if (ieee->state >= RTLLIB_LINKED) {
if (IS_DOT11D_ENABLE(ieee)) if (IS_DOT11D_ENABLE(ieee))
DOT11D_ScanComplete(ieee); DOT11D_ScanComplete(ieee);
} }
...@@ -601,53 +598,52 @@ void rtllib_softmac_scan_syncro(struct rtllib_device *ieee, u8 is_mesh) ...@@ -601,53 +598,52 @@ void rtllib_softmac_scan_syncro(struct rtllib_device *ieee, u8 is_mesh)
ieee->be_scan_inprogress = false; ieee->be_scan_inprogress = false;
{
union iwreq_data wrqu;
memset(&wrqu, 0, sizeof(wrqu)); memset(&wrqu, 0, sizeof(wrqu));
wireless_send_event(ieee->dev,SIOCGIWSCAN,&wrqu,NULL); wireless_send_event(ieee->dev, SIOCGIWSCAN, &wrqu, NULL);
}
} }
void rtllib_softmac_scan_wq(void *data) void rtllib_softmac_scan_wq(void *data)
{ {
struct rtllib_device *ieee = container_of_dwork_rsl(data, struct rtllib_device, softmac_scan_wq); struct rtllib_device *ieee = container_of_dwork_rsl(data,
struct rtllib_device, softmac_scan_wq);
u8 last_channel = ieee->current_network.channel; u8 last_channel = ieee->current_network.channel;
rtllib_update_active_chan_map(ieee); rtllib_update_active_chan_map(ieee);
if (!ieee->ieee_up) if (!ieee->ieee_up)
return; return;
if (rtllib_act_scanning(ieee,true) == true) if (rtllib_act_scanning(ieee, true) == true)
return; return;
down(&ieee->scan_sem); down(&ieee->scan_sem);
if (ieee->eRFPowerState == eRfOff) if (ieee->eRFPowerState == eRfOff) {
{ printk(KERN_INFO "======>%s():rf state is eRfOff, return\n",
printk("======>%s():rf state is eRfOff, return\n",__func__); __func__);
goto out1; goto out1;
} }
do{ do {
ieee->current_network.channel = ieee->current_network.channel =
(ieee->current_network.channel + 1) % MAX_CHANNEL_NUMBER; (ieee->current_network.channel + 1) %
if (ieee->scan_watch_dog++ > MAX_CHANNEL_NUMBER) MAX_CHANNEL_NUMBER;
{ if (ieee->scan_watch_dog++ > MAX_CHANNEL_NUMBER) {
if (!ieee->active_channel_map[ieee->current_network.channel]) if (!ieee->active_channel_map[ieee->current_network.channel])
ieee->current_network.channel = 6; ieee->current_network.channel = 6;
goto out; /* no good chans */ goto out; /* no good chans */
} }
} while(!ieee->active_channel_map[ieee->current_network.channel]); } while (!ieee->active_channel_map[ieee->current_network.channel]);
if (ieee->scanning_continue == 0 ) if (ieee->scanning_continue == 0)
goto out; goto out;
ieee->set_chan(ieee->dev, ieee->current_network.channel); ieee->set_chan(ieee->dev, ieee->current_network.channel);
if (ieee->active_channel_map[ieee->current_network.channel] == 1) if (ieee->active_channel_map[ieee->current_network.channel] == 1)
rtllib_send_probe_requests(ieee, 0); rtllib_send_probe_requests(ieee, 0);
queue_delayed_work_rsl(ieee->wq, &ieee->softmac_scan_wq, MSECS(RTLLIB_SOFTMAC_SCAN_TIME)); queue_delayed_work_rsl(ieee->wq, &ieee->softmac_scan_wq,
MSECS(RTLLIB_SOFTMAC_SCAN_TIME));
up(&ieee->scan_sem); up(&ieee->scan_sem);
return; return;
...@@ -669,24 +665,24 @@ void rtllib_softmac_scan_wq(void *data) ...@@ -669,24 +665,24 @@ void rtllib_softmac_scan_wq(void *data)
void rtllib_beacons_start(struct rtllib_device *ieee) void rtllib_beacons_start(struct rtllib_device *ieee)
{ {
unsigned long flags; unsigned long flags;
spin_lock_irqsave(&ieee->beacon_lock,flags); spin_lock_irqsave(&ieee->beacon_lock, flags);
ieee->beacon_txing = 1; ieee->beacon_txing = 1;
rtllib_send_beacon(ieee); rtllib_send_beacon(ieee);
spin_unlock_irqrestore(&ieee->beacon_lock,flags); spin_unlock_irqrestore(&ieee->beacon_lock, flags);
} }
void rtllib_beacons_stop(struct rtllib_device *ieee) void rtllib_beacons_stop(struct rtllib_device *ieee)
{ {
unsigned long flags; unsigned long flags;
spin_lock_irqsave(&ieee->beacon_lock,flags); spin_lock_irqsave(&ieee->beacon_lock, flags);
ieee->beacon_txing = 0; ieee->beacon_txing = 0;
del_timer_sync(&ieee->beacon_timer); del_timer_sync(&ieee->beacon_timer);
spin_unlock_irqrestore(&ieee->beacon_lock,flags); spin_unlock_irqrestore(&ieee->beacon_lock, flags);
} }
...@@ -725,9 +721,9 @@ void rtllib_softmac_stop_scan(struct rtllib_device *ieee) ...@@ -725,9 +721,9 @@ void rtllib_softmac_stop_scan(struct rtllib_device *ieee)
void rtllib_stop_scan(struct rtllib_device *ieee) void rtllib_stop_scan(struct rtllib_device *ieee)
{ {
if (ieee->softmac_features & IEEE_SOFTMAC_SCAN){ if (ieee->softmac_features & IEEE_SOFTMAC_SCAN) {
rtllib_softmac_stop_scan(ieee); rtllib_softmac_stop_scan(ieee);
}else{ } else {
if (ieee->rtllib_stop_hw_scan) if (ieee->rtllib_stop_hw_scan)
ieee->rtllib_stop_hw_scan(ieee->dev); ieee->rtllib_stop_hw_scan(ieee->dev);
} }
...@@ -735,9 +731,9 @@ void rtllib_stop_scan(struct rtllib_device *ieee) ...@@ -735,9 +731,9 @@ void rtllib_stop_scan(struct rtllib_device *ieee)
void rtllib_stop_scan_syncro(struct rtllib_device *ieee) void rtllib_stop_scan_syncro(struct rtllib_device *ieee)
{ {
if (ieee->softmac_features & IEEE_SOFTMAC_SCAN){ if (ieee->softmac_features & IEEE_SOFTMAC_SCAN) {
ieee->sync_scan_hurryup = 1; ieee->sync_scan_hurryup = 1;
}else{ } else {
if (ieee->rtllib_stop_hw_scan) if (ieee->rtllib_stop_hw_scan)
ieee->rtllib_stop_hw_scan(ieee->dev); ieee->rtllib_stop_hw_scan(ieee->dev);
} }
...@@ -745,13 +741,12 @@ void rtllib_stop_scan_syncro(struct rtllib_device *ieee) ...@@ -745,13 +741,12 @@ void rtllib_stop_scan_syncro(struct rtllib_device *ieee)
bool rtllib_act_scanning(struct rtllib_device *ieee, bool sync_scan) bool rtllib_act_scanning(struct rtllib_device *ieee, bool sync_scan)
{ {
if (ieee->softmac_features & IEEE_SOFTMAC_SCAN){ if (ieee->softmac_features & IEEE_SOFTMAC_SCAN) {
if (sync_scan){ if (sync_scan)
return ieee->be_scan_inprogress; return ieee->be_scan_inprogress;
}else{ else
return (ieee->actscanning ||ieee->be_scan_inprogress); return ieee->actscanning || ieee->be_scan_inprogress;
} } else {
}else{
return test_bit(STATUS_SCANNING, &ieee->status); return test_bit(STATUS_SCANNING, &ieee->status);
} }
} }
...@@ -759,61 +754,55 @@ bool rtllib_act_scanning(struct rtllib_device *ieee, bool sync_scan) ...@@ -759,61 +754,55 @@ bool rtllib_act_scanning(struct rtllib_device *ieee, bool sync_scan)
/* called with ieee->lock held */ /* called with ieee->lock held */
void rtllib_start_scan(struct rtllib_device *ieee) void rtllib_start_scan(struct rtllib_device *ieee)
{ {
RT_TRACE(COMP_DBG, "===>%s()\n",__func__); RT_TRACE(COMP_DBG, "===>%s()\n", __func__);
if (ieee->rtllib_ips_leave_wq != NULL) if (ieee->rtllib_ips_leave_wq != NULL)
ieee->rtllib_ips_leave_wq(ieee->dev); ieee->rtllib_ips_leave_wq(ieee->dev);
if (IS_DOT11D_ENABLE(ieee)) {
if (IS_DOT11D_ENABLE(ieee) )
{
if (IS_COUNTRY_IE_VALID(ieee)) if (IS_COUNTRY_IE_VALID(ieee))
{
RESET_CIE_WATCHDOG(ieee); RESET_CIE_WATCHDOG(ieee);
}
} }
if (ieee->softmac_features & IEEE_SOFTMAC_SCAN) { if (ieee->softmac_features & IEEE_SOFTMAC_SCAN) {
if (ieee->scanning_continue == 0) { if (ieee->scanning_continue == 0) {
ieee->actscanning = true; ieee->actscanning = true;
ieee->scanning_continue = 1; ieee->scanning_continue = 1;
queue_delayed_work_rsl(ieee->wq, &ieee->softmac_scan_wq, 0); queue_delayed_work_rsl(ieee->wq,
&ieee->softmac_scan_wq, 0);
} }
} else { } else {
if (ieee->rtllib_start_hw_scan) if (ieee->rtllib_start_hw_scan)
ieee->rtllib_start_hw_scan(ieee->dev); ieee->rtllib_start_hw_scan(ieee->dev);
} }
} }
/* called with wx_sem held */ /* called with wx_sem held */
void rtllib_start_scan_syncro(struct rtllib_device *ieee, u8 is_mesh) void rtllib_start_scan_syncro(struct rtllib_device *ieee, u8 is_mesh)
{ {
if (IS_DOT11D_ENABLE(ieee) ) if (IS_DOT11D_ENABLE(ieee)) {
{
if (IS_COUNTRY_IE_VALID(ieee)) if (IS_COUNTRY_IE_VALID(ieee))
{
RESET_CIE_WATCHDOG(ieee); RESET_CIE_WATCHDOG(ieee);
}
} }
ieee->sync_scan_hurryup = 0; ieee->sync_scan_hurryup = 0;
if (ieee->softmac_features & IEEE_SOFTMAC_SCAN){ if (ieee->softmac_features & IEEE_SOFTMAC_SCAN) {
rtllib_softmac_scan_syncro(ieee, is_mesh); rtllib_softmac_scan_syncro(ieee, is_mesh);
}else{ } else {
if (ieee->rtllib_start_hw_scan) if (ieee->rtllib_start_hw_scan)
ieee->rtllib_start_hw_scan(ieee->dev); ieee->rtllib_start_hw_scan(ieee->dev);
} }
} }
inline struct sk_buff *rtllib_authentication_req(struct rtllib_network *beacon, inline struct sk_buff *rtllib_authentication_req(struct rtllib_network *beacon,
struct rtllib_device *ieee, int challengelen,u8 * daddr) struct rtllib_device *ieee, int challengelen, u8 *daddr)
{ {
struct sk_buff *skb; struct sk_buff *skb;
struct rtllib_authentication *auth; struct rtllib_authentication *auth;
int len = 0; int len = 0;
len = sizeof(struct rtllib_authentication) + challengelen + ieee->tx_headroom + 4; len = sizeof(struct rtllib_authentication) + challengelen +
ieee->tx_headroom + 4;
skb = dev_alloc_skb(len); skb = dev_alloc_skb(len);
if (!skb) return NULL; if (!skb)
return NULL;
skb_reserve(skb, ieee->tx_headroom); skb_reserve(skb, ieee->tx_headroom);
...@@ -821,10 +810,11 @@ inline struct sk_buff *rtllib_authentication_req(struct rtllib_network *beacon, ...@@ -821,10 +810,11 @@ inline struct sk_buff *rtllib_authentication_req(struct rtllib_network *beacon,
skb_put(skb, sizeof(struct rtllib_authentication)); skb_put(skb, sizeof(struct rtllib_authentication));
auth->header.frame_ctl = RTLLIB_STYPE_AUTH; auth->header.frame_ctl = RTLLIB_STYPE_AUTH;
if (challengelen) auth->header.frame_ctl |= RTLLIB_FCTL_WEP; if (challengelen)
auth->header.frame_ctl |= RTLLIB_FCTL_WEP;
auth->header.duration_id = 0x013a; auth->header.duration_id = 0x013a;
memcpy(auth->header.addr1, beacon->bssid, ETH_ALEN); memcpy(auth->header.addr1, beacon->bssid, ETH_ALEN);
memcpy(auth->header.addr2, ieee->dev->dev_addr, ETH_ALEN); memcpy(auth->header.addr2, ieee->dev->dev_addr, ETH_ALEN);
memcpy(auth->header.addr3, beacon->bssid, ETH_ALEN); memcpy(auth->header.addr3, beacon->bssid, ETH_ALEN);
if (ieee->auth_mode == 0) if (ieee->auth_mode == 0)
...@@ -839,22 +829,18 @@ inline struct sk_buff *rtllib_authentication_req(struct rtllib_network *beacon, ...@@ -839,22 +829,18 @@ inline struct sk_buff *rtllib_authentication_req(struct rtllib_network *beacon,
auth->status = cpu_to_le16(WLAN_STATUS_SUCCESS); auth->status = cpu_to_le16(WLAN_STATUS_SUCCESS);
return skb; return skb;
} }
void constructWMMIE(u8* wmmie, u8* wmm_len,u8 oui_subtype) void constructWMMIE(u8 *wmmie, u8 *wmm_len, u8 oui_subtype)
{ {
u8 szQoSOUI[] ={221, 0, 0x00, 0x50, 0xf2, 0x02, 0, 1}; u8 szQoSOUI[] = {221, 0, 0x00, 0x50, 0xf2, 0x02, 0, 1};
if (oui_subtype == OUI_SUBTYPE_QOS_CAPABI) if (oui_subtype == OUI_SUBTYPE_QOS_CAPABI) {
{
szQoSOUI[0] = 46; szQoSOUI[0] = 46;
szQoSOUI[1] = *wmm_len; szQoSOUI[1] = *wmm_len;
memcpy(wmmie,szQoSOUI,3); memcpy(wmmie, szQoSOUI, 3);
*wmm_len = 3; *wmm_len = 3;
} } else {
else
{
szQoSOUI[1] = *wmm_len + 6; szQoSOUI[1] = *wmm_len + 6;
szQoSOUI[6] = oui_subtype; szQoSOUI[6] = oui_subtype;
memcpy(wmmie, szQoSOUI, 8); memcpy(wmmie, szQoSOUI, 8);
...@@ -863,15 +849,15 @@ void constructWMMIE(u8* wmmie, u8* wmm_len,u8 oui_subtype) ...@@ -863,15 +849,15 @@ void constructWMMIE(u8* wmmie, u8* wmm_len,u8 oui_subtype)
} }
} }
static struct sk_buff* rtllib_probe_resp(struct rtllib_device *ieee, u8 *dest) static struct sk_buff *rtllib_probe_resp(struct rtllib_device *ieee, u8 *dest)
{ {
u8 *tag; u8 *tag;
int beacon_size; int beacon_size;
struct rtllib_probe_response *beacon_buf; struct rtllib_probe_response *beacon_buf;
struct sk_buff *skb = NULL; struct sk_buff *skb = NULL;
int encrypt; int encrypt;
int atim_len,erp_len; int atim_len, erp_len;
struct rtllib_crypt_data* crypt; struct rtllib_crypt_data *crypt;
char *ssid = ieee->current_network.ssid; char *ssid = ieee->current_network.ssid;
int ssid_len = ieee->current_network.ssid_len; int ssid_len = ieee->current_network.ssid_len;
...@@ -880,82 +866,83 @@ static struct sk_buff* rtllib_probe_resp(struct rtllib_device *ieee, u8 *dest) ...@@ -880,82 +866,83 @@ static struct sk_buff* rtllib_probe_resp(struct rtllib_device *ieee, u8 *dest)
int wpa_ie_len = ieee->wpa_ie_len; int wpa_ie_len = ieee->wpa_ie_len;
u8 erpinfo_content = 0; u8 erpinfo_content = 0;
u8* tmp_ht_cap_buf = NULL; u8 *tmp_ht_cap_buf = NULL;
u8 tmp_ht_cap_len = 0; u8 tmp_ht_cap_len = 0;
u8* tmp_ht_info_buf = NULL; u8 *tmp_ht_info_buf = NULL;
u8 tmp_ht_info_len = 0; u8 tmp_ht_info_len = 0;
struct rt_hi_throughput *pHTInfo = ieee->pHTInfo; struct rt_hi_throughput *pHTInfo = ieee->pHTInfo;
u8* tmp_generic_ie_buf = NULL; u8 *tmp_generic_ie_buf = NULL;
u8 tmp_generic_ie_len = 0; u8 tmp_generic_ie_len = 0;
if (rate_ex_len > 0) if (rate_ex_len > 0)
rate_ex_len+=2; rate_ex_len += 2;
if (ieee->current_network.capability & WLAN_CAPABILITY_IBSS) if (ieee->current_network.capability & WLAN_CAPABILITY_IBSS)
atim_len = 4; atim_len = 4;
else else
atim_len = 0; atim_len = 0;
if ((ieee->current_network.mode == IEEE_G) if ((ieee->current_network.mode == IEEE_G) ||
||( ieee->current_network.mode == IEEE_N_24G && ieee->pHTInfo->bCurSuppCCK)) { (ieee->current_network.mode == IEEE_N_24G &&
ieee->pHTInfo->bCurSuppCCK)) {
erp_len = 3; erp_len = 3;
erpinfo_content = 0; erpinfo_content = 0;
if (ieee->current_network.buseprotection) if (ieee->current_network.buseprotection)
erpinfo_content |= ERP_UseProtection; erpinfo_content |= ERP_UseProtection;
} } else
else
erp_len = 0; erp_len = 0;
crypt = ieee->crypt[ieee->tx_keyidx]; crypt = ieee->crypt[ieee->tx_keyidx];
encrypt = ieee->host_encrypt && crypt && crypt->ops && encrypt = ieee->host_encrypt && crypt && crypt->ops &&
((0 == strcmp(crypt->ops->name, "WEP") || wpa_ie_len)); ((0 == strcmp(crypt->ops->name, "WEP") || wpa_ie_len));
if (ieee->pHTInfo->bCurrentHTSupport){ if (ieee->pHTInfo->bCurrentHTSupport) {
tmp_ht_cap_buf =(u8*) &(ieee->pHTInfo->SelfHTCap); tmp_ht_cap_buf = (u8 *) &(ieee->pHTInfo->SelfHTCap);
tmp_ht_cap_len = sizeof(ieee->pHTInfo->SelfHTCap); tmp_ht_cap_len = sizeof(ieee->pHTInfo->SelfHTCap);
tmp_ht_info_buf =(u8*) &(ieee->pHTInfo->SelfHTInfo); tmp_ht_info_buf = (u8 *) &(ieee->pHTInfo->SelfHTInfo);
tmp_ht_info_len = sizeof(ieee->pHTInfo->SelfHTInfo); tmp_ht_info_len = sizeof(ieee->pHTInfo->SelfHTInfo);
HTConstructCapabilityElement(ieee, tmp_ht_cap_buf, &tmp_ht_cap_len,encrypt, false); HTConstructCapabilityElement(ieee, tmp_ht_cap_buf,
HTConstructInfoElement(ieee,tmp_ht_info_buf,&tmp_ht_info_len, encrypt); &tmp_ht_cap_len, encrypt, false);
HTConstructInfoElement(ieee, tmp_ht_info_buf, &tmp_ht_info_len,
encrypt);
if (pHTInfo->bRegRT2RTAggregation) {
if (pHTInfo->bRegRT2RTAggregation)
{
tmp_generic_ie_buf = ieee->pHTInfo->szRT2RTAggBuffer; tmp_generic_ie_buf = ieee->pHTInfo->szRT2RTAggBuffer;
tmp_generic_ie_len = sizeof(ieee->pHTInfo->szRT2RTAggBuffer); tmp_generic_ie_len =
HTConstructRT2RTAggElement(ieee, tmp_generic_ie_buf, &tmp_generic_ie_len); sizeof(ieee->pHTInfo->szRT2RTAggBuffer);
HTConstructRT2RTAggElement(ieee, tmp_generic_ie_buf,
&tmp_generic_ie_len);
} }
} }
beacon_size = sizeof(struct rtllib_probe_response)+2+ beacon_size = sizeof(struct rtllib_probe_response)+2+
ssid_len ssid_len + 3 + rate_len + rate_ex_len + atim_len + erp_len
+3 + wpa_ie_len + ieee->tx_headroom;
+rate_len
+rate_ex_len
+atim_len
+erp_len
+wpa_ie_len
+ieee->tx_headroom;
skb = dev_alloc_skb(beacon_size); skb = dev_alloc_skb(beacon_size);
if (!skb) if (!skb)
return NULL; return NULL;
skb_reserve(skb, ieee->tx_headroom); skb_reserve(skb, ieee->tx_headroom);
beacon_buf = (struct rtllib_probe_response*) skb_put(skb, (beacon_size - ieee->tx_headroom)); beacon_buf = (struct rtllib_probe_response *) skb_put(skb,
memcpy (beacon_buf->header.addr1, dest,ETH_ALEN); (beacon_size - ieee->tx_headroom));
memcpy (beacon_buf->header.addr2, ieee->dev->dev_addr, ETH_ALEN); memcpy(beacon_buf->header.addr1, dest, ETH_ALEN);
memcpy (beacon_buf->header.addr3, ieee->current_network.bssid, ETH_ALEN); memcpy(beacon_buf->header.addr2, ieee->dev->dev_addr, ETH_ALEN);
memcpy(beacon_buf->header.addr3, ieee->current_network.bssid, ETH_ALEN);
beacon_buf->header.duration_id = 0; beacon_buf->header.duration_id = 0;
beacon_buf->beacon_interval = beacon_buf->beacon_interval =
cpu_to_le16(ieee->current_network.beacon_interval); cpu_to_le16(ieee->current_network.beacon_interval);
beacon_buf->capability = beacon_buf->capability =
cpu_to_le16(ieee->current_network.capability & WLAN_CAPABILITY_IBSS); cpu_to_le16(ieee->current_network.capability &
WLAN_CAPABILITY_IBSS);
beacon_buf->capability |= beacon_buf->capability |=
cpu_to_le16(ieee->current_network.capability & WLAN_CAPABILITY_SHORT_PREAMBLE); cpu_to_le16(ieee->current_network.capability &
WLAN_CAPABILITY_SHORT_PREAMBLE);
if (ieee->short_slot && (ieee->current_network.capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)) if (ieee->short_slot && (ieee->current_network.capability &
cpu_to_le16((beacon_buf->capability |= WLAN_CAPABILITY_SHORT_SLOT_TIME)); WLAN_CAPABILITY_SHORT_SLOT_TIME))
cpu_to_le16((beacon_buf->capability |=
WLAN_CAPABILITY_SHORT_SLOT_TIME));
crypt = ieee->crypt[ieee->tx_keyidx]; crypt = ieee->crypt[ieee->tx_keyidx];
if (encrypt) if (encrypt)
...@@ -966,7 +953,7 @@ static struct sk_buff* rtllib_probe_resp(struct rtllib_device *ieee, u8 *dest) ...@@ -966,7 +953,7 @@ static struct sk_buff* rtllib_probe_resp(struct rtllib_device *ieee, u8 *dest)
beacon_buf->info_element[0].id = MFIE_TYPE_SSID; beacon_buf->info_element[0].id = MFIE_TYPE_SSID;
beacon_buf->info_element[0].len = ssid_len; beacon_buf->info_element[0].len = ssid_len;
tag = (u8*) beacon_buf->info_element[0].data; tag = (u8 *) beacon_buf->info_element[0].data;
memcpy(tag, ssid, ssid_len); memcpy(tag, ssid, ssid_len);
...@@ -974,58 +961,55 @@ static struct sk_buff* rtllib_probe_resp(struct rtllib_device *ieee, u8 *dest) ...@@ -974,58 +961,55 @@ static struct sk_buff* rtllib_probe_resp(struct rtllib_device *ieee, u8 *dest)
*(tag++) = MFIE_TYPE_RATES; *(tag++) = MFIE_TYPE_RATES;
*(tag++) = rate_len-2; *(tag++) = rate_len-2;
memcpy(tag,ieee->current_network.rates,rate_len-2); memcpy(tag, ieee->current_network.rates, rate_len-2);
tag+=rate_len-2; tag += rate_len-2;
*(tag++) = MFIE_TYPE_DS_SET; *(tag++) = MFIE_TYPE_DS_SET;
*(tag++) = 1; *(tag++) = 1;
*(tag++) = ieee->current_network.channel; *(tag++) = ieee->current_network.channel;
if (atim_len){ if (atim_len) {
u16 val16; u16 val16;
*(tag++) = MFIE_TYPE_IBSS_SET; *(tag++) = MFIE_TYPE_IBSS_SET;
*(tag++) = 2; *(tag++) = 2;
val16 = cpu_to_le16(ieee->current_network.atim_window); val16 = cpu_to_le16(ieee->current_network.atim_window);
memcpy((u8 *)tag, (u8 *)&val16, 2); memcpy((u8 *)tag, (u8 *)&val16, 2);
tag+=2; tag += 2;
} }
if (erp_len){ if (erp_len) {
*(tag++) = MFIE_TYPE_ERP; *(tag++) = MFIE_TYPE_ERP;
*(tag++) = 1; *(tag++) = 1;
*(tag++) = erpinfo_content; *(tag++) = erpinfo_content;
} }
if (rate_ex_len){ if (rate_ex_len) {
*(tag++) = MFIE_TYPE_RATES_EX; *(tag++) = MFIE_TYPE_RATES_EX;
*(tag++) = rate_ex_len-2; *(tag++) = rate_ex_len-2;
memcpy(tag,ieee->current_network.rates_ex,rate_ex_len-2); memcpy(tag, ieee->current_network.rates_ex, rate_ex_len-2);
tag+=rate_ex_len-2; tag += rate_ex_len-2;
} }
if (wpa_ie_len) if (wpa_ie_len) {
{
if (ieee->iw_mode == IW_MODE_ADHOC) if (ieee->iw_mode == IW_MODE_ADHOC)
{
memcpy(&ieee->wpa_ie[14], &ieee->wpa_ie[8], 4); memcpy(&ieee->wpa_ie[14], &ieee->wpa_ie[8], 4);
}
memcpy(tag, ieee->wpa_ie, ieee->wpa_ie_len); memcpy(tag, ieee->wpa_ie, ieee->wpa_ie_len);
tag += ieee->wpa_ie_len; tag += ieee->wpa_ie_len;
} }
return skb; return skb;
} }
struct sk_buff* rtllib_assoc_resp(struct rtllib_device *ieee, u8 *dest) struct sk_buff *rtllib_assoc_resp(struct rtllib_device *ieee, u8 *dest)
{ {
struct sk_buff *skb; struct sk_buff *skb;
u8* tag; u8 *tag;
struct rtllib_crypt_data* crypt; struct rtllib_crypt_data *crypt;
struct rtllib_assoc_response_frame *assoc; struct rtllib_assoc_response_frame *assoc;
short encrypt; short encrypt;
unsigned int rate_len = rtllib_MFIE_rate_len(ieee); unsigned int rate_len = rtllib_MFIE_rate_len(ieee);
int len = sizeof(struct rtllib_assoc_response_frame) + rate_len + ieee->tx_headroom; int len = sizeof(struct rtllib_assoc_response_frame) + rate_len +
ieee->tx_headroom;
skb = dev_alloc_skb(len); skb = dev_alloc_skb(len);
...@@ -1035,10 +1019,10 @@ struct sk_buff* rtllib_assoc_resp(struct rtllib_device *ieee, u8 *dest) ...@@ -1035,10 +1019,10 @@ struct sk_buff* rtllib_assoc_resp(struct rtllib_device *ieee, u8 *dest)
skb_reserve(skb, ieee->tx_headroom); skb_reserve(skb, ieee->tx_headroom);
assoc = (struct rtllib_assoc_response_frame *) assoc = (struct rtllib_assoc_response_frame *)
skb_put(skb,sizeof(struct rtllib_assoc_response_frame)); skb_put(skb, sizeof(struct rtllib_assoc_response_frame));
assoc->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_ASSOC_RESP); assoc->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_ASSOC_RESP);
memcpy(assoc->header.addr1, dest,ETH_ALEN); memcpy(assoc->header.addr1, dest, ETH_ALEN);
memcpy(assoc->header.addr3, ieee->dev->dev_addr, ETH_ALEN); memcpy(assoc->header.addr3, ieee->dev->dev_addr, ETH_ALEN);
memcpy(assoc->header.addr2, ieee->dev->dev_addr, ETH_ALEN); memcpy(assoc->header.addr2, ieee->dev->dev_addr, ETH_ALEN);
assoc->capability = cpu_to_le16(ieee->iw_mode == IW_MODE_MASTER ? assoc->capability = cpu_to_le16(ieee->iw_mode == IW_MODE_MASTER ?
...@@ -1046,14 +1030,15 @@ struct sk_buff* rtllib_assoc_resp(struct rtllib_device *ieee, u8 *dest) ...@@ -1046,14 +1030,15 @@ struct sk_buff* rtllib_assoc_resp(struct rtllib_device *ieee, u8 *dest)
if (ieee->short_slot) if (ieee->short_slot)
assoc->capability |= cpu_to_le16(WLAN_CAPABILITY_SHORT_SLOT_TIME); assoc->capability |=
cpu_to_le16(WLAN_CAPABILITY_SHORT_SLOT_TIME);
if (ieee->host_encrypt) if (ieee->host_encrypt)
crypt = ieee->crypt[ieee->tx_keyidx]; crypt = ieee->crypt[ieee->tx_keyidx];
else else
crypt = NULL; crypt = NULL;
encrypt = ( crypt && crypt->ops); encrypt = (crypt && crypt->ops);
if (encrypt) if (encrypt)
assoc->capability |= cpu_to_le16(WLAN_CAPABILITY_PRIVACY); assoc->capability |= cpu_to_le16(WLAN_CAPABILITY_PRIVACY);
...@@ -1061,22 +1046,23 @@ struct sk_buff* rtllib_assoc_resp(struct rtllib_device *ieee, u8 *dest) ...@@ -1061,22 +1046,23 @@ struct sk_buff* rtllib_assoc_resp(struct rtllib_device *ieee, u8 *dest)
assoc->status = 0; assoc->status = 0;
assoc->aid = cpu_to_le16(ieee->assoc_id); assoc->aid = cpu_to_le16(ieee->assoc_id);
if (ieee->assoc_id == 0x2007) if (ieee->assoc_id == 0x2007)
ieee->assoc_id=0; ieee->assoc_id = 0;
else else
ieee->assoc_id++; ieee->assoc_id++;
tag = (u8*) skb_put(skb, rate_len); tag = (u8 *) skb_put(skb, rate_len);
rtllib_MFIE_Brate(ieee, &tag); rtllib_MFIE_Brate(ieee, &tag);
rtllib_MFIE_Grate(ieee, &tag); rtllib_MFIE_Grate(ieee, &tag);
return skb; return skb;
} }
struct sk_buff* rtllib_auth_resp(struct rtllib_device *ieee,int status, u8 *dest) struct sk_buff *rtllib_auth_resp(struct rtllib_device *ieee, int status,
u8 *dest)
{ {
struct sk_buff *skb = NULL; struct sk_buff *skb = NULL;
struct rtllib_authentication *auth; struct rtllib_authentication *auth;
int len = ieee->tx_headroom + sizeof(struct rtllib_authentication)+1; int len = ieee->tx_headroom + sizeof(struct rtllib_authentication) + 1;
skb = dev_alloc_skb(len); skb = dev_alloc_skb(len);
if (!skb) if (!skb)
return NULL; return NULL;
...@@ -1101,10 +1087,10 @@ struct sk_buff* rtllib_auth_resp(struct rtllib_device *ieee,int status, u8 *dest ...@@ -1101,10 +1087,10 @@ struct sk_buff* rtllib_auth_resp(struct rtllib_device *ieee,int status, u8 *dest
} }
struct sk_buff* rtllib_null_func(struct rtllib_device *ieee,short pwr) struct sk_buff *rtllib_null_func(struct rtllib_device *ieee, short pwr)
{ {
struct sk_buff *skb; struct sk_buff *skb;
struct rtllib_hdr_3addr* hdr; struct rtllib_hdr_3addr *hdr;
skb = dev_alloc_skb(sizeof(struct rtllib_hdr_3addr)+ieee->tx_headroom); skb = dev_alloc_skb(sizeof(struct rtllib_hdr_3addr)+ieee->tx_headroom);
if (!skb) if (!skb)
...@@ -1112,7 +1098,8 @@ struct sk_buff* rtllib_null_func(struct rtllib_device *ieee,short pwr) ...@@ -1112,7 +1098,8 @@ struct sk_buff* rtllib_null_func(struct rtllib_device *ieee,short pwr)
skb_reserve(skb, ieee->tx_headroom); skb_reserve(skb, ieee->tx_headroom);
hdr = (struct rtllib_hdr_3addr*)skb_put(skb,sizeof(struct rtllib_hdr_3addr)); hdr = (struct rtllib_hdr_3addr *)skb_put(skb,
sizeof(struct rtllib_hdr_3addr));
memcpy(hdr->addr1, ieee->current_network.bssid, ETH_ALEN); memcpy(hdr->addr1, ieee->current_network.bssid, ETH_ALEN);
memcpy(hdr->addr2, ieee->dev->dev_addr, ETH_ALEN); memcpy(hdr->addr2, ieee->dev->dev_addr, ETH_ALEN);
...@@ -1120,17 +1107,17 @@ struct sk_buff* rtllib_null_func(struct rtllib_device *ieee,short pwr) ...@@ -1120,17 +1107,17 @@ struct sk_buff* rtllib_null_func(struct rtllib_device *ieee,short pwr)
hdr->frame_ctl = cpu_to_le16(RTLLIB_FTYPE_DATA | hdr->frame_ctl = cpu_to_le16(RTLLIB_FTYPE_DATA |
RTLLIB_STYPE_NULLFUNC | RTLLIB_FCTL_TODS | RTLLIB_STYPE_NULLFUNC | RTLLIB_FCTL_TODS |
(pwr ? RTLLIB_FCTL_PM:0)); (pwr ? RTLLIB_FCTL_PM : 0));
return skb; return skb;
} }
struct sk_buff* rtllib_pspoll_func(struct rtllib_device *ieee) struct sk_buff *rtllib_pspoll_func(struct rtllib_device *ieee)
{ {
struct sk_buff *skb; struct sk_buff *skb;
struct rtllib_pspoll_hdr* hdr; struct rtllib_pspoll_hdr *hdr;
skb = dev_alloc_skb(sizeof(struct rtllib_pspoll_hdr)+ieee->tx_headroom); skb = dev_alloc_skb(sizeof(struct rtllib_pspoll_hdr)+ieee->tx_headroom);
if (!skb) if (!skb)
...@@ -1138,19 +1125,21 @@ struct sk_buff* rtllib_pspoll_func(struct rtllib_device *ieee) ...@@ -1138,19 +1125,21 @@ struct sk_buff* rtllib_pspoll_func(struct rtllib_device *ieee)
skb_reserve(skb, ieee->tx_headroom); skb_reserve(skb, ieee->tx_headroom);
hdr = (struct rtllib_pspoll_hdr*)skb_put(skb,sizeof(struct rtllib_pspoll_hdr)); hdr = (struct rtllib_pspoll_hdr *)skb_put(skb,
sizeof(struct rtllib_pspoll_hdr));
memcpy(hdr->bssid, ieee->current_network.bssid, ETH_ALEN); memcpy(hdr->bssid, ieee->current_network.bssid, ETH_ALEN);
memcpy(hdr->ta, ieee->dev->dev_addr, ETH_ALEN); memcpy(hdr->ta, ieee->dev->dev_addr, ETH_ALEN);
hdr->aid = cpu_to_le16(ieee->assoc_id | 0xc000); hdr->aid = cpu_to_le16(ieee->assoc_id | 0xc000);
hdr->frame_ctl = cpu_to_le16(RTLLIB_FTYPE_CTL |RTLLIB_STYPE_PSPOLL | RTLLIB_FCTL_PM); hdr->frame_ctl = cpu_to_le16(RTLLIB_FTYPE_CTL | RTLLIB_STYPE_PSPOLL |
RTLLIB_FCTL_PM);
return skb; return skb;
} }
void rtllib_resp_to_assoc_rq(struct rtllib_device *ieee, u8* dest) void rtllib_resp_to_assoc_rq(struct rtllib_device *ieee, u8 *dest)
{ {
struct sk_buff *buf = rtllib_assoc_resp(ieee, dest); struct sk_buff *buf = rtllib_assoc_resp(ieee, dest);
...@@ -1159,7 +1148,7 @@ void rtllib_resp_to_assoc_rq(struct rtllib_device *ieee, u8* dest) ...@@ -1159,7 +1148,7 @@ void rtllib_resp_to_assoc_rq(struct rtllib_device *ieee, u8* dest)
} }
void rtllib_resp_to_auth(struct rtllib_device *ieee, int s, u8* dest) void rtllib_resp_to_auth(struct rtllib_device *ieee, int s, u8 *dest)
{ {
struct sk_buff *buf = rtllib_auth_resp(ieee, s, dest); struct sk_buff *buf = rtllib_auth_resp(ieee, s, dest);
...@@ -1181,110 +1170,98 @@ inline int SecIsInPMKIDList(struct rtllib_device *ieee, u8 *bssid) ...@@ -1181,110 +1170,98 @@ inline int SecIsInPMKIDList(struct rtllib_device *ieee, u8 *bssid)
{ {
int i = 0; int i = 0;
do do {
{ if ((ieee->PMKIDList[i].bUsed) &&
if ((ieee->PMKIDList[i].bUsed) && (memcmp(ieee->PMKIDList[i].Bssid, bssid, ETH_ALEN) == 0)) (memcmp(ieee->PMKIDList[i].Bssid, bssid, ETH_ALEN) == 0))
{
break; break;
}
else else
{
i++; i++;
}
} while (i < NUM_PMKID_CACHE); } while (i < NUM_PMKID_CACHE);
if (i == NUM_PMKID_CACHE) if (i == NUM_PMKID_CACHE)
{
i = -1; i = -1;
} return i;
else
{
}
return (i);
} }
inline struct sk_buff *rtllib_association_req(struct rtllib_network *beacon,
inline struct sk_buff *rtllib_association_req(struct rtllib_network *beacon,struct rtllib_device *ieee) struct rtllib_device *ieee)
{ {
struct sk_buff *skb; struct sk_buff *skb;
struct rtllib_assoc_request_frame *hdr; struct rtllib_assoc_request_frame *hdr;
u8 *tag, *ies; u8 *tag, *ies;
int i; int i;
u8* ht_cap_buf = NULL; u8 *ht_cap_buf = NULL;
u8 ht_cap_len=0; u8 ht_cap_len = 0;
u8* realtek_ie_buf=NULL; u8 *realtek_ie_buf = NULL;
u8 realtek_ie_len=0; u8 realtek_ie_len = 0;
int wpa_ie_len= ieee->wpa_ie_len; int wpa_ie_len = ieee->wpa_ie_len;
int wps_ie_len = ieee->wps_ie_len; int wps_ie_len = ieee->wps_ie_len;
unsigned int ckip_ie_len=0; unsigned int ckip_ie_len = 0;
unsigned int ccxrm_ie_len=0; unsigned int ccxrm_ie_len = 0;
unsigned int cxvernum_ie_len=0; unsigned int cxvernum_ie_len = 0;
struct rtllib_crypt_data* crypt; struct rtllib_crypt_data *crypt;
int encrypt; int encrypt;
int PMKCacheIdx; int PMKCacheIdx;
unsigned int rate_len = (beacon->rates_len?(beacon->rates_len+2):0) + (beacon->rates_ex_len?(beacon->rates_ex_len)+2:0); unsigned int rate_len = (beacon->rates_len ?
(beacon->rates_len + 2) : 0) +
(beacon->rates_ex_len ? (beacon->rates_ex_len) +
2 : 0);
unsigned int wmm_info_len = beacon->qos_data.supported?9:0; unsigned int wmm_info_len = beacon->qos_data.supported ? 9 : 0;
unsigned int turbo_info_len = beacon->Turbo_Enable?9:0; unsigned int turbo_info_len = beacon->Turbo_Enable ? 9 : 0;
int len = 0; int len = 0;
crypt = ieee->crypt[ieee->tx_keyidx]; crypt = ieee->crypt[ieee->tx_keyidx];
if (crypt != NULL) { if (crypt != NULL)
encrypt = ieee->host_encrypt && crypt && crypt->ops && ((0 == strcmp(crypt->ops->name,"WEP") || wpa_ie_len)); encrypt = ieee->host_encrypt && crypt && crypt->ops &&
} else { ((0 == strcmp(crypt->ops->name, "WEP") ||
wpa_ie_len));
else
encrypt = 0; encrypt = 0;
}
if ((ieee->rtllib_ap_sec_type && (ieee->rtllib_ap_sec_type(ieee)&SEC_ALG_TKIP)) ||(ieee->bForcedBgMode == true)) if ((ieee->rtllib_ap_sec_type &&
{ (ieee->rtllib_ap_sec_type(ieee) & SEC_ALG_TKIP)) ||
(ieee->bForcedBgMode == true)) {
ieee->pHTInfo->bEnableHT = 0; ieee->pHTInfo->bEnableHT = 0;
ieee->mode = WIRELESS_MODE_G; ieee->mode = WIRELESS_MODE_G;
} }
if (ieee->pHTInfo->bCurrentHTSupport&&ieee->pHTInfo->bEnableHT) if (ieee->pHTInfo->bCurrentHTSupport && ieee->pHTInfo->bEnableHT) {
{ ht_cap_buf = (u8 *)&(ieee->pHTInfo->SelfHTCap);
ht_cap_buf = (u8*)&(ieee->pHTInfo->SelfHTCap);
ht_cap_len = sizeof(ieee->pHTInfo->SelfHTCap); ht_cap_len = sizeof(ieee->pHTInfo->SelfHTCap);
HTConstructCapabilityElement(ieee, ht_cap_buf, &ht_cap_len, encrypt, true); HTConstructCapabilityElement(ieee, ht_cap_buf, &ht_cap_len,
encrypt, true);
if (ieee->pHTInfo->bCurrentRT2RTAggregation) { if (ieee->pHTInfo->bCurrentRT2RTAggregation) {
realtek_ie_buf = ieee->pHTInfo->szRT2RTAggBuffer; realtek_ie_buf = ieee->pHTInfo->szRT2RTAggBuffer;
realtek_ie_len = sizeof( ieee->pHTInfo->szRT2RTAggBuffer); realtek_ie_len =
HTConstructRT2RTAggElement(ieee, realtek_ie_buf, &realtek_ie_len); sizeof(ieee->pHTInfo->szRT2RTAggBuffer);
HTConstructRT2RTAggElement(ieee, realtek_ie_buf,
&realtek_ie_len);
} }
} }
if (beacon->bCkipSupported) if (beacon->bCkipSupported)
{
ckip_ie_len = 30+2; ckip_ie_len = 30+2;
}
if (beacon->bCcxRmEnable) if (beacon->bCcxRmEnable)
{
ccxrm_ie_len = 6+2; ccxrm_ie_len = 6+2;
} if (beacon->BssCcxVerNumber >= 2)
if ( beacon->BssCcxVerNumber >= 2 )
{
cxvernum_ie_len = 5+2; cxvernum_ie_len = 5+2;
}
PMKCacheIdx = SecIsInPMKIDList(ieee, ieee->current_network.bssid); PMKCacheIdx = SecIsInPMKIDList(ieee, ieee->current_network.bssid);
if (PMKCacheIdx >= 0) if (PMKCacheIdx >= 0) {
{
wpa_ie_len += 18; wpa_ie_len += 18;
printk("[PMK cache]: WPA2 IE length: %x\n", wpa_ie_len); printk(KERN_INFO "[PMK cache]: WPA2 IE length: %x\n",
wpa_ie_len);
} }
len = sizeof(struct rtllib_assoc_request_frame)+ 2 len = sizeof(struct rtllib_assoc_request_frame) + 2
+ beacon->ssid_len + beacon->ssid_len
+ rate_len + rate_len
+ wpa_ie_len + wpa_ie_len
+ wps_ie_len + wps_ie_len
+ wmm_info_len + wmm_info_len
+ turbo_info_len + turbo_info_len
+ ht_cap_len + ht_cap_len
+ realtek_ie_len + realtek_ie_len
+ ckip_ie_len + ckip_ie_len
+ ccxrm_ie_len + ccxrm_ie_len
...@@ -1299,11 +1276,11 @@ inline struct sk_buff *rtllib_association_req(struct rtllib_network *beacon,stru ...@@ -1299,11 +1276,11 @@ inline struct sk_buff *rtllib_association_req(struct rtllib_network *beacon,stru
skb_reserve(skb, ieee->tx_headroom); skb_reserve(skb, ieee->tx_headroom);
hdr = (struct rtllib_assoc_request_frame *) hdr = (struct rtllib_assoc_request_frame *)
skb_put(skb, sizeof(struct rtllib_assoc_request_frame)+2); skb_put(skb, sizeof(struct rtllib_assoc_request_frame) + 2);
hdr->header.frame_ctl = RTLLIB_STYPE_ASSOC_REQ; hdr->header.frame_ctl = RTLLIB_STYPE_ASSOC_REQ;
hdr->header.duration_id= 37; hdr->header.duration_id = 37;
memcpy(hdr->header.addr1, beacon->bssid, ETH_ALEN); memcpy(hdr->header.addr1, beacon->bssid, ETH_ALEN);
memcpy(hdr->header.addr2, ieee->dev->dev_addr, ETH_ALEN); memcpy(hdr->header.addr2, ieee->dev->dev_addr, ETH_ALEN);
memcpy(hdr->header.addr3, beacon->bssid, ETH_ALEN); memcpy(hdr->header.addr3, beacon->bssid, ETH_ALEN);
...@@ -1311,13 +1288,14 @@ inline struct sk_buff *rtllib_association_req(struct rtllib_network *beacon,stru ...@@ -1311,13 +1288,14 @@ inline struct sk_buff *rtllib_association_req(struct rtllib_network *beacon,stru
memcpy(ieee->ap_mac_addr, beacon->bssid, ETH_ALEN); memcpy(ieee->ap_mac_addr, beacon->bssid, ETH_ALEN);
hdr->capability = cpu_to_le16(WLAN_CAPABILITY_ESS); hdr->capability = cpu_to_le16(WLAN_CAPABILITY_ESS);
if (beacon->capability & WLAN_CAPABILITY_PRIVACY ) if (beacon->capability & WLAN_CAPABILITY_PRIVACY)
hdr->capability |= cpu_to_le16(WLAN_CAPABILITY_PRIVACY); hdr->capability |= cpu_to_le16(WLAN_CAPABILITY_PRIVACY);
if (beacon->capability & WLAN_CAPABILITY_SHORT_PREAMBLE) if (beacon->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
hdr->capability |= cpu_to_le16(WLAN_CAPABILITY_SHORT_PREAMBLE); hdr->capability |= cpu_to_le16(WLAN_CAPABILITY_SHORT_PREAMBLE);
if (ieee->short_slot && (beacon->capability&WLAN_CAPABILITY_SHORT_SLOT_TIME)) if (ieee->short_slot &&
(beacon->capability&WLAN_CAPABILITY_SHORT_SLOT_TIME))
hdr->capability |= cpu_to_le16(WLAN_CAPABILITY_SHORT_SLOT_TIME); hdr->capability |= cpu_to_le16(WLAN_CAPABILITY_SHORT_SLOT_TIME);
...@@ -1331,94 +1309,89 @@ inline struct sk_buff *rtllib_association_req(struct rtllib_network *beacon,stru ...@@ -1331,94 +1309,89 @@ inline struct sk_buff *rtllib_association_req(struct rtllib_network *beacon,stru
tag = skb_put(skb, rate_len); tag = skb_put(skb, rate_len);
if (beacon->rates_len){ if (beacon->rates_len) {
*tag++ = MFIE_TYPE_RATES; *tag++ = MFIE_TYPE_RATES;
*tag++ = beacon->rates_len; *tag++ = beacon->rates_len;
for (i=0;i<beacon->rates_len;i++){ for (i = 0; i < beacon->rates_len; i++)
*tag++ = beacon->rates[i]; *tag++ = beacon->rates[i];
}
} }
if (beacon->rates_ex_len){ if (beacon->rates_ex_len) {
*tag++ = MFIE_TYPE_RATES_EX; *tag++ = MFIE_TYPE_RATES_EX;
*tag++ = beacon->rates_ex_len; *tag++ = beacon->rates_ex_len;
for (i=0;i<beacon->rates_ex_len;i++){ for (i = 0; i < beacon->rates_ex_len; i++)
*tag++ = beacon->rates_ex[i]; *tag++ = beacon->rates_ex[i];
}
} }
if ( beacon->bCkipSupported ) if (beacon->bCkipSupported) {
{
static u8 AironetIeOui[] = {0x00, 0x01, 0x66}; static u8 AironetIeOui[] = {0x00, 0x01, 0x66};
u8 CcxAironetBuf[30]; u8 CcxAironetBuf[30];
struct octet_string osCcxAironetIE; struct octet_string osCcxAironetIE;
memset(CcxAironetBuf, 0,30); memset(CcxAironetBuf, 0, 30);
osCcxAironetIE.Octet = CcxAironetBuf; osCcxAironetIE.Octet = CcxAironetBuf;
osCcxAironetIE.Length = sizeof(CcxAironetBuf); osCcxAironetIE.Length = sizeof(CcxAironetBuf);
memcpy(osCcxAironetIE.Octet, AironetIeOui, sizeof(AironetIeOui)); memcpy(osCcxAironetIE.Octet, AironetIeOui,
sizeof(AironetIeOui));
osCcxAironetIE.Octet[IE_CISCO_FLAG_POSITION] |= (SUPPORT_CKIP_PK|SUPPORT_CKIP_MIC) ; osCcxAironetIE.Octet[IE_CISCO_FLAG_POSITION] |=
(SUPPORT_CKIP_PK|SUPPORT_CKIP_MIC);
tag = skb_put(skb, ckip_ie_len); tag = skb_put(skb, ckip_ie_len);
*tag++ = MFIE_TYPE_AIRONET; *tag++ = MFIE_TYPE_AIRONET;
*tag++ = osCcxAironetIE.Length; *tag++ = osCcxAironetIE.Length;
memcpy(tag,osCcxAironetIE.Octet,osCcxAironetIE.Length); memcpy(tag, osCcxAironetIE.Octet, osCcxAironetIE.Length);
tag += osCcxAironetIE.Length; tag += osCcxAironetIE.Length;
} }
if (beacon->bCcxRmEnable) if (beacon->bCcxRmEnable) {
{
static u8 CcxRmCapBuf[] = {0x00, 0x40, 0x96, 0x01, 0x01, 0x00}; static u8 CcxRmCapBuf[] = {0x00, 0x40, 0x96, 0x01, 0x01, 0x00};
struct octet_string osCcxRmCap; struct octet_string osCcxRmCap;
osCcxRmCap.Octet = CcxRmCapBuf; osCcxRmCap.Octet = CcxRmCapBuf;
osCcxRmCap.Length = sizeof(CcxRmCapBuf); osCcxRmCap.Length = sizeof(CcxRmCapBuf);
tag = skb_put(skb,ccxrm_ie_len); tag = skb_put(skb, ccxrm_ie_len);
*tag++ = MFIE_TYPE_GENERIC; *tag++ = MFIE_TYPE_GENERIC;
*tag++ = osCcxRmCap.Length; *tag++ = osCcxRmCap.Length;
memcpy(tag,osCcxRmCap.Octet,osCcxRmCap.Length); memcpy(tag, osCcxRmCap.Octet, osCcxRmCap.Length);
tag += osCcxRmCap.Length; tag += osCcxRmCap.Length;
} }
if ( beacon->BssCcxVerNumber >= 2 ) if (beacon->BssCcxVerNumber >= 2) {
{ u8 CcxVerNumBuf[] = {0x00, 0x40, 0x96, 0x03, 0x00};
u8 CcxVerNumBuf[] = {0x00, 0x40, 0x96, 0x03, 0x00};
struct octet_string osCcxVerNum; struct octet_string osCcxVerNum;
CcxVerNumBuf[4] = beacon->BssCcxVerNumber; CcxVerNumBuf[4] = beacon->BssCcxVerNumber;
osCcxVerNum.Octet = CcxVerNumBuf; osCcxVerNum.Octet = CcxVerNumBuf;
osCcxVerNum.Length = sizeof(CcxVerNumBuf); osCcxVerNum.Length = sizeof(CcxVerNumBuf);
tag = skb_put(skb,cxvernum_ie_len); tag = skb_put(skb, cxvernum_ie_len);
*tag++ = MFIE_TYPE_GENERIC; *tag++ = MFIE_TYPE_GENERIC;
*tag++ = osCcxVerNum.Length; *tag++ = osCcxVerNum.Length;
memcpy(tag,osCcxVerNum.Octet,osCcxVerNum.Length); memcpy(tag, osCcxVerNum.Octet, osCcxVerNum.Length);
tag += osCcxVerNum.Length; tag += osCcxVerNum.Length;
} }
if (ieee->pHTInfo->bCurrentHTSupport&&ieee->pHTInfo->bEnableHT){ if (ieee->pHTInfo->bCurrentHTSupport && ieee->pHTInfo->bEnableHT) {
if (ieee->pHTInfo->ePeerHTSpecVer != HT_SPEC_VER_EWC) if (ieee->pHTInfo->ePeerHTSpecVer != HT_SPEC_VER_EWC) {
{
tag = skb_put(skb, ht_cap_len); tag = skb_put(skb, ht_cap_len);
*tag++ = MFIE_TYPE_HT_CAP; *tag++ = MFIE_TYPE_HT_CAP;
*tag++ = ht_cap_len - 2; *tag++ = ht_cap_len - 2;
memcpy(tag, ht_cap_buf,ht_cap_len -2); memcpy(tag, ht_cap_buf, ht_cap_len - 2);
tag += ht_cap_len -2; tag += ht_cap_len - 2;
} }
} }
if (wpa_ie_len) {
if (wpa_ie_len){
tag = skb_put(skb, ieee->wpa_ie_len); tag = skb_put(skb, ieee->wpa_ie_len);
memcpy(tag, ieee->wpa_ie, ieee->wpa_ie_len); memcpy(tag, ieee->wpa_ie, ieee->wpa_ie_len);
if (PMKCacheIdx >= 0) if (PMKCacheIdx >= 0) {
{
tag = skb_put(skb, 18); tag = skb_put(skb, 18);
*tag = 1; *tag = 1;
*(tag + 1) = 0; *(tag + 1) = 0;
memcpy((tag + 2), &ieee->PMKIDList[PMKCacheIdx].PMKID, 16); memcpy((tag + 2), &ieee->PMKIDList[PMKCacheIdx].PMKID,
16);
} }
} }
if (wmm_info_len) { if (wmm_info_len) {
tag = skb_put(skb,wmm_info_len); tag = skb_put(skb, wmm_info_len);
rtllib_WMM_Info(ieee, &tag); rtllib_WMM_Info(ieee, &tag);
} }
...@@ -1427,42 +1400,39 @@ inline struct sk_buff *rtllib_association_req(struct rtllib_network *beacon,stru ...@@ -1427,42 +1400,39 @@ inline struct sk_buff *rtllib_association_req(struct rtllib_network *beacon,stru
memcpy(tag, ieee->wps_ie, wps_ie_len); memcpy(tag, ieee->wps_ie, wps_ie_len);
} }
tag = skb_put(skb,turbo_info_len); tag = skb_put(skb, turbo_info_len);
if (turbo_info_len) if (turbo_info_len)
rtllib_TURBO_Info(ieee, &tag); rtllib_TURBO_Info(ieee, &tag);
if (ieee->pHTInfo->bCurrentHTSupport&&ieee->pHTInfo->bEnableHT){ if (ieee->pHTInfo->bCurrentHTSupport && ieee->pHTInfo->bEnableHT) {
if (ieee->pHTInfo->ePeerHTSpecVer == HT_SPEC_VER_EWC) if (ieee->pHTInfo->ePeerHTSpecVer == HT_SPEC_VER_EWC) {
{
tag = skb_put(skb, ht_cap_len); tag = skb_put(skb, ht_cap_len);
*tag++ = MFIE_TYPE_GENERIC; *tag++ = MFIE_TYPE_GENERIC;
*tag++ = ht_cap_len - 2; *tag++ = ht_cap_len - 2;
memcpy(tag, ht_cap_buf,ht_cap_len - 2); memcpy(tag, ht_cap_buf, ht_cap_len - 2);
tag += ht_cap_len -2; tag += ht_cap_len - 2;
} }
if (ieee->pHTInfo->bCurrentRT2RTAggregation){ if (ieee->pHTInfo->bCurrentRT2RTAggregation) {
tag = skb_put(skb, realtek_ie_len); tag = skb_put(skb, realtek_ie_len);
*tag++ = MFIE_TYPE_GENERIC; *tag++ = MFIE_TYPE_GENERIC;
*tag++ = realtek_ie_len - 2; *tag++ = realtek_ie_len - 2;
memcpy(tag, realtek_ie_buf,realtek_ie_len -2 ); memcpy(tag, realtek_ie_buf, realtek_ie_len - 2);
} }
} }
if (ieee->assocreq_ies){ kfree(ieee->assocreq_ies);
kfree(ieee->assocreq_ies); ieee->assocreq_ies = NULL;
ieee->assocreq_ies = NULL;
}
ies = &(hdr->info_element[0].id); ies = &(hdr->info_element[0].id);
ieee->assocreq_ies_len = (skb->data + skb->len) - ies; ieee->assocreq_ies_len = (skb->data + skb->len) - ies;
ieee->assocreq_ies = kmalloc(ieee->assocreq_ies_len, GFP_ATOMIC); ieee->assocreq_ies = kmalloc(ieee->assocreq_ies_len, GFP_ATOMIC);
if (ieee->assocreq_ies) if (ieee->assocreq_ies)
memcpy(ieee->assocreq_ies, ies, ieee->assocreq_ies_len); memcpy(ieee->assocreq_ies, ies, ieee->assocreq_ies_len);
else{ else {
printk("%s()Warning: can't alloc memory for assocreq_ies\n", __func__); printk(KERN_INFO "%s()Warning: can't alloc memory for assocreq"
"_ies\n", __func__);
ieee->assocreq_ies_len = 0; ieee->assocreq_ies_len = 0;
} }
return skb; return skb;
} }
...@@ -1480,18 +1450,18 @@ void rtllib_associate_abort(struct rtllib_device *ieee) ...@@ -1480,18 +1450,18 @@ void rtllib_associate_abort(struct rtllib_device *ieee)
* Here we will check if there are good nets to associate * Here we will check if there are good nets to associate
* with, so we retry or just get back to NO_LINK and scanning * with, so we retry or just get back to NO_LINK and scanning
*/ */
if (ieee->state == RTLLIB_ASSOCIATING_AUTHENTICATING){ if (ieee->state == RTLLIB_ASSOCIATING_AUTHENTICATING) {
RTLLIB_DEBUG_MGMT("Authentication failed\n"); RTLLIB_DEBUG_MGMT("Authentication failed\n");
ieee->softmac_stats.no_auth_rs++; ieee->softmac_stats.no_auth_rs++;
}else{ } else {
RTLLIB_DEBUG_MGMT("Association failed\n"); RTLLIB_DEBUG_MGMT("Association failed\n");
ieee->softmac_stats.no_ass_rs++; ieee->softmac_stats.no_ass_rs++;
} }
ieee->state = RTLLIB_ASSOCIATING_RETRY; ieee->state = RTLLIB_ASSOCIATING_RETRY;
queue_delayed_work_rsl(ieee->wq, &ieee->associate_retry_wq, \ queue_delayed_work_rsl(ieee->wq, &ieee->associate_retry_wq,
RTLLIB_SOFTMAC_ASSOC_RETRY_TIME); RTLLIB_SOFTMAC_ASSOC_RETRY_TIME);
spin_unlock_irqrestore(&ieee->lock, flags); spin_unlock_irqrestore(&ieee->lock, flags);
} }
...@@ -1501,7 +1471,7 @@ void rtllib_associate_abort_cb(unsigned long dev) ...@@ -1501,7 +1471,7 @@ void rtllib_associate_abort_cb(unsigned long dev)
rtllib_associate_abort((struct rtllib_device *) dev); rtllib_associate_abort((struct rtllib_device *) dev);
} }
void rtllib_associate_step1(struct rtllib_device *ieee,u8 * daddr) void rtllib_associate_step1(struct rtllib_device *ieee, u8 * daddr)
{ {
struct rtllib_network *beacon = &ieee->current_network; struct rtllib_network *beacon = &ieee->current_network;
struct sk_buff *skb; struct sk_buff *skb;
...@@ -1510,15 +1480,15 @@ void rtllib_associate_step1(struct rtllib_device *ieee,u8 * daddr) ...@@ -1510,15 +1480,15 @@ void rtllib_associate_step1(struct rtllib_device *ieee,u8 * daddr)
ieee->softmac_stats.tx_auth_rq++; ieee->softmac_stats.tx_auth_rq++;
skb=rtllib_authentication_req(beacon, ieee, 0,daddr); skb = rtllib_authentication_req(beacon, ieee, 0, daddr);
if (!skb) if (!skb)
rtllib_associate_abort(ieee); rtllib_associate_abort(ieee);
else{ else {
ieee->state = RTLLIB_ASSOCIATING_AUTHENTICATING ; ieee->state = RTLLIB_ASSOCIATING_AUTHENTICATING ;
RTLLIB_DEBUG_MGMT("Sending authentication request\n"); RTLLIB_DEBUG_MGMT("Sending authentication request\n");
softmac_mgmt_xmit(skb, ieee); softmac_mgmt_xmit(skb, ieee);
if (!timer_pending(&ieee->associate_timer)){ if (!timer_pending(&ieee->associate_timer)) {
ieee->associate_timer.expires = jiffies + (HZ / 2); ieee->associate_timer.expires = jiffies + (HZ / 2);
add_timer(&ieee->associate_timer); add_timer(&ieee->associate_timer);
} }
...@@ -1534,19 +1504,21 @@ void rtllib_auth_challenge(struct rtllib_device *ieee, u8 *challenge, int chlen) ...@@ -1534,19 +1504,21 @@ void rtllib_auth_challenge(struct rtllib_device *ieee, u8 *challenge, int chlen)
ieee->associate_seq++; ieee->associate_seq++;
ieee->softmac_stats.tx_auth_rq++; ieee->softmac_stats.tx_auth_rq++;
skb = rtllib_authentication_req(beacon, ieee, chlen+2,beacon->bssid); skb = rtllib_authentication_req(beacon, ieee, chlen + 2, beacon->bssid);
if (!skb) if (!skb)
rtllib_associate_abort(ieee); rtllib_associate_abort(ieee);
else{ else {
c = skb_put(skb, chlen+2); c = skb_put(skb, chlen+2);
*(c++) = MFIE_TYPE_CHALLENGE; *(c++) = MFIE_TYPE_CHALLENGE;
*(c++) = chlen; *(c++) = chlen;
memcpy(c, challenge, chlen); memcpy(c, challenge, chlen);
RTLLIB_DEBUG_MGMT("Sending authentication challenge response\n"); RTLLIB_DEBUG_MGMT("Sending authentication challenge "
"response\n");
rtllib_encrypt_fragment(ieee, skb, sizeof(struct rtllib_hdr_3addr )); rtllib_encrypt_fragment(ieee, skb,
sizeof(struct rtllib_hdr_3addr));
softmac_mgmt_xmit(skb, ieee); softmac_mgmt_xmit(skb, ieee);
mod_timer(&ieee->associate_timer, jiffies + (HZ/2)); mod_timer(&ieee->associate_timer, jiffies + (HZ/2));
...@@ -1556,7 +1528,7 @@ void rtllib_auth_challenge(struct rtllib_device *ieee, u8 *challenge, int chlen) ...@@ -1556,7 +1528,7 @@ void rtllib_auth_challenge(struct rtllib_device *ieee, u8 *challenge, int chlen)
void rtllib_associate_step2(struct rtllib_device *ieee) void rtllib_associate_step2(struct rtllib_device *ieee)
{ {
struct sk_buff* skb; struct sk_buff *skb;
struct rtllib_network *beacon = &ieee->current_network; struct rtllib_network *beacon = &ieee->current_network;
del_timer_sync(&ieee->associate_timer); del_timer_sync(&ieee->associate_timer);
...@@ -1564,10 +1536,10 @@ void rtllib_associate_step2(struct rtllib_device *ieee) ...@@ -1564,10 +1536,10 @@ void rtllib_associate_step2(struct rtllib_device *ieee)
RTLLIB_DEBUG_MGMT("Sending association request\n"); RTLLIB_DEBUG_MGMT("Sending association request\n");
ieee->softmac_stats.tx_ass_rq++; ieee->softmac_stats.tx_ass_rq++;
skb=rtllib_association_req(beacon, ieee); skb = rtllib_association_req(beacon, ieee);
if (!skb) if (!skb)
rtllib_associate_abort(ieee); rtllib_associate_abort(ieee);
else{ else {
softmac_mgmt_xmit(skb, ieee); softmac_mgmt_xmit(skb, ieee);
mod_timer(&ieee->associate_timer, jiffies + (HZ/2)); mod_timer(&ieee->associate_timer, jiffies + (HZ/2));
} }
...@@ -1576,48 +1548,54 @@ void rtllib_associate_step2(struct rtllib_device *ieee) ...@@ -1576,48 +1548,54 @@ void rtllib_associate_step2(struct rtllib_device *ieee)
#define CANCELLED 2 #define CANCELLED 2
void rtllib_associate_complete_wq(void *data) void rtllib_associate_complete_wq(void *data)
{ {
struct rtllib_device *ieee = (struct rtllib_device *)container_of_work_rsl(data, struct rtllib_device, associate_complete_wq); struct rtllib_device *ieee = (struct rtllib_device *)
struct rt_pwr_save_ctrl *pPSC = (struct rt_pwr_save_ctrl *)(&(ieee->PowerSaveControl)); container_of_work_rsl(data,
struct rtllib_device,
associate_complete_wq);
struct rt_pwr_save_ctrl *pPSC = (struct rt_pwr_save_ctrl *)
(&(ieee->PowerSaveControl));
printk(KERN_INFO "Associated successfully\n"); printk(KERN_INFO "Associated successfully\n");
if (ieee->is_silent_reset == 0){ if (ieee->is_silent_reset == 0) {
printk("normal associate\n"); printk(KERN_INFO "normal associate\n");
notify_wx_assoc_event(ieee); notify_wx_assoc_event(ieee);
} }
netif_carrier_on(ieee->dev); netif_carrier_on(ieee->dev);
ieee->is_roaming = false; ieee->is_roaming = false;
if (rtllib_is_54g(&ieee->current_network) && if (rtllib_is_54g(&ieee->current_network) &&
(ieee->modulation & RTLLIB_OFDM_MODULATION)){ (ieee->modulation & RTLLIB_OFDM_MODULATION)) {
ieee->rate = 108; ieee->rate = 108;
printk(KERN_INFO"Using G rates:%d\n", ieee->rate); printk(KERN_INFO"Using G rates:%d\n", ieee->rate);
}else{ } else {
ieee->rate = 22; ieee->rate = 22;
ieee->SetWirelessMode(ieee->dev, IEEE_B); ieee->SetWirelessMode(ieee->dev, IEEE_B);
printk(KERN_INFO"Using B rates:%d\n", ieee->rate); printk(KERN_INFO"Using B rates:%d\n", ieee->rate);
} }
if (ieee->pHTInfo->bCurrentHTSupport&&ieee->pHTInfo->bEnableHT) if (ieee->pHTInfo->bCurrentHTSupport && ieee->pHTInfo->bEnableHT) {
{ printk(KERN_INFO "Successfully associated, ht enabled\n");
printk("Successfully associated, ht enabled\n");
HTOnAssocRsp(ieee); HTOnAssocRsp(ieee);
} else { } else {
printk("Successfully associated, ht not enabled(%d, %d)\n", printk(KERN_INFO "Successfully associated, ht not "
ieee->pHTInfo->bCurrentHTSupport, ieee->pHTInfo->bEnableHT); "enabled(%d, %d)\n",
ieee->pHTInfo->bCurrentHTSupport,
ieee->pHTInfo->bEnableHT);
memset(ieee->dot11HTOperationalRateSet, 0, 16); memset(ieee->dot11HTOperationalRateSet, 0, 16);
} }
ieee->LinkDetectInfo.SlotNum = 2 * (1 + ieee->current_network.beacon_interval/500); ieee->LinkDetectInfo.SlotNum = 2 * (1 +
if (ieee->LinkDetectInfo.NumRecvBcnInPeriod==0||ieee->LinkDetectInfo.NumRecvDataInPeriod==0 ) ieee->current_network.beacon_interval /
{ 500);
if (ieee->LinkDetectInfo.NumRecvBcnInPeriod == 0 ||
ieee->LinkDetectInfo.NumRecvDataInPeriod == 0) {
ieee->LinkDetectInfo.NumRecvBcnInPeriod = 1; ieee->LinkDetectInfo.NumRecvBcnInPeriod = 1;
ieee->LinkDetectInfo.NumRecvDataInPeriod= 1; ieee->LinkDetectInfo.NumRecvDataInPeriod = 1;
} }
pPSC->LpsIdleCount = 0; pPSC->LpsIdleCount = 0;
ieee->link_change(ieee->dev); ieee->link_change(ieee->dev);
if (ieee->is_silent_reset == 1) { if (ieee->is_silent_reset == 1) {
printk("silent reset associate\n"); printk(KERN_INFO "silent reset associate\n");
ieee->is_silent_reset = 0; ieee->is_silent_reset = 0;
} }
if (ieee->data_hard_resume) if (ieee->data_hard_resume)
ieee->data_hard_resume(ieee->dev); ieee->data_hard_resume(ieee->dev);
...@@ -1626,49 +1604,6 @@ void rtllib_associate_complete_wq(void *data) ...@@ -1626,49 +1604,6 @@ void rtllib_associate_complete_wq(void *data)
static void rtllib_sta_send_associnfo(struct rtllib_device *ieee) static void rtllib_sta_send_associnfo(struct rtllib_device *ieee)
{ {
char *buf;
size_t len;
int i;
union iwreq_data wrqu;
return;
buf = kmalloc(50 + 2 * (ieee->assocreq_ies_len + ieee->assocresp_ies_len), GFP_ATOMIC);
if (!buf)
return;
len = sprintf(buf, "ASSOCINFO(");
if (ieee->assocreq_ies) {
len += sprintf(buf + len, "ReqIEs=");
for (i = 0; i < ieee->assocreq_ies_len; i++) {
len += sprintf(buf + len, "%02x", ieee->assocreq_ies[i]);
}
}
if (ieee->assocresp_ies) {
if (ieee->assocreq_ies)
len += sprintf(buf + len, " ");
len += sprintf(buf + len, "RespIEs=");
for (i = 0; i < ieee->assocresp_ies_len; i++) {
len += sprintf(buf + len, "%02x", ieee->assocresp_ies[i]);
}
}
len += sprintf(buf + len, ")");
if (len > IW_CUSTOM_MAX) {
len = sprintf(buf, "ASSOCRESPIE=");
for (i = 0; i < ieee->assocresp_ies_len; i++) {
len += sprintf(buf + len, "%02x", ieee->assocresp_ies[i]);
}
}
if (len <= IW_CUSTOM_MAX) {
memset(&wrqu, 0, sizeof(wrqu));
wrqu.data.length = len;
wireless_send_event(ieee->dev, IWEVCUSTOM, &wrqu, buf);
}
kfree(buf);
} }
void rtllib_associate_complete(struct rtllib_device *ieee) void rtllib_associate_complete(struct rtllib_device *ieee)
...@@ -1683,7 +1618,9 @@ void rtllib_associate_complete(struct rtllib_device *ieee) ...@@ -1683,7 +1618,9 @@ void rtllib_associate_complete(struct rtllib_device *ieee)
void rtllib_associate_procedure_wq(void *data) void rtllib_associate_procedure_wq(void *data)
{ {
struct rtllib_device *ieee = container_of_dwork_rsl(data, struct rtllib_device, associate_procedure_wq); struct rtllib_device *ieee = container_of_dwork_rsl(data,
struct rtllib_device,
associate_procedure_wq);
rtllib_stop_scan_syncro(ieee); rtllib_stop_scan_syncro(ieee);
if (ieee->rtllib_ips_leave != NULL) if (ieee->rtllib_ips_leave != NULL)
ieee->rtllib_ips_leave(ieee->dev); ieee->rtllib_ips_leave(ieee->dev);
...@@ -1693,11 +1630,12 @@ void rtllib_associate_procedure_wq(void *data) ...@@ -1693,11 +1630,12 @@ void rtllib_associate_procedure_wq(void *data)
ieee->data_hard_stop(ieee->dev); ieee->data_hard_stop(ieee->dev);
rtllib_stop_scan(ieee); rtllib_stop_scan(ieee);
RT_TRACE(COMP_DBG, "===>%s(), chan:%d\n", __func__, ieee->current_network.channel); RT_TRACE(COMP_DBG, "===>%s(), chan:%d\n", __func__,
ieee->current_network.channel);
HTSetConnectBwMode(ieee, HT_CHANNEL_WIDTH_20, HT_EXTCHNL_OFFSET_NO_EXT); HTSetConnectBwMode(ieee, HT_CHANNEL_WIDTH_20, HT_EXTCHNL_OFFSET_NO_EXT);
if (ieee->eRFPowerState == eRfOff) if (ieee->eRFPowerState == eRfOff) {
{ RT_TRACE(COMP_DBG, "=============>%s():Rf state is eRfOff,"
RT_TRACE(COMP_DBG, "=============>%s():Rf state is eRfOff, schedule ipsleave wq again,return\n",__func__); " schedule ipsleave wq again,return\n", __func__);
if (ieee->rtllib_ips_leave_wq != NULL) if (ieee->rtllib_ips_leave_wq != NULL)
ieee->rtllib_ips_leave_wq(ieee->dev); ieee->rtllib_ips_leave_wq(ieee->dev);
up(&ieee->wx_sem); up(&ieee->wx_sem);
...@@ -1710,12 +1648,13 @@ void rtllib_associate_procedure_wq(void *data) ...@@ -1710,12 +1648,13 @@ void rtllib_associate_procedure_wq(void *data)
up(&ieee->wx_sem); up(&ieee->wx_sem);
} }
inline void rtllib_softmac_new_net(struct rtllib_device *ieee, struct rtllib_network *net) inline void rtllib_softmac_new_net(struct rtllib_device *ieee,
struct rtllib_network *net)
{ {
u8 tmp_ssid[IW_ESSID_MAX_SIZE+1]; u8 tmp_ssid[IW_ESSID_MAX_SIZE + 1];
int tmp_ssid_len = 0; int tmp_ssid_len = 0;
short apset,ssidset,ssidbroad,apmatch,ssidmatch; short apset, ssidset, ssidbroad, apmatch, ssidmatch;
/* we are interested in new new only if we are not associated /* we are interested in new new only if we are not associated
* and we are not associating / authenticating * and we are not associating / authenticating
...@@ -1723,103 +1662,124 @@ inline void rtllib_softmac_new_net(struct rtllib_device *ieee, struct rtllib_net ...@@ -1723,103 +1662,124 @@ inline void rtllib_softmac_new_net(struct rtllib_device *ieee, struct rtllib_net
if (ieee->state != RTLLIB_NOLINK) if (ieee->state != RTLLIB_NOLINK)
return; return;
if ((ieee->iw_mode == IW_MODE_INFRA) && !(net->capability & WLAN_CAPABILITY_ESS)) if ((ieee->iw_mode == IW_MODE_INFRA) && !(net->capability &
WLAN_CAPABILITY_ESS))
return; return;
if ((ieee->iw_mode == IW_MODE_ADHOC) && !(net->capability & WLAN_CAPABILITY_IBSS)) if ((ieee->iw_mode == IW_MODE_ADHOC) && !(net->capability &
WLAN_CAPABILITY_IBSS))
return; return;
if ((ieee->iw_mode == IW_MODE_ADHOC) && (net->channel > ieee->ibss_maxjoin_chal)) { if ((ieee->iw_mode == IW_MODE_ADHOC) &&
(net->channel > ieee->ibss_maxjoin_chal))
return; return;
} if (ieee->iw_mode == IW_MODE_INFRA || ieee->iw_mode == IW_MODE_ADHOC) {
if (ieee->iw_mode == IW_MODE_INFRA || ieee->iw_mode == IW_MODE_ADHOC)
{
/* if the user specified the AP MAC, we need also the essid /* if the user specified the AP MAC, we need also the essid
* This could be obtained by beacons or, if the network does not * This could be obtained by beacons or, if the network does not
* broadcast it, it can be put manually. * broadcast it, it can be put manually.
*/ */
apset = ieee->wap_set; apset = ieee->wap_set;
ssidset = ieee->ssid_set; ssidset = ieee->ssid_set;
ssidbroad = !(net->ssid_len == 0 || net->ssid[0]== '\0'); ssidbroad = !(net->ssid_len == 0 || net->ssid[0] == '\0');
apmatch = (memcmp(ieee->current_network.bssid, net->bssid, ETH_ALEN)==0); apmatch = (memcmp(ieee->current_network.bssid, net->bssid,
if (!ssidbroad){ ETH_ALEN) == 0);
ssidmatch = (ieee->current_network.ssid_len == net->hidden_ssid_len)&&\ if (!ssidbroad) {
(!strncmp(ieee->current_network.ssid, net->hidden_ssid, net->hidden_ssid_len)); ssidmatch = (ieee->current_network.ssid_len ==
if (net->hidden_ssid_len > 0) net->hidden_ssid_len) &&
{ (!strncmp(ieee->current_network.ssid,
strncpy(net->ssid, net->hidden_ssid, net->hidden_ssid_len); net->hidden_ssid, net->hidden_ssid_len));
net->ssid_len = net->hidden_ssid_len; if (net->hidden_ssid_len > 0) {
ssidbroad = 1; strncpy(net->ssid, net->hidden_ssid,
} net->hidden_ssid_len);
} net->ssid_len = net->hidden_ssid_len;
else ssidbroad = 1;
ssidmatch = (ieee->current_network.ssid_len == net->ssid_len)&&\ }
(!strncmp(ieee->current_network.ssid, net->ssid, net->ssid_len)); } else
ssidmatch =
if ( /* if the user set the AP check if match. (ieee->current_network.ssid_len == net->ssid_len) &&
* if the network does not broadcast essid we check the user supplyed ANY essid (!strncmp(ieee->current_network.ssid, net->ssid,
* if the network does broadcast and the user does not set essid it is OK net->ssid_len));
* if the network does broadcast and the user did set essid chech if essid match
*/ /* if the user set the AP check if match.
( apset && apmatch && * if the network does not broadcast essid we check the
((ssidset && ssidbroad && ssidmatch) || (ssidbroad && !ssidset) || (!ssidbroad && ssidset)) ) * user supplyed ANY essid
/* if the ap is not set, check that the user set the bssid * if the network does broadcast and the user does not set
* and the network does bradcast and that those two bssid matches * essid it is OK
*/ * if the network does broadcast and the user did set essid
|| (!apset && ssidset && ssidbroad && ssidmatch) || (ieee->is_roaming && ssidset && ssidbroad && ssidmatch) * check if essid match
){ * if the ap is not set, check that the user set the bssid
/* if the essid is hidden replace it with the * and the network does bradcast and that those two bssid match
* essid provided by the user. */
*/ if ((apset && apmatch &&
if (!ssidbroad){ ((ssidset && ssidbroad && ssidmatch) ||
strncpy(tmp_ssid, ieee->current_network.ssid, IW_ESSID_MAX_SIZE); (ssidbroad && !ssidset) || (!ssidbroad && ssidset))) ||
tmp_ssid_len = ieee->current_network.ssid_len; (!apset && ssidset && ssidbroad && ssidmatch) ||
} (ieee->is_roaming && ssidset && ssidbroad && ssidmatch)) {
memcpy(&ieee->current_network, net, sizeof(struct rtllib_network)); /* if the essid is hidden replace it with the
if (!ssidbroad){ * essid provided by the user.
strncpy(ieee->current_network.ssid, tmp_ssid, IW_ESSID_MAX_SIZE); */
ieee->current_network.ssid_len = tmp_ssid_len; if (!ssidbroad) {
} strncpy(tmp_ssid, ieee->current_network.ssid,
printk(KERN_INFO"Linking with %s,channel:%d, qos:%d, myHT:%d, networkHT:%d, mode:%x cur_net.flags:0x%x\n",ieee->current_network.ssid,ieee->current_network.channel, ieee->current_network.qos_data.supported, ieee->pHTInfo->bEnableHT, ieee->current_network.bssht.bdSupportHT, ieee->current_network.mode, ieee->current_network.flags); IW_ESSID_MAX_SIZE);
tmp_ssid_len = ieee->current_network.ssid_len;
if ((rtllib_act_scanning(ieee, false)) && !(ieee->softmac_features & IEEE_SOFTMAC_SCAN)){ }
rtllib_stop_scan_syncro(ieee); memcpy(&ieee->current_network, net,
} sizeof(struct rtllib_network));
if (!ssidbroad) {
ieee->hwscan_ch_bk = ieee->current_network.channel; strncpy(ieee->current_network.ssid, tmp_ssid,
HTResetIOTSetting(ieee->pHTInfo); IW_ESSID_MAX_SIZE);
ieee->wmm_acm = 0; ieee->current_network.ssid_len = tmp_ssid_len;
if (ieee->iw_mode == IW_MODE_INFRA) { }
/* Join the network for the first time */ printk(KERN_INFO"Linking with %s,channel:%d, qos:%d, "
ieee->AsocRetryCount = 0; "myHT:%d, networkHT:%d, mode:%x cur_net.flags"
if ((ieee->current_network.qos_data.supported == 1) && ":0x%x\n", ieee->current_network.ssid,
ieee->current_network.bssht.bdSupportHT) ieee->current_network.channel,
HTResetSelfAndSavePeerSetting(ieee, &(ieee->current_network)); ieee->current_network.qos_data.supported,
else ieee->pHTInfo->bEnableHT,
ieee->pHTInfo->bCurrentHTSupport = false; ieee->current_network.bssht.bdSupportHT,
ieee->current_network.mode,
ieee->state = RTLLIB_ASSOCIATING; ieee->current_network.flags);
if (ieee->LedControlHandler != NULL)
ieee->LedControlHandler(ieee->dev, LED_CTL_START_TO_LINK); if ((rtllib_act_scanning(ieee, false)) &&
queue_delayed_work_rsl(ieee->wq, &ieee->associate_procedure_wq, 0); !(ieee->softmac_features & IEEE_SOFTMAC_SCAN))
rtllib_stop_scan_syncro(ieee);
ieee->hwscan_ch_bk = ieee->current_network.channel;
HTResetIOTSetting(ieee->pHTInfo);
ieee->wmm_acm = 0;
if (ieee->iw_mode == IW_MODE_INFRA) {
/* Join the network for the first time */
ieee->AsocRetryCount = 0;
if ((ieee->current_network.qos_data.supported == 1) &&
ieee->current_network.bssht.bdSupportHT)
HTResetSelfAndSavePeerSetting(ieee,
&(ieee->current_network));
else
ieee->pHTInfo->bCurrentHTSupport =
false;
ieee->state = RTLLIB_ASSOCIATING;
if (ieee->LedControlHandler != NULL)
ieee->LedControlHandler(ieee->dev,
LED_CTL_START_TO_LINK);
queue_delayed_work_rsl(ieee->wq,
&ieee->associate_procedure_wq, 0);
} else {
if (rtllib_is_54g(&ieee->current_network) &&
(ieee->modulation & RTLLIB_OFDM_MODULATION)) {
ieee->rate = 108;
ieee->SetWirelessMode(ieee->dev, IEEE_G);
printk(KERN_INFO"Using G rates\n");
} else { } else {
if (rtllib_is_54g(&ieee->current_network) && ieee->rate = 22;
(ieee->modulation & RTLLIB_OFDM_MODULATION)){ ieee->SetWirelessMode(ieee->dev, IEEE_B);
ieee->rate = 108; printk(KERN_INFO"Using B rates\n");
ieee->SetWirelessMode(ieee->dev, IEEE_G);
printk(KERN_INFO"Using G rates\n");
}else{
ieee->rate = 22;
ieee->SetWirelessMode(ieee->dev, IEEE_B);
printk(KERN_INFO"Using B rates\n");
}
memset(ieee->dot11HTOperationalRateSet, 0, 16);
ieee->state = RTLLIB_LINKED;
} }
memset(ieee->dot11HTOperationalRateSet, 0, 16);
ieee->state = RTLLIB_LINKED;
}
} }
} }
} }
void rtllib_softmac_check_all_nets(struct rtllib_device *ieee) void rtllib_softmac_check_all_nets(struct rtllib_device *ieee)
...@@ -1838,51 +1798,49 @@ void rtllib_softmac_check_all_nets(struct rtllib_device *ieee) ...@@ -1838,51 +1798,49 @@ void rtllib_softmac_check_all_nets(struct rtllib_device *ieee)
if (ieee->state != RTLLIB_NOLINK) if (ieee->state != RTLLIB_NOLINK)
break; break;
if (ieee->scan_age == 0 || time_after(target->last_scanned + ieee->scan_age, jiffies)) if (ieee->scan_age == 0 || time_after(target->last_scanned +
rtllib_softmac_new_net(ieee, target); ieee->scan_age, jiffies))
rtllib_softmac_new_net(ieee, target);
} }
spin_unlock_irqrestore(&ieee->lock, flags); spin_unlock_irqrestore(&ieee->lock, flags);
} }
static inline u16 auth_parse(struct sk_buff *skb, u8** challenge, int *chlen) static inline u16 auth_parse(struct sk_buff *skb, u8** challenge, int *chlen)
{ {
struct rtllib_authentication *a; struct rtllib_authentication *a;
u8 *t; u8 *t;
if (skb->len < (sizeof(struct rtllib_authentication)-sizeof(struct rtllib_info_element))){ if (skb->len < (sizeof(struct rtllib_authentication) -
RTLLIB_DEBUG_MGMT("invalid len in auth resp: %d\n",skb->len); sizeof(struct rtllib_info_element))) {
RTLLIB_DEBUG_MGMT("invalid len in auth resp: %d\n", skb->len);
return 0xcafe; return 0xcafe;
} }
*challenge = NULL; *challenge = NULL;
a = (struct rtllib_authentication*) skb->data; a = (struct rtllib_authentication *) skb->data;
if (skb->len > (sizeof(struct rtllib_authentication) +3)){ if (skb->len > (sizeof(struct rtllib_authentication) + 3)) {
t = skb->data + sizeof(struct rtllib_authentication); t = skb->data + sizeof(struct rtllib_authentication);
if (*(t++) == MFIE_TYPE_CHALLENGE){ if (*(t++) == MFIE_TYPE_CHALLENGE) {
*chlen = *(t++); *chlen = *(t++);
*challenge = (u8*)kmalloc(*chlen, GFP_ATOMIC); *challenge = kmalloc(*chlen, GFP_ATOMIC);
memcpy(*challenge, t, *chlen); memcpy(*challenge, t, *chlen); /*TODO - check here*/
} }
} }
return cpu_to_le16(a->status); return cpu_to_le16(a->status);
} }
int auth_rq_parse(struct sk_buff *skb, u8 *dest)
int auth_rq_parse(struct sk_buff *skb,u8* dest)
{ {
struct rtllib_authentication *a; struct rtllib_authentication *a;
if (skb->len < (sizeof(struct rtllib_authentication)-sizeof(struct rtllib_info_element))){ if (skb->len < (sizeof(struct rtllib_authentication) -
RTLLIB_DEBUG_MGMT("invalid len in auth request: %d\n",skb->len); sizeof(struct rtllib_info_element))) {
RTLLIB_DEBUG_MGMT("invalid len in auth request: %d\n",
skb->len);
return -1; return -1;
} }
a = (struct rtllib_authentication*) skb->data; a = (struct rtllib_authentication *) skb->data;
memcpy(dest,a->header.addr2, ETH_ALEN); memcpy(dest, a->header.addr2, ETH_ALEN);
if (le16_to_cpu(a->algorithm) != WLAN_AUTH_OPEN) if (le16_to_cpu(a->algorithm) != WLAN_AUTH_OPEN)
return WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG; return WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG;
...@@ -1890,38 +1848,36 @@ int auth_rq_parse(struct sk_buff *skb,u8* dest) ...@@ -1890,38 +1848,36 @@ int auth_rq_parse(struct sk_buff *skb,u8* dest)
return WLAN_STATUS_SUCCESS; return WLAN_STATUS_SUCCESS;
} }
static short probe_rq_parse(struct rtllib_device *ieee, struct sk_buff *skb, u8 *src) static short probe_rq_parse(struct rtllib_device *ieee, struct sk_buff *skb,
u8 *src)
{ {
u8 *tag; u8 *tag;
u8 *skbend; u8 *skbend;
u8 *ssid=NULL; u8 *ssid = NULL;
u8 ssidlen = 0; u8 ssidlen = 0;
struct rtllib_hdr_3addr *header = struct rtllib_hdr_3addr *header =
(struct rtllib_hdr_3addr *) skb->data; (struct rtllib_hdr_3addr *) skb->data;
bool bssid_match;
if (skb->len < sizeof (struct rtllib_hdr_3addr )) if (skb->len < sizeof(struct rtllib_hdr_3addr))
return -1; /* corrupted */ return -1; /* corrupted */
if ((memcmp(header->addr3,ieee->current_network.bssid,ETH_ALEN) != 0)&&
(memcmp(header->addr3,"\xff\xff\xff\xff\xff\xff",ETH_ALEN) != 0)) {
return -1;
}
if (memcmp(header->addr3,ieee->current_network.bssid,ETH_ALEN) == 0) { bssid_match =
} (memcmp(header->addr3, ieee->current_network.bssid, ETH_ALEN) != 0) &&
(memcmp(header->addr3, "\xff\xff\xff\xff\xff\xff", ETH_ALEN) != 0);
if (bssid_match)
return -1;
if (memcmp(header->addr3,"\xff\xff\xff\xff\xff\xff",ETH_ALEN) == 0) { memcpy(src, header->addr2, ETH_ALEN);
}
memcpy(src,header->addr2, ETH_ALEN);
skbend = (u8*)skb->data + skb->len; skbend = (u8 *)skb->data + skb->len;
tag = skb->data + sizeof (struct rtllib_hdr_3addr ); tag = skb->data + sizeof(struct rtllib_hdr_3addr);
while (tag+1 < skbend){ while (tag + 1 < skbend) {
if (*tag == 0){ if (*tag == 0) {
ssid = tag+2; ssid = tag + 2;
ssidlen = *(tag+1); ssidlen = *(tag + 1);
break; break;
} }
tag++; /* point to the len field */ tag++; /* point to the len field */
...@@ -1929,53 +1885,56 @@ static short probe_rq_parse(struct rtllib_device *ieee, struct sk_buff *skb, u8 ...@@ -1929,53 +1885,56 @@ static short probe_rq_parse(struct rtllib_device *ieee, struct sk_buff *skb, u8
tag++; /* point to the next tag */ tag++; /* point to the next tag */
} }
if (ssidlen == 0) return 1; if (ssidlen == 0)
return 1;
if (!ssid) return 1; /* ssid not found in tagged param */ if (!ssid)
return (!strncmp(ssid, ieee->current_network.ssid, ssidlen)); return 1; /* ssid not found in tagged param */
return !strncmp(ssid, ieee->current_network.ssid, ssidlen);
} }
int assoc_rq_parse(struct sk_buff *skb,u8* dest) int assoc_rq_parse(struct sk_buff *skb, u8 *dest)
{ {
struct rtllib_assoc_request_frame *a; struct rtllib_assoc_request_frame *a;
if (skb->len < (sizeof(struct rtllib_assoc_request_frame) - if (skb->len < (sizeof(struct rtllib_assoc_request_frame) -
sizeof(struct rtllib_info_element))) { sizeof(struct rtllib_info_element))) {
RTLLIB_DEBUG_MGMT("invalid len in auth request:%d \n", skb->len); RTLLIB_DEBUG_MGMT("invalid len in auth request:%d\n", skb->len);
return -1; return -1;
} }
a = (struct rtllib_assoc_request_frame*) skb->data; a = (struct rtllib_assoc_request_frame *) skb->data;
memcpy(dest,a->header.addr2,ETH_ALEN); memcpy(dest, a->header.addr2, ETH_ALEN);
return 0; return 0;
} }
static inline u16 assoc_parse(struct rtllib_device *ieee, struct sk_buff *skb, int *aid) static inline u16 assoc_parse(struct rtllib_device *ieee, struct sk_buff *skb,
int *aid)
{ {
struct rtllib_assoc_response_frame *response_head; struct rtllib_assoc_response_frame *response_head;
u16 status_code; u16 status_code;
if (skb->len < sizeof(struct rtllib_assoc_response_frame)){ if (skb->len < sizeof(struct rtllib_assoc_response_frame)) {
RTLLIB_DEBUG_MGMT("invalid len in auth resp: %d\n", skb->len); RTLLIB_DEBUG_MGMT("invalid len in auth resp: %d\n", skb->len);
return 0xcafe; return 0xcafe;
} }
response_head = (struct rtllib_assoc_response_frame*) skb->data; response_head = (struct rtllib_assoc_response_frame *) skb->data;
*aid = le16_to_cpu(response_head->aid) & 0x3fff; *aid = le16_to_cpu(response_head->aid) & 0x3fff;
status_code = le16_to_cpu(response_head->status); status_code = le16_to_cpu(response_head->status);
if ((status_code==WLAN_STATUS_ASSOC_DENIED_RATES || \ if ((status_code == WLAN_STATUS_ASSOC_DENIED_RATES ||
status_code==WLAN_STATUS_CAPS_UNSUPPORTED)&& status_code == WLAN_STATUS_CAPS_UNSUPPORTED) &&
((ieee->mode == IEEE_G) && ((ieee->mode == IEEE_G) &&
(ieee->current_network.mode == IEEE_N_24G) && (ieee->current_network.mode == IEEE_N_24G) &&
(ieee->AsocRetryCount++ < (RT_ASOC_RETRY_LIMIT-1)))) { (ieee->AsocRetryCount++ < (RT_ASOC_RETRY_LIMIT-1)))) {
ieee->pHTInfo->IOTAction |= HT_IOT_ACT_PURE_N_MODE; ieee->pHTInfo->IOTAction |= HT_IOT_ACT_PURE_N_MODE;
}else { } else {
ieee->AsocRetryCount = 0; ieee->AsocRetryCount = 0;
} }
return le16_to_cpu(response_head->status); return le16_to_cpu(response_head->status);
...@@ -1985,38 +1944,37 @@ void rtllib_rx_probe_rq(struct rtllib_device *ieee, struct sk_buff *skb) ...@@ -1985,38 +1944,37 @@ void rtllib_rx_probe_rq(struct rtllib_device *ieee, struct sk_buff *skb)
{ {
u8 dest[ETH_ALEN]; u8 dest[ETH_ALEN];
ieee->softmac_stats.rx_probe_rq++; ieee->softmac_stats.rx_probe_rq++;
if (probe_rq_parse(ieee, skb, dest) > 0){ if (probe_rq_parse(ieee, skb, dest) > 0) {
ieee->softmac_stats.tx_probe_rs++; ieee->softmac_stats.tx_probe_rs++;
rtllib_resp_to_probe(ieee, dest); rtllib_resp_to_probe(ieee, dest);
} }
} }
static inline void rtllib_rx_auth_rq(struct rtllib_device *ieee, struct sk_buff *skb) static inline void rtllib_rx_auth_rq(struct rtllib_device *ieee,
struct sk_buff *skb)
{ {
u8 dest[ETH_ALEN]; u8 dest[ETH_ALEN];
int status; int status;
ieee->softmac_stats.rx_auth_rq++; ieee->softmac_stats.rx_auth_rq++;
if ((status = auth_rq_parse(skb, dest))!= -1){ status = auth_rq_parse(skb, dest);
if (status != -1)
rtllib_resp_to_auth(ieee, status, dest); rtllib_resp_to_auth(ieee, status, dest);
}
} }
static inline void rtllib_rx_assoc_rq(struct rtllib_device *ieee, struct sk_buff *skb) static inline void rtllib_rx_assoc_rq(struct rtllib_device *ieee,
struct sk_buff *skb)
{ {
u8 dest[ETH_ALEN]; u8 dest[ETH_ALEN];
ieee->softmac_stats.rx_ass_rq++; ieee->softmac_stats.rx_ass_rq++;
if (assoc_rq_parse(skb,dest) != -1){ if (assoc_rq_parse(skb, dest) != -1)
rtllib_resp_to_assoc_rq(ieee, dest); rtllib_resp_to_assoc_rq(ieee, dest);
}
printk(KERN_INFO"New client associated: "MAC_FMT"\n", MAC_ARG(dest)); printk(KERN_INFO"New client associated: "MAC_FMT"\n", MAC_ARG(dest));
} }
void rtllib_sta_ps_send_null_frame(struct rtllib_device *ieee, short pwr) void rtllib_sta_ps_send_null_frame(struct rtllib_device *ieee, short pwr)
{ {
...@@ -2024,34 +1982,25 @@ void rtllib_sta_ps_send_null_frame(struct rtllib_device *ieee, short pwr) ...@@ -2024,34 +1982,25 @@ void rtllib_sta_ps_send_null_frame(struct rtllib_device *ieee, short pwr)
if (buf) if (buf)
softmac_ps_mgmt_xmit(buf, ieee); softmac_ps_mgmt_xmit(buf, ieee);
} }
void rtllib_sta_ps_send_pspoll_frame(struct rtllib_device *ieee) void rtllib_sta_ps_send_pspoll_frame(struct rtllib_device *ieee)
{ {
struct sk_buff *buf = rtllib_pspoll_func(ieee); struct sk_buff *buf = rtllib_pspoll_func(ieee);
if (buf) if (buf)
softmac_ps_mgmt_xmit(buf, ieee); softmac_ps_mgmt_xmit(buf, ieee);
} }
static short rtllib_sta_ps_sleep(struct rtllib_device *ieee, u64 *time) static short rtllib_sta_ps_sleep(struct rtllib_device *ieee, u64 *time)
{ {
int timeout = ieee->ps_timeout; int timeout = ieee->ps_timeout;
u8 dtim; u8 dtim;
struct rt_pwr_save_ctrl *pPSC = (struct rt_pwr_save_ctrl *)(&(ieee->PowerSaveControl)); struct rt_pwr_save_ctrl *pPSC = (struct rt_pwr_save_ctrl *)
/*if (ieee->ps == RTLLIB_PS_DISABLED || (&(ieee->PowerSaveControl));
ieee->iw_mode != IW_MODE_INFRA ||
ieee->state != RTLLIB_LINKED)
return 0;
*/
if (ieee->LPSDelayCnt) if (ieee->LPSDelayCnt) {
{ ieee->LPSDelayCnt--;
ieee->LPSDelayCnt --;
return 0; return 0;
} }
...@@ -2060,21 +2009,20 @@ static short rtllib_sta_ps_sleep(struct rtllib_device *ieee, u64 *time) ...@@ -2060,21 +2009,20 @@ static short rtllib_sta_ps_sleep(struct rtllib_device *ieee, u64 *time)
return 0; return 0;
timeout = ieee->current_network.beacon_interval; timeout = ieee->current_network.beacon_interval;
ieee->current_network.dtim_data = RTLLIB_DTIM_INVALID; ieee->current_network.dtim_data = RTLLIB_DTIM_INVALID;
/* there's no need to nofity AP that I find you buffered with broadcast packet */ /* there's no need to nofity AP that I find you buffered
* with broadcast packet */
if (dtim & (RTLLIB_DTIM_UCAST & ieee->ps)) if (dtim & (RTLLIB_DTIM_UCAST & ieee->ps))
return 2; return 2;
if (!time_after(jiffies, ieee->dev->trans_start + MSECS(timeout))){ if (!time_after(jiffies, ieee->dev->trans_start + MSECS(timeout)))
return 0; return 0;
} if (!time_after(jiffies, ieee->last_rx_ps_time + MSECS(timeout)))
if (!time_after(jiffies, ieee->last_rx_ps_time + MSECS(timeout))){
return 0; return 0;
} if ((ieee->softmac_features & IEEE_SOFTMAC_SINGLE_QUEUE) &&
if ((ieee->softmac_features & IEEE_SOFTMAC_SINGLE_QUEUE ) && (ieee->mgmt_queue_tail != ieee->mgmt_queue_head))
(ieee->mgmt_queue_tail != ieee->mgmt_queue_head))
return 0; return 0;
if (time){ if (time) {
if (ieee->bAwakePktSent == true) { if (ieee->bAwakePktSent == true) {
pPSC->LPSAwakeIntvl = 1; pPSC->LPSAwakeIntvl = 1;
} else { } else {
...@@ -2088,27 +2036,37 @@ static short rtllib_sta_ps_sleep(struct rtllib_device *ieee, u64 *time) ...@@ -2088,27 +2036,37 @@ static short rtllib_sta_ps_sleep(struct rtllib_device *ieee, u64 *time)
MaxPeriod = ieee->current_network.dtim_period; MaxPeriod = ieee->current_network.dtim_period;
else else
MaxPeriod = pPSC->RegMaxLPSAwakeIntvl; MaxPeriod = pPSC->RegMaxLPSAwakeIntvl;
pPSC->LPSAwakeIntvl = (pPSC->LPSAwakeIntvl >= MaxPeriod) ? MaxPeriod : (pPSC->LPSAwakeIntvl + 1); pPSC->LPSAwakeIntvl = (pPSC->LPSAwakeIntvl >=
MaxPeriod) ? MaxPeriod :
(pPSC->LPSAwakeIntvl + 1);
} }
{ {
u8 LPSAwakeIntvl_tmp = 0; u8 LPSAwakeIntvl_tmp = 0;
u8 period = ieee->current_network.dtim_period; u8 period = ieee->current_network.dtim_period;
u8 count = ieee->current_network.tim.tim_count; u8 count = ieee->current_network.tim.tim_count;
if (count == 0 ) { if (count == 0) {
if (pPSC->LPSAwakeIntvl > period) if (pPSC->LPSAwakeIntvl > period)
LPSAwakeIntvl_tmp = period + (pPSC->LPSAwakeIntvl - period) -((pPSC->LPSAwakeIntvl-period)%period); LPSAwakeIntvl_tmp = period +
(pPSC->LPSAwakeIntvl -
period) -
((pPSC->LPSAwakeIntvl-period) %
period);
else else
LPSAwakeIntvl_tmp = pPSC->LPSAwakeIntvl; LPSAwakeIntvl_tmp = pPSC->LPSAwakeIntvl;
} else { } else {
if (pPSC->LPSAwakeIntvl > ieee->current_network.tim.tim_count) if (pPSC->LPSAwakeIntvl >
LPSAwakeIntvl_tmp = count + (pPSC->LPSAwakeIntvl - count) -((pPSC->LPSAwakeIntvl-count)%period); ieee->current_network.tim.tim_count)
LPSAwakeIntvl_tmp = count +
(pPSC->LPSAwakeIntvl - count) -
((pPSC->LPSAwakeIntvl-count)%period);
else else
LPSAwakeIntvl_tmp = pPSC->LPSAwakeIntvl; LPSAwakeIntvl_tmp = pPSC->LPSAwakeIntvl;
} }
*time = ieee->current_network.last_dtim_sta_time *time = ieee->current_network.last_dtim_sta_time
+ MSECS(ieee->current_network.beacon_interval * LPSAwakeIntvl_tmp); + MSECS(ieee->current_network.beacon_interval *
LPSAwakeIntvl_tmp);
} }
} }
...@@ -2119,45 +2077,38 @@ static short rtllib_sta_ps_sleep(struct rtllib_device *ieee, u64 *time) ...@@ -2119,45 +2077,38 @@ static short rtllib_sta_ps_sleep(struct rtllib_device *ieee, u64 *time)
inline void rtllib_sta_ps(struct rtllib_device *ieee) inline void rtllib_sta_ps(struct rtllib_device *ieee)
{ {
u64 time; u64 time;
short sleep; short sleep;
unsigned long flags, flags2;
unsigned long flags,flags2;
spin_lock_irqsave(&ieee->lock, flags); spin_lock_irqsave(&ieee->lock, flags);
if ((ieee->ps == RTLLIB_PS_DISABLED || if ((ieee->ps == RTLLIB_PS_DISABLED ||
ieee->iw_mode != IW_MODE_INFRA || ieee->iw_mode != IW_MODE_INFRA ||
ieee->state != RTLLIB_LINKED)){ ieee->state != RTLLIB_LINKED)) {
RT_TRACE(COMP_DBG, "=====>%s(): no need to ps,wake up!! "
RT_TRACE(COMP_DBG, "=====>%s(): no need to ps,wake up!! ieee->ps is %d,ieee->iw_mode is %d,ieee->state is %d\n", "ieee->ps is %d, ieee->iw_mode is %d, ieee->state"
__func__,ieee->ps,ieee->iw_mode,ieee->state); " is %d\n", __func__, ieee->ps, ieee->iw_mode,
ieee->state);
spin_lock_irqsave(&ieee->mgmt_tx_lock, flags2); spin_lock_irqsave(&ieee->mgmt_tx_lock, flags2);
rtllib_sta_wakeup(ieee, 1); rtllib_sta_wakeup(ieee, 1);
spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags2); spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags2);
} }
sleep = rtllib_sta_ps_sleep(ieee, &time); sleep = rtllib_sta_ps_sleep(ieee, &time);
/* 2 wake, 1 sleep, 0 do nothing */ /* 2 wake, 1 sleep, 0 do nothing */
if (sleep == 0) if (sleep == 0)
{
goto out; goto out;
} if (sleep == 1) {
if (sleep == 1){ if (ieee->sta_sleep == LPS_IS_SLEEP) {
if (ieee->sta_sleep == LPS_IS_SLEEP){
ieee->enter_sleep_state(ieee->dev, time); ieee->enter_sleep_state(ieee->dev, time);
} } else if (ieee->sta_sleep == LPS_IS_WAKE) {
else if (ieee->sta_sleep == LPS_IS_WAKE){
spin_lock_irqsave(&ieee->mgmt_tx_lock, flags2); spin_lock_irqsave(&ieee->mgmt_tx_lock, flags2);
if (ieee->ps_is_queue_empty(ieee->dev)){ if (ieee->ps_is_queue_empty(ieee->dev)) {
ieee->sta_sleep = LPS_WAIT_NULL_DATA_SEND; ieee->sta_sleep = LPS_WAIT_NULL_DATA_SEND;
ieee->ack_tx_to_ieee = 1; ieee->ack_tx_to_ieee = 1;
rtllib_sta_ps_send_null_frame(ieee,1); rtllib_sta_ps_send_null_frame(ieee, 1);
ieee->ps_time = time; ieee->ps_time = time;
} }
spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags2); spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags2);
...@@ -2166,10 +2117,10 @@ inline void rtllib_sta_ps(struct rtllib_device *ieee) ...@@ -2166,10 +2117,10 @@ inline void rtllib_sta_ps(struct rtllib_device *ieee)
ieee->bAwakePktSent = false; ieee->bAwakePktSent = false;
}else if (sleep == 2){ } else if (sleep == 2) {
spin_lock_irqsave(&ieee->mgmt_tx_lock, flags2); spin_lock_irqsave(&ieee->mgmt_tx_lock, flags2);
rtllib_sta_wakeup(ieee,1); rtllib_sta_wakeup(ieee, 1);
spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags2); spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags2);
} }
...@@ -2181,15 +2132,13 @@ inline void rtllib_sta_ps(struct rtllib_device *ieee) ...@@ -2181,15 +2132,13 @@ inline void rtllib_sta_ps(struct rtllib_device *ieee)
void rtllib_sta_wakeup(struct rtllib_device *ieee, short nl) void rtllib_sta_wakeup(struct rtllib_device *ieee, short nl)
{ {
if (ieee->sta_sleep == LPS_IS_WAKE){ if (ieee->sta_sleep == LPS_IS_WAKE) {
if (nl){ if (nl) {
if (ieee->pHTInfo->IOTAction & HT_IOT_ACT_NULL_DATA_POWER_SAVING) if (ieee->pHTInfo->IOTAction &
{ HT_IOT_ACT_NULL_DATA_POWER_SAVING) {
ieee->ack_tx_to_ieee = 1; ieee->ack_tx_to_ieee = 1;
rtllib_sta_ps_send_null_frame(ieee, 0); rtllib_sta_ps_send_null_frame(ieee, 0);
} } else {
else
{
ieee->ack_tx_to_ieee = 1; ieee->ack_tx_to_ieee = 1;
rtllib_sta_ps_send_pspoll_frame(ieee); rtllib_sta_ps_send_pspoll_frame(ieee);
} }
...@@ -2200,19 +2149,12 @@ void rtllib_sta_wakeup(struct rtllib_device *ieee, short nl) ...@@ -2200,19 +2149,12 @@ void rtllib_sta_wakeup(struct rtllib_device *ieee, short nl)
if (ieee->sta_sleep == LPS_IS_SLEEP) if (ieee->sta_sleep == LPS_IS_SLEEP)
ieee->sta_wake_up(ieee->dev); ieee->sta_wake_up(ieee->dev);
if (nl){ if (nl) {
/* if (ieee->pHTInfo->IOTAction &
HT_IOT_ACT_NULL_DATA_POWER_SAVING) {
ieee->ack_tx_to_ieee = 1; ieee->ack_tx_to_ieee = 1;
printk("%s(3): notify AP we are awaked ++++++++++ SendNullFunctionData\n", __func__);
rtllib_sta_ps_send_null_frame(ieee, 0); rtllib_sta_ps_send_null_frame(ieee, 0);
*/ } else {
if (ieee->pHTInfo->IOTAction & HT_IOT_ACT_NULL_DATA_POWER_SAVING)
{
ieee->ack_tx_to_ieee = 1;
rtllib_sta_ps_send_null_frame(ieee, 0);
}
else
{
ieee->ack_tx_to_ieee = 1; ieee->ack_tx_to_ieee = 1;
ieee->polling = true; ieee->polling = true;
rtllib_sta_ps_send_pspoll_frame(ieee); rtllib_sta_ps_send_pspoll_frame(ieee);
...@@ -2226,13 +2168,13 @@ void rtllib_sta_wakeup(struct rtllib_device *ieee, short nl) ...@@ -2226,13 +2168,13 @@ void rtllib_sta_wakeup(struct rtllib_device *ieee, short nl)
void rtllib_ps_tx_ack(struct rtllib_device *ieee, short success) void rtllib_ps_tx_ack(struct rtllib_device *ieee, short success)
{ {
unsigned long flags,flags2; unsigned long flags, flags2;
spin_lock_irqsave(&ieee->lock, flags); spin_lock_irqsave(&ieee->lock, flags);
if (ieee->sta_sleep == LPS_WAIT_NULL_DATA_SEND){ if (ieee->sta_sleep == LPS_WAIT_NULL_DATA_SEND) {
/* Null frame with PS bit set */ /* Null frame with PS bit set */
if (success){ if (success) {
ieee->sta_sleep = LPS_IS_SLEEP; ieee->sta_sleep = LPS_IS_SLEEP;
ieee->enter_sleep_state(ieee->dev, ieee->ps_time); ieee->enter_sleep_state(ieee->dev, ieee->ps_time);
} }
...@@ -2241,199 +2183,208 @@ void rtllib_ps_tx_ack(struct rtllib_device *ieee, short success) ...@@ -2241,199 +2183,208 @@ void rtllib_ps_tx_ack(struct rtllib_device *ieee, short success)
*/ */
} else {/* 21112005 - tx again null without PS bit if lost */ } else {/* 21112005 - tx again null without PS bit if lost */
if ((ieee->sta_sleep == LPS_IS_WAKE) && !success){ if ((ieee->sta_sleep == LPS_IS_WAKE) && !success) {
spin_lock_irqsave(&ieee->mgmt_tx_lock, flags2); spin_lock_irqsave(&ieee->mgmt_tx_lock, flags2);
if (ieee->pHTInfo->IOTAction & HT_IOT_ACT_NULL_DATA_POWER_SAVING) if (ieee->pHTInfo->IOTAction &
{ HT_IOT_ACT_NULL_DATA_POWER_SAVING)
rtllib_sta_ps_send_null_frame(ieee, 0); rtllib_sta_ps_send_null_frame(ieee, 0);
}
else else
{
rtllib_sta_ps_send_pspoll_frame(ieee); rtllib_sta_ps_send_pspoll_frame(ieee);
}
spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags2); spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags2);
} }
} }
spin_unlock_irqrestore(&ieee->lock, flags); spin_unlock_irqrestore(&ieee->lock, flags);
} }
void rtllib_process_action(struct rtllib_device* ieee, struct sk_buff* skb) void rtllib_process_action(struct rtllib_device *ieee, struct sk_buff *skb)
{ {
struct rtllib_hdr_3addr *header = (struct rtllib_hdr_3addr *) skb->data; struct rtllib_hdr_3addr *header = (struct rtllib_hdr_3addr *) skb->data;
u8* act = rtllib_get_payload((struct rtllib_hdr *)header); u8 *act = rtllib_get_payload((struct rtllib_hdr *)header);
u8 category = 0; u8 category = 0;
if (act == NULL) { if (act == NULL) {
RTLLIB_DEBUG(RTLLIB_DL_ERR, "error to get payload of action frame\n"); RTLLIB_DEBUG(RTLLIB_DL_ERR, "error to get payload of "
"action frame\n");
return; return;
} }
category = *act; category = *act;
act ++; act++;
switch (category) { switch (category) {
case ACT_CAT_BA: case ACT_CAT_BA:
switch (*act) { switch (*act) {
case ACT_ADDBAREQ: case ACT_ADDBAREQ:
rtllib_rx_ADDBAReq(ieee, skb); rtllib_rx_ADDBAReq(ieee, skb);
break; break;
case ACT_ADDBARSP: case ACT_ADDBARSP:
rtllib_rx_ADDBARsp(ieee, skb); rtllib_rx_ADDBARsp(ieee, skb);
break;
case ACT_DELBA:
rtllib_rx_DELBA(ieee, skb);
break;
}
break; break;
default: case ACT_DELBA:
rtllib_rx_DELBA(ieee, skb);
break; break;
}
break;
default:
break;
} }
return; return;
} }
inline int rtllib_rx_assoc_resp(struct rtllib_device *ieee, struct sk_buff *skb, struct rtllib_rx_stats *rx_stats) inline int rtllib_rx_assoc_resp(struct rtllib_device *ieee, struct sk_buff *skb,
struct rtllib_rx_stats *rx_stats)
{ {
u16 errcode; u16 errcode;
int aid; int aid;
u8* ies; u8 *ies;
struct rtllib_assoc_response_frame *assoc_resp; struct rtllib_assoc_response_frame *assoc_resp;
struct rtllib_hdr_3addr *header = (struct rtllib_hdr_3addr *) skb->data; struct rtllib_hdr_3addr *header = (struct rtllib_hdr_3addr *) skb->data;
RTLLIB_DEBUG_MGMT("received [RE]ASSOCIATION RESPONSE (%d)\n", RTLLIB_DEBUG_MGMT("received [RE]ASSOCIATION RESPONSE (%d)\n",
WLAN_FC_GET_STYPE(header->frame_ctl)); WLAN_FC_GET_STYPE(header->frame_ctl));
if ((ieee->softmac_features & IEEE_SOFTMAC_ASSOCIATE) && if ((ieee->softmac_features & IEEE_SOFTMAC_ASSOCIATE) &&
ieee->state == RTLLIB_ASSOCIATING_AUTHENTICATED && ieee->state == RTLLIB_ASSOCIATING_AUTHENTICATED &&
(ieee->iw_mode == IW_MODE_INFRA)) (ieee->iw_mode == IW_MODE_INFRA)) {
{ errcode = assoc_parse(ieee, skb, &aid);
if (0 == (errcode=assoc_parse(ieee,skb, &aid))){ if (0 == errcode) {
struct rtllib_network *network = kzalloc(sizeof(struct rtllib_network), GFP_ATOMIC); struct rtllib_network *network =
kzalloc(sizeof(struct rtllib_network),
GFP_ATOMIC);
if (!network) if (!network)
return 1; return 1;
memset(network,0,sizeof(*network)); memset(network, 0, sizeof(*network));
ieee->state=RTLLIB_LINKED; ieee->state = RTLLIB_LINKED;
ieee->assoc_id = aid; ieee->assoc_id = aid;
ieee->softmac_stats.rx_ass_ok++; ieee->softmac_stats.rx_ass_ok++;
/* station support qos */ /* station support qos */
/* Let the register setting defaultly with Legacy station */ /* Let the register setting default with Legacy station */
assoc_resp = (struct rtllib_assoc_response_frame*)skb->data; assoc_resp = (struct rtllib_assoc_response_frame *)skb->data;
if (ieee->current_network.qos_data.supported == 1) { if (ieee->current_network.qos_data.supported == 1) {
if (rtllib_parse_info_param(ieee,assoc_resp->info_element,\ if (rtllib_parse_info_param(ieee, assoc_resp->info_element,
rx_stats->len - sizeof(*assoc_resp),\ rx_stats->len - sizeof(*assoc_resp),
network,rx_stats)){ network, rx_stats)) {
kfree(network); kfree(network);
return 1; return 1;
} } else {
else memcpy(ieee->pHTInfo->PeerHTCapBuf,
{ network->bssht.bdHTCapBuf,
memcpy(ieee->pHTInfo->PeerHTCapBuf, network->bssht.bdHTCapBuf, network->bssht.bdHTCapLen); network->bssht.bdHTCapLen);
memcpy(ieee->pHTInfo->PeerHTInfoBuf, network->bssht.bdHTInfoBuf, network->bssht.bdHTInfoLen); memcpy(ieee->pHTInfo->PeerHTInfoBuf,
network->bssht.bdHTInfoBuf,
network->bssht.bdHTInfoLen);
} }
if (ieee->handle_assoc_response != NULL) if (ieee->handle_assoc_response != NULL)
ieee->handle_assoc_response(ieee->dev, (struct rtllib_assoc_response_frame*)header, network); ieee->handle_assoc_response(ieee->dev,
(struct rtllib_assoc_response_frame *)header,
network);
kfree(network); kfree(network);
} }
if (ieee->assocresp_ies){ kfree(ieee->assocresp_ies);
kfree(ieee->assocresp_ies); ieee->assocresp_ies = NULL;
ieee->assocresp_ies = NULL;
}
ies = &(assoc_resp->info_element[0].id); ies = &(assoc_resp->info_element[0].id);
ieee->assocresp_ies_len = (skb->data + skb->len) - ies; ieee->assocresp_ies_len = (skb->data + skb->len) - ies;
ieee->assocresp_ies = kmalloc(ieee->assocresp_ies_len, GFP_ATOMIC); ieee->assocresp_ies = kmalloc(ieee->assocresp_ies_len,
GFP_ATOMIC);
if (ieee->assocresp_ies) if (ieee->assocresp_ies)
memcpy(ieee->assocresp_ies, ies, ieee->assocresp_ies_len); memcpy(ieee->assocresp_ies, ies,
else{ ieee->assocresp_ies_len);
printk("%s()Warning: can't alloc memory for assocresp_ies\n", __func__); else {
printk(KERN_INFO "%s()Warning: can't alloc "
"memory for assocresp_ies\n", __func__);
ieee->assocresp_ies_len = 0; ieee->assocresp_ies_len = 0;
} }
rtllib_associate_complete(ieee); rtllib_associate_complete(ieee);
} else { } else {
/* aid could not been allocated */ /* aid could not been allocated */
ieee->softmac_stats.rx_ass_err++; ieee->softmac_stats.rx_ass_err++;
printk( printk(KERN_INFO "Association response status code 0x%x\n",
"Association response status code 0x%x\n",
errcode); errcode);
RTLLIB_DEBUG_MGMT( RTLLIB_DEBUG_MGMT(
"Association response status code 0x%x\n", "Association response status code 0x%x\n",
errcode); errcode);
if (ieee->AsocRetryCount < RT_ASOC_RETRY_LIMIT) { if (ieee->AsocRetryCount < RT_ASOC_RETRY_LIMIT)
queue_delayed_work_rsl(ieee->wq, &ieee->associate_procedure_wq, 0); queue_delayed_work_rsl(ieee->wq,
} else { &ieee->associate_procedure_wq, 0);
else
rtllib_associate_abort(ieee); rtllib_associate_abort(ieee);
}
} }
} }
return 0; return 0;
} }
inline int rtllib_rx_auth(struct rtllib_device *ieee, struct sk_buff *skb, struct rtllib_rx_stats *rx_stats) inline int rtllib_rx_auth(struct rtllib_device *ieee, struct sk_buff *skb,
struct rtllib_rx_stats *rx_stats)
{ {
u16 errcode; u16 errcode;
u8* challenge; u8 *challenge;
int chlen=0; int chlen = 0;
bool bSupportNmode = true, bHalfSupportNmode = false; bool bSupportNmode = true, bHalfSupportNmode = false;
if (ieee->softmac_features & IEEE_SOFTMAC_ASSOCIATE){ if (ieee->softmac_features & IEEE_SOFTMAC_ASSOCIATE) {
if (ieee->state == RTLLIB_ASSOCIATING_AUTHENTICATING && if (ieee->state == RTLLIB_ASSOCIATING_AUTHENTICATING &&
(ieee->iw_mode == IW_MODE_INFRA)) { (ieee->iw_mode == IW_MODE_INFRA)) {
RTLLIB_DEBUG_MGMT("Received authentication response"); RTLLIB_DEBUG_MGMT("Received authentication response");
if (0 == (errcode=auth_parse(skb, &challenge, &chlen))) { errcode = auth_parse(skb, &challenge, &chlen);
if (ieee->open_wep || !challenge){ if (0 == errcode) {
if (ieee->open_wep || !challenge) {
ieee->state = RTLLIB_ASSOCIATING_AUTHENTICATED; ieee->state = RTLLIB_ASSOCIATING_AUTHENTICATED;
ieee->softmac_stats.rx_auth_rs_ok++; ieee->softmac_stats.rx_auth_rs_ok++;
if (!(ieee->pHTInfo->IOTAction&HT_IOT_ACT_PURE_N_MODE)) if (!(ieee->pHTInfo->IOTAction &
{ HT_IOT_ACT_PURE_N_MODE)) {
if (!ieee->GetNmodeSupportBySecCfg(ieee->dev)) if (!ieee->GetNmodeSupportBySecCfg(ieee->dev)) {
{ if (IsHTHalfNmodeAPs(ieee)) {
if (IsHTHalfNmodeAPs(ieee))
{
bSupportNmode = true; bSupportNmode = true;
bHalfSupportNmode = true; bHalfSupportNmode = true;
} } else {
else
{
bSupportNmode = false; bSupportNmode = false;
bHalfSupportNmode = false; bHalfSupportNmode = false;
} }
} }
} }
/* Dummy wirless mode setting to avoid encryption issue */ /* Dummy wirless mode setting to avoid
* encryption issue */
if (bSupportNmode) { if (bSupportNmode) {
ieee->SetWirelessMode(ieee->dev, \ ieee->SetWirelessMode(ieee->dev,
ieee->current_network.mode); ieee->current_network.mode);
}else{ } else {
/*TODO*/ /*TODO*/
ieee->SetWirelessMode(ieee->dev, IEEE_G); ieee->SetWirelessMode(ieee->dev,
IEEE_G);
} }
if (ieee->current_network.mode == IEEE_N_24G && bHalfSupportNmode == true) if (ieee->current_network.mode ==
{ IEEE_N_24G &&
printk("===============>entern half N mode\n"); bHalfSupportNmode == true) {
ieee->bHalfWirelessN24GMode = true; printk(KERN_INFO "======>enter "
} "half N mode\n");
else ieee->bHalfWirelessN24GMode =
ieee->bHalfWirelessN24GMode = false; true;
} else
ieee->bHalfWirelessN24GMode =
false;
rtllib_associate_step2(ieee); rtllib_associate_step2(ieee);
}else{ } else {
rtllib_auth_challenge(ieee, challenge, chlen); rtllib_auth_challenge(ieee, challenge,
chlen);
} }
}else{ } else {
ieee->softmac_stats.rx_auth_rs_err++; ieee->softmac_stats.rx_auth_rs_err++;
RTLLIB_DEBUG_MGMT("Authentication respose status code 0x%x",errcode); RTLLIB_DEBUG_MGMT("Authentication respose"
" status code 0x%x", errcode);
printk("Authentication respose status code 0x%x",errcode); printk(KERN_INFO "Authentication respose "
"status code 0x%x", errcode);
rtllib_associate_abort(ieee); rtllib_associate_abort(ieee);
} }
}else if (ieee->iw_mode == IW_MODE_MASTER){ } else if (ieee->iw_mode == IW_MODE_MASTER) {
rtllib_rx_auth_rq(ieee, skb); rtllib_rx_auth_rq(ieee, skb);
} }
} }
return 0; return 0;
} }
...@@ -2453,7 +2404,7 @@ inline int rtllib_rx_deauth(struct rtllib_device *ieee, struct sk_buff *skb) ...@@ -2453,7 +2404,7 @@ inline int rtllib_rx_deauth(struct rtllib_device *ieee, struct sk_buff *skb)
printk(KERN_INFO "==========>received disassoc/deauth(%x) " printk(KERN_INFO "==========>received disassoc/deauth(%x) "
"frame, reason code:%x\n", "frame, reason code:%x\n",
WLAN_FC_GET_STYPE(header->frame_ctl), WLAN_FC_GET_STYPE(header->frame_ctl),
((struct rtllib_disassoc*)skb->data)->reason); ((struct rtllib_disassoc *)skb->data)->reason);
ieee->state = RTLLIB_ASSOCIATING; ieee->state = RTLLIB_ASSOCIATING;
ieee->softmac_stats.reassoc++; ieee->softmac_stats.reassoc++;
ieee->is_roaming = true; ieee->is_roaming = true;
...@@ -2461,18 +2412,21 @@ inline int rtllib_rx_deauth(struct rtllib_device *ieee, struct sk_buff *skb) ...@@ -2461,18 +2412,21 @@ inline int rtllib_rx_deauth(struct rtllib_device *ieee, struct sk_buff *skb)
rtllib_disassociate(ieee); rtllib_disassociate(ieee);
RemovePeerTS(ieee, header->addr2); RemovePeerTS(ieee, header->addr2);
if (ieee->LedControlHandler != NULL) if (ieee->LedControlHandler != NULL)
ieee->LedControlHandler(ieee->dev, LED_CTL_START_TO_LINK); ieee->LedControlHandler(ieee->dev,
LED_CTL_START_TO_LINK);
if (!(ieee->rtllib_ap_sec_type(ieee)&(SEC_ALG_CCMP|SEC_ALG_TKIP))) if (!(ieee->rtllib_ap_sec_type(ieee) &
queue_delayed_work_rsl(ieee->wq, &ieee->associate_procedure_wq, 5); (SEC_ALG_CCMP|SEC_ALG_TKIP)))
queue_delayed_work_rsl(ieee->wq,
&ieee->associate_procedure_wq, 5);
} }
return 0; return 0;
} }
inline int rtllib_rx_frame_softmac(struct rtllib_device *ieee, struct sk_buff *skb, inline int rtllib_rx_frame_softmac(struct rtllib_device *ieee,
struct rtllib_rx_stats *rx_stats, u16 type, struct sk_buff *skb,
u16 stype) struct rtllib_rx_stats *rx_stats, u16 type,
u16 stype)
{ {
struct rtllib_hdr_3addr *header = (struct rtllib_hdr_3addr *) skb->data; struct rtllib_hdr_3addr *header = (struct rtllib_hdr_3addr *) skb->data;
...@@ -2480,44 +2434,31 @@ inline int rtllib_rx_frame_softmac(struct rtllib_device *ieee, struct sk_buff *s ...@@ -2480,44 +2434,31 @@ inline int rtllib_rx_frame_softmac(struct rtllib_device *ieee, struct sk_buff *s
return 0; return 0;
switch (WLAN_FC_GET_STYPE(header->frame_ctl)) { switch (WLAN_FC_GET_STYPE(header->frame_ctl)) {
case RTLLIB_STYPE_ASSOC_RESP:
case RTLLIB_STYPE_ASSOC_RESP: case RTLLIB_STYPE_REASSOC_RESP:
case RTLLIB_STYPE_REASSOC_RESP: if (rtllib_rx_assoc_resp(ieee, skb, rx_stats) == 1)
return 1;
if (rtllib_rx_assoc_resp(ieee, skb, rx_stats) == 1) break;
return 1; case RTLLIB_STYPE_ASSOC_REQ:
case RTLLIB_STYPE_REASSOC_REQ:
break; if ((ieee->softmac_features & IEEE_SOFTMAC_ASSOCIATE) &&
ieee->iw_mode == IW_MODE_MASTER)
case RTLLIB_STYPE_ASSOC_REQ: rtllib_rx_assoc_rq(ieee, skb);
case RTLLIB_STYPE_REASSOC_REQ: break;
case RTLLIB_STYPE_AUTH:
if ((ieee->softmac_features & IEEE_SOFTMAC_ASSOCIATE) && rtllib_rx_auth(ieee, skb, rx_stats);
ieee->iw_mode == IW_MODE_MASTER) break;
case RTLLIB_STYPE_DISASSOC:
rtllib_rx_assoc_rq(ieee, skb); case RTLLIB_STYPE_DEAUTH:
break; rtllib_rx_deauth(ieee, skb);
break;
case RTLLIB_STYPE_AUTH: case RTLLIB_STYPE_MANAGE_ACT:
rtllib_process_action(ieee, skb);
rtllib_rx_auth(ieee, skb, rx_stats); break;
default:
break; return -1;
case RTLLIB_STYPE_DISASSOC: break;
case RTLLIB_STYPE_DEAUTH:
rtllib_rx_deauth(ieee, skb);
break;
case RTLLIB_STYPE_MANAGE_ACT:
rtllib_process_action(ieee,skb);
break;
default:
return -1;
break;
} }
return 0; return 0;
} }
...@@ -2548,43 +2489,43 @@ void rtllib_softmac_xmit(struct rtllib_txb *txb, struct rtllib_device *ieee) ...@@ -2548,43 +2489,43 @@ void rtllib_softmac_xmit(struct rtllib_txb *txb, struct rtllib_device *ieee)
struct cb_desc *tcb_desc = NULL; struct cb_desc *tcb_desc = NULL;
unsigned long queue_len = 0; unsigned long queue_len = 0;
spin_lock_irqsave(&ieee->lock,flags); spin_lock_irqsave(&ieee->lock, flags);
/* called with 2nd parm 0, no tx mgmt lock required */ /* called with 2nd parm 0, no tx mgmt lock required */
rtllib_sta_wakeup(ieee,0); rtllib_sta_wakeup(ieee, 0);
/* update the tx status */ /* update the tx status */
tcb_desc = (struct cb_desc *)(txb->fragments[0]->cb + MAX_DEV_ADDR_SIZE); tcb_desc = (struct cb_desc *)(txb->fragments[0]->cb +
if (tcb_desc->bMulticast) { MAX_DEV_ADDR_SIZE);
if (tcb_desc->bMulticast)
ieee->stats.multicast++; ieee->stats.multicast++;
}
/* if xmit available, just xmit it immediately, else just insert it to the wait queue */ /* if xmit available, just xmit it immediately, else just insert it to
* the wait queue */
for (i = 0; i < txb->nr_frags; i++) { for (i = 0; i < txb->nr_frags; i++) {
queue_len = skb_queue_len(&ieee->skb_waitQ[queue_index]); queue_len = skb_queue_len(&ieee->skb_waitQ[queue_index]);
if ((queue_len != 0) ||\ if ((queue_len != 0) ||\
(!ieee->check_nic_enough_desc(ieee->dev,queue_index))||\ (!ieee->check_nic_enough_desc(ieee->dev, queue_index)) ||
(ieee->queue_stop)) { (ieee->queue_stop)) {
/* insert the skb packet to the wait queue */ /* insert the skb packet to the wait queue */
/* as for the completion function, it does not need /* as for the completion function, it does not need
* to check it any more. * to check it any more.
* */ * */
if (queue_len < 200) if (queue_len < 200)
{ skb_queue_tail(&ieee->skb_waitQ[queue_index],
skb_queue_tail(&ieee->skb_waitQ[queue_index], txb->fragments[i]); txb->fragments[i]);
}else{ else
kfree_skb(txb->fragments[i]); kfree_skb(txb->fragments[i]);
} } else {
}else{
ieee->softmac_data_hard_start_xmit( ieee->softmac_data_hard_start_xmit(
txb->fragments[i], txb->fragments[i],
ieee->dev,ieee->rate); ieee->dev, ieee->rate);
} }
} }
rtllib_txb_free(txb); rtllib_txb_free(txb);
spin_unlock_irqrestore(&ieee->lock,flags); spin_unlock_irqrestore(&ieee->lock, flags);
} }
...@@ -2592,16 +2533,17 @@ void rtllib_softmac_xmit(struct rtllib_txb *txb, struct rtllib_device *ieee) ...@@ -2592,16 +2533,17 @@ void rtllib_softmac_xmit(struct rtllib_txb *txb, struct rtllib_device *ieee)
void rtllib_resume_tx(struct rtllib_device *ieee) void rtllib_resume_tx(struct rtllib_device *ieee)
{ {
int i; int i;
for (i = ieee->tx_pending.frag; i < ieee->tx_pending.txb->nr_frags; i++) { for (i = ieee->tx_pending.frag; i < ieee->tx_pending.txb->nr_frags;
i++) {
if (ieee->queue_stop){ if (ieee->queue_stop) {
ieee->tx_pending.frag = i; ieee->tx_pending.frag = i;
return; return;
}else{ } else {
ieee->softmac_data_hard_start_xmit( ieee->softmac_data_hard_start_xmit(
ieee->tx_pending.txb->fragments[i], ieee->tx_pending.txb->fragments[i],
ieee->dev,ieee->rate); ieee->dev, ieee->rate);
ieee->stats.tx_packets++; ieee->stats.tx_packets++;
} }
} }
...@@ -2615,14 +2557,14 @@ void rtllib_reset_queue(struct rtllib_device *ieee) ...@@ -2615,14 +2557,14 @@ void rtllib_reset_queue(struct rtllib_device *ieee)
{ {
unsigned long flags; unsigned long flags;
spin_lock_irqsave(&ieee->lock,flags); spin_lock_irqsave(&ieee->lock, flags);
init_mgmt_queue(ieee); init_mgmt_queue(ieee);
if (ieee->tx_pending.txb){ if (ieee->tx_pending.txb) {
rtllib_txb_free(ieee->tx_pending.txb); rtllib_txb_free(ieee->tx_pending.txb);
ieee->tx_pending.txb = NULL; ieee->tx_pending.txb = NULL;
} }
ieee->queue_stop = 0; ieee->queue_stop = 0;
spin_unlock_irqrestore(&ieee->lock,flags); spin_unlock_irqrestore(&ieee->lock, flags);
} }
...@@ -2633,13 +2575,14 @@ void rtllib_wake_queue(struct rtllib_device *ieee) ...@@ -2633,13 +2575,14 @@ void rtllib_wake_queue(struct rtllib_device *ieee)
struct sk_buff *skb; struct sk_buff *skb;
struct rtllib_hdr_3addr *header; struct rtllib_hdr_3addr *header;
spin_lock_irqsave(&ieee->lock,flags); spin_lock_irqsave(&ieee->lock, flags);
if (! ieee->queue_stop) goto exit; if (!ieee->queue_stop)
goto exit;
ieee->queue_stop = 0; ieee->queue_stop = 0;
if (ieee->softmac_features & IEEE_SOFTMAC_SINGLE_QUEUE){ if (ieee->softmac_features & IEEE_SOFTMAC_SINGLE_QUEUE) {
while (!ieee->queue_stop && (skb = dequeue_mgmt(ieee))){ while (!ieee->queue_stop && (skb = dequeue_mgmt(ieee))) {
header = (struct rtllib_hdr_3addr *) skb->data; header = (struct rtllib_hdr_3addr *) skb->data;
...@@ -2650,26 +2593,27 @@ void rtllib_wake_queue(struct rtllib_device *ieee) ...@@ -2650,26 +2593,27 @@ void rtllib_wake_queue(struct rtllib_device *ieee)
else else
ieee->seq_ctrl[0]++; ieee->seq_ctrl[0]++;
ieee->softmac_data_hard_start_xmit(skb,ieee->dev,ieee->basic_rate); ieee->softmac_data_hard_start_xmit(skb, ieee->dev,
ieee->basic_rate);
} }
} }
if (!ieee->queue_stop && ieee->tx_pending.txb) if (!ieee->queue_stop && ieee->tx_pending.txb)
rtllib_resume_tx(ieee); rtllib_resume_tx(ieee);
if (!ieee->queue_stop && netif_queue_stopped(ieee->dev)){ if (!ieee->queue_stop && netif_queue_stopped(ieee->dev)) {
ieee->softmac_stats.swtxawake++; ieee->softmac_stats.swtxawake++;
netif_wake_queue(ieee->dev); netif_wake_queue(ieee->dev);
} }
exit : exit:
spin_unlock_irqrestore(&ieee->lock,flags); spin_unlock_irqrestore(&ieee->lock, flags);
} }
void rtllib_stop_queue(struct rtllib_device *ieee) void rtllib_stop_queue(struct rtllib_device *ieee)
{ {
if (! netif_queue_stopped(ieee->dev)){ if (!netif_queue_stopped(ieee->dev)) {
netif_stop_queue(ieee->dev); netif_stop_queue(ieee->dev);
ieee->softmac_stats.swtxstop++; ieee->softmac_stats.swtxstop++;
} }
...@@ -2680,8 +2624,8 @@ void rtllib_stop_queue(struct rtllib_device *ieee) ...@@ -2680,8 +2624,8 @@ void rtllib_stop_queue(struct rtllib_device *ieee)
void rtllib_stop_all_queues(struct rtllib_device *ieee) void rtllib_stop_all_queues(struct rtllib_device *ieee)
{ {
unsigned int i; unsigned int i;
for (i=0; i < ieee->dev->num_tx_queues; i++) for (i = 0; i < ieee->dev->num_tx_queues; i++)
netdev_get_tx_queue(ieee->dev,i)->trans_start = jiffies; netdev_get_tx_queue(ieee->dev, i)->trans_start = jiffies;
netif_tx_stop_all_queues(ieee->dev); netif_tx_stop_all_queues(ieee->dev);
} }
...@@ -2708,12 +2652,13 @@ void rtllib_start_master_bss(struct rtllib_device *ieee) ...@@ -2708,12 +2652,13 @@ void rtllib_start_master_bss(struct rtllib_device *ieee)
{ {
ieee->assoc_id = 1; ieee->assoc_id = 1;
if (ieee->current_network.ssid_len == 0){ if (ieee->current_network.ssid_len == 0) {
strncpy(ieee->current_network.ssid, strncpy(ieee->current_network.ssid,
RTLLIB_DEFAULT_TX_ESSID, RTLLIB_DEFAULT_TX_ESSID,
IW_ESSID_MAX_SIZE); IW_ESSID_MAX_SIZE);
ieee->current_network.ssid_len = strlen(RTLLIB_DEFAULT_TX_ESSID); ieee->current_network.ssid_len =
strlen(RTLLIB_DEFAULT_TX_ESSID);
ieee->ssid_set = 1; ieee->ssid_set = 1;
} }
...@@ -2733,7 +2678,7 @@ void rtllib_start_master_bss(struct rtllib_device *ieee) ...@@ -2733,7 +2678,7 @@ void rtllib_start_master_bss(struct rtllib_device *ieee)
void rtllib_start_monitor_mode(struct rtllib_device *ieee) void rtllib_start_monitor_mode(struct rtllib_device *ieee)
{ {
/* reset hardware status */ /* reset hardware status */
if (ieee->raw_tx){ if (ieee->raw_tx) {
if (ieee->data_hard_resume) if (ieee->data_hard_resume)
ieee->data_hard_resume(ieee->dev); ieee->data_hard_resume(ieee->dev);
...@@ -2743,7 +2688,8 @@ void rtllib_start_monitor_mode(struct rtllib_device *ieee) ...@@ -2743,7 +2688,8 @@ void rtllib_start_monitor_mode(struct rtllib_device *ieee)
void rtllib_start_ibss_wq(void *data) void rtllib_start_ibss_wq(void *data)
{ {
struct rtllib_device *ieee = container_of_dwork_rsl(data, struct rtllib_device, start_ibss_wq); struct rtllib_device *ieee = container_of_dwork_rsl(data,
struct rtllib_device, start_ibss_wq);
/* iwconfig mode ad-hoc will schedule this and return /* iwconfig mode ad-hoc will schedule this and return
* on the other hand this will block further iwconfig SET * on the other hand this will block further iwconfig SET
* operations because of the wx_sem hold. * operations because of the wx_sem hold.
...@@ -2751,14 +2697,14 @@ void rtllib_start_ibss_wq(void *data) ...@@ -2751,14 +2697,14 @@ void rtllib_start_ibss_wq(void *data)
* (abort) this wq (when syncro scanning) before sleeping * (abort) this wq (when syncro scanning) before sleeping
* on the semaphore * on the semaphore
*/ */
if (!ieee->proto_started){ if (!ieee->proto_started) {
printk("==========oh driver down return\n"); printk(KERN_INFO "==========oh driver down return\n");
return; return;
} }
down(&ieee->wx_sem); down(&ieee->wx_sem);
if (ieee->current_network.ssid_len == 0){ if (ieee->current_network.ssid_len == 0) {
strcpy(ieee->current_network.ssid,RTLLIB_DEFAULT_TX_ESSID); strcpy(ieee->current_network.ssid, RTLLIB_DEFAULT_TX_ESSID);
ieee->current_network.ssid_len = strlen(RTLLIB_DEFAULT_TX_ESSID); ieee->current_network.ssid_len = strlen(RTLLIB_DEFAULT_TX_ESSID);
ieee->ssid_set = 1; ieee->ssid_set = 1;
} }
...@@ -2787,47 +2733,50 @@ void rtllib_start_ibss_wq(void *data) ...@@ -2787,47 +2733,50 @@ void rtllib_start_ibss_wq(void *data)
rtllib_start_scan_syncro(ieee, 0); rtllib_start_scan_syncro(ieee, 0);
/* the network definitively is not here.. create a new cell */ /* the network definitively is not here.. create a new cell */
if (ieee->state == RTLLIB_NOLINK){ if (ieee->state == RTLLIB_NOLINK) {
printk("creating new IBSS cell\n"); printk(KERN_INFO "creating new IBSS cell\n");
ieee->current_network.channel = ieee->IbssStartChnl; ieee->current_network.channel = ieee->IbssStartChnl;
if (!ieee->wap_set) if (!ieee->wap_set)
rtllib_randomize_cell(ieee); rtllib_randomize_cell(ieee);
if (ieee->modulation & RTLLIB_CCK_MODULATION){ if (ieee->modulation & RTLLIB_CCK_MODULATION) {
ieee->current_network.rates_len = 4; ieee->current_network.rates_len = 4;
ieee->current_network.rates[0] = RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_1MB; ieee->current_network.rates[0] =
ieee->current_network.rates[1] = RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_2MB; RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_1MB;
ieee->current_network.rates[2] = RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_5MB; ieee->current_network.rates[1] =
ieee->current_network.rates[3] = RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_11MB; RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_2MB;
ieee->current_network.rates[2] =
RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_5MB;
ieee->current_network.rates[3] =
RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_11MB;
}else } else
ieee->current_network.rates_len = 0; ieee->current_network.rates_len = 0;
if (ieee->modulation & RTLLIB_OFDM_MODULATION){ if (ieee->modulation & RTLLIB_OFDM_MODULATION) {
ieee->current_network.rates_ex_len = 8; ieee->current_network.rates_ex_len = 8;
/*ieee->current_network.rates_ex[0] = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_6MB; ieee->current_network.rates_ex[0] =
ieee->current_network.rates_ex[1] = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_9MB; RTLLIB_OFDM_RATE_6MB;
ieee->current_network.rates_ex[2] = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_12MB; ieee->current_network.rates_ex[1] =
ieee->current_network.rates_ex[3] = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_18MB; RTLLIB_OFDM_RATE_9MB;
ieee->current_network.rates_ex[4] = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_24MB; ieee->current_network.rates_ex[2] =
ieee->current_network.rates_ex[5] = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_36MB; RTLLIB_OFDM_RATE_12MB;
ieee->current_network.rates_ex[6] = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_48MB; ieee->current_network.rates_ex[3] =
ieee->current_network.rates_ex[7] = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_54MB;*/ RTLLIB_OFDM_RATE_18MB;
ieee->current_network.rates_ex[4] =
ieee->current_network.rates_ex[0] = RTLLIB_OFDM_RATE_6MB; RTLLIB_OFDM_RATE_24MB;
ieee->current_network.rates_ex[1] = RTLLIB_OFDM_RATE_9MB; ieee->current_network.rates_ex[5] =
ieee->current_network.rates_ex[2] = RTLLIB_OFDM_RATE_12MB; RTLLIB_OFDM_RATE_36MB;
ieee->current_network.rates_ex[3] = RTLLIB_OFDM_RATE_18MB; ieee->current_network.rates_ex[6] =
ieee->current_network.rates_ex[4] = RTLLIB_OFDM_RATE_24MB; RTLLIB_OFDM_RATE_48MB;
ieee->current_network.rates_ex[5] = RTLLIB_OFDM_RATE_36MB; ieee->current_network.rates_ex[7] =
ieee->current_network.rates_ex[6] = RTLLIB_OFDM_RATE_48MB; RTLLIB_OFDM_RATE_54MB;
ieee->current_network.rates_ex[7] = RTLLIB_OFDM_RATE_54MB;
ieee->rate = 108; ieee->rate = 108;
}else{ } else {
ieee->current_network.rates_ex_len = 0; ieee->current_network.rates_ex_len = 0;
ieee->rate = 22; ieee->rate = 22;
} }
...@@ -2839,20 +2788,21 @@ void rtllib_start_ibss_wq(void *data) ...@@ -2839,20 +2788,21 @@ void rtllib_start_ibss_wq(void *data)
ieee->current_network.capability = WLAN_CAPABILITY_IBSS; ieee->current_network.capability = WLAN_CAPABILITY_IBSS;
} }
printk("%s(): ieee->mode = %d\n", __func__, ieee->mode); printk(KERN_INFO "%s(): ieee->mode = %d\n", __func__, ieee->mode);
if ((ieee->mode == IEEE_N_24G) || (ieee->mode == IEEE_N_5G)) if ((ieee->mode == IEEE_N_24G) || (ieee->mode == IEEE_N_5G))
HTUseDefaultSetting(ieee); HTUseDefaultSetting(ieee);
else else
ieee->pHTInfo->bCurrentHTSupport = false; ieee->pHTInfo->bCurrentHTSupport = false;
ieee->SetHwRegHandler(ieee->dev, HW_VAR_MEDIA_STATUS, (u8 *)(&ieee->state)); ieee->SetHwRegHandler(ieee->dev, HW_VAR_MEDIA_STATUS,
(u8 *)(&ieee->state));
ieee->state = RTLLIB_LINKED; ieee->state = RTLLIB_LINKED;
ieee->link_change(ieee->dev); ieee->link_change(ieee->dev);
HTSetConnectBwMode(ieee, HT_CHANNEL_WIDTH_20, HT_EXTCHNL_OFFSET_NO_EXT); HTSetConnectBwMode(ieee, HT_CHANNEL_WIDTH_20, HT_EXTCHNL_OFFSET_NO_EXT);
if (ieee->LedControlHandler != NULL) if (ieee->LedControlHandler != NULL)
ieee->LedControlHandler(ieee->dev,LED_CTL_LINK); ieee->LedControlHandler(ieee->dev, LED_CTL_LINK);
rtllib_start_send_beacons(ieee); rtllib_start_send_beacons(ieee);
...@@ -2875,12 +2825,9 @@ inline void rtllib_start_ibss(struct rtllib_device *ieee) ...@@ -2875,12 +2825,9 @@ inline void rtllib_start_ibss(struct rtllib_device *ieee)
void rtllib_start_bss(struct rtllib_device *ieee) void rtllib_start_bss(struct rtllib_device *ieee)
{ {
unsigned long flags; unsigned long flags;
if (IS_DOT11D_ENABLE(ieee) && !IS_COUNTRY_IE_VALID(ieee)) if (IS_DOT11D_ENABLE(ieee) && !IS_COUNTRY_IE_VALID(ieee)) {
{ if (!ieee->bGlobalDomain)
if (! ieee->bGlobalDomain)
{
return; return;
}
} }
/* check if we have already found the net we /* check if we have already found the net we
* are interested in (if any). * are interested in (if any).
...@@ -2898,15 +2845,15 @@ void rtllib_start_bss(struct rtllib_device *ieee) ...@@ -2898,15 +2845,15 @@ void rtllib_start_bss(struct rtllib_device *ieee)
*/ */
spin_lock_irqsave(&ieee->lock, flags); spin_lock_irqsave(&ieee->lock, flags);
if (ieee->state == RTLLIB_NOLINK) { if (ieee->state == RTLLIB_NOLINK)
rtllib_start_scan(ieee); rtllib_start_scan(ieee);
}
spin_unlock_irqrestore(&ieee->lock, flags); spin_unlock_irqrestore(&ieee->lock, flags);
} }
void rtllib_link_change_wq(void *data) void rtllib_link_change_wq(void *data)
{ {
struct rtllib_device *ieee = container_of_dwork_rsl(data, struct rtllib_device, link_change_wq); struct rtllib_device *ieee = container_of_dwork_rsl(data,
struct rtllib_device, link_change_wq);
ieee->link_change(ieee->dev); ieee->link_change(ieee->dev);
} }
/* called only in userspace context */ /* called only in userspace context */
...@@ -2931,7 +2878,8 @@ void rtllib_disassociate(struct rtllib_device *ieee) ...@@ -2931,7 +2878,8 @@ void rtllib_disassociate(struct rtllib_device *ieee)
void rtllib_associate_retry_wq(void *data) void rtllib_associate_retry_wq(void *data)
{ {
struct rtllib_device *ieee = container_of_dwork_rsl(data, struct rtllib_device, associate_retry_wq); struct rtllib_device *ieee = container_of_dwork_rsl(data,
struct rtllib_device, associate_retry_wq);
unsigned long flags; unsigned long flags;
down(&ieee->wx_sem); down(&ieee->wx_sem);
...@@ -2962,9 +2910,7 @@ void rtllib_associate_retry_wq(void *data) ...@@ -2962,9 +2910,7 @@ void rtllib_associate_retry_wq(void *data)
spin_lock_irqsave(&ieee->lock, flags); spin_lock_irqsave(&ieee->lock, flags);
if (ieee->state == RTLLIB_NOLINK) if (ieee->state == RTLLIB_NOLINK)
{
rtllib_start_scan(ieee); rtllib_start_scan(ieee);
}
spin_unlock_irqrestore(&ieee->lock, flags); spin_unlock_irqrestore(&ieee->lock, flags);
ieee->beinretry = false; ieee->beinretry = false;
...@@ -2974,7 +2920,7 @@ void rtllib_associate_retry_wq(void *data) ...@@ -2974,7 +2920,7 @@ void rtllib_associate_retry_wq(void *data)
struct sk_buff *rtllib_get_beacon_(struct rtllib_device *ieee) struct sk_buff *rtllib_get_beacon_(struct rtllib_device *ieee)
{ {
u8 broadcast_addr[] = {0xff,0xff,0xff,0xff,0xff,0xff}; u8 broadcast_addr[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
struct sk_buff *skb; struct sk_buff *skb;
struct rtllib_probe_response *b; struct rtllib_probe_response *b;
...@@ -3010,11 +2956,12 @@ struct sk_buff *rtllib_get_beacon(struct rtllib_device *ieee) ...@@ -3010,11 +2956,12 @@ struct sk_buff *rtllib_get_beacon(struct rtllib_device *ieee)
return skb; return skb;
} }
void rtllib_softmac_stop_protocol(struct rtllib_device *ieee, u8 mesh_flag, u8 shutdown) void rtllib_softmac_stop_protocol(struct rtllib_device *ieee, u8 mesh_flag,
u8 shutdown)
{ {
rtllib_stop_scan_syncro(ieee); rtllib_stop_scan_syncro(ieee);
down(&ieee->wx_sem); down(&ieee->wx_sem);
rtllib_stop_protocol(ieee,shutdown); rtllib_stop_protocol(ieee, shutdown);
up(&ieee->wx_sem); up(&ieee->wx_sem);
} }
...@@ -3024,8 +2971,8 @@ void rtllib_stop_protocol(struct rtllib_device *ieee, u8 shutdown) ...@@ -3024,8 +2971,8 @@ void rtllib_stop_protocol(struct rtllib_device *ieee, u8 shutdown)
if (!ieee->proto_started) if (!ieee->proto_started)
return; return;
if (shutdown){ if (shutdown) {
ieee->proto_started = 0; ieee->proto_started = 0;
ieee->proto_stoppping = 1; ieee->proto_stoppping = 1;
if (ieee->rtllib_ips_leave != NULL) if (ieee->rtllib_ips_leave != NULL)
ieee->rtllib_ips_leave(ieee->dev); ieee->rtllib_ips_leave(ieee->dev);
...@@ -3041,26 +2988,22 @@ void rtllib_stop_protocol(struct rtllib_device *ieee, u8 shutdown) ...@@ -3041,26 +2988,22 @@ void rtllib_stop_protocol(struct rtllib_device *ieee, u8 shutdown)
if (ieee->state <= RTLLIB_ASSOCIATING_AUTHENTICATED) if (ieee->state <= RTLLIB_ASSOCIATING_AUTHENTICATED)
ieee->state = RTLLIB_NOLINK; ieee->state = RTLLIB_NOLINK;
if (ieee->state == RTLLIB_LINKED){ if (ieee->state == RTLLIB_LINKED) {
if (ieee->iw_mode == IW_MODE_INFRA) if (ieee->iw_mode == IW_MODE_INFRA)
SendDisassociation(ieee,1,deauth_lv_ss); SendDisassociation(ieee, 1, deauth_lv_ss);
rtllib_disassociate(ieee); rtllib_disassociate(ieee);
} }
if (shutdown){ if (shutdown) {
RemoveAllTS(ieee); RemoveAllTS(ieee);
ieee->proto_stoppping = 0; ieee->proto_stoppping = 0;
} }
if (ieee->assocreq_ies) { kfree(ieee->assocreq_ies);
kfree(ieee->assocreq_ies); ieee->assocreq_ies = NULL;
ieee->assocreq_ies = NULL; ieee->assocreq_ies_len = 0;
ieee->assocreq_ies_len = 0; kfree(ieee->assocresp_ies);
} ieee->assocresp_ies = NULL;
if (ieee->assocresp_ies) { ieee->assocresp_ies_len = 0;
kfree(ieee->assocresp_ies);
ieee->assocresp_ies = NULL;
ieee->assocresp_ies_len = 0;
}
} }
void rtllib_softmac_start_protocol(struct rtllib_device *ieee, u8 mesh_flag) void rtllib_softmac_start_protocol(struct rtllib_device *ieee, u8 mesh_flag)
...@@ -3087,7 +3030,7 @@ void rtllib_start_protocol(struct rtllib_device *ieee) ...@@ -3087,7 +3030,7 @@ void rtllib_start_protocol(struct rtllib_device *ieee)
ch++; ch++;
if (ch > MAX_CHANNEL_NUMBER) if (ch > MAX_CHANNEL_NUMBER)
return; /* no channel found */ return; /* no channel found */
} while(!ieee->active_channel_map[ch]); } while (!ieee->active_channel_map[ch]);
ieee->current_network.channel = ch; ieee->current_network.channel = ch;
} }
...@@ -3130,20 +3073,19 @@ void rtllib_softmac_init(struct rtllib_device *ieee) ...@@ -3130,20 +3073,19 @@ void rtllib_softmac_init(struct rtllib_device *ieee)
memset(&ieee->current_network, 0, sizeof(struct rtllib_network)); memset(&ieee->current_network, 0, sizeof(struct rtllib_network));
ieee->state = RTLLIB_NOLINK; ieee->state = RTLLIB_NOLINK;
for (i = 0; i < 5; i++) { for (i = 0; i < 5; i++)
ieee->seq_ctrl[i] = 0; ieee->seq_ctrl[i] = 0;
}
ieee->pDot11dInfo = kmalloc(sizeof(struct rt_dot11d_info), GFP_ATOMIC); ieee->pDot11dInfo = kmalloc(sizeof(struct rt_dot11d_info), GFP_ATOMIC);
if (!ieee->pDot11dInfo) if (!ieee->pDot11dInfo)
RTLLIB_DEBUG(RTLLIB_DL_ERR, "can't alloc memory for DOT11D\n"); RTLLIB_DEBUG(RTLLIB_DL_ERR, "can't alloc memory for DOT11D\n");
memset(ieee->pDot11dInfo, 0, sizeof(struct rt_dot11d_info)); memset(ieee->pDot11dInfo, 0, sizeof(struct rt_dot11d_info));
ieee->LinkDetectInfo.SlotIndex = 0; ieee->LinkDetectInfo.SlotIndex = 0;
ieee->LinkDetectInfo.SlotNum = 2; ieee->LinkDetectInfo.SlotNum = 2;
ieee->LinkDetectInfo.NumRecvBcnInPeriod=0; ieee->LinkDetectInfo.NumRecvBcnInPeriod = 0;
ieee->LinkDetectInfo.NumRecvDataInPeriod=0; ieee->LinkDetectInfo.NumRecvDataInPeriod = 0;
ieee->LinkDetectInfo.NumTxOkInPeriod =0; ieee->LinkDetectInfo.NumTxOkInPeriod = 0;
ieee->LinkDetectInfo.NumRxOkInPeriod =0; ieee->LinkDetectInfo.NumRxOkInPeriod = 0;
ieee->LinkDetectInfo.NumRxUnicastOkInPeriod=0; ieee->LinkDetectInfo.NumRxUnicastOkInPeriod = 0;
ieee->bIsAggregateFrame = false; ieee->bIsAggregateFrame = false;
ieee->assoc_id = 0; ieee->assoc_id = 0;
ieee->queue_stop = 0; ieee->queue_stop = 0;
...@@ -3158,13 +3100,13 @@ void rtllib_softmac_init(struct rtllib_device *ieee) ...@@ -3158,13 +3100,13 @@ void rtllib_softmac_init(struct rtllib_device *ieee)
ieee->ps = RTLLIB_PS_DISABLED; ieee->ps = RTLLIB_PS_DISABLED;
ieee->sta_sleep = LPS_IS_WAKE; ieee->sta_sleep = LPS_IS_WAKE;
ieee->Regdot11HTOperationalRateSet[0]= 0xff; ieee->Regdot11HTOperationalRateSet[0] = 0xff;
ieee->Regdot11HTOperationalRateSet[1]= 0xff; ieee->Regdot11HTOperationalRateSet[1] = 0xff;
ieee->Regdot11HTOperationalRateSet[4]= 0x01; ieee->Regdot11HTOperationalRateSet[4] = 0x01;
ieee->Regdot11TxHTOperationalRateSet[0]= 0xff; ieee->Regdot11TxHTOperationalRateSet[0] = 0xff;
ieee->Regdot11TxHTOperationalRateSet[1]= 0xff; ieee->Regdot11TxHTOperationalRateSet[1] = 0xff;
ieee->Regdot11TxHTOperationalRateSet[4]= 0x01; ieee->Regdot11TxHTOperationalRateSet[4] = 0x01;
ieee->FirstIe_InScan = false; ieee->FirstIe_InScan = false;
ieee->actscanning = false; ieee->actscanning = false;
...@@ -3191,18 +3133,26 @@ void rtllib_softmac_init(struct rtllib_device *ieee) ...@@ -3191,18 +3133,26 @@ void rtllib_softmac_init(struct rtllib_device *ieee)
ieee->wq = create_workqueue(DRV_NAME); ieee->wq = create_workqueue(DRV_NAME);
INIT_DELAYED_WORK_RSL(&ieee->link_change_wq,(void*)rtllib_link_change_wq,ieee); INIT_DELAYED_WORK_RSL(&ieee->link_change_wq,
INIT_DELAYED_WORK_RSL(&ieee->start_ibss_wq,(void*)rtllib_start_ibss_wq,ieee); (void *)rtllib_link_change_wq, ieee);
INIT_WORK_RSL(&ieee->associate_complete_wq, (void*)rtllib_associate_complete_wq,ieee); INIT_DELAYED_WORK_RSL(&ieee->start_ibss_wq,
INIT_DELAYED_WORK_RSL(&ieee->associate_procedure_wq, (void*)rtllib_associate_procedure_wq,ieee); (void *)rtllib_start_ibss_wq, ieee);
INIT_DELAYED_WORK_RSL(&ieee->softmac_scan_wq,(void*)rtllib_softmac_scan_wq,ieee); INIT_WORK_RSL(&ieee->associate_complete_wq,
INIT_DELAYED_WORK_RSL(&ieee->softmac_hint11d_wq,(void*)rtllib_softmac_hint11d_wq,ieee); (void *)rtllib_associate_complete_wq, ieee);
INIT_DELAYED_WORK_RSL(&ieee->associate_retry_wq, (void*)rtllib_associate_retry_wq,ieee); INIT_DELAYED_WORK_RSL(&ieee->associate_procedure_wq,
INIT_WORK_RSL(&ieee->wx_sync_scan_wq,(void*)rtllib_wx_sync_scan_wq,ieee); (void *)rtllib_associate_procedure_wq, ieee);
INIT_DELAYED_WORK_RSL(&ieee->softmac_scan_wq,
(void *)rtllib_softmac_scan_wq, ieee);
INIT_DELAYED_WORK_RSL(&ieee->softmac_hint11d_wq,
(void *)rtllib_softmac_hint11d_wq, ieee);
INIT_DELAYED_WORK_RSL(&ieee->associate_retry_wq,
(void *)rtllib_associate_retry_wq, ieee);
INIT_WORK_RSL(&ieee->wx_sync_scan_wq, (void *)rtllib_wx_sync_scan_wq,
ieee);
sema_init(&ieee->wx_sem, 1); sema_init(&ieee->wx_sem, 1);
sema_init(&ieee->scan_sem, 1); sema_init(&ieee->scan_sem, 1);
sema_init(&ieee->ips_sem,1); sema_init(&ieee->ips_sem, 1);
spin_lock_init(&ieee->mgmt_tx_lock); spin_lock_init(&ieee->mgmt_tx_lock);
spin_lock_init(&ieee->beacon_lock); spin_lock_init(&ieee->beacon_lock);
...@@ -3216,8 +3166,7 @@ void rtllib_softmac_init(struct rtllib_device *ieee) ...@@ -3216,8 +3166,7 @@ void rtllib_softmac_init(struct rtllib_device *ieee)
void rtllib_softmac_free(struct rtllib_device *ieee) void rtllib_softmac_free(struct rtllib_device *ieee)
{ {
down(&ieee->wx_sem); down(&ieee->wx_sem);
if (NULL != ieee->pDot11dInfo) if (NULL != ieee->pDot11dInfo) {
{
kfree(ieee->pDot11dInfo); kfree(ieee->pDot11dInfo);
ieee->pDot11dInfo = NULL; ieee->pDot11dInfo = NULL;
} }
...@@ -3229,8 +3178,8 @@ void rtllib_softmac_free(struct rtllib_device *ieee) ...@@ -3229,8 +3178,8 @@ void rtllib_softmac_free(struct rtllib_device *ieee)
} }
/******************************************************** /********************************************************
* Start of WPA code. * * Start of WPA code. *
* this is stolen from the ipw2200 driver * * this is stolen from the ipw2200 driver *
********************************************************/ ********************************************************/
...@@ -3238,14 +3187,15 @@ static int rtllib_wpa_enable(struct rtllib_device *ieee, int value) ...@@ -3238,14 +3187,15 @@ static int rtllib_wpa_enable(struct rtllib_device *ieee, int value)
{ {
/* This is called when wpa_supplicant loads and closes the driver /* This is called when wpa_supplicant loads and closes the driver
* interface. */ * interface. */
printk("%s WPA\n",value ? "enabling" : "disabling"); printk(KERN_INFO "%s WPA\n", value ? "enabling" : "disabling");
ieee->wpa_enabled = value; ieee->wpa_enabled = value;
memset(ieee->ap_mac_addr, 0, 6); memset(ieee->ap_mac_addr, 0, 6);
return 0; return 0;
} }
void rtllib_wpa_assoc_frame(struct rtllib_device *ieee, char *wpa_ie, int wpa_ie_len) void rtllib_wpa_assoc_frame(struct rtllib_device *ieee, char *wpa_ie,
int wpa_ie_len)
{ {
/* make sure WPA is enabled */ /* make sure WPA is enabled */
rtllib_wpa_enable(ieee, 1); rtllib_wpa_enable(ieee, 1);
...@@ -3268,7 +3218,7 @@ static int rtllib_wpa_mlme(struct rtllib_device *ieee, int command, int reason) ...@@ -3268,7 +3218,7 @@ static int rtllib_wpa_mlme(struct rtllib_device *ieee, int command, int reason)
break; break;
default: default:
printk("Unknown MLME request: %d\n", command); printk(KERN_INFO "Unknown MLME request: %d\n", command);
ret = -EOPNOTSUPP; ret = -EOPNOTSUPP;
} }
...@@ -3319,12 +3269,11 @@ static int rtllib_wpa_set_auth_algs(struct rtllib_device *ieee, int value) ...@@ -3319,12 +3269,11 @@ static int rtllib_wpa_set_auth_algs(struct rtllib_device *ieee, int value)
sec.auth_mode = WLAN_AUTH_SHARED_KEY; sec.auth_mode = WLAN_AUTH_SHARED_KEY;
ieee->open_wep = 0; ieee->open_wep = 0;
ieee->auth_mode = 1; ieee->auth_mode = 1;
} else if (value & AUTH_ALG_OPEN_SYSTEM){ } else if (value & AUTH_ALG_OPEN_SYSTEM) {
sec.auth_mode = WLAN_AUTH_OPEN; sec.auth_mode = WLAN_AUTH_OPEN;
ieee->open_wep = 1; ieee->open_wep = 1;
ieee->auth_mode = 0; ieee->auth_mode = 0;
} } else if (value & AUTH_ALG_LEAP) {
else if (value & AUTH_ALG_LEAP){
sec.auth_mode = WLAN_AUTH_LEAP >> 6; sec.auth_mode = WLAN_AUTH_LEAP >> 6;
ieee->open_wep = 1; ieee->open_wep = 1;
ieee->auth_mode = 2; ieee->auth_mode = 2;
...@@ -3339,7 +3288,7 @@ static int rtllib_wpa_set_auth_algs(struct rtllib_device *ieee, int value) ...@@ -3339,7 +3288,7 @@ static int rtllib_wpa_set_auth_algs(struct rtllib_device *ieee, int value)
static int rtllib_wpa_set_param(struct rtllib_device *ieee, u8 name, u32 value) static int rtllib_wpa_set_param(struct rtllib_device *ieee, u8 name, u32 value)
{ {
int ret=0; int ret = 0;
unsigned long flags; unsigned long flags;
switch (name) { switch (name) {
...@@ -3348,11 +3297,11 @@ static int rtllib_wpa_set_param(struct rtllib_device *ieee, u8 name, u32 value) ...@@ -3348,11 +3297,11 @@ static int rtllib_wpa_set_param(struct rtllib_device *ieee, u8 name, u32 value)
break; break;
case IEEE_PARAM_TKIP_COUNTERMEASURES: case IEEE_PARAM_TKIP_COUNTERMEASURES:
ieee->tkip_countermeasures=value; ieee->tkip_countermeasures = value;
break; break;
case IEEE_PARAM_DROP_UNENCRYPTED: case IEEE_PARAM_DROP_UNENCRYPTED:
{ {
/* HACK: /* HACK:
* *
* wpa_supplicant calls set_wpa_enabled when the driver * wpa_supplicant calls set_wpa_enabled when the driver
...@@ -3375,8 +3324,7 @@ static int rtllib_wpa_set_param(struct rtllib_device *ieee, u8 name, u32 value) ...@@ -3375,8 +3324,7 @@ static int rtllib_wpa_set_param(struct rtllib_device *ieee, u8 name, u32 value)
if (!value) { if (!value) {
sec.flags |= SEC_LEVEL; sec.flags |= SEC_LEVEL;
sec.level = SEC_LEVEL_0; sec.level = SEC_LEVEL_0;
} } else {
else {
sec.flags |= SEC_LEVEL; sec.flags |= SEC_LEVEL;
sec.level = SEC_LEVEL_1; sec.level = SEC_LEVEL_1;
} }
...@@ -3386,7 +3334,7 @@ static int rtllib_wpa_set_param(struct rtllib_device *ieee, u8 name, u32 value) ...@@ -3386,7 +3334,7 @@ static int rtllib_wpa_set_param(struct rtllib_device *ieee, u8 name, u32 value)
} }
case IEEE_PARAM_PRIVACY_INVOKED: case IEEE_PARAM_PRIVACY_INVOKED:
ieee->privacy_invoked=value; ieee->privacy_invoked = value;
break; break;
case IEEE_PARAM_AUTH_ALGS: case IEEE_PARAM_AUTH_ALGS:
...@@ -3394,15 +3342,15 @@ static int rtllib_wpa_set_param(struct rtllib_device *ieee, u8 name, u32 value) ...@@ -3394,15 +3342,15 @@ static int rtllib_wpa_set_param(struct rtllib_device *ieee, u8 name, u32 value)
break; break;
case IEEE_PARAM_IEEE_802_1X: case IEEE_PARAM_IEEE_802_1X:
ieee->ieee802_1x=value; ieee->ieee802_1x = value;
break; break;
case IEEE_PARAM_WPAX_SELECT: case IEEE_PARAM_WPAX_SELECT:
spin_lock_irqsave(&ieee->wpax_suitlist_lock,flags); spin_lock_irqsave(&ieee->wpax_suitlist_lock, flags);
spin_unlock_irqrestore(&ieee->wpax_suitlist_lock,flags); spin_unlock_irqrestore(&ieee->wpax_suitlist_lock, flags);
break; break;
default: default:
printk("Unknown WPA param: %d\n",name); printk(KERN_INFO "Unknown WPA param: %d\n", name);
ret = -EOPNOTSUPP; ret = -EOPNOTSUPP;
} }
...@@ -3411,7 +3359,8 @@ static int rtllib_wpa_set_param(struct rtllib_device *ieee, u8 name, u32 value) ...@@ -3411,7 +3359,8 @@ static int rtllib_wpa_set_param(struct rtllib_device *ieee, u8 name, u32 value)
/* implementation borrowed from hostap driver */ /* implementation borrowed from hostap driver */
static int rtllib_wpa_set_encryption(struct rtllib_device *ieee, static int rtllib_wpa_set_encryption(struct rtllib_device *ieee,
struct ieee_param *param, int param_len, u8 is_mesh) struct ieee_param *param, int param_len,
u8 is_mesh)
{ {
int ret = 0; int ret = 0;
struct rtllib_crypto_ops *ops; struct rtllib_crypto_ops *ops;
...@@ -3427,7 +3376,7 @@ static int rtllib_wpa_set_encryption(struct rtllib_device *ieee, ...@@ -3427,7 +3376,7 @@ static int rtllib_wpa_set_encryption(struct rtllib_device *ieee,
if (param_len != if (param_len !=
(int) ((char *) param->u.crypt.key - (char *) param) + (int) ((char *) param->u.crypt.key - (char *) param) +
param->u.crypt.key_len) { param->u.crypt.key_len) {
printk("Len mismatch %d, %d\n", param_len, printk(KERN_INFO "Len mismatch %d, %d\n", param_len,
param->u.crypt.key_len); param->u.crypt.key_len);
return -EINVAL; return -EINVAL;
} }
...@@ -3470,7 +3419,8 @@ static int rtllib_wpa_set_encryption(struct rtllib_device *ieee, ...@@ -3470,7 +3419,8 @@ static int rtllib_wpa_set_encryption(struct rtllib_device *ieee,
ops = rtllib_get_crypto_ops(param->u.crypt.alg); ops = rtllib_get_crypto_ops(param->u.crypt.alg);
} }
if (ops == NULL) { if (ops == NULL) {
printk("unknown crypto alg '%s'\n", param->u.crypt.alg); printk(KERN_INFO "unknown crypto alg '%s'\n",
param->u.crypt.alg);
param->u.crypt.err = IEEE_CRYPT_ERR_UNKNOWN_ALG; param->u.crypt.err = IEEE_CRYPT_ERR_UNKNOWN_ALG;
ret = -EINVAL; ret = -EINVAL;
goto done; goto done;
...@@ -3506,7 +3456,7 @@ static int rtllib_wpa_set_encryption(struct rtllib_device *ieee, ...@@ -3506,7 +3456,7 @@ static int rtllib_wpa_set_encryption(struct rtllib_device *ieee,
(*crypt)->ops->set_key(param->u.crypt.key, (*crypt)->ops->set_key(param->u.crypt.key,
param->u.crypt.key_len, param->u.crypt.seq, param->u.crypt.key_len, param->u.crypt.seq,
(*crypt)->priv) < 0) { (*crypt)->priv) < 0) {
printk("key setting failed\n"); printk(KERN_INFO "key setting failed\n");
param->u.crypt.err = IEEE_CRYPT_ERR_KEY_SET_FAILED; param->u.crypt.err = IEEE_CRYPT_ERR_KEY_SET_FAILED;
ret = -EINVAL; ret = -EINVAL;
goto done; goto done;
...@@ -3551,7 +3501,7 @@ static int rtllib_wpa_set_encryption(struct rtllib_device *ieee, ...@@ -3551,7 +3501,7 @@ static int rtllib_wpa_set_encryption(struct rtllib_device *ieee,
ieee->iw_mode != IW_MODE_INFRA && ieee->iw_mode != IW_MODE_INFRA &&
ieee->reset_port && ieee->reset_port &&
ieee->reset_port(ieee->dev)) { ieee->reset_port(ieee->dev)) {
printk("reset_port failed\n"); printk(KERN_INFO "reset_port failed\n");
param->u.crypt.err = IEEE_CRYPT_ERR_CARD_CONF_FAILED; param->u.crypt.err = IEEE_CRYPT_ERR_CARD_CONF_FAILED;
return -EINVAL; return -EINVAL;
} }
...@@ -3559,7 +3509,7 @@ static int rtllib_wpa_set_encryption(struct rtllib_device *ieee, ...@@ -3559,7 +3509,7 @@ static int rtllib_wpa_set_encryption(struct rtllib_device *ieee,
return ret; return ret;
} }
inline struct sk_buff *rtllib_disauth_skb( struct rtllib_network *beacon, inline struct sk_buff *rtllib_disauth_skb(struct rtllib_network *beacon,
struct rtllib_device *ieee, u16 asRsn) struct rtllib_device *ieee, u16 asRsn)
{ {
struct sk_buff *skb; struct sk_buff *skb;
...@@ -3567,13 +3517,13 @@ inline struct sk_buff *rtllib_disauth_skb( struct rtllib_network *beacon, ...@@ -3567,13 +3517,13 @@ inline struct sk_buff *rtllib_disauth_skb( struct rtllib_network *beacon,
int len = sizeof(struct rtllib_disauth) + ieee->tx_headroom; int len = sizeof(struct rtllib_disauth) + ieee->tx_headroom;
skb = dev_alloc_skb(len); skb = dev_alloc_skb(len);
if (!skb) { if (!skb)
return NULL; return NULL;
}
skb_reserve(skb, ieee->tx_headroom); skb_reserve(skb, ieee->tx_headroom);
disauth = (struct rtllib_disauth *) skb_put(skb,sizeof(struct rtllib_disauth)); disauth = (struct rtllib_disauth *) skb_put(skb,
sizeof(struct rtllib_disauth));
disauth->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_DEAUTH); disauth->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_DEAUTH);
disauth->header.duration_id = 0; disauth->header.duration_id = 0;
...@@ -3585,7 +3535,7 @@ inline struct sk_buff *rtllib_disauth_skb( struct rtllib_network *beacon, ...@@ -3585,7 +3535,7 @@ inline struct sk_buff *rtllib_disauth_skb( struct rtllib_network *beacon,
return skb; return skb;
} }
inline struct sk_buff *rtllib_disassociate_skb( struct rtllib_network *beacon, inline struct sk_buff *rtllib_disassociate_skb(struct rtllib_network *beacon,
struct rtllib_device *ieee, u16 asRsn) struct rtllib_device *ieee, u16 asRsn)
{ {
struct sk_buff *skb; struct sk_buff *skb;
...@@ -3593,13 +3543,13 @@ inline struct sk_buff *rtllib_disassociate_skb( struct rtllib_network *beacon, ...@@ -3593,13 +3543,13 @@ inline struct sk_buff *rtllib_disassociate_skb( struct rtllib_network *beacon,
int len = sizeof(struct rtllib_disassoc) + ieee->tx_headroom; int len = sizeof(struct rtllib_disassoc) + ieee->tx_headroom;
skb = dev_alloc_skb(len); skb = dev_alloc_skb(len);
if (!skb) { if (!skb)
return NULL; return NULL;
}
skb_reserve(skb, ieee->tx_headroom); skb_reserve(skb, ieee->tx_headroom);
disass = (struct rtllib_disassoc *) skb_put(skb,sizeof(struct rtllib_disassoc)); disass = (struct rtllib_disassoc *) skb_put(skb,
sizeof(struct rtllib_disassoc));
disass->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_DISASSOC); disass->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_DISASSOC);
disass->header.duration_id = 0; disass->header.duration_id = 0;
...@@ -3616,36 +3566,36 @@ void SendDisassociation(struct rtllib_device *ieee, bool deauth, u16 asRsn) ...@@ -3616,36 +3566,36 @@ void SendDisassociation(struct rtllib_device *ieee, bool deauth, u16 asRsn)
struct rtllib_network *beacon = &ieee->current_network; struct rtllib_network *beacon = &ieee->current_network;
struct sk_buff *skb; struct sk_buff *skb;
if (deauth) { if (deauth)
skb = rtllib_disauth_skb(beacon,ieee,asRsn); skb = rtllib_disauth_skb(beacon, ieee, asRsn);
} else { else
skb = rtllib_disassociate_skb(beacon,ieee,asRsn); skb = rtllib_disassociate_skb(beacon, ieee, asRsn);
}
if (skb){ if (skb)
softmac_mgmt_xmit(skb, ieee); softmac_mgmt_xmit(skb, ieee);
}
} }
u8 rtllib_ap_sec_type(struct rtllib_device *ieee) u8 rtllib_ap_sec_type(struct rtllib_device *ieee)
{ {
static u8 ccmp_ie[4] = {0x00,0x50,0xf2,0x04}; static u8 ccmp_ie[4] = {0x00, 0x50, 0xf2, 0x04};
static u8 ccmp_rsn_ie[4] = {0x00, 0x0f, 0xac, 0x04}; static u8 ccmp_rsn_ie[4] = {0x00, 0x0f, 0xac, 0x04};
int wpa_ie_len= ieee->wpa_ie_len; int wpa_ie_len = ieee->wpa_ie_len;
struct rtllib_crypt_data* crypt; struct rtllib_crypt_data *crypt;
int encrypt; int encrypt;
crypt = ieee->crypt[ieee->tx_keyidx]; crypt = ieee->crypt[ieee->tx_keyidx];
encrypt = (ieee->current_network.capability & WLAN_CAPABILITY_PRIVACY) ||\ encrypt = (ieee->current_network.capability & WLAN_CAPABILITY_PRIVACY)
(ieee->host_encrypt && crypt && crypt->ops && \ || (ieee->host_encrypt && crypt && crypt->ops &&
(0 == strcmp(crypt->ops->name,"WEP"))); (0 == strcmp(crypt->ops->name, "WEP")));
/* simply judge */ /* simply judge */
if (encrypt && (wpa_ie_len == 0)) { if (encrypt && (wpa_ie_len == 0)) {
return SEC_ALG_WEP; return SEC_ALG_WEP;
} else if ((wpa_ie_len != 0)) { } else if ((wpa_ie_len != 0)) {
if (((ieee->wpa_ie[0] == 0xdd) && (!memcmp(&(ieee->wpa_ie[14]),ccmp_ie,4))) || if (((ieee->wpa_ie[0] == 0xdd) &&
((ieee->wpa_ie[0] == 0x30) && (!memcmp(&ieee->wpa_ie[10],ccmp_rsn_ie, 4)))) (!memcmp(&(ieee->wpa_ie[14]), ccmp_ie, 4))) ||
((ieee->wpa_ie[0] == 0x30) &&
(!memcmp(&ieee->wpa_ie[10], ccmp_rsn_ie, 4))))
return SEC_ALG_CCMP; return SEC_ALG_CCMP;
else else
return SEC_ALG_TKIP; return SEC_ALG_TKIP;
...@@ -3654,20 +3604,21 @@ u8 rtllib_ap_sec_type(struct rtllib_device *ieee) ...@@ -3654,20 +3604,21 @@ u8 rtllib_ap_sec_type(struct rtllib_device *ieee)
} }
} }
int rtllib_wpa_supplicant_ioctl(struct rtllib_device *ieee, struct iw_point *p, u8 is_mesh) int rtllib_wpa_supplicant_ioctl(struct rtllib_device *ieee, struct iw_point *p,
u8 is_mesh)
{ {
struct ieee_param *param; struct ieee_param *param;
int ret=0; int ret = 0;
down(&ieee->wx_sem); down(&ieee->wx_sem);
if (p->length < sizeof(struct ieee_param) || !p->pointer){ if (p->length < sizeof(struct ieee_param) || !p->pointer) {
ret = -EINVAL; ret = -EINVAL;
goto out; goto out;
} }
param = (struct ieee_param *)kmalloc(p->length, GFP_KERNEL); param = kmalloc(p->length, GFP_KERNEL);
if (param == NULL){ if (param == NULL) {
ret = -ENOMEM; ret = -ENOMEM;
goto out; goto out;
} }
...@@ -3678,7 +3629,6 @@ int rtllib_wpa_supplicant_ioctl(struct rtllib_device *ieee, struct iw_point *p, ...@@ -3678,7 +3629,6 @@ int rtllib_wpa_supplicant_ioctl(struct rtllib_device *ieee, struct iw_point *p,
} }
switch (param->cmd) { switch (param->cmd) {
case IEEE_CMD_SET_WPA_PARAM: case IEEE_CMD_SET_WPA_PARAM:
ret = rtllib_wpa_set_param(ieee, param->u.wpa_param.name, ret = rtllib_wpa_set_param(ieee, param->u.wpa_param.name,
param->u.wpa_param.value); param->u.wpa_param.value);
...@@ -3698,7 +3648,8 @@ int rtllib_wpa_supplicant_ioctl(struct rtllib_device *ieee, struct iw_point *p, ...@@ -3698,7 +3648,8 @@ int rtllib_wpa_supplicant_ioctl(struct rtllib_device *ieee, struct iw_point *p,
break; break;
default: default:
printk("Unknown WPA supplicant request: %d\n",param->cmd); printk(KERN_INFO "Unknown WPA supplicant request: %d\n",
param->cmd);
ret = -EOPNOTSUPP; ret = -EOPNOTSUPP;
break; break;
} }
...@@ -3713,8 +3664,7 @@ int rtllib_wpa_supplicant_ioctl(struct rtllib_device *ieee, struct iw_point *p, ...@@ -3713,8 +3664,7 @@ int rtllib_wpa_supplicant_ioctl(struct rtllib_device *ieee, struct iw_point *p,
return ret; return ret;
} }
void void rtllib_MgntDisconnectIBSS(struct rtllib_device *rtllib)
rtllib_MgntDisconnectIBSS(struct rtllib_device* rtllib)
{ {
u8 OpMode; u8 OpMode;
u8 i; u8 i;
...@@ -3722,26 +3672,25 @@ rtllib_MgntDisconnectIBSS(struct rtllib_device* rtllib) ...@@ -3722,26 +3672,25 @@ rtllib_MgntDisconnectIBSS(struct rtllib_device* rtllib)
rtllib->state = RTLLIB_NOLINK; rtllib->state = RTLLIB_NOLINK;
for (i=0;i<6;i++) rtllib->current_network.bssid[i]= 0x55; for (i = 0; i < 6; i++)
rtllib->current_network.bssid[i] = 0x55;
rtllib->OpMode = RT_OP_MODE_NO_LINK; rtllib->OpMode = RT_OP_MODE_NO_LINK;
rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_BSSID, rtllib->current_network.bssid); rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_BSSID,
rtllib->current_network.bssid);
OpMode = RT_OP_MODE_NO_LINK; OpMode = RT_OP_MODE_NO_LINK;
rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_MEDIA_STATUS, &OpMode); rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_MEDIA_STATUS, &OpMode);
rtllib_stop_send_beacons(rtllib); rtllib_stop_send_beacons(rtllib);
bFilterOutNonAssociatedBSSID = false; bFilterOutNonAssociatedBSSID = false;
rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_CECHK_BSSID, (u8*)(&bFilterOutNonAssociatedBSSID)); rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_CECHK_BSSID,
(u8 *)(&bFilterOutNonAssociatedBSSID));
notify_wx_assoc_event(rtllib); notify_wx_assoc_event(rtllib);
} }
void void rtllib_MlmeDisassociateRequest(struct rtllib_device *rtllib, u8 *asSta,
rtllib_MlmeDisassociateRequest( u8 asRsn)
struct rtllib_device* rtllib,
u8* asSta,
u8 asRsn
)
{ {
u8 i; u8 i;
u8 OpMode; u8 OpMode;
...@@ -3749,17 +3698,19 @@ rtllib_MlmeDisassociateRequest( ...@@ -3749,17 +3698,19 @@ rtllib_MlmeDisassociateRequest(
RemovePeerTS(rtllib, asSta); RemovePeerTS(rtllib, asSta);
if (memcpy(rtllib->current_network.bssid,asSta,6) == 0) if (memcpy(rtllib->current_network.bssid, asSta, 6) == 0) {
{
rtllib->state = RTLLIB_NOLINK; rtllib->state = RTLLIB_NOLINK;
for (i=0;i<6;i++) rtllib->current_network.bssid[i] = 0x22; for (i = 0; i < 6; i++)
rtllib->current_network.bssid[i] = 0x22;
OpMode = RT_OP_MODE_NO_LINK; OpMode = RT_OP_MODE_NO_LINK;
rtllib->OpMode = RT_OP_MODE_NO_LINK; rtllib->OpMode = RT_OP_MODE_NO_LINK;
rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_MEDIA_STATUS, (u8 *)(&OpMode) ); rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_MEDIA_STATUS,
(u8 *)(&OpMode));
rtllib_disassociate(rtllib); rtllib_disassociate(rtllib);
rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_BSSID, rtllib->current_network.bssid); rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_BSSID,
rtllib->current_network.bssid);
} }
...@@ -3767,40 +3718,31 @@ rtllib_MlmeDisassociateRequest( ...@@ -3767,40 +3718,31 @@ rtllib_MlmeDisassociateRequest(
void void
rtllib_MgntDisconnectAP( rtllib_MgntDisconnectAP(
struct rtllib_device* rtllib, struct rtllib_device *rtllib,
u8 asRsn u8 asRsn
) )
{ {
bool bFilterOutNonAssociatedBSSID = false; bool bFilterOutNonAssociatedBSSID = false;
bFilterOutNonAssociatedBSSID = false; bFilterOutNonAssociatedBSSID = false;
rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_CECHK_BSSID, (u8*)(&bFilterOutNonAssociatedBSSID)); rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_CECHK_BSSID,
rtllib_MlmeDisassociateRequest( rtllib, rtllib->current_network.bssid, asRsn ); (u8 *)(&bFilterOutNonAssociatedBSSID));
rtllib_MlmeDisassociateRequest(rtllib, rtllib->current_network.bssid,
asRsn);
rtllib->state = RTLLIB_NOLINK; rtllib->state = RTLLIB_NOLINK;
} }
bool bool rtllib_MgntDisconnect(struct rtllib_device *rtllib, u8 asRsn)
rtllib_MgntDisconnect(
struct rtllib_device* rtllib,
u8 asRsn
)
{ {
if (rtllib->ps != RTLLIB_PS_DISABLED) if (rtllib->ps != RTLLIB_PS_DISABLED)
{ rtllib->sta_wake_up(rtllib->dev);
rtllib->sta_wake_up(rtllib->dev);
}
if ( rtllib->state == RTLLIB_LINKED ) if (rtllib->state == RTLLIB_LINKED) {
{ if (rtllib->iw_mode == IW_MODE_ADHOC)
if ( rtllib->iw_mode == IW_MODE_ADHOC )
{
rtllib_MgntDisconnectIBSS(rtllib); rtllib_MgntDisconnectIBSS(rtllib);
} if (rtllib->iw_mode == IW_MODE_INFRA)
if ( rtllib->iw_mode == IW_MODE_INFRA )
{
rtllib_MgntDisconnectAP(rtllib, asRsn); rtllib_MgntDisconnectAP(rtllib, asRsn);
}
} }
...@@ -3816,10 +3758,12 @@ void notify_wx_assoc_event(struct rtllib_device *ieee) ...@@ -3816,10 +3758,12 @@ void notify_wx_assoc_event(struct rtllib_device *ieee)
wrqu.ap_addr.sa_family = ARPHRD_ETHER; wrqu.ap_addr.sa_family = ARPHRD_ETHER;
if (ieee->state == RTLLIB_LINKED) if (ieee->state == RTLLIB_LINKED)
memcpy(wrqu.ap_addr.sa_data, ieee->current_network.bssid, ETH_ALEN); memcpy(wrqu.ap_addr.sa_data, ieee->current_network.bssid,
else{ ETH_ALEN);
else {
printk("%s(): Tell user space disconnected\n",__func__); printk(KERN_INFO "%s(): Tell user space disconnected\n",
__func__);
memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN); memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN);
} }
wireless_send_event(ieee->dev, SIOCGIWAP, &wrqu, NULL); wireless_send_event(ieee->dev, SIOCGIWAP, &wrqu, NULL);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册