2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
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.
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.
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.
22 * Purpose: Implement functions for 802.11i Key management
29 * KeyvInitTable - Init Key management table
30 * KeybGetKey - Get Key from table
31 * KeybSetKey - Set Key to table
32 * KeybRemoveKey - Remove Key from table
33 * KeybGetTransmitKey - Get Transmit Key from table
43 /*--------------------- Static Definitions -------------------------*/
45 /*--------------------- Static Classes ----------------------------*/
47 /*--------------------- Static Variables --------------------------*/
48 static int msglevel
= MSG_LEVEL_INFO
;
49 /*--------------------- Static Functions --------------------------*/
51 /*--------------------- Export Variables --------------------------*/
53 /*--------------------- Static Definitions -------------------------*/
55 /*--------------------- Static Classes ----------------------------*/
57 /*--------------------- Static Variables --------------------------*/
59 /*--------------------- Static Functions --------------------------*/
61 s_vCheckKeyTableValid(PSKeyManagement pTable
, unsigned long dwIoBase
)
65 for (i
= 0; i
< MAX_KEY_TABLE
; i
++) {
66 if (pTable
->KeyTable
[i
].bInUse
&&
67 !pTable
->KeyTable
[i
].PairwiseKey
.bKeyValid
&&
68 !pTable
->KeyTable
[i
].GroupKey
[0].bKeyValid
&&
69 !pTable
->KeyTable
[i
].GroupKey
[1].bKeyValid
&&
70 !pTable
->KeyTable
[i
].GroupKey
[2].bKeyValid
&&
71 !pTable
->KeyTable
[i
].GroupKey
[3].bKeyValid
) {
72 pTable
->KeyTable
[i
].bInUse
= false;
73 pTable
->KeyTable
[i
].wKeyCtl
= 0;
74 pTable
->KeyTable
[i
].bSoftWEP
= false;
75 MACvDisableKeyEntry(dwIoBase
, i
);
80 /*--------------------- Export Functions --------------------------*/
83 * Description: Init Key management table
87 * pTable - Pointer to Key table
94 void KeyvInitTable(PSKeyManagement pTable
, unsigned long dwIoBase
)
99 for (i
= 0; i
< MAX_KEY_TABLE
; i
++) {
100 pTable
->KeyTable
[i
].bInUse
= false;
101 pTable
->KeyTable
[i
].PairwiseKey
.bKeyValid
= false;
102 pTable
->KeyTable
[i
].PairwiseKey
.pvKeyTable
= (void *)&pTable
->KeyTable
[i
];
103 for (jj
= 0; jj
< MAX_GROUP_KEY
; jj
++) {
104 pTable
->KeyTable
[i
].GroupKey
[jj
].bKeyValid
= false;
105 pTable
->KeyTable
[i
].GroupKey
[jj
].pvKeyTable
= (void *)&pTable
->KeyTable
[i
];
107 pTable
->KeyTable
[i
].wKeyCtl
= 0;
108 pTable
->KeyTable
[i
].dwGTKeyIndex
= 0;
109 pTable
->KeyTable
[i
].bSoftWEP
= false;
110 MACvDisableKeyEntry(dwIoBase
, i
);
115 * Description: Get Key from table
119 * pTable - Pointer to Key table
120 * pbyBSSID - BSSID of Key
121 * dwKeyIndex - Key Index (0xFFFFFFFF means pairwise key)
125 * Return Value: true if found otherwise false
129 PSKeyManagement pTable
,
130 unsigned char *pbyBSSID
,
131 unsigned long dwKeyIndex
,
137 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"KeybGetKey() \n");
140 for (i
= 0; i
< MAX_KEY_TABLE
; i
++) {
141 if (pTable
->KeyTable
[i
].bInUse
&&
142 ether_addr_equal(pTable
->KeyTable
[i
].abyBSSID
, pbyBSSID
)) {
143 if (dwKeyIndex
== 0xFFFFFFFF) {
144 if (pTable
->KeyTable
[i
].PairwiseKey
.bKeyValid
) {
145 *pKey
= &(pTable
->KeyTable
[i
].PairwiseKey
);
150 } else if (dwKeyIndex
< MAX_GROUP_KEY
) {
151 if (pTable
->KeyTable
[i
].GroupKey
[dwKeyIndex
].bKeyValid
) {
152 *pKey
= &(pTable
->KeyTable
[i
].GroupKey
[dwKeyIndex
]);
166 * Description: Set Key to table
170 * pTable - Pointer to Key table
171 * pbyBSSID - BSSID of Key
172 * dwKeyIndex - Key index (reference to NDIS DDK)
173 * uKeyLength - Key length
175 * pbyKey - Pointer to key
179 * Return Value: true if success otherwise false
183 PSKeyManagement pTable
,
184 unsigned char *pbyBSSID
,
185 unsigned long dwKeyIndex
,
186 unsigned long uKeyLength
,
188 unsigned char *pbyKey
,
189 unsigned char byKeyDecMode
,
190 unsigned long dwIoBase
,
191 unsigned char byLocalID
197 unsigned int uKeyIdx
;
199 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Enter KeybSetKey: %lX\n", dwKeyIndex
);
201 j
= (MAX_KEY_TABLE
-1);
202 for (i
= 0; i
< (MAX_KEY_TABLE
- 1); i
++) {
203 if (!pTable
->KeyTable
[i
].bInUse
&& (j
== (MAX_KEY_TABLE
-1))) {
207 if (pTable
->KeyTable
[i
].bInUse
&&
208 ether_addr_equal(pTable
->KeyTable
[i
].abyBSSID
, pbyBSSID
)) {
209 // found table already exist
210 if ((dwKeyIndex
& PAIRWISE_KEY
) != 0) {
212 pKey
= &(pTable
->KeyTable
[i
].PairwiseKey
);
213 pTable
->KeyTable
[i
].wKeyCtl
&= 0xFFF0; // clear pairwise key control filed
214 pTable
->KeyTable
[i
].wKeyCtl
|= byKeyDecMode
;
215 uKeyIdx
= 4; // use HW key entry 4 for pairwise key
218 if ((dwKeyIndex
& 0x000000FF) >= MAX_GROUP_KEY
)
220 pKey
= &(pTable
->KeyTable
[i
].GroupKey
[dwKeyIndex
& 0x000000FF]);
221 if ((dwKeyIndex
& TRANSMIT_KEY
) != 0) {
222 // Group transmit key
223 pTable
->KeyTable
[i
].dwGTKeyIndex
= dwKeyIndex
;
224 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Group transmit key(R)[%lX]: %d\n", pTable
->KeyTable
[i
].dwGTKeyIndex
, i
);
226 pTable
->KeyTable
[i
].wKeyCtl
&= 0xFF0F; // clear group key control filed
227 pTable
->KeyTable
[i
].wKeyCtl
|= (byKeyDecMode
<< 4);
228 pTable
->KeyTable
[i
].wKeyCtl
|= 0x0040; // use group key for group address
229 uKeyIdx
= (dwKeyIndex
& 0x000000FF);
231 pTable
->KeyTable
[i
].wKeyCtl
|= 0x8000; // enable on-fly
233 pKey
->bKeyValid
= true;
234 pKey
->uKeyLength
= uKeyLength
;
235 pKey
->dwKeyIndex
= dwKeyIndex
;
236 pKey
->byCipherSuite
= byKeyDecMode
;
237 memcpy(pKey
->abyKey
, pbyKey
, uKeyLength
);
238 if (byKeyDecMode
== KEY_CTL_WEP
) {
239 if (uKeyLength
== WLAN_WEP40_KEYLEN
)
240 pKey
->abyKey
[15] &= 0x7F;
241 if (uKeyLength
== WLAN_WEP104_KEYLEN
)
242 pKey
->abyKey
[15] |= 0x80;
244 MACvSetKeyEntry(dwIoBase
, pTable
->KeyTable
[i
].wKeyCtl
, i
, uKeyIdx
, pbyBSSID
, (u32
*)pKey
->abyKey
, byLocalID
);
246 if ((dwKeyIndex
& USE_KEYRSC
) == 0) {
248 memset(&(pKey
->KeyRSC
), 0, sizeof(QWORD
));
250 memcpy(&(pKey
->KeyRSC
), pKeyRSC
, sizeof(QWORD
));
252 pKey
->dwTSC47_16
= 0;
255 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"KeybSetKey(R): \n");
256 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->bKeyValid: %d\n ", pKey
->bKeyValid
);
257 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->abyKey: ");
258 for (ii
= 0; ii
< pKey
->uKeyLength
; ii
++)
259 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%02x ", pKey
->abyKey
[ii
]);
261 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"\n");
263 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->dwTSC47_16: %lx\n ", pKey
->dwTSC47_16
);
264 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->wTSC15_0: %x\n ", pKey
->wTSC15_0
);
265 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->dwKeyIndex: %lx\n ", pKey
->dwKeyIndex
);
270 if (j
< (MAX_KEY_TABLE
-1)) {
271 memcpy(pTable
->KeyTable
[j
].abyBSSID
, pbyBSSID
, ETH_ALEN
);
272 pTable
->KeyTable
[j
].bInUse
= true;
273 if ((dwKeyIndex
& PAIRWISE_KEY
) != 0) {
275 pKey
= &(pTable
->KeyTable
[j
].PairwiseKey
);
276 pTable
->KeyTable
[j
].wKeyCtl
&= 0xFFF0; // clear pairwise key control filed
277 pTable
->KeyTable
[j
].wKeyCtl
|= byKeyDecMode
;
278 uKeyIdx
= 4; // use HW key entry 4 for pairwise key
281 if ((dwKeyIndex
& 0x000000FF) >= MAX_GROUP_KEY
)
283 pKey
= &(pTable
->KeyTable
[j
].GroupKey
[dwKeyIndex
& 0x000000FF]);
284 if ((dwKeyIndex
& TRANSMIT_KEY
) != 0) {
285 // Group transmit key
286 pTable
->KeyTable
[j
].dwGTKeyIndex
= dwKeyIndex
;
287 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Group transmit key(N)[%lX]: %d\n", pTable
->KeyTable
[j
].dwGTKeyIndex
, j
);
289 pTable
->KeyTable
[j
].wKeyCtl
&= 0xFF0F; // clear group key control filed
290 pTable
->KeyTable
[j
].wKeyCtl
|= (byKeyDecMode
<< 4);
291 pTable
->KeyTable
[j
].wKeyCtl
|= 0x0040; // use group key for group address
292 uKeyIdx
= (dwKeyIndex
& 0x000000FF);
294 pTable
->KeyTable
[j
].wKeyCtl
|= 0x8000; // enable on-fly
296 pKey
->bKeyValid
= true;
297 pKey
->uKeyLength
= uKeyLength
;
298 pKey
->dwKeyIndex
= dwKeyIndex
;
299 pKey
->byCipherSuite
= byKeyDecMode
;
300 memcpy(pKey
->abyKey
, pbyKey
, uKeyLength
);
301 if (byKeyDecMode
== KEY_CTL_WEP
) {
302 if (uKeyLength
== WLAN_WEP40_KEYLEN
)
303 pKey
->abyKey
[15] &= 0x7F;
304 if (uKeyLength
== WLAN_WEP104_KEYLEN
)
305 pKey
->abyKey
[15] |= 0x80;
307 MACvSetKeyEntry(dwIoBase
, pTable
->KeyTable
[j
].wKeyCtl
, j
, uKeyIdx
, pbyBSSID
, (u32
*)pKey
->abyKey
, byLocalID
);
309 if ((dwKeyIndex
& USE_KEYRSC
) == 0) {
311 memset(&(pKey
->KeyRSC
), 0, sizeof(QWORD
));
313 memcpy(&(pKey
->KeyRSC
), pKeyRSC
, sizeof(QWORD
));
315 pKey
->dwTSC47_16
= 0;
318 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"KeybSetKey(N): \n");
319 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->bKeyValid: %d\n ", pKey
->bKeyValid
);
320 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->uKeyLength: %d\n ", (int)pKey
->uKeyLength
);
321 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->abyKey: ");
322 for (ii
= 0; ii
< pKey
->uKeyLength
; ii
++)
323 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%02x ", pKey
->abyKey
[ii
]);
325 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"\n");
327 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->dwTSC47_16: %lx\n ", pKey
->dwTSC47_16
);
328 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->wTSC15_0: %x\n ", pKey
->wTSC15_0
);
329 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->dwKeyIndex: %lx\n ", pKey
->dwKeyIndex
);
337 * Description: Remove Key from table
341 * pTable - Pointer to Key table
342 * pbyBSSID - BSSID of Key
343 * dwKeyIndex - Key Index (reference to NDIS DDK)
347 * Return Value: true if success otherwise false
351 PSKeyManagement pTable
,
352 unsigned char *pbyBSSID
,
353 unsigned long dwKeyIndex
,
354 unsigned long dwIoBase
359 if (is_broadcast_ether_addr(pbyBSSID
)) {
361 if ((dwKeyIndex
& PAIRWISE_KEY
) != 0) {
362 for (i
= 0; i
< MAX_KEY_TABLE
; i
++)
363 pTable
->KeyTable
[i
].PairwiseKey
.bKeyValid
= false;
365 s_vCheckKeyTableValid(pTable
, dwIoBase
);
367 } else if ((dwKeyIndex
& 0x000000FF) < MAX_GROUP_KEY
) {
368 for (i
= 0; i
< MAX_KEY_TABLE
; i
++) {
369 pTable
->KeyTable
[i
].GroupKey
[dwKeyIndex
& 0x000000FF].bKeyValid
= false;
370 if ((dwKeyIndex
& 0x7FFFFFFF) == (pTable
->KeyTable
[i
].dwGTKeyIndex
& 0x7FFFFFFF)) {
371 // remove Group transmit key
372 pTable
->KeyTable
[i
].dwGTKeyIndex
= 0;
375 s_vCheckKeyTableValid(pTable
, dwIoBase
);
382 for (i
= 0; i
< MAX_KEY_TABLE
; i
++) {
383 if (pTable
->KeyTable
[i
].bInUse
&&
384 ether_addr_equal(pTable
->KeyTable
[i
].abyBSSID
, pbyBSSID
)) {
385 if ((dwKeyIndex
& PAIRWISE_KEY
) != 0) {
386 pTable
->KeyTable
[i
].PairwiseKey
.bKeyValid
= false;
387 s_vCheckKeyTableValid(pTable
, dwIoBase
);
389 } else if ((dwKeyIndex
& 0x000000FF) < MAX_GROUP_KEY
) {
390 pTable
->KeyTable
[i
].GroupKey
[dwKeyIndex
& 0x000000FF].bKeyValid
= false;
391 if ((dwKeyIndex
& 0x7FFFFFFF) == (pTable
->KeyTable
[i
].dwGTKeyIndex
& 0x7FFFFFFF)) {
392 // remove Group transmit key
393 pTable
->KeyTable
[i
].dwGTKeyIndex
= 0;
395 s_vCheckKeyTableValid(pTable
, dwIoBase
);
406 * Description: Remove Key from table
410 * pTable - Pointer to Key table
411 * pbyBSSID - BSSID of Key
415 * Return Value: true if success otherwise false
418 bool KeybRemoveAllKey(
419 PSKeyManagement pTable
,
420 unsigned char *pbyBSSID
,
421 unsigned long dwIoBase
426 for (i
= 0; i
< MAX_KEY_TABLE
; i
++) {
427 if (pTable
->KeyTable
[i
].bInUse
&&
428 ether_addr_equal(pTable
->KeyTable
[i
].abyBSSID
, pbyBSSID
)) {
429 pTable
->KeyTable
[i
].PairwiseKey
.bKeyValid
= false;
430 for (u
= 0; u
< MAX_GROUP_KEY
; u
++)
431 pTable
->KeyTable
[i
].GroupKey
[u
].bKeyValid
= false;
433 pTable
->KeyTable
[i
].dwGTKeyIndex
= 0;
434 s_vCheckKeyTableValid(pTable
, dwIoBase
);
442 * Description: Remove WEP Key from table
446 * pTable - Pointer to Key table
450 * Return Value: true if success otherwise false
453 void KeyvRemoveWEPKey(
454 PSKeyManagement pTable
,
455 unsigned long dwKeyIndex
,
456 unsigned long dwIoBase
459 if ((dwKeyIndex
& 0x000000FF) < MAX_GROUP_KEY
) {
460 if (pTable
->KeyTable
[MAX_KEY_TABLE
-1].bInUse
) {
461 if (pTable
->KeyTable
[MAX_KEY_TABLE
-1].GroupKey
[dwKeyIndex
& 0x000000FF].byCipherSuite
== KEY_CTL_WEP
) {
462 pTable
->KeyTable
[MAX_KEY_TABLE
-1].GroupKey
[dwKeyIndex
& 0x000000FF].bKeyValid
= false;
463 if ((dwKeyIndex
& 0x7FFFFFFF) == (pTable
->KeyTable
[MAX_KEY_TABLE
-1].dwGTKeyIndex
& 0x7FFFFFFF)) {
464 // remove Group transmit key
465 pTable
->KeyTable
[MAX_KEY_TABLE
-1].dwGTKeyIndex
= 0;
469 s_vCheckKeyTableValid(pTable
, dwIoBase
);
474 void KeyvRemoveAllWEPKey(
475 PSKeyManagement pTable
,
476 unsigned long dwIoBase
481 for (i
= 0; i
< MAX_GROUP_KEY
; i
++)
482 KeyvRemoveWEPKey(pTable
, i
, dwIoBase
);
486 * Description: Get Transmit Key from table
490 * pTable - Pointer to Key table
491 * pbyBSSID - BSSID of Key
495 * Return Value: true if found otherwise false
498 bool KeybGetTransmitKey(
499 PSKeyManagement pTable
,
500 unsigned char *pbyBSSID
,
501 unsigned long dwKeyType
,
508 for (i
= 0; i
< MAX_KEY_TABLE
; i
++) {
509 if (pTable
->KeyTable
[i
].bInUse
&&
510 ether_addr_equal(pTable
->KeyTable
[i
].abyBSSID
, pbyBSSID
)) {
511 if (dwKeyType
== PAIRWISE_KEY
) {
512 if (pTable
->KeyTable
[i
].PairwiseKey
.bKeyValid
) {
513 *pKey
= &(pTable
->KeyTable
[i
].PairwiseKey
);
515 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"KeybGetTransmitKey:");
516 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"PAIRWISE_KEY: KeyTable.abyBSSID: ");
517 for (ii
= 0; ii
< 6; ii
++)
518 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%x ", pTable
->KeyTable
[i
].abyBSSID
[ii
]);
520 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"\n");
524 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"PairwiseKey.bKeyValid == false\n");
527 } // End of Type == PAIRWISE
529 if (pTable
->KeyTable
[i
].dwGTKeyIndex
== 0) {
530 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"ERROR: dwGTKeyIndex == 0 !!!\n");
533 if (pTable
->KeyTable
[i
].GroupKey
[(pTable
->KeyTable
[i
].dwGTKeyIndex
&0x000000FF)].bKeyValid
) {
534 *pKey
= &(pTable
->KeyTable
[i
].GroupKey
[(pTable
->KeyTable
[i
].dwGTKeyIndex
&0x000000FF)]);
536 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"KeybGetTransmitKey:");
537 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"GROUP_KEY: KeyTable.abyBSSID\n");
538 for (ii
= 0; ii
< 6; ii
++)
539 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%x ", pTable
->KeyTable
[i
].abyBSSID
[ii
]);
541 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"\n");
542 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"dwGTKeyIndex: %lX\n", pTable
->KeyTable
[i
].dwGTKeyIndex
);
546 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"GroupKey.bKeyValid == false\n");
549 } // End of Type = GROUP
552 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"ERROR: NO Match BSSID !!! ");
553 for (ii
= 0; ii
< 6; ii
++)
554 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%02x ", *(pbyBSSID
+ii
));
556 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"\n");
561 * Description: Check Pairewise Key
565 * pTable - Pointer to Key table
569 * Return Value: true if found otherwise false
572 bool KeybCheckPairewiseKey(
573 PSKeyManagement pTable
,
580 for (i
= 0; i
< MAX_KEY_TABLE
; i
++) {
581 if (pTable
->KeyTable
[i
].bInUse
&&
582 pTable
->KeyTable
[i
].PairwiseKey
.bKeyValid
) {
583 *pKey
= &(pTable
->KeyTable
[i
].PairwiseKey
);
591 * Description: Set Key to table
595 * pTable - Pointer to Key table
596 * dwKeyIndex - Key index (reference to NDIS DDK)
597 * uKeyLength - Key length
599 * pbyKey - Pointer to key
603 * Return Value: true if success otherwise false
606 bool KeybSetDefaultKey(
607 PSKeyManagement pTable
,
608 unsigned long dwKeyIndex
,
609 unsigned long uKeyLength
,
611 unsigned char *pbyKey
,
612 unsigned char byKeyDecMode
,
613 unsigned long dwIoBase
,
614 unsigned char byLocalID
619 unsigned int uKeyIdx
;
621 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Enter KeybSetDefaultKey: %1x, %d \n", (int)dwKeyIndex
, (int)uKeyLength
);
623 if ((dwKeyIndex
& PAIRWISE_KEY
) != 0) // Pairwise key
625 else if ((dwKeyIndex
& 0x000000FF) >= MAX_GROUP_KEY
)
628 if (uKeyLength
> MAX_KEY_LEN
)
631 pTable
->KeyTable
[MAX_KEY_TABLE
- 1].bInUse
= true;
632 for (ii
= 0; ii
< ETH_ALEN
; ii
++)
633 pTable
->KeyTable
[MAX_KEY_TABLE
- 1].abyBSSID
[ii
] = 0xFF;
636 pKey
= &(pTable
->KeyTable
[MAX_KEY_TABLE
- 1].GroupKey
[dwKeyIndex
& 0x000000FF]);
637 if ((dwKeyIndex
& TRANSMIT_KEY
) != 0) {
638 // Group transmit key
639 pTable
->KeyTable
[MAX_KEY_TABLE
-1].dwGTKeyIndex
= dwKeyIndex
;
640 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Group transmit key(R)[%lX]: %d\n", pTable
->KeyTable
[MAX_KEY_TABLE
-1].dwGTKeyIndex
, MAX_KEY_TABLE
-1);
643 pTable
->KeyTable
[MAX_KEY_TABLE
-1].wKeyCtl
&= 0x7F00; // clear all key control filed
644 pTable
->KeyTable
[MAX_KEY_TABLE
-1].wKeyCtl
|= (byKeyDecMode
<< 4);
645 pTable
->KeyTable
[MAX_KEY_TABLE
-1].wKeyCtl
|= (byKeyDecMode
);
646 pTable
->KeyTable
[MAX_KEY_TABLE
-1].wKeyCtl
|= 0x0044; // use group key for all address
647 uKeyIdx
= (dwKeyIndex
& 0x000000FF);
649 if ((uKeyLength
== WLAN_WEP232_KEYLEN
) &&
650 (byKeyDecMode
== KEY_CTL_WEP
)) {
651 pTable
->KeyTable
[MAX_KEY_TABLE
-1].wKeyCtl
|= 0x4000; // disable on-fly disable address match
652 pTable
->KeyTable
[MAX_KEY_TABLE
-1].bSoftWEP
= true;
654 if (!pTable
->KeyTable
[MAX_KEY_TABLE
-1].bSoftWEP
)
655 pTable
->KeyTable
[MAX_KEY_TABLE
-1].wKeyCtl
|= 0xC000; // enable on-fly disable address match
658 pKey
->bKeyValid
= true;
659 pKey
->uKeyLength
= uKeyLength
;
660 pKey
->dwKeyIndex
= dwKeyIndex
;
661 pKey
->byCipherSuite
= byKeyDecMode
;
662 memcpy(pKey
->abyKey
, pbyKey
, uKeyLength
);
663 if (byKeyDecMode
== KEY_CTL_WEP
) {
664 if (uKeyLength
== WLAN_WEP40_KEYLEN
)
665 pKey
->abyKey
[15] &= 0x7F;
666 if (uKeyLength
== WLAN_WEP104_KEYLEN
)
667 pKey
->abyKey
[15] |= 0x80;
669 MACvSetKeyEntry(dwIoBase
, pTable
->KeyTable
[MAX_KEY_TABLE
-1].wKeyCtl
, MAX_KEY_TABLE
-1, uKeyIdx
, pTable
->KeyTable
[MAX_KEY_TABLE
-1].abyBSSID
, (u32
*)pKey
->abyKey
, byLocalID
);
671 if ((dwKeyIndex
& USE_KEYRSC
) == 0) {
673 memset(&(pKey
->KeyRSC
), 0, sizeof(QWORD
));
675 memcpy(&(pKey
->KeyRSC
), pKeyRSC
, sizeof(QWORD
));
677 pKey
->dwTSC47_16
= 0;
680 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"KeybSetKey(R): \n");
681 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->bKeyValid: %d\n", pKey
->bKeyValid
);
682 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->uKeyLength: %d\n", (int)pKey
->uKeyLength
);
683 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->abyKey: \n");
684 for (ii
= 0; ii
< pKey
->uKeyLength
; ii
++)
685 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%x", pKey
->abyKey
[ii
]);
687 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"\n");
689 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->dwTSC47_16: %lx\n", pKey
->dwTSC47_16
);
690 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->wTSC15_0: %x\n", pKey
->wTSC15_0
);
691 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->dwKeyIndex: %lx\n", pKey
->dwKeyIndex
);
697 * Description: Set Key to table
701 * pTable - Pointer to Key table
702 * dwKeyIndex - Key index (reference to NDIS DDK)
703 * uKeyLength - Key length
705 * pbyKey - Pointer to key
709 * Return Value: true if success otherwise false
712 bool KeybSetAllGroupKey(
713 PSKeyManagement pTable
,
714 unsigned long dwKeyIndex
,
715 unsigned long uKeyLength
,
717 unsigned char *pbyKey
,
718 unsigned char byKeyDecMode
,
719 unsigned long dwIoBase
,
720 unsigned char byLocalID
726 unsigned int uKeyIdx
;
728 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Enter KeybSetAllGroupKey: %lX\n", dwKeyIndex
);
730 if ((dwKeyIndex
& PAIRWISE_KEY
) != 0) // Pairwise key
732 else if ((dwKeyIndex
& 0x000000FF) >= MAX_GROUP_KEY
)
735 for (i
= 0; i
< MAX_KEY_TABLE
- 1; i
++) {
736 if (pTable
->KeyTable
[i
].bInUse
) {
737 // found table already exist
739 pKey
= &(pTable
->KeyTable
[i
].GroupKey
[dwKeyIndex
& 0x000000FF]);
740 if ((dwKeyIndex
& TRANSMIT_KEY
) != 0) {
741 // Group transmit key
742 pTable
->KeyTable
[i
].dwGTKeyIndex
= dwKeyIndex
;
743 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Group transmit key(R)[%lX]: %d\n", pTable
->KeyTable
[i
].dwGTKeyIndex
, i
);
746 pTable
->KeyTable
[i
].wKeyCtl
&= 0xFF0F; // clear group key control filed
747 pTable
->KeyTable
[i
].wKeyCtl
|= (byKeyDecMode
<< 4);
748 pTable
->KeyTable
[i
].wKeyCtl
|= 0x0040; // use group key for group address
749 uKeyIdx
= (dwKeyIndex
& 0x000000FF);
751 pTable
->KeyTable
[i
].wKeyCtl
|= 0x8000; // enable on-fly
753 pKey
->bKeyValid
= true;
754 pKey
->uKeyLength
= uKeyLength
;
755 pKey
->dwKeyIndex
= dwKeyIndex
;
756 pKey
->byCipherSuite
= byKeyDecMode
;
757 memcpy(pKey
->abyKey
, pbyKey
, uKeyLength
);
758 if (byKeyDecMode
== KEY_CTL_WEP
) {
759 if (uKeyLength
== WLAN_WEP40_KEYLEN
)
760 pKey
->abyKey
[15] &= 0x7F;
761 if (uKeyLength
== WLAN_WEP104_KEYLEN
)
762 pKey
->abyKey
[15] |= 0x80;
764 MACvSetKeyEntry(dwIoBase
, pTable
->KeyTable
[i
].wKeyCtl
, i
, uKeyIdx
, pTable
->KeyTable
[i
].abyBSSID
, (u32
*)pKey
->abyKey
, byLocalID
);
766 if ((dwKeyIndex
& USE_KEYRSC
) == 0) {
768 memset(&(pKey
->KeyRSC
), 0, sizeof(QWORD
));
770 memcpy(&(pKey
->KeyRSC
), pKeyRSC
, sizeof(QWORD
));
772 pKey
->dwTSC47_16
= 0;
775 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"KeybSetKey(R): \n");
776 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->bKeyValid: %d\n ", pKey
->bKeyValid
);
777 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->uKeyLength: %d\n ", (int)pKey
->uKeyLength
);
778 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pKey->abyKey: ");
779 for (ii
= 0; ii
< pKey
->uKeyLength
; ii
++)
780 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%02x ", pKey
->abyKey
[ii
]);
782 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"\n");
784 } // (pTable->KeyTable[i].bInUse == true)