diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2008-04-15 00:16:09 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-04-16 15:59:58 -0400 |
commit | 7480513f5b436321f86f5a5210af5bf8edb19e9a (patch) | |
tree | 269824438ddc7fd7351d8f986f15565a8ea8ebbe /drivers/net/wireless/iwlwifi/iwl4965-base.c | |
parent | 80fb47a11eaf3d1d70c02f3dc7976eaac9b0eef2 (diff) |
iwlwifi: moves security functions to iwl-sta.c
This patch moves security related functions to iwl-sta.c.
Note that iwl4965_mac_update_tkip_key is still in iwl4965-base.c since it
is a mac80211 handler.
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl4965-base.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl4965-base.c | 120 |
1 files changed, 2 insertions, 118 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl4965-base.c b/drivers/net/wireless/iwlwifi/iwl4965-base.c index da01896bd406..bfefb05e18e9 100644 --- a/drivers/net/wireless/iwlwifi/iwl4965-base.c +++ b/drivers/net/wireless/iwlwifi/iwl4965-base.c | |||
@@ -1112,122 +1112,6 @@ int iwl4965_send_add_station(struct iwl_priv *priv, | |||
1112 | return rc; | 1112 | return rc; |
1113 | } | 1113 | } |
1114 | 1114 | ||
1115 | static int iwl4965_set_ccmp_dynamic_key_info(struct iwl_priv *priv, | ||
1116 | struct ieee80211_key_conf *keyconf, | ||
1117 | u8 sta_id) | ||
1118 | { | ||
1119 | unsigned long flags; | ||
1120 | __le16 key_flags = 0; | ||
1121 | |||
1122 | key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK); | ||
1123 | key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS); | ||
1124 | |||
1125 | if (sta_id == priv->hw_setting.bcast_sta_id) | ||
1126 | key_flags |= STA_KEY_MULTICAST_MSK; | ||
1127 | |||
1128 | keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; | ||
1129 | keyconf->hw_key_idx = keyconf->keyidx; | ||
1130 | |||
1131 | key_flags &= ~STA_KEY_FLG_INVALID; | ||
1132 | |||
1133 | spin_lock_irqsave(&priv->sta_lock, flags); | ||
1134 | priv->stations[sta_id].keyinfo.alg = keyconf->alg; | ||
1135 | priv->stations[sta_id].keyinfo.keylen = keyconf->keylen; | ||
1136 | |||
1137 | memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key, | ||
1138 | keyconf->keylen); | ||
1139 | |||
1140 | memcpy(priv->stations[sta_id].sta.key.key, keyconf->key, | ||
1141 | keyconf->keylen); | ||
1142 | |||
1143 | priv->stations[sta_id].sta.key.key_offset = | ||
1144 | iwl_get_free_ucode_key_index(priv); | ||
1145 | priv->stations[sta_id].sta.key.key_flags = key_flags; | ||
1146 | priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK; | ||
1147 | priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; | ||
1148 | |||
1149 | spin_unlock_irqrestore(&priv->sta_lock, flags); | ||
1150 | |||
1151 | IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n"); | ||
1152 | return iwl4965_send_add_station(priv, | ||
1153 | &priv->stations[sta_id].sta, CMD_ASYNC); | ||
1154 | } | ||
1155 | |||
1156 | static int iwl4965_set_tkip_dynamic_key_info(struct iwl_priv *priv, | ||
1157 | struct ieee80211_key_conf *keyconf, | ||
1158 | u8 sta_id) | ||
1159 | { | ||
1160 | unsigned long flags; | ||
1161 | int ret = 0; | ||
1162 | |||
1163 | keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; | ||
1164 | keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC; | ||
1165 | keyconf->hw_key_idx = keyconf->keyidx; | ||
1166 | |||
1167 | spin_lock_irqsave(&priv->sta_lock, flags); | ||
1168 | |||
1169 | priv->stations[sta_id].keyinfo.alg = keyconf->alg; | ||
1170 | priv->stations[sta_id].keyinfo.conf = keyconf; | ||
1171 | priv->stations[sta_id].keyinfo.keylen = 16; | ||
1172 | |||
1173 | /* This copy is acutally not needed: we get the key with each TX */ | ||
1174 | memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key, 16); | ||
1175 | |||
1176 | memcpy(priv->stations[sta_id].sta.key.key, keyconf->key, 16); | ||
1177 | |||
1178 | spin_unlock_irqrestore(&priv->sta_lock, flags); | ||
1179 | |||
1180 | return ret; | ||
1181 | } | ||
1182 | |||
1183 | static int iwl4965_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id) | ||
1184 | { | ||
1185 | unsigned long flags; | ||
1186 | |||
1187 | priv->key_mapping_key = 0; | ||
1188 | |||
1189 | spin_lock_irqsave(&priv->sta_lock, flags); | ||
1190 | if (!test_and_clear_bit(priv->stations[sta_id].sta.key.key_offset, | ||
1191 | &priv->ucode_key_table)) | ||
1192 | IWL_ERROR("index %d not used in uCode key table.\n", | ||
1193 | priv->stations[sta_id].sta.key.key_offset); | ||
1194 | memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl4965_hw_key)); | ||
1195 | memset(&priv->stations[sta_id].sta.key, 0, sizeof(struct iwl4965_keyinfo)); | ||
1196 | priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC; | ||
1197 | priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK; | ||
1198 | priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; | ||
1199 | spin_unlock_irqrestore(&priv->sta_lock, flags); | ||
1200 | |||
1201 | IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n"); | ||
1202 | iwl4965_send_add_station(priv, &priv->stations[sta_id].sta, 0); | ||
1203 | return 0; | ||
1204 | } | ||
1205 | |||
1206 | static int iwl4965_set_dynamic_key(struct iwl_priv *priv, | ||
1207 | struct ieee80211_key_conf *key, u8 sta_id) | ||
1208 | { | ||
1209 | int ret; | ||
1210 | |||
1211 | priv->key_mapping_key = 1; | ||
1212 | |||
1213 | switch (key->alg) { | ||
1214 | case ALG_CCMP: | ||
1215 | ret = iwl4965_set_ccmp_dynamic_key_info(priv, key, sta_id); | ||
1216 | break; | ||
1217 | case ALG_TKIP: | ||
1218 | ret = iwl4965_set_tkip_dynamic_key_info(priv, key, sta_id); | ||
1219 | break; | ||
1220 | case ALG_WEP: | ||
1221 | ret = iwl_set_wep_dynamic_key_info(priv, key, sta_id); | ||
1222 | break; | ||
1223 | default: | ||
1224 | IWL_ERROR("Unknown alg: %s alg = %d\n", __func__, key->alg); | ||
1225 | ret = -EINVAL; | ||
1226 | } | ||
1227 | |||
1228 | return ret; | ||
1229 | } | ||
1230 | |||
1231 | static void iwl4965_clear_free_frames(struct iwl_priv *priv) | 1115 | static void iwl4965_clear_free_frames(struct iwl_priv *priv) |
1232 | { | 1116 | { |
1233 | struct list_head *element; | 1117 | struct list_head *element; |
@@ -7043,7 +6927,7 @@ static int iwl4965_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, | |||
7043 | if (is_default_wep_key) | 6927 | if (is_default_wep_key) |
7044 | ret = iwl_set_default_wep_key(priv, key); | 6928 | ret = iwl_set_default_wep_key(priv, key); |
7045 | else | 6929 | else |
7046 | ret = iwl4965_set_dynamic_key(priv, key, sta_id); | 6930 | ret = iwl_set_dynamic_key(priv, key, sta_id); |
7047 | 6931 | ||
7048 | IWL_DEBUG_MAC80211("enable hwcrypto key\n"); | 6932 | IWL_DEBUG_MAC80211("enable hwcrypto key\n"); |
7049 | break; | 6933 | break; |
@@ -7051,7 +6935,7 @@ static int iwl4965_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, | |||
7051 | if (is_default_wep_key) | 6935 | if (is_default_wep_key) |
7052 | ret = iwl_remove_default_wep_key(priv, key); | 6936 | ret = iwl_remove_default_wep_key(priv, key); |
7053 | else | 6937 | else |
7054 | ret = iwl4965_clear_sta_key_info(priv, sta_id); | 6938 | ret = iwl_remove_dynamic_key(priv, sta_id); |
7055 | 6939 | ||
7056 | IWL_DEBUG_MAC80211("disable hwcrypto key\n"); | 6940 | IWL_DEBUG_MAC80211("disable hwcrypto key\n"); |
7057 | break; | 6941 | break; |