qcacmn: Add igtk def index and igtk key type in crypto

In wlan_crypto_save_key store igtk def index, bigtk def index and
igtk key type in crypto priv.

Change-Id: I96161a6dd376e7e80f88da00c891d15a5645cfa7
CRs-Fixed: 2661197
This commit is contained in:
Abhishek Singh
2020-04-09 21:45:26 +05:30
committed by nshrivas
orang tua 4c39342f6a
melakukan aadc772e84
3 mengubah file dengan 18 tambahan dan 11 penghapusan

Melihat File

@@ -440,7 +440,7 @@ struct wlan_crypto_comp_priv {
struct wlan_crypto_key *key[WLAN_CRYPTO_MAX_VLANKEYIX];
struct wlan_crypto_key *igtk_key[WLAN_CRYPTO_MAXIGTKKEYIDX];
struct wlan_crypto_key *bigtk_key[WLAN_CRYPTO_MAXBIGTKKEYIDX];
uint32_t igtk_key_type;
enum wlan_crypto_cipher_type igtk_key_type;
uint8_t def_tx_keyid;
uint8_t def_igtk_tx_keyid;
uint8_t def_bigtk_tx_keyid;

Melihat File

@@ -4247,14 +4247,21 @@ QDF_STATUS wlan_crypto_save_key(struct wlan_objmgr_vdev *vdev,
crypto_err("Invalid Key index %d", key_index);
return QDF_STATUS_E_FAILURE;
}
if (key_index < WLAN_CRYPTO_MAXKEYIDX)
if (key_index < WLAN_CRYPTO_MAXKEYIDX) {
crypto_priv->key[key_index] = crypto_key;
else if (is_igtk(key_index))
} else if (is_igtk(key_index)) {
crypto_priv->igtk_key[key_index - WLAN_CRYPTO_MAXKEYIDX] =
crypto_key;
else
crypto_priv->def_igtk_tx_keyid =
key_index - WLAN_CRYPTO_MAXKEYIDX;
crypto_priv->igtk_key_type = crypto_key->cipher_type;
} else {
crypto_priv->bigtk_key[key_index - WLAN_CRYPTO_MAXKEYIDX
- WLAN_CRYPTO_MAXIGTKKEYIDX] = crypto_key;
crypto_priv->def_bigtk_tx_keyid =
key_index - WLAN_CRYPTO_MAXKEYIDX
- WLAN_CRYPTO_MAXIGTKKEYIDX;
}
return QDF_STATUS_SUCCESS;
}