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.
17 * Purpose: Implement functions for 802.11i Key management
29 static int vnt_set_keymode(struct ieee80211_hw
*hw
, u8
*mac_addr
,
30 struct ieee80211_key_conf
*key
, u32 key_type
,
31 u32 mode
, bool onfly_latch
)
33 struct vnt_private
*priv
= hw
->priv
;
34 u8 broadcast
[6] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
38 u8 key_inx
= key
->keyidx
;
44 bssid
= &broadcast
[0];
46 if (key_type
!= VNT_KEY_DEFAULTKEY
) {
47 for (i
= 0; i
< (MAX_KEY_TABLE
- 1); i
++) {
48 if (!test_bit(i
, &priv
->key_entry_inuse
)) {
49 set_bit(i
, &priv
->key_entry_inuse
);
52 entry
= key
->hw_key_idx
;
59 case VNT_KEY_DEFAULTKEY
:
60 /* default key last entry */
61 entry
= MAX_KEY_TABLE
- 1;
62 key
->hw_key_idx
= entry
;
64 case VNT_KEY_ALLGROUP
:
65 key_mode
|= VNT_KEY_ALLGROUP
;
67 key_mode
|= VNT_KEY_ONFLY_ALL
;
69 case VNT_KEY_GROUP_ADDRESS
:
73 key_mode
|= (mode
<< 4);
74 key_mode
|= VNT_KEY_GROUP
;
76 case VNT_KEY_PAIRWISE
:
85 key_mode
|= VNT_KEY_ONFLY
;
87 if (mode
== KEY_CTL_WEP
) {
88 if (key
->keylen
== WLAN_KEY_LEN_WEP40
)
90 if (key
->keylen
== WLAN_KEY_LEN_WEP104
)
94 MACvSetKeyEntry(priv
, key_mode
, entry
, key_inx
,
95 bssid
, (u32
*)key
->key
, priv
->byLocalID
);
100 int vnt_set_keys(struct ieee80211_hw
*hw
, struct ieee80211_sta
*sta
,
101 struct ieee80211_vif
*vif
, struct ieee80211_key_conf
*key
)
103 struct ieee80211_bss_conf
*conf
= &vif
->bss_conf
;
104 struct vnt_private
*priv
= hw
->priv
;
111 mac_addr
= &sta
->addr
[0];
113 switch (key
->cipher
) {
115 for (u
= 0 ; u
< MAX_KEY_TABLE
; u
++)
116 MACvDisableKeyEntry(priv
, u
);
119 case WLAN_CIPHER_SUITE_WEP40
:
120 case WLAN_CIPHER_SUITE_WEP104
:
121 for (u
= 0; u
< MAX_KEY_TABLE
; u
++)
122 MACvDisableKeyEntry(priv
, u
);
124 vnt_set_keymode(hw
, mac_addr
,
125 key
, VNT_KEY_DEFAULTKEY
, KEY_CTL_WEP
, true);
127 key
->flags
|= IEEE80211_KEY_FLAG_GENERATE_IV
;
130 case WLAN_CIPHER_SUITE_TKIP
:
131 key
->flags
|= IEEE80211_KEY_FLAG_GENERATE_MMIC
;
132 key
->flags
|= IEEE80211_KEY_FLAG_GENERATE_IV
;
134 key_dec_mode
= KEY_CTL_TKIP
;
137 case WLAN_CIPHER_SUITE_CCMP
:
138 key_dec_mode
= KEY_CTL_CCMP
;
140 key
->flags
|= IEEE80211_KEY_FLAG_GENERATE_IV
;
143 if (key
->flags
& IEEE80211_KEY_FLAG_PAIRWISE
) {
144 vnt_set_keymode(hw
, mac_addr
,
145 key
, VNT_KEY_PAIRWISE
, key_dec_mode
, true);
147 vnt_set_keymode(hw
, mac_addr
,
148 key
, VNT_KEY_DEFAULTKEY
, key_dec_mode
, true);
150 vnt_set_keymode(hw
, (u8
*)conf
->bssid
,
151 key
, VNT_KEY_GROUP_ADDRESS
, key_dec_mode
, true);