blob: 08091a0a7c40e834eb54f225ffd1a0098071bde5 [file] [log] [blame]
Forest Bond92b96792009-06-13 07:38:31 -04001/*
2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 *
20 * File: bssdb.h
21 *
22 * Purpose: Handles the Basic Service Set & Node Database functions
23 *
24 * Author: Lyndon Chen
25 *
26 * Date: July 16, 2002
27 *
28 */
29
30#ifndef __BSSDB_H__
31#define __BSSDB_H__
32
Forest Bond92b96792009-06-13 07:38:31 -040033#include <linux/skbuff.h>
Forest Bond92b96792009-06-13 07:38:31 -040034#include "80211hdr.h"
Forest Bond92b96792009-06-13 07:38:31 -040035#include "80211mgr.h"
Forest Bond92b96792009-06-13 07:38:31 -040036#include "card.h"
Forest Bond92b96792009-06-13 07:38:31 -040037#include "mib.h"
Forest Bond92b96792009-06-13 07:38:31 -040038
39/*--------------------- Export Definitions -------------------------*/
40
41#define MAX_NODE_NUM 64
42#define MAX_BSS_NUM 42
Andres Mored9d1ccb2010-05-26 20:00:36 -030043#define LOST_BEACON_COUNT 10 /* 10 sec, XP defined */
Forest Bond92b96792009-06-13 07:38:31 -040044#define MAX_PS_TX_BUF 32 // sta max power saving tx buf
45#define ADHOC_LOST_BEACON_COUNT 30 // 30 sec, beacon lost for adhoc only
46#define MAX_INACTIVE_COUNT 300 // 300 sec, inactive STA node refresh
47
48#define USE_PROTECT_PERIOD 10 // 10 sec, Use protect mode check period
49#define ERP_RECOVER_COUNT 30 // 30 sec, ERP support callback check
50#define BSS_CLEAR_COUNT 1
51
52#define RSSI_STAT_COUNT 10
53#define MAX_CHECK_RSSI_COUNT 8
54
55// STA dwflags
56#define WLAN_STA_AUTH BIT0
57#define WLAN_STA_ASSOC BIT1
58#define WLAN_STA_PS BIT2
59#define WLAN_STA_TIM BIT3
60// permanent; do not remove entry on expiration
61#define WLAN_STA_PERM BIT4
62// If 802.1X is used, this flag is
63// controlling whether STA is authorized to
64// send and receive non-IEEE 802.1X frames
65#define WLAN_STA_AUTHORIZED BIT5
66
Forest Bond92b96792009-06-13 07:38:31 -040067#define MAX_WPA_IE_LEN 64
68
69
70/*--------------------- Export Classes ----------------------------*/
71
72/*--------------------- Export Variables --------------------------*/
73
74
75/*--------------------- Export Types ------------------------------*/
76
77//
78// IEEE 802.11 Structures and definitions
79//
80
81typedef struct tagSERPObject {
Andres Moredfdcc422013-02-12 20:36:28 -050082 bool bERPExist;
Forest Bond92b96792009-06-13 07:38:31 -040083 BYTE byERP;
Andres Mored9d1ccb2010-05-26 20:00:36 -030084} ERPObject, *PERPObject;
Forest Bond92b96792009-06-13 07:38:31 -040085
86
87typedef struct tagSRSNCapObject {
Andres Moredfdcc422013-02-12 20:36:28 -050088 bool bRSNCapExist;
Forest Bond92b96792009-06-13 07:38:31 -040089 WORD wRSNCap;
Andres Mored9d1ccb2010-05-26 20:00:36 -030090} SRSNCapObject, *PSRSNCapObject;
Forest Bond92b96792009-06-13 07:38:31 -040091
92// BSS info(AP)
Forest Bond92b96792009-06-13 07:38:31 -040093typedef struct tagKnownBSS {
94 // BSS info
Andres Moredfdcc422013-02-12 20:36:28 -050095 bool bActive;
Forest Bond92b96792009-06-13 07:38:31 -040096 BYTE abyBSSID[WLAN_BSSID_LEN];
Andres Morecc856e62010-05-17 21:34:01 -030097 unsigned int uChannel;
Forest Bond92b96792009-06-13 07:38:31 -040098 BYTE abySuppRates[WLAN_IEHDR_LEN + WLAN_RATES_MAXLEN + 1];
99 BYTE abyExtSuppRates[WLAN_IEHDR_LEN + WLAN_RATES_MAXLEN + 1];
Andres Morecc856e62010-05-17 21:34:01 -0300100 unsigned int uRSSI;
Forest Bond92b96792009-06-13 07:38:31 -0400101 BYTE bySQ;
102 WORD wBeaconInterval;
103 WORD wCapInfo;
104 BYTE abySSID[WLAN_IEHDR_LEN + WLAN_SSID_MAXLEN + 1];
105 BYTE byRxRate;
106
107// WORD wATIMWindow;
108 BYTE byRSSIStatCnt;
Andres More213d2e92010-05-17 21:34:00 -0300109 signed long ldBmMAX;
110 signed long ldBmAverage[RSSI_STAT_COUNT];
111 signed long ldBmAverRange;
Forest Bond92b96792009-06-13 07:38:31 -0400112 //For any BSSID selection improvment
Andres Moredfdcc422013-02-12 20:36:28 -0500113 bool bSelected;
Forest Bond92b96792009-06-13 07:38:31 -0400114
115 //++ WPA informations
Andres Moredfdcc422013-02-12 20:36:28 -0500116 bool bWPAValid;
Forest Bond92b96792009-06-13 07:38:31 -0400117 BYTE byGKType;
118 BYTE abyPKType[4];
119 WORD wPKCount;
120 BYTE abyAuthType[4];
121 WORD wAuthCount;
122 BYTE byDefaultK_as_PK;
123 BYTE byReplayIdx;
124 //--
125
126 //++ WPA2 informations
Andres Moredfdcc422013-02-12 20:36:28 -0500127 bool bWPA2Valid;
Forest Bond92b96792009-06-13 07:38:31 -0400128 BYTE byCSSGK;
129 WORD wCSSPKCount;
130 BYTE abyCSSPK[4];
131 WORD wAKMSSAuthCount;
132 BYTE abyAKMSSAuthType[4];
133
134 //++ wpactl
135 BYTE byWPAIE[MAX_WPA_IE_LEN];
136 BYTE byRSNIE[MAX_WPA_IE_LEN];
137 WORD wWPALen;
138 WORD wRSNLen;
139
140 // Clear count
Andres Morecc856e62010-05-17 21:34:01 -0300141 unsigned int uClearCount;
Forest Bond92b96792009-06-13 07:38:31 -0400142// BYTE abyIEs[WLAN_BEACON_FR_MAXLEN];
Andres Morecc856e62010-05-17 21:34:01 -0300143 unsigned int uIELength;
Malcolm Priestley7c65fa22012-11-28 21:11:02 +0000144 u64 qwBSSTimestamp;
145 u64 qwLocalTSF;/* local TSF timer */
Forest Bond92b96792009-06-13 07:38:31 -0400146
147 CARD_PHY_TYPE eNetworkTypeInUse;
148
149 ERPObject sERP;
150 SRSNCapObject sRSNCapObj;
151 BYTE abyIEs[1024]; // don't move this field !!
152
Andres Mored9d1ccb2010-05-26 20:00:36 -0300153} __attribute__ ((__packed__))
Jim Lieb193a8232009-08-12 14:54:06 -0700154KnownBSS , *PKnownBSS;
Forest Bond92b96792009-06-13 07:38:31 -0400155
156
157
158typedef enum tagNODE_STATE {
159 NODE_FREE,
160 NODE_AGED,
161 NODE_KNOWN,
162 NODE_AUTH,
163 NODE_ASSOC
164} NODE_STATE, *PNODE_STATE;
165
166
167// STA node info
168typedef struct tagKnownNodeDB {
169 // STA info
Andres Moredfdcc422013-02-12 20:36:28 -0500170 bool bActive;
Forest Bond92b96792009-06-13 07:38:31 -0400171 BYTE abyMACAddr[WLAN_ADDR_LEN];
172 BYTE abyCurrSuppRates[WLAN_IEHDR_LEN + WLAN_RATES_MAXLEN];
173 BYTE abyCurrExtSuppRates[WLAN_IEHDR_LEN + WLAN_RATES_MAXLEN];
174 WORD wTxDataRate;
Andres Moredfdcc422013-02-12 20:36:28 -0500175 bool bShortPreamble;
176 bool bERPExist;
177 bool bShortSlotTime;
Andres Morecc856e62010-05-17 21:34:01 -0300178 unsigned int uInActiveCount;
Forest Bond92b96792009-06-13 07:38:31 -0400179 WORD wMaxBasicRate; //Get from byTopOFDMBasicRate or byTopCCKBasicRate which depends on packetTyp.
180 WORD wMaxSuppRate; //Records the highest supported rate getting from SuppRates IE and ExtSuppRates IE in Beacon.
181 WORD wSuppRate;
182 BYTE byTopOFDMBasicRate;//Records the highest basic rate in OFDM mode
183 BYTE byTopCCKBasicRate; //Records the highest basic rate in CCK mode
184
185 // For AP mode
186 struct sk_buff_head sTxPSQueue;
187 WORD wCapInfo;
188 WORD wListenInterval;
189 WORD wAID;
190 NODE_STATE eNodeState;
Andres Moredfdcc422013-02-12 20:36:28 -0500191 bool bPSEnable;
192 bool bRxPSPoll;
Forest Bond92b96792009-06-13 07:38:31 -0400193 BYTE byAuthSequence;
Andres Morecc856e62010-05-17 21:34:01 -0300194 unsigned long ulLastRxJiffer;
Forest Bond92b96792009-06-13 07:38:31 -0400195 BYTE bySuppRate;
196 DWORD dwFlags;
197 WORD wEnQueueCnt;
198
Andres Moredfdcc422013-02-12 20:36:28 -0500199 bool bOnFly;
Andres Morecc856e62010-05-17 21:34:01 -0300200 unsigned long long KeyRSC;
Forest Bond92b96792009-06-13 07:38:31 -0400201 BYTE byKeyIndex;
202 DWORD dwKeyIndex;
203 BYTE byCipherSuite;
204 DWORD dwTSC47_16;
205 WORD wTSC15_0;
Andres Morecc856e62010-05-17 21:34:01 -0300206 unsigned int uWepKeyLength;
Forest Bond92b96792009-06-13 07:38:31 -0400207 BYTE abyWepKey[WLAN_WEPMAX_KEYLEN];
208 //
209 // Auto rate fallback vars
Andres Moredfdcc422013-02-12 20:36:28 -0500210 bool bIsInFallback;
Andres Morecc856e62010-05-17 21:34:01 -0300211 unsigned int uAverageRSSI;
212 unsigned int uRateRecoveryTimeout;
213 unsigned int uRatePollTimeout;
214 unsigned int uTxFailures;
215 unsigned int uTxAttempts;
Forest Bond92b96792009-06-13 07:38:31 -0400216
Andres Morecc856e62010-05-17 21:34:01 -0300217 unsigned int uTxRetry;
218 unsigned int uFailureRatio;
219 unsigned int uRetryRatio;
220 unsigned int uTxOk[MAX_RATE+1];
221 unsigned int uTxFail[MAX_RATE+1];
222 unsigned int uTimeCount;
Forest Bond92b96792009-06-13 07:38:31 -0400223
Jim Lieb193a8232009-08-12 14:54:06 -0700224} KnownNodeDB, *PKnownNodeDB;
Forest Bond92b96792009-06-13 07:38:31 -0400225
Forest Bond92b96792009-06-13 07:38:31 -0400226/*--------------------- Export Functions --------------------------*/
227
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000228PKnownBSS BSSpSearchBSSList(struct vnt_private *, u8 *pbyDesireBSSID,
229 u8 *pbyDesireSSID, CARD_PHY_TYPE ePhyType);
Forest Bond92b96792009-06-13 07:38:31 -0400230
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000231PKnownBSS BSSpAddrIsInBSSList(struct vnt_private *, u8 *abyBSSID,
232 PWLAN_IE_SSID pSSID);
Forest Bond92b96792009-06-13 07:38:31 -0400233
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000234void BSSvClearBSSList(struct vnt_private *, int bKeepCurrBSSID);
Forest Bond92b96792009-06-13 07:38:31 -0400235
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000236int BSSbInsertToBSSList(struct vnt_private *,
237 u8 *abyBSSIDAddr,
Malcolm Priestley7c65fa22012-11-28 21:11:02 +0000238 u64 qwTimestamp,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000239 u16 wBeaconInterval,
240 u16 wCapInfo,
241 u8 byCurrChannel,
242 PWLAN_IE_SSID pSSID,
243 PWLAN_IE_SUPP_RATES pSuppRates,
244 PWLAN_IE_SUPP_RATES pExtSuppRates,
245 PERPObject psERP,
246 PWLAN_IE_RSN pRSN,
247 PWLAN_IE_RSN_EXT pRSNWPA,
248 PWLAN_IE_COUNTRY pIE_Country,
249 PWLAN_IE_QUIET pIE_Quiet,
250 u32 uIELength,
251 u8 *pbyIEs,
252 void *pRxPacketContext);
Forest Bond92b96792009-06-13 07:38:31 -0400253
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000254int BSSbUpdateToBSSList(struct vnt_private *,
Malcolm Priestley7c65fa22012-11-28 21:11:02 +0000255 u64 qwTimestamp,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000256 u16 wBeaconInterval,
257 u16 wCapInfo,
258 u8 byCurrChannel,
259 int bChannelHit,
260 PWLAN_IE_SSID pSSID,
261 PWLAN_IE_SUPP_RATES pSuppRates,
262 PWLAN_IE_SUPP_RATES pExtSuppRates,
263 PERPObject psERP,
264 PWLAN_IE_RSN pRSN,
265 PWLAN_IE_RSN_EXT pRSNWPA,
266 PWLAN_IE_COUNTRY pIE_Country,
267 PWLAN_IE_QUIET pIE_Quiet,
268 PKnownBSS pBSSList,
269 u32 uIELength,
270 u8 *pbyIEs,
271 void *pRxPacketContext);
Forest Bond92b96792009-06-13 07:38:31 -0400272
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000273int BSSbIsSTAInNodeDB(struct vnt_private *, PBYTE abyDstAddr,
274 u32 *puNodeIndex);
Forest Bond92b96792009-06-13 07:38:31 -0400275
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000276void BSSvCreateOneNode(struct vnt_private *, u32 *puNodeIndex);
Forest Bond92b96792009-06-13 07:38:31 -0400277
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000278void BSSvUpdateAPNode(struct vnt_private *, u16 *pwCapInfo,
279 PWLAN_IE_SUPP_RATES pItemRates, PWLAN_IE_SUPP_RATES pExtSuppRates);
Forest Bond92b96792009-06-13 07:38:31 -0400280
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000281void BSSvSecondCallBack(struct vnt_private *);
Forest Bond92b96792009-06-13 07:38:31 -0400282
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000283void BSSvUpdateNodeTxCounter(struct vnt_private *, PSStatCounter pStatistic,
284 u8 byTSR, u8 byPktNO);
Forest Bond92b96792009-06-13 07:38:31 -0400285
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000286void BSSvRemoveOneNode(struct vnt_private *, u32 uNodeIndex);
Forest Bond92b96792009-06-13 07:38:31 -0400287
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000288void BSSvAddMulticastNode(struct vnt_private *);
Forest Bond92b96792009-06-13 07:38:31 -0400289
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000290void BSSvClearNodeDBTable(struct vnt_private *, u32 uStartIndex);
Forest Bond92b96792009-06-13 07:38:31 -0400291
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000292void BSSvClearAnyBSSJoinRecord(struct vnt_private *);
Forest Bond92b96792009-06-13 07:38:31 -0400293
Andres Moree7b07d12010-05-01 19:12:26 -0300294#endif /* __BSSDB_H__ */