Commit 1d39fe04 authored by Veronika Kabatova's avatar Veronika Kabatova Committed by Greg Kroah-Hartman

staging: vt6655: dpc.c: Comment fixes

Replace C99 "//" comments by "/* */", remove not
needed comments about adding code
Signed-off-by: default avatarVeronika Kabatova <veronicca114@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 99b4a7e0
...@@ -160,10 +160,10 @@ s_vProcessRxMACHeader(struct vnt_private *pDevice, ...@@ -160,10 +160,10 @@ s_vProcessRxMACHeader(struct vnt_private *pDevice,
if (bIsWEP) { if (bIsWEP) {
if (bExtIV) { if (bExtIV) {
// strip IV&ExtIV , add 8 byte /* strip IV&ExtIV, add 8 byte */
cbHeaderSize += (WLAN_HDR_ADDR3_LEN + 8); cbHeaderSize += (WLAN_HDR_ADDR3_LEN + 8);
} else { } else {
// strip IV , add 4 byte /* strip IV, add 4 byte */
cbHeaderSize += (WLAN_HDR_ADDR3_LEN + 4); cbHeaderSize += (WLAN_HDR_ADDR3_LEN + 4);
} }
} else { } else {
...@@ -182,9 +182,9 @@ s_vProcessRxMACHeader(struct vnt_private *pDevice, ...@@ -182,9 +182,9 @@ s_vProcessRxMACHeader(struct vnt_private *pDevice,
pwType = (unsigned short *)(pbyRxBufferAddr + cbHeaderSize); pwType = (unsigned short *)(pbyRxBufferAddr + cbHeaderSize);
if (bIsWEP) { if (bIsWEP) {
if (bExtIV) if (bExtIV)
*pwType = htons(cbPacketSize - WLAN_HDR_ADDR3_LEN - 8); // 8 is IV&ExtIV *pwType = htons(cbPacketSize - WLAN_HDR_ADDR3_LEN - 8); /* 8 is IV&ExtIV */
else else
*pwType = htons(cbPacketSize - WLAN_HDR_ADDR3_LEN - 4); // 4 is IV *pwType = htons(cbPacketSize - WLAN_HDR_ADDR3_LEN - 4); /* 4 is IV */
} else { } else {
*pwType = htons(cbPacketSize - WLAN_HDR_ADDR3_LEN); *pwType = htons(cbPacketSize - WLAN_HDR_ADDR3_LEN);
...@@ -195,9 +195,9 @@ s_vProcessRxMACHeader(struct vnt_private *pDevice, ...@@ -195,9 +195,9 @@ s_vProcessRxMACHeader(struct vnt_private *pDevice,
pwType = (unsigned short *)(pbyRxBufferAddr + cbHeaderSize); pwType = (unsigned short *)(pbyRxBufferAddr + cbHeaderSize);
if (bIsWEP) { if (bIsWEP) {
if (bExtIV) if (bExtIV)
*pwType = htons(cbPacketSize - WLAN_HDR_ADDR3_LEN - 8); // 8 is IV&ExtIV *pwType = htons(cbPacketSize - WLAN_HDR_ADDR3_LEN - 8); /* 8 is IV&ExtIV */
else else
*pwType = htons(cbPacketSize - WLAN_HDR_ADDR3_LEN - 4); // 4 is IV *pwType = htons(cbPacketSize - WLAN_HDR_ADDR3_LEN - 4); /* 4 is IV */
} else { } else {
*pwType = htons(cbPacketSize - WLAN_HDR_ADDR3_LEN); *pwType = htons(cbPacketSize - WLAN_HDR_ADDR3_LEN);
...@@ -243,14 +243,14 @@ s_vGetDASA(unsigned char *pbyRxBufferAddr, unsigned int *pcbHeaderSize, ...@@ -243,14 +243,14 @@ s_vGetDASA(unsigned char *pbyRxBufferAddr, unsigned int *pcbHeaderSize,
psEthHeader->abySrcAddr[ii] = pMACHeader->abyAddr3[ii]; psEthHeader->abySrcAddr[ii] = pMACHeader->abyAddr3[ii];
} }
} else { } else {
// IBSS mode /* IBSS mode */
for (ii = 0; ii < ETH_ALEN; ii++) { for (ii = 0; ii < ETH_ALEN; ii++) {
psEthHeader->abyDstAddr[ii] = pMACHeader->abyAddr1[ii]; psEthHeader->abyDstAddr[ii] = pMACHeader->abyAddr1[ii];
psEthHeader->abySrcAddr[ii] = pMACHeader->abyAddr2[ii]; psEthHeader->abySrcAddr[ii] = pMACHeader->abyAddr2[ii];
} }
} }
} else { } else {
// Is AP mode.. /* Is AP mode.. */
if (pMACHeader->wFrameCtl & FC_FROMDS) { if (pMACHeader->wFrameCtl & FC_FROMDS) {
for (ii = 0; ii < ETH_ALEN; ii++) { for (ii = 0; ii < ETH_ALEN; ii++) {
psEthHeader->abyDstAddr[ii] = pMACHeader->abyAddr3[ii]; psEthHeader->abyDstAddr[ii] = pMACHeader->abyAddr3[ii];
...@@ -303,7 +303,7 @@ device_receive_frame( ...@@ -303,7 +303,7 @@ device_receive_frame(
unsigned short wRxTSC15_0 = 0; unsigned short wRxTSC15_0 = 0;
unsigned long dwRxTSC47_16 = 0; unsigned long dwRxTSC47_16 = 0;
SKeyItem STempKey; SKeyItem STempKey;
// 802.11h RPI /* 802.11h RPI */
unsigned long dwDuration = 0; unsigned long dwDuration = 0;
long ldBm = 0; long ldBm = 0;
long ldBmThreshold = 0; long ldBmThreshold = 0;
...@@ -318,10 +318,12 @@ device_receive_frame( ...@@ -318,10 +318,12 @@ device_receive_frame(
pwFrameSize = (unsigned short *)(skb->data + 2); pwFrameSize = (unsigned short *)(skb->data + 2);
FrameSize = cpu_to_le16(pCurrRD->m_rd1RD1.wReqCount) - cpu_to_le16(pCurrRD->m_rd0RD0.wResCount); FrameSize = cpu_to_le16(pCurrRD->m_rd1RD1.wReqCount) - cpu_to_le16(pCurrRD->m_rd0RD0.wResCount);
// Max: 2312Payload + 30HD +4CRC + 2Padding + 4Len + 8TSF + 4RSR /*
// Min (ACK): 10HD +4CRC + 2Padding + 4Len + 8TSF + 4RSR * Max: 2312Payload + 30HD +4CRC + 2Padding + 4Len + 8TSF + 4RSR
* Min (ACK): 10HD +4CRC + 2Padding + 4Len + 8TSF + 4RSR
*/
if ((FrameSize > 2364) || (FrameSize <= 32)) { if ((FrameSize > 2364) || (FrameSize <= 32)) {
// Frame Size error drop this packet. /* Frame Size error drop this packet. */
pr_debug("---------- WRONG Length 1\n"); pr_debug("---------- WRONG Length 1\n");
return false; return false;
} }
...@@ -335,16 +337,18 @@ device_receive_frame( ...@@ -335,16 +337,18 @@ device_receive_frame(
pqwTSFTime = (__le64 *)(skb->data + FrameSize - 12); pqwTSFTime = (__le64 *)(skb->data + FrameSize - 12);
pbyFrame = (unsigned char *)(skb->data + 4); pbyFrame = (unsigned char *)(skb->data + 4);
// get packet size /* get packet size */
FrameSize = cpu_to_le16(*pwFrameSize); FrameSize = cpu_to_le16(*pwFrameSize);
if ((FrameSize > 2346)|(FrameSize < 14)) { // Max: 2312Payload + 30HD +4CRC if ((FrameSize > 2346)|(FrameSize < 14)) { /*
// Min: 14 bytes ACK * Max: 2312Payload + 30HD +4CRC
* Min: 14 bytes ACK
*/
pr_debug("---------- WRONG Length 2\n"); pr_debug("---------- WRONG Length 2\n");
return false; return false;
} }
// update receive statistic counter /* update receive statistic counter */
STAvUpdateRDStatCounter(&pDevice->scStatistic, STAvUpdateRDStatCounter(&pDevice->scStatistic,
*pbyRsr, *pbyRsr,
*pbyNewRsr, *pbyNewRsr,
...@@ -362,10 +366,10 @@ device_receive_frame( ...@@ -362,10 +366,10 @@ device_receive_frame(
dwDuration /= acbyRxRate[*pbyRxRate%MAX_RATE]; dwDuration /= acbyRxRate[*pbyRxRate%MAX_RATE];
if (*pbyRxRate <= RATE_11M) { if (*pbyRxRate <= RATE_11M) {
if (*pbyRxSts & 0x01) { if (*pbyRxSts & 0x01) {
// long preamble /* long preamble */
dwDuration += 192; dwDuration += 192;
} else { } else {
// short preamble /* short preamble */
dwDuration += 96; dwDuration += 96;
} }
} else { } else {
...@@ -391,10 +395,10 @@ device_receive_frame( ...@@ -391,10 +395,10 @@ device_receive_frame(
} }
} }
// Use for TKIP MIC /* Use for TKIP MIC */
s_vGetDASA(skb->data+4, &cbHeaderSize, &pDevice->sRxEthHeader); s_vGetDASA(skb->data+4, &cbHeaderSize, &pDevice->sRxEthHeader);
// filter packet send from myself /* filter packet send from myself */
if (ether_addr_equal(pDevice->sRxEthHeader.abySrcAddr, if (ether_addr_equal(pDevice->sRxEthHeader.abySrcAddr,
pDevice->abyCurrentNetAddr)) pDevice->abyCurrentNetAddr))
return false; return false;
...@@ -402,7 +406,7 @@ device_receive_frame( ...@@ -402,7 +406,7 @@ device_receive_frame(
if ((pMgmt->eCurrMode == WMAC_MODE_ESS_AP) || (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA)) { if ((pMgmt->eCurrMode == WMAC_MODE_ESS_AP) || (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA)) {
if (IS_CTL_PSPOLL(pbyFrame) || !IS_TYPE_CONTROL(pbyFrame)) { if (IS_CTL_PSPOLL(pbyFrame) || !IS_TYPE_CONTROL(pbyFrame)) {
p802_11Header = (PS802_11Header)(pbyFrame); p802_11Header = (PS802_11Header)(pbyFrame);
// get SA NodeIndex /* get SA NodeIndex */
if (BSSDBbIsSTAInNodeDB(pMgmt, (unsigned char *)(p802_11Header->abyAddr2), &iSANodeIndex)) { if (BSSDBbIsSTAInNodeDB(pMgmt, (unsigned char *)(p802_11Header->abyAddr2), &iSANodeIndex)) {
pMgmt->sNodeDBTable[iSANodeIndex].ulLastRxJiffer = jiffies; pMgmt->sNodeDBTable[iSANodeIndex].ulLastRxJiffer = jiffies;
pMgmt->sNodeDBTable[iSANodeIndex].uInActiveCount = 0; pMgmt->sNodeDBTable[iSANodeIndex].uInActiveCount = 0;
...@@ -474,25 +478,22 @@ device_receive_frame( ...@@ -474,25 +478,22 @@ device_receive_frame(
return false; return false;
} }
if ((pKey != NULL) && (pKey->byCipherSuite == KEY_CTL_CCMP)) if ((pKey != NULL) && (pKey->byCipherSuite == KEY_CTL_CCMP))
FrameSize -= 8; // Message Integrity Code FrameSize -= 8; /* Message Integrity Code */
else else
FrameSize -= 4; // 4 is ICV FrameSize -= 4; /* 4 is ICV */
} }
// /* RX OK, remove the CRC length */
// RX OK
//
//remove the CRC length
FrameSize -= ETH_FCS_LEN; FrameSize -= ETH_FCS_LEN;
if ((!(*pbyRsr & (RSR_ADDRBROAD | RSR_ADDRMULTI))) && // unicast address if ((!(*pbyRsr & (RSR_ADDRBROAD | RSR_ADDRMULTI))) && /* unicast address */
(IS_FRAGMENT_PKT((skb->data+4))) (IS_FRAGMENT_PKT((skb->data+4)))
) { ) {
// defragment /* defragment */
bDeFragRx = WCTLbHandleFragment(pDevice, (PS802_11Header)(skb->data+4), FrameSize, bIsWEP, bExtIV); bDeFragRx = WCTLbHandleFragment(pDevice, (PS802_11Header)(skb->data+4), FrameSize, bIsWEP, bExtIV);
pDevice->s802_11Counter.ReceivedFragmentCount++; pDevice->s802_11Counter.ReceivedFragmentCount++;
if (bDeFragRx) { if (bDeFragRx) {
// defrag complete /* defrag complete */
skb = pDevice->sRxDFCB[pDevice->uCurrentDFCBIdx].skb; skb = pDevice->sRxDFCB[pDevice->uCurrentDFCBIdx].skb;
FrameSize = pDevice->sRxDFCB[pDevice->uCurrentDFCBIdx].cbFrameLength; FrameSize = pDevice->sRxDFCB[pDevice->uCurrentDFCBIdx].cbFrameLength;
...@@ -501,9 +502,9 @@ device_receive_frame( ...@@ -501,9 +502,9 @@ device_receive_frame(
} }
} }
// Management & Control frame Handle /* Management & Control frame Handle */
if ((IS_TYPE_DATA((skb->data+4))) == false) { if ((IS_TYPE_DATA((skb->data+4))) == false) {
// Handle Control & Manage Frame /* Handle Control & Manage Frame */
if (IS_TYPE_MGMT((skb->data+4))) { if (IS_TYPE_MGMT((skb->data+4))) {
unsigned char *pbyData1; unsigned char *pbyData1;
...@@ -515,7 +516,7 @@ device_receive_frame( ...@@ -515,7 +516,7 @@ device_receive_frame(
pRxPacket->bySQ = *pbySQ; pRxPacket->bySQ = *pbySQ;
pRxPacket->qwLocalTSF = le64_to_cpu(*pqwTSFTime); pRxPacket->qwLocalTSF = le64_to_cpu(*pqwTSFTime);
if (bIsWEP) { if (bIsWEP) {
// strip IV /* strip IV */
pbyData1 = WLAN_HDR_A3_DATA_PTR(skb->data+4); pbyData1 = WLAN_HDR_A3_DATA_PTR(skb->data+4);
pbyData2 = WLAN_HDR_A3_DATA_PTR(skb->data+4) + 4; pbyData2 = WLAN_HDR_A3_DATA_PTR(skb->data+4) + 4;
for (ii = 0; ii < (FrameSize - 4); ii++) { for (ii = 0; ii < (FrameSize - 4); ii++) {
...@@ -529,7 +530,7 @@ device_receive_frame( ...@@ -529,7 +530,7 @@ device_receive_frame(
vMgrRxManagePacket((void *)pDevice, pDevice->pMgmt, pRxPacket); vMgrRxManagePacket((void *)pDevice, pDevice->pMgmt, pRxPacket);
// hostap Deamon handle 802.11 management /* hostap Deamon handle 802.11 management */
if (pDevice->bEnableHostapd) { if (pDevice->bEnableHostapd) {
skb->dev = pDevice->apdev; skb->dev = pDevice->apdev;
skb->data += 4; skb->data += 4;
...@@ -547,7 +548,7 @@ device_receive_frame( ...@@ -547,7 +548,7 @@ device_receive_frame(
return false; return false;
} else { } else {
if (pMgmt->eCurrMode == WMAC_MODE_ESS_AP) { if (pMgmt->eCurrMode == WMAC_MODE_ESS_AP) {
//In AP mode, hw only check addr1(BSSID or RA) if equal to local MAC. /* In AP mode, hw only check addr1(BSSID or RA) if equal to local MAC. */
if (!(*pbyRsr & RSR_BSSIDOK)) { if (!(*pbyRsr & RSR_BSSIDOK)) {
if (bDeFragRx) { if (bDeFragRx) {
if (!device_alloc_frag_buf(pDevice, &pDevice->sRxDFCB[pDevice->uCurrentDFCBIdx])) { if (!device_alloc_frag_buf(pDevice, &pDevice->sRxDFCB[pDevice->uCurrentDFCBIdx])) {
...@@ -558,7 +559,7 @@ device_receive_frame( ...@@ -558,7 +559,7 @@ device_receive_frame(
return false; return false;
} }
} else { } else {
// discard DATA packet while not associate || BSSID error /* discard DATA packet while not associate || BSSID error */
if (!pDevice->bLinkPass || !(*pbyRsr & RSR_BSSIDOK)) { if (!pDevice->bLinkPass || !(*pbyRsr & RSR_BSSIDOK)) {
if (bDeFragRx) { if (bDeFragRx) {
if (!device_alloc_frag_buf(pDevice, &pDevice->sRxDFCB[pDevice->uCurrentDFCBIdx])) { if (!device_alloc_frag_buf(pDevice, &pDevice->sRxDFCB[pDevice->uCurrentDFCBIdx])) {
...@@ -568,10 +569,9 @@ device_receive_frame( ...@@ -568,10 +569,9 @@ device_receive_frame(
} }
return false; return false;
} }
//mike add:station mode check eapol-key challenge--->
{ {
unsigned char Protocol_Version; //802.1x Authentication unsigned char Protocol_Version; /* 802.1x Authentication */
unsigned char Packet_Type; //802.1x Authentication unsigned char Packet_Type; /* 802.1x Authentication */
if (bIsWEP) if (bIsWEP)
cbIVOffset = 8; cbIVOffset = 8;
...@@ -581,18 +581,17 @@ device_receive_frame( ...@@ -581,18 +581,17 @@ device_receive_frame(
skb->data[cbIVOffset + 8 + 24 + 6 + 1]; skb->data[cbIVOffset + 8 + 24 + 6 + 1];
Protocol_Version = skb->data[cbIVOffset + 8 + 24 + 6 + 1 + 1]; Protocol_Version = skb->data[cbIVOffset + 8 + 24 + 6 + 1 + 1];
Packet_Type = skb->data[cbIVOffset + 8 + 24 + 6 + 1 + 1 + 1]; Packet_Type = skb->data[cbIVOffset + 8 + 24 + 6 + 1 + 1 + 1];
if (wEtherType == ETH_P_PAE) { //Protocol Type in LLC-Header if (wEtherType == ETH_P_PAE) { /* Protocol Type in LLC-Header */
if (((Protocol_Version == 1) || (Protocol_Version == 2)) && if (((Protocol_Version == 1) || (Protocol_Version == 2)) &&
(Packet_Type == 3)) { //802.1x OR eapol-key challenge frame receive (Packet_Type == 3)) { /*802.1x OR eapol-key challenge frame receive */
bRxeapol_key = true; bRxeapol_key = true;
} }
} }
} }
//mike add:station mode check eapol-key challenge<---
} }
} }
// Data frame Handle /* Data frame Handle */
if (pDevice->bEnablePSMode) { if (pDevice->bEnablePSMode) {
if (!IS_FC_MOREDATA((skb->data+4))) { if (!IS_FC_MOREDATA((skb->data+4))) {
...@@ -601,7 +600,7 @@ device_receive_frame( ...@@ -601,7 +600,7 @@ device_receive_frame(
} }
} }
// Now it only supports 802.11g Infrastructure Mode, and support rate must up to 54 Mbps /* Now it only supports 802.11g Infrastructure Mode, and support rate must up to 54 Mbps */
if (pDevice->bDiversityEnable && (FrameSize > 50) && if (pDevice->bDiversityEnable && (FrameSize > 50) &&
(pDevice->op_mode == NL80211_IFTYPE_STATION) && (pDevice->op_mode == NL80211_IFTYPE_STATION) &&
pDevice->bLinkPass) { pDevice->bLinkPass) {
...@@ -616,7 +615,7 @@ device_receive_frame( ...@@ -616,7 +615,7 @@ device_receive_frame(
if ((*pbyRSSI != 0) && if ((*pbyRSSI != 0) &&
(pMgmt->pCurrBSS != NULL)) { (pMgmt->pCurrBSS != NULL)) {
RFvRSSITodBm(pDevice, *pbyRSSI, &ldBm); RFvRSSITodBm(pDevice, *pbyRSSI, &ldBm);
// Monitor if RSSI is too strong. /* Monitor if RSSI is too strong. */
pMgmt->pCurrBSS->byRSSIStatCnt++; pMgmt->pCurrBSS->byRSSIStatCnt++;
pMgmt->pCurrBSS->byRSSIStatCnt %= RSSI_STAT_COUNT; pMgmt->pCurrBSS->byRSSIStatCnt %= RSSI_STAT_COUNT;
pMgmt->pCurrBSS->ldBmAverage[pMgmt->pCurrBSS->byRSSIStatCnt] = ldBm; pMgmt->pCurrBSS->ldBmAverage[pMgmt->pCurrBSS->byRSSIStatCnt] = ldBm;
...@@ -626,12 +625,10 @@ device_receive_frame( ...@@ -626,12 +625,10 @@ device_receive_frame(
} }
// -----------------------------------------------
if ((pMgmt->eCurrMode == WMAC_MODE_ESS_AP) && pDevice->bEnable8021x) { if ((pMgmt->eCurrMode == WMAC_MODE_ESS_AP) && pDevice->bEnable8021x) {
unsigned char abyMacHdr[24]; unsigned char abyMacHdr[24];
// Only 802.1x packet incoming allowed /* Only 802.1x packet incoming allowed */
if (bIsWEP) if (bIsWEP)
cbIVOffset = 8; cbIVOffset = 8;
else else
...@@ -644,7 +641,7 @@ device_receive_frame( ...@@ -644,7 +641,7 @@ device_receive_frame(
skb->dev = pDevice->apdev; skb->dev = pDevice->apdev;
if (bIsWEP) { if (bIsWEP) {
// strip IV header(8) /* strip IV header(8) */
memcpy(&abyMacHdr[0], (skb->data + 4), 24); memcpy(&abyMacHdr[0], (skb->data + 4), 24);
memcpy((skb->data + 4 + cbIVOffset), &abyMacHdr[0], 24); memcpy((skb->data + 4 + cbIVOffset), &abyMacHdr[0], 24);
} }
...@@ -660,18 +657,17 @@ device_receive_frame( ...@@ -660,18 +657,17 @@ device_receive_frame(
return true; return true;
} }
// check if 802.1x authorized /* check if 802.1x authorized */
if (!(pMgmt->sNodeDBTable[iSANodeIndex].dwFlags & WLAN_STA_AUTHORIZED)) if (!(pMgmt->sNodeDBTable[iSANodeIndex].dwFlags & WLAN_STA_AUTHORIZED))
return false; return false;
} }
if ((pKey != NULL) && (pKey->byCipherSuite == KEY_CTL_TKIP)) { if ((pKey != NULL) && (pKey->byCipherSuite == KEY_CTL_TKIP)) {
if (bIsWEP) if (bIsWEP)
FrameSize -= 8; //MIC FrameSize -= 8; /* MIC */
} }
//-------------------------------------------------------------------------------- /* Soft MIC */
// Soft MIC
if ((pKey != NULL) && (pKey->byCipherSuite == KEY_CTL_TKIP)) { if ((pKey != NULL) && (pKey->byCipherSuite == KEY_CTL_TKIP)) {
if (bIsWEP) { if (bIsWEP) {
__le32 *pdwMIC_L; __le32 *pdwMIC_L;
...@@ -702,7 +698,7 @@ device_receive_frame( ...@@ -702,7 +698,7 @@ device_receive_frame(
MIC_vAppend((unsigned char *)&(pDevice->sRxEthHeader.abyDstAddr[0]), 12); MIC_vAppend((unsigned char *)&(pDevice->sRxEthHeader.abyDstAddr[0]), 12);
dwMIC_Priority = 0; dwMIC_Priority = 0;
MIC_vAppend((unsigned char *)&dwMIC_Priority, 4); MIC_vAppend((unsigned char *)&dwMIC_Priority, 4);
// 4 is Rcv buffer header, 24 is MAC Header, and 8 is IV and Ext IV. /* 4 is Rcv buffer header, 24 is MAC Header, and 8 is IV and Ext IV. */
MIC_vAppend((unsigned char *)(skb->data + 4 + WLAN_HDR_ADDR3_LEN + 8), MIC_vAppend((unsigned char *)(skb->data + 4 + WLAN_HDR_ADDR3_LEN + 8),
FrameSize - WLAN_HDR_ADDR3_LEN - 8); FrameSize - WLAN_HDR_ADDR3_LEN - 8);
MIC_vGetMIC(&dwLocalMIC_L, &dwLocalMIC_R); MIC_vGetMIC(&dwLocalMIC_L, &dwLocalMIC_R);
...@@ -723,13 +719,12 @@ device_receive_frame( ...@@ -723,13 +719,12 @@ device_receive_frame(
pDevice->dev->name); pDevice->dev->name);
} }
} }
//2008-0409-07, <Add> by Einsn Liu
#ifdef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT #ifdef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
//send event to wpa_supplicant /* send event to wpa_supplicant */
{ {
union iwreq_data wrqu; union iwreq_data wrqu;
struct iw_michaelmicfailure ev; struct iw_michaelmicfailure ev;
int keyidx = pbyFrame[cbHeaderSize+3] >> 6; //top two-bits int keyidx = pbyFrame[cbHeaderSize+3] >> 6; /* top two-bits */
memset(&ev, 0, sizeof(ev)); memset(&ev, 0, sizeof(ev));
ev.flags = keyidx & IW_MICFAILURE_KEY_ID; ev.flags = keyidx & IW_MICFAILURE_KEY_ID;
...@@ -776,17 +771,16 @@ device_receive_frame( ...@@ -776,17 +771,16 @@ device_receive_frame(
} }
} }
} //---end of SOFT MIC----------------------------------------------------------------------- }
// ++++++++++ Reply Counter Check +++++++++++++
/* ++++++++++ Reply Counter Check +++++++++++++ */
if ((pKey != NULL) && ((pKey->byCipherSuite == KEY_CTL_TKIP) || if ((pKey != NULL) && ((pKey->byCipherSuite == KEY_CTL_TKIP) ||
(pKey->byCipherSuite == KEY_CTL_CCMP))) { (pKey->byCipherSuite == KEY_CTL_CCMP))) {
if (bIsWEP) { if (bIsWEP) {
unsigned short wLocalTSC15_0 = 0; unsigned short wLocalTSC15_0 = 0;
unsigned long dwLocalTSC47_16 = 0; unsigned long dwLocalTSC47_16 = 0;
unsigned long long RSC = 0; unsigned long long RSC = 0;
// endian issues /* endian issues */
RSC = *((unsigned long long *)&(pKey->KeyRSC)); RSC = *((unsigned long long *)&(pKey->KeyRSC));
wLocalTSC15_0 = (unsigned short)RSC; wLocalTSC15_0 = (unsigned short)RSC;
dwLocalTSC47_16 = (unsigned long)(RSC>>16); dwLocalTSC47_16 = (unsigned long)(RSC>>16);
...@@ -798,7 +792,7 @@ device_receive_frame( ...@@ -798,7 +792,7 @@ device_receive_frame(
if ((pDevice->sMgmtObj.eCurrMode == WMAC_MODE_ESS_STA) && if ((pDevice->sMgmtObj.eCurrMode == WMAC_MODE_ESS_STA) &&
(pDevice->sMgmtObj.eCurrState == WMAC_STATE_ASSOC)) { (pDevice->sMgmtObj.eCurrState == WMAC_STATE_ASSOC)) {
// check RSC /* check RSC */
if ((wRxTSC15_0 < wLocalTSC15_0) && if ((wRxTSC15_0 < wLocalTSC15_0) &&
(dwRxTSC47_16 <= dwLocalTSC47_16) && (dwRxTSC47_16 <= dwLocalTSC47_16) &&
!((dwRxTSC47_16 == 0) && (dwLocalTSC47_16 == 0xFFFFFFFF))) { !((dwRxTSC47_16 == 0) && (dwLocalTSC47_16 == 0xFFFFFFFF))) {
...@@ -818,13 +812,13 @@ device_receive_frame( ...@@ -818,13 +812,13 @@ device_receive_frame(
} }
} }
} }
} // ----- End of Reply Counter Check -------------------------- }
s_vProcessRxMACHeader(pDevice, (unsigned char *)(skb->data+4), FrameSize, bIsWEP, bExtIV, &cbHeaderOffset); s_vProcessRxMACHeader(pDevice, (unsigned char *)(skb->data+4), FrameSize, bIsWEP, bExtIV, &cbHeaderOffset);
FrameSize -= cbHeaderOffset; FrameSize -= cbHeaderOffset;
cbHeaderOffset += 4; // 4 is Rcv buffer header cbHeaderOffset += 4; /* 4 is Rcv buffer header */
// Null data, framesize = 14 /* Null data, framesize = 14 */
if (FrameSize < 15) if (FrameSize < 15)
return false; return false;
...@@ -851,7 +845,7 @@ device_receive_frame( ...@@ -851,7 +845,7 @@ device_receive_frame(
skb_put(skb, FrameSize); skb_put(skb, FrameSize);
skb->protocol = eth_type_trans(skb, skb->dev); skb->protocol = eth_type_trans(skb, skb->dev);
//drop frame not met IEEE 802.3 /* drop frame not met IEEE 802.3 */
skb->ip_summed = CHECKSUM_NONE; skb->ip_summed = CHECKSUM_NONE;
pStats->rx_bytes += skb->len; pStats->rx_bytes += skb->len;
...@@ -882,13 +876,14 @@ static bool s_bAPModeRxCtl( ...@@ -882,13 +876,14 @@ static bool s_bAPModeRxCtl(
if (IS_CTL_PSPOLL(pbyFrame) || !IS_TYPE_CONTROL(pbyFrame)) { if (IS_CTL_PSPOLL(pbyFrame) || !IS_TYPE_CONTROL(pbyFrame)) {
p802_11Header = (PS802_11Header)(pbyFrame); p802_11Header = (PS802_11Header)(pbyFrame);
if (!IS_TYPE_MGMT(pbyFrame)) { if (!IS_TYPE_MGMT(pbyFrame)) {
// Data & PS-Poll packet /* Data & PS-Poll packet, check frame class */
// check frame class
if (iSANodeIndex > 0) { if (iSANodeIndex > 0) {
// frame class 3 fliter & checking /* frame class 3 fliter & checking */
if (pMgmt->sNodeDBTable[iSANodeIndex].eNodeState < NODE_AUTH) { if (pMgmt->sNodeDBTable[iSANodeIndex].eNodeState < NODE_AUTH) {
// send deauth notification /*
// reason = (6) class 2 received from nonauth sta * send deauth notification
* reason = (6) class 2 received from nonauth sta
*/
vMgrDeAuthenBeginSta(pDevice, vMgrDeAuthenBeginSta(pDevice,
pMgmt, pMgmt,
(unsigned char *)(p802_11Header->abyAddr2), (unsigned char *)(p802_11Header->abyAddr2),
...@@ -899,8 +894,10 @@ static bool s_bAPModeRxCtl( ...@@ -899,8 +894,10 @@ static bool s_bAPModeRxCtl(
return true; return true;
} }
if (pMgmt->sNodeDBTable[iSANodeIndex].eNodeState < NODE_ASSOC) { if (pMgmt->sNodeDBTable[iSANodeIndex].eNodeState < NODE_ASSOC) {
// send deassoc notification /*
// reason = (7) class 3 received from nonassoc sta * send deassoc notification
* reason = (7) class 3 received from nonassoc sta
*/
vMgrDisassocBeginSta(pDevice, vMgrDisassocBeginSta(pDevice,
pMgmt, pMgmt,
(unsigned char *)(p802_11Header->abyAddr2), (unsigned char *)(p802_11Header->abyAddr2),
...@@ -912,14 +909,16 @@ static bool s_bAPModeRxCtl( ...@@ -912,14 +909,16 @@ static bool s_bAPModeRxCtl(
} }
if (pMgmt->sNodeDBTable[iSANodeIndex].bPSEnable) { if (pMgmt->sNodeDBTable[iSANodeIndex].bPSEnable) {
// delcare received ps-poll event /* delcare received ps-poll event */
if (IS_CTL_PSPOLL(pbyFrame)) { if (IS_CTL_PSPOLL(pbyFrame)) {
pMgmt->sNodeDBTable[iSANodeIndex].bRxPSPoll = true; pMgmt->sNodeDBTable[iSANodeIndex].bRxPSPoll = true;
bScheduleCommand((void *)pDevice, WLAN_CMD_RX_PSPOLL, NULL); bScheduleCommand((void *)pDevice, WLAN_CMD_RX_PSPOLL, NULL);
pr_debug("dpc: WLAN_CMD_RX_PSPOLL 1\n"); pr_debug("dpc: WLAN_CMD_RX_PSPOLL 1\n");
} else { } else {
// check Data PS state /*
// if PW bit off, send out all PS bufferring packets. * check Data PS state
* if PW bit off, send out all PS bufferring packets.
*/
if (!IS_FC_POWERMGT(pbyFrame)) { if (!IS_FC_POWERMGT(pbyFrame)) {
pMgmt->sNodeDBTable[iSANodeIndex].bPSEnable = false; pMgmt->sNodeDBTable[iSANodeIndex].bPSEnable = false;
pMgmt->sNodeDBTable[iSANodeIndex].bRxPSPoll = true; pMgmt->sNodeDBTable[iSANodeIndex].bRxPSPoll = true;
...@@ -930,10 +929,10 @@ static bool s_bAPModeRxCtl( ...@@ -930,10 +929,10 @@ static bool s_bAPModeRxCtl(
} else { } else {
if (IS_FC_POWERMGT(pbyFrame)) { if (IS_FC_POWERMGT(pbyFrame)) {
pMgmt->sNodeDBTable[iSANodeIndex].bPSEnable = true; pMgmt->sNodeDBTable[iSANodeIndex].bPSEnable = true;
// Once if STA in PS state, enable multicast bufferring /* Once if STA in PS state, enable multicast bufferring */
pMgmt->sNodeDBTable[0].bPSEnable = true; pMgmt->sNodeDBTable[0].bPSEnable = true;
} else { } else {
// clear all pending PS frame. /* clear all pending PS frame. */
if (pMgmt->sNodeDBTable[iSANodeIndex].wEnQueueCnt > 0) { if (pMgmt->sNodeDBTable[iSANodeIndex].wEnQueueCnt > 0) {
pMgmt->sNodeDBTable[iSANodeIndex].bPSEnable = false; pMgmt->sNodeDBTable[iSANodeIndex].bPSEnable = false;
pMgmt->sNodeDBTable[iSANodeIndex].bRxPSPoll = true; pMgmt->sNodeDBTable[iSANodeIndex].bRxPSPoll = true;
...@@ -994,7 +993,7 @@ static bool s_bHandleRxEncryption( ...@@ -994,7 +993,7 @@ static bool s_bHandleRxEncryption(
pbyIV = pbyFrame + WLAN_HDR_ADDR3_LEN; pbyIV = pbyFrame + WLAN_HDR_ADDR3_LEN;
if (WLAN_GET_FC_TODS(*(unsigned short *)pbyFrame) && if (WLAN_GET_FC_TODS(*(unsigned short *)pbyFrame) &&
WLAN_GET_FC_FROMDS(*(unsigned short *)pbyFrame)) { WLAN_GET_FC_FROMDS(*(unsigned short *)pbyFrame)) {
pbyIV += 6; // 6 is 802.11 address4 pbyIV += 6; /* 6 is 802.11 address4 */
PayloadLen -= 6; PayloadLen -= 6;
} }
byKeyIdx = (*(pbyIV+3) & 0xc0); byKeyIdx = (*(pbyIV+3) & 0xc0);
...@@ -1008,7 +1007,7 @@ static bool s_bHandleRxEncryption( ...@@ -1008,7 +1007,7 @@ static bool s_bHandleRxEncryption(
(pMgmt->eAuthenMode == WMAC_AUTH_WPA2PSK)) { (pMgmt->eAuthenMode == WMAC_AUTH_WPA2PSK)) {
if (((*pbyRsr & (RSR_ADDRBROAD | RSR_ADDRMULTI)) == 0) && if (((*pbyRsr & (RSR_ADDRBROAD | RSR_ADDRMULTI)) == 0) &&
(pDevice->pMgmt->byCSSPK != KEY_CTL_NONE)) { (pDevice->pMgmt->byCSSPK != KEY_CTL_NONE)) {
// unicast pkt use pairwise key /* unicast pkt use pairwise key */
pr_debug("unicast pkt\n"); pr_debug("unicast pkt\n");
if (KeybGetKey(&(pDevice->sKey), pDevice->abyBSSID, 0xFFFFFFFF, &pKey) == true) { if (KeybGetKey(&(pDevice->sKey), pDevice->abyBSSID, 0xFFFFFFFF, &pKey) == true) {
if (pDevice->pMgmt->byCSSPK == KEY_CTL_TKIP) if (pDevice->pMgmt->byCSSPK == KEY_CTL_TKIP)
...@@ -1018,7 +1017,7 @@ static bool s_bHandleRxEncryption( ...@@ -1018,7 +1017,7 @@ static bool s_bHandleRxEncryption(
} }
pr_debug("unicast pkt: %d, %p\n", byDecMode, pKey); pr_debug("unicast pkt: %d, %p\n", byDecMode, pKey);
} else { } else {
// use group key /* use group key */
KeybGetKey(&(pDevice->sKey), pDevice->abyBSSID, byKeyIdx, &pKey); KeybGetKey(&(pDevice->sKey), pDevice->abyBSSID, byKeyIdx, &pKey);
if (pDevice->pMgmt->byCSSGK == KEY_CTL_TKIP) if (pDevice->pMgmt->byCSSGK == KEY_CTL_TKIP)
byDecMode = KEY_CTL_TKIP; byDecMode = KEY_CTL_TKIP;
...@@ -1028,9 +1027,9 @@ static bool s_bHandleRxEncryption( ...@@ -1028,9 +1027,9 @@ static bool s_bHandleRxEncryption(
byKeyIdx, byDecMode, pKey); byKeyIdx, byDecMode, pKey);
} }
} }
// our WEP only support Default Key /* our WEP only support Default Key */
if (pKey == NULL) { if (pKey == NULL) {
// use default group key /* use default group key */
KeybGetKey(&(pDevice->sKey), pDevice->abyBroadcastAddr, byKeyIdx, &pKey); KeybGetKey(&(pDevice->sKey), pDevice->abyBroadcastAddr, byKeyIdx, &pKey);
if (pDevice->pMgmt->byCSSGK == KEY_CTL_TKIP) if (pDevice->pMgmt->byCSSGK == KEY_CTL_TKIP)
byDecMode = KEY_CTL_TKIP; byDecMode = KEY_CTL_TKIP;
...@@ -1053,14 +1052,16 @@ static bool s_bHandleRxEncryption( ...@@ -1053,14 +1052,16 @@ static bool s_bHandleRxEncryption(
return false; return false;
} }
if (byDecMode == KEY_CTL_WEP) { if (byDecMode == KEY_CTL_WEP) {
// handle WEP /* handle WEP */
if ((pDevice->byLocalID <= REV_ID_VT3253_A1) || if ((pDevice->byLocalID <= REV_ID_VT3253_A1) ||
(((PSKeyTable)(pKey->pvKeyTable))->bSoftWEP == true)) { (((PSKeyTable)(pKey->pvKeyTable))->bSoftWEP == true)) {
// Software WEP /*
// 1. 3253A * Software WEP
// 2. WEP 256 * 1. 3253A
* 2. WEP 256
*/
PayloadLen -= (WLAN_HDR_ADDR3_LEN + 4 + 4); // 24 is 802.11 header,4 is IV, 4 is crc PayloadLen -= (WLAN_HDR_ADDR3_LEN + 4 + 4); /* 24 is 802.11 header,4 is IV, 4 is crc */
memcpy(pDevice->abyPRNG, pbyIV, 3); memcpy(pDevice->abyPRNG, pbyIV, 3);
memcpy(pDevice->abyPRNG + 3, pKey->abyKey, pKey->uKeyLength); memcpy(pDevice->abyPRNG + 3, pKey->abyKey, pKey->uKeyLength);
rc4_init(&pDevice->SBox, pDevice->abyPRNG, pKey->uKeyLength + 3); rc4_init(&pDevice->SBox, pDevice->abyPRNG, pKey->uKeyLength + 3);
...@@ -1072,9 +1073,9 @@ static bool s_bHandleRxEncryption( ...@@ -1072,9 +1073,9 @@ static bool s_bHandleRxEncryption(
} }
} else if ((byDecMode == KEY_CTL_TKIP) || } else if ((byDecMode == KEY_CTL_TKIP) ||
(byDecMode == KEY_CTL_CCMP)) { (byDecMode == KEY_CTL_CCMP)) {
// TKIP/AES /* TKIP/AES */
PayloadLen -= (WLAN_HDR_ADDR3_LEN + 8 + 4); // 24 is 802.11 header, 8 is IV&ExtIV, 4 is crc PayloadLen -= (WLAN_HDR_ADDR3_LEN + 8 + 4); /* 24 is 802.11 header, 8 is IV&ExtIV, 4 is crc */
*pdwRxTSC47_16 = cpu_to_le32(*(unsigned long *)(pbyIV + 4)); *pdwRxTSC47_16 = cpu_to_le32(*(unsigned long *)(pbyIV + 4));
pr_debug("ExtIV: %lx\n", *pdwRxTSC47_16); pr_debug("ExtIV: %lx\n", *pdwRxTSC47_16);
if (byDecMode == KEY_CTL_TKIP) if (byDecMode == KEY_CTL_TKIP)
...@@ -1086,8 +1087,10 @@ static bool s_bHandleRxEncryption( ...@@ -1086,8 +1087,10 @@ static bool s_bHandleRxEncryption(
if ((byDecMode == KEY_CTL_TKIP) && if ((byDecMode == KEY_CTL_TKIP) &&
(pDevice->byLocalID <= REV_ID_VT3253_A1)) { (pDevice->byLocalID <= REV_ID_VT3253_A1)) {
// Software TKIP /*
// 1. 3253 A * Software TKIP
* 1. 3253 A
*/
PS802_11Header pMACHeader = (PS802_11Header)(pbyFrame); PS802_11Header pMACHeader = (PS802_11Header)(pbyFrame);
TKIPvMixKey(pKey->abyKey, pMACHeader->abyAddr2, *pwRxTSC15_0, *pdwRxTSC47_16, pDevice->abyPRNG); TKIPvMixKey(pKey->abyKey, pMACHeader->abyAddr2, *pwRxTSC15_0, *pdwRxTSC47_16, pDevice->abyPRNG);
...@@ -1101,7 +1104,7 @@ static bool s_bHandleRxEncryption( ...@@ -1101,7 +1104,7 @@ static bool s_bHandleRxEncryption(
pr_debug("PayloadLen = %d\n", PayloadLen); pr_debug("PayloadLen = %d\n", PayloadLen);
} }
} }
}// end of TKIP/AES }
if ((*(pbyIV+3) & 0x20) != 0) if ((*(pbyIV+3) & 0x20) != 0)
*pbExtIV = true; *pbExtIV = true;
...@@ -1133,7 +1136,7 @@ static bool s_bHostWepRxEncryption( ...@@ -1133,7 +1136,7 @@ static bool s_bHostWepRxEncryption(
pbyIV = pbyFrame + WLAN_HDR_ADDR3_LEN; pbyIV = pbyFrame + WLAN_HDR_ADDR3_LEN;
if (WLAN_GET_FC_TODS(*(unsigned short *)pbyFrame) && if (WLAN_GET_FC_TODS(*(unsigned short *)pbyFrame) &&
WLAN_GET_FC_FROMDS(*(unsigned short *)pbyFrame)) { WLAN_GET_FC_FROMDS(*(unsigned short *)pbyFrame)) {
pbyIV += 6; // 6 is 802.11 address4 pbyIV += 6; /* 6 is 802.11 address4 */
PayloadLen -= 6; PayloadLen -= 6;
} }
byKeyIdx = (*(pbyIV+3) & 0xc0); byKeyIdx = (*(pbyIV+3) & 0xc0);
...@@ -1152,18 +1155,20 @@ static bool s_bHostWepRxEncryption( ...@@ -1152,18 +1155,20 @@ static bool s_bHostWepRxEncryption(
return false; return false;
if (byDecMode == KEY_CTL_WEP) { if (byDecMode == KEY_CTL_WEP) {
// handle WEP /* handle WEP */
pr_debug("byDecMode == KEY_CTL_WEP\n"); pr_debug("byDecMode == KEY_CTL_WEP\n");
if ((pDevice->byLocalID <= REV_ID_VT3253_A1) || if ((pDevice->byLocalID <= REV_ID_VT3253_A1) ||
(((PSKeyTable)(pKey->pvKeyTable))->bSoftWEP == true) || (((PSKeyTable)(pKey->pvKeyTable))->bSoftWEP == true) ||
!bOnFly) { !bOnFly) {
// Software WEP /*
// 1. 3253A * Software WEP
// 2. WEP 256 * 1. 3253A
// 3. NotOnFly * 2. WEP 256
* 3. NotOnFly
*/
PayloadLen -= (WLAN_HDR_ADDR3_LEN + 4 + 4); // 24 is 802.11 header,4 is IV, 4 is crc PayloadLen -= (WLAN_HDR_ADDR3_LEN + 4 + 4); /* 24 is 802.11 header,4 is IV, 4 is crc */
memcpy(pDevice->abyPRNG, pbyIV, 3); memcpy(pDevice->abyPRNG, pbyIV, 3);
memcpy(pDevice->abyPRNG + 3, pKey->abyKey, pKey->uKeyLength); memcpy(pDevice->abyPRNG + 3, pKey->abyKey, pKey->uKeyLength);
rc4_init(&pDevice->SBox, pDevice->abyPRNG, pKey->uKeyLength + 3); rc4_init(&pDevice->SBox, pDevice->abyPRNG, pKey->uKeyLength + 3);
...@@ -1175,9 +1180,9 @@ static bool s_bHostWepRxEncryption( ...@@ -1175,9 +1180,9 @@ static bool s_bHostWepRxEncryption(
} }
} else if ((byDecMode == KEY_CTL_TKIP) || } else if ((byDecMode == KEY_CTL_TKIP) ||
(byDecMode == KEY_CTL_CCMP)) { (byDecMode == KEY_CTL_CCMP)) {
// TKIP/AES /* TKIP/AES */
PayloadLen -= (WLAN_HDR_ADDR3_LEN + 8 + 4); // 24 is 802.11 header, 8 is IV&ExtIV, 4 is crc PayloadLen -= (WLAN_HDR_ADDR3_LEN + 8 + 4); /* 24 is 802.11 header, 8 is IV&ExtIV, 4 is crc */
*pdwRxTSC47_16 = cpu_to_le32(*(unsigned long *)(pbyIV + 4)); *pdwRxTSC47_16 = cpu_to_le32(*(unsigned long *)(pbyIV + 4));
pr_debug("ExtIV: %lx\n", *pdwRxTSC47_16); pr_debug("ExtIV: %lx\n", *pdwRxTSC47_16);
...@@ -1190,9 +1195,11 @@ static bool s_bHostWepRxEncryption( ...@@ -1190,9 +1195,11 @@ static bool s_bHostWepRxEncryption(
if (byDecMode == KEY_CTL_TKIP) { if (byDecMode == KEY_CTL_TKIP) {
if ((pDevice->byLocalID <= REV_ID_VT3253_A1) || !bOnFly) { if ((pDevice->byLocalID <= REV_ID_VT3253_A1) || !bOnFly) {
// Software TKIP /*
// 1. 3253 A * Software TKIP
// 2. NotOnFly * 1. 3253 A
* 2. NotOnFly
*/
pr_debug("soft KEY_CTL_TKIP\n"); pr_debug("soft KEY_CTL_TKIP\n");
pMACHeader = (PS802_11Header)(pbyFrame); pMACHeader = (PS802_11Header)(pbyFrame);
TKIPvMixKey(pKey->abyKey, pMACHeader->abyAddr2, *pwRxTSC15_0, *pdwRxTSC47_16, pDevice->abyPRNG); TKIPvMixKey(pKey->abyKey, pMACHeader->abyAddr2, *pwRxTSC15_0, *pdwRxTSC47_16, pDevice->abyPRNG);
...@@ -1211,8 +1218,10 @@ static bool s_bHostWepRxEncryption( ...@@ -1211,8 +1218,10 @@ static bool s_bHostWepRxEncryption(
if (byDecMode == KEY_CTL_CCMP) { if (byDecMode == KEY_CTL_CCMP) {
if (!bOnFly) { if (!bOnFly) {
// Software CCMP /*
// NotOnFly * Software CCMP
* NotOnFly
*/
pr_debug("soft KEY_CTL_CCMP\n"); pr_debug("soft KEY_CTL_CCMP\n");
if (AESbGenCCMP(pKey->abyKey, pbyFrame, FrameSize)) { if (AESbGenCCMP(pKey->abyKey, pbyFrame, FrameSize)) {
*pbyNewRsr |= NEWRSR_DECRYPTOK; *pbyNewRsr |= NEWRSR_DECRYPTOK;
...@@ -1223,7 +1232,7 @@ static bool s_bHostWepRxEncryption( ...@@ -1223,7 +1232,7 @@ static bool s_bHostWepRxEncryption(
} }
} }
}// end of TKIP/AES }
if ((*(pbyIV+3) & 0x20) != 0) if ((*(pbyIV+3) & 0x20) != 0)
*pbExtIV = true; *pbExtIV = true;
...@@ -1249,12 +1258,12 @@ static bool s_bAPModeRxData( ...@@ -1249,12 +1258,12 @@ static bool s_bAPModeRxData(
if (FrameSize > CB_MAX_BUF_SIZE) if (FrameSize > CB_MAX_BUF_SIZE)
return false; return false;
// check DA /* check DA */
if (is_multicast_ether_addr((unsigned char *)(skb->data+cbHeaderOffset))) { if (is_multicast_ether_addr((unsigned char *)(skb->data+cbHeaderOffset))) {
if (pMgmt->sNodeDBTable[0].bPSEnable) { if (pMgmt->sNodeDBTable[0].bPSEnable) {
skbcpy = dev_alloc_skb((int)pDevice->rx_buf_sz); skbcpy = dev_alloc_skb((int)pDevice->rx_buf_sz);
// if any node in PS mode, buffer packet until DTIM. /* if any node in PS mode, buffer packet until DTIM. */
if (skbcpy == NULL) { if (skbcpy == NULL) {
pr_info("relay multicast no skb available\n"); pr_info("relay multicast no skb available\n");
} else { } else {
...@@ -1264,18 +1273,18 @@ static bool s_bAPModeRxData( ...@@ -1264,18 +1273,18 @@ static bool s_bAPModeRxData(
skb_queue_tail(&(pMgmt->sNodeDBTable[0].sTxPSQueue), skbcpy); skb_queue_tail(&(pMgmt->sNodeDBTable[0].sTxPSQueue), skbcpy);
pMgmt->sNodeDBTable[0].wEnQueueCnt++; pMgmt->sNodeDBTable[0].wEnQueueCnt++;
// set tx map /* set tx map */
pMgmt->abyPSTxMap[0] |= byMask[0]; pMgmt->abyPSTxMap[0] |= byMask[0];
} }
} else { } else {
bRelayAndForward = true; bRelayAndForward = true;
} }
} else { } else {
// check if relay /* check if relay */
if (BSSDBbIsSTAInNodeDB(pMgmt, (unsigned char *)(skb->data+cbHeaderOffset), &iDANodeIndex)) { if (BSSDBbIsSTAInNodeDB(pMgmt, (unsigned char *)(skb->data+cbHeaderOffset), &iDANodeIndex)) {
if (pMgmt->sNodeDBTable[iDANodeIndex].eNodeState >= NODE_ASSOC) { if (pMgmt->sNodeDBTable[iDANodeIndex].eNodeState >= NODE_ASSOC) {
if (pMgmt->sNodeDBTable[iDANodeIndex].bPSEnable) { if (pMgmt->sNodeDBTable[iDANodeIndex].bPSEnable) {
// queue this skb until next PS tx, and then release. /* queue this skb until next PS tx, and then release. */
skb->data += cbHeaderOffset; skb->data += cbHeaderOffset;
skb->tail += cbHeaderOffset; skb->tail += cbHeaderOffset;
...@@ -1296,7 +1305,7 @@ static bool s_bAPModeRxData( ...@@ -1296,7 +1305,7 @@ static bool s_bAPModeRxData(
} }
if (bRelayOnly || bRelayAndForward) { if (bRelayOnly || bRelayAndForward) {
// relay this packet right now /* relay this packet right now */
if (bRelayAndForward) if (bRelayAndForward)
iDANodeIndex = 0; iDANodeIndex = 0;
...@@ -1306,7 +1315,7 @@ static bool s_bAPModeRxData( ...@@ -1306,7 +1315,7 @@ static bool s_bAPModeRxData(
if (bRelayOnly) if (bRelayOnly)
return false; return false;
} }
// none associate, don't forward /* none associate, don't forward */
if (pDevice->uAssocCount == 0) if (pDevice->uAssocCount == 0)
return false; return false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment