2 *************************************************************************
4 * 5F., No.36, Taiyuan St., Jhubei City,
8 * (c) Copyright 2002-2007, Ralink Technology, Inc.
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
15 * This program is distributed in the hope that it will be useful, *
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 * GNU General Public License for more details. *
20 * You should have received a copy of the GNU General Public License *
21 * along with this program; if not, write to the *
22 * Free Software Foundation, Inc., *
23 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
25 *************************************************************************
34 -------- ---------- ----------------------------------------------
35 Name Date Modification logs
41 // EAPOL Key descripter frame format related length
42 #define LEN_KEY_DESC_NONCE 32
43 #define LEN_KEY_DESC_IV 16
44 #define LEN_KEY_DESC_RSC 8
45 #define LEN_KEY_DESC_ID 8
46 #define LEN_KEY_DESC_REPLAY 8
47 #define LEN_KEY_DESC_MIC 16
49 // The length is the EAPoL-Key frame except key data field.
50 // Please refer to 802.11i-2004 ,Figure 43u in p.78
51 #define LEN_EAPOL_KEY_MSG (sizeof(KEY_DESCRIPTER) - MAX_LEN_OF_RSNIE)
54 #define EAP_CODE_REQUEST 1
55 #define EAP_CODE_RESPONSE 2
56 #define EAP_CODE_SUCCESS 3
57 #define EAP_CODE_FAILURE 4
59 // EAPOL frame Protocol Version
63 // EAPOL-KEY Descriptor Type
64 #define WPA1_KEY_DESC 0xfe
65 #define WPA2_KEY_DESC 0x02
67 // Key Descriptor Version of Key Information
68 #define DESC_TYPE_TKIP 1
69 #define DESC_TYPE_AES 2
70 #define DESC_TYPE_MESH 3
72 #define LEN_MSG1_2WAY 0x7f
73 #define MAX_LEN_OF_EAP_HS 256
75 #define LEN_MASTER_KEY 32
79 #define LEN_EAP_MICK 16
80 #define LEN_EAP_KEY ((LEN_EAP_EK)+(LEN_EAP_MICK))
83 #define LEN_TKIP_EK 16
84 #define LEN_TKIP_RXMICK 8
85 #define LEN_TKIP_TXMICK 8
87 #define LEN_AES_KEY LEN_AES_EK
88 #define LEN_TKIP_KEY ((LEN_TKIP_EK)+(LEN_TKIP_RXMICK)+(LEN_TKIP_TXMICK))
89 #define TKIP_AP_TXMICK_OFFSET ((LEN_EAP_KEY)+(LEN_TKIP_EK))
90 #define TKIP_AP_RXMICK_OFFSET (TKIP_AP_TXMICK_OFFSET+LEN_TKIP_TXMICK)
91 #define TKIP_GTK_LENGTH ((LEN_TKIP_EK)+(LEN_TKIP_RXMICK)+(LEN_TKIP_TXMICK))
92 #define LEN_PTK ((LEN_EAP_KEY)+(LEN_TKIP_KEY))
94 // RSN IE Length definition
95 #define MAX_LEN_OF_RSNIE 90
96 #define MIN_LEN_OF_RSNIE 8
101 #define EAPOLLogoff 2
103 #define EAPOLASFAlert 4
104 #define EAPTtypeMax 5
106 #define EAPOL_MSG_INVALID 0
107 #define EAPOL_PAIR_MSG_1 1
108 #define EAPOL_PAIR_MSG_2 2
109 #define EAPOL_PAIR_MSG_3 3
110 #define EAPOL_PAIR_MSG_4 4
111 #define EAPOL_GROUP_MSG_1 5
112 #define EAPOL_GROUP_MSG_2 6
114 #define PAIRWISEKEY 1
117 // Retry timer counter initial value
118 #define PEER_MSG1_RETRY_TIMER_CTR 0
119 #define PEER_MSG3_RETRY_TIMER_CTR 10
120 #define GROUP_MSG1_RETRY_TIMER_CTR 20
123 #define EAPOL_START_DISABLE 0
124 #define EAPOL_START_PSK 1
125 #define EAPOL_START_1X 2
127 #define MIX_CIPHER_WPA_TKIP_ON(x) (((x) & 0x08) != 0)
128 #define MIX_CIPHER_WPA_AES_ON(x) (((x) & 0x04) != 0)
129 #define MIX_CIPHER_WPA2_TKIP_ON(x) (((x) & 0x02) != 0)
130 #define MIX_CIPHER_WPA2_AES_ON(x) (((x) & 0x01) != 0)
132 #define ROUND_UP(__x, __y) \
133 (((ULONG)((__x)+((__y)-1))) & ((ULONG)~((__y)-1)))
135 #define ADD_ONE_To_64BIT_VAR(_V) \
137 UCHAR cnt = LEN_KEY_DESC_REPLAY; \
144 }while (_V[cnt] == 0); \
147 #define IS_WPA_CAPABILITY(a) (((a) >= Ndis802_11AuthModeWPA) && ((a) <= Ndis802_11AuthModeWPA1PSKWPA2PSK))
149 // EAPOL Key Information definition within Key descriptor format
150 typedef struct PACKED _KEY_INFO
156 UCHAR EKD_DL
:1; // EKD for AP; DL for STA
163 } KEY_INFO
, *PKEY_INFO
;
165 // EAPOL Key descriptor format
166 typedef struct PACKED _KEY_DESCRIPTER
171 UCHAR ReplayCounter
[LEN_KEY_DESC_REPLAY
];
172 UCHAR KeyNonce
[LEN_KEY_DESC_NONCE
];
173 UCHAR KeyIv
[LEN_KEY_DESC_IV
];
174 UCHAR KeyRsc
[LEN_KEY_DESC_RSC
];
175 UCHAR KeyId
[LEN_KEY_DESC_ID
];
176 UCHAR KeyMic
[LEN_KEY_DESC_MIC
];
178 UCHAR KeyData
[MAX_LEN_OF_RSNIE
];
179 } KEY_DESCRIPTER
, *PKEY_DESCRIPTER
;
181 typedef struct PACKED _EAPOL_PACKET
186 KEY_DESCRIPTER KeyDesc
;
187 } EAPOL_PACKET
, *PEAPOL_PACKET
;
189 //802.11i D10 page 83
190 typedef struct PACKED _GTK_ENCAP
196 UCHAR GTK
[TKIP_GTK_LENGTH
];
197 } GTK_ENCAP
, *PGTK_ENCAP
;
199 typedef struct PACKED _KDE_ENCAP
206 } KDE_ENCAP
, *PKDE_ENCAP
;
209 typedef struct PACKED _RSNIE
{
220 typedef struct PACKED _RSNIE2
{
230 typedef struct PACKED _RSNIE_AUTH
{
235 } RSNIE_AUTH
,*PRSNIE_AUTH
;
237 typedef union PACKED _RSN_CAPABILITIES
{
240 USHORT No_Pairwise
:1;
241 USHORT PTKSA_R_Counter
:2;
242 USHORT GTKSA_R_Counter
:2;
246 } RSN_CAPABILITIES
, *PRSN_CAPABILITIES
;
248 typedef struct PACKED _EAP_HDR
{
254 UCHAR length
[2]; // including code and identifier, followed by length-2 octets of data
255 } EAP_HDR
, *PEAP_HDR
;
257 // For supplicant state machine states. 802.11i Draft 4.1, p. 97
259 typedef enum _WpaState
270 // The definition of the cipher combination
272 // bit3 bit2 bit1 bit0
273 // +------------+------------+
275 // +------+-----+------+-----+
276 // | TKIP | AES | TKIP | AES |
277 // | 0 | 1 | 1 | 0 | -> 0x06
278 // | 0 | 1 | 1 | 1 | -> 0x07
279 // | 1 | 0 | 0 | 1 | -> 0x09
280 // | 1 | 0 | 1 | 1 | -> 0x0B
281 // | 1 | 1 | 0 | 1 | -> 0x0D
282 // | 1 | 1 | 1 | 0 | -> 0x0E
283 // | 1 | 1 | 1 | 1 | -> 0x0F
284 // +------+-----+------+-----+
286 typedef enum _WpaMixPairCipher
288 MIX_CIPHER_NOTUSE
= 0x00,
289 WPA_NONE_WPA2_TKIPAES
= 0x03, // WPA2-TKIPAES
290 WPA_AES_WPA2_TKIP
= 0x06,
291 WPA_AES_WPA2_TKIPAES
= 0x07,
292 WPA_TKIP_WPA2_AES
= 0x09,
293 WPA_TKIP_WPA2_TKIPAES
= 0x0B,
294 WPA_TKIPAES_WPA2_NONE
= 0x0C, // WPA-TKIPAES
295 WPA_TKIPAES_WPA2_AES
= 0x0D,
296 WPA_TKIPAES_WPA2_TKIP
= 0x0E,
297 WPA_TKIPAES_WPA2_TKIPAES
= 0x0F,
298 } WPA_MIX_PAIR_CIPHER
;
300 typedef struct PACKED _RSN_IE_HEADER_STRUCT
{
303 USHORT Version
; // Little endian format
304 } RSN_IE_HEADER_STRUCT
, *PRSN_IE_HEADER_STRUCT
;
306 // Cipher suite selector types
307 typedef struct PACKED _CIPHER_SUITE_STRUCT
{
310 } CIPHER_SUITE_STRUCT
, *PCIPHER_SUITE_STRUCT
;
312 // Authentication and Key Management suite selector
313 typedef struct PACKED _AKM_SUITE_STRUCT
{
316 } AKM_SUITE_STRUCT
, *PAKM_SUITE_STRUCT
;
319 typedef struct PACKED _RSN_CAPABILITY
{
321 USHORT GTKSAReplayCnt
:2;
322 USHORT PTKSAReplayCnt
:2;
325 } RSN_CAPABILITY
, *PRSN_CAPABILITY
;