Browse Source

qcacld-3.0: Fix owe assoc link key set issue

When roamed to owe mlo AP, add unicast key for assoc link failed for get
bss peer mac logic is wrong, so assoc peer isn't authenticated, DHCP Tx
fails and deauth happens soon.

To fix it, when add unicast key, allow to get assoc peer mac from partner
info of reassoc rsp.

Change-Id: I806b2a9d785aec7839e4d7444e8bd09bf2ff233e
CRs-Fixed: 3500436
Jianmin Zhu 1 year ago
parent
commit
3c91c977f8
1 changed files with 4 additions and 0 deletions
  1. 4 0
      core/hdd/src/wlan_hdd_cfg80211.c

+ 4 - 0
core/hdd/src/wlan_hdd_cfg80211.c

@@ -21863,6 +21863,8 @@ static int wlan_hdd_add_key_all_mlo_vdev(mac_handle_t mac_handle,
 			if (QDF_IS_STATUS_ERROR(status))
 				peer = wlan_objmgr_vdev_try_get_bsspeer(link_vdev,
 									WLAN_OSIF_ID);
+			else
+				goto add_key;
 			break;
 		}
 
@@ -21886,6 +21888,8 @@ static int wlan_hdd_add_key_all_mlo_vdev(mac_handle_t mac_handle,
 			mlo_release_vdev_ref(link_vdev);
 			continue;
 		}
+
+add_key:
 		errno = wlan_hdd_add_key_vdev(mac_handle, link_vdev, key_index,
 					      pairwise, peer_mac.bytes,
 					      params, link_id, link_adapter);