Эх сурвалжийг харах

qcacld-3.0: Initialize link vdev with the default vdev_id

Initialize the link vdev with the default invalid vdev_id,
or else driver is returning wrong adapter for the query
resulting in invalid uninitialized access.

Change-Id: I4d2659d8ff1bfe42f14608e632bcc92ffb5d6963
CRs-Fixed: 3512102
Arun Kumar Khandavalli 1 жил өмнө
parent
commit
dae05d01d0

+ 0 - 2
core/hdd/src/wlan_hdd_hostapd.c

@@ -4482,8 +4482,6 @@ struct hdd_adapter *hdd_wlan_create_ap_dev(struct hdd_context *hdd_ctx,
 	adapter->wdev.wiphy = hdd_ctx->wiphy;
 	adapter->wdev.netdev = dev;
 
-	init_completion(&adapter->deflink->vdev_destroy_event);
-
 	SET_NETDEV_DEV(dev, hdd_ctx->parent_dev);
 	spin_lock_init(&adapter->pause_map_lock);
 	adapter->start_time = adapter->last_time = qdf_system_ticks();

+ 14 - 5
core/hdd/src/wlan_hdd_main.c

@@ -6378,8 +6378,6 @@ hdd_alloc_station_adapter(struct hdd_context *hdd_ctx, tSirMacAddr mac_addr,
 		goto free_net_dev;
 	}
 
-	init_completion(&adapter->deflink->vdev_destroy_event);
-
 	hdd_update_dynamic_tsf_sync(adapter);
 	adapter->is_link_up_service_needed = false;
 	adapter->send_mode_change = true;
@@ -7390,6 +7388,8 @@ static void hdd_cleanup_adapter(struct hdd_context *hdd_ctx,
 				bool rtnl_held)
 {
 	struct net_device *dev = NULL;
+	struct wlan_hdd_link_info *link_info;
+	uint8_t link_idx;
 
 	if (adapter)
 		dev = adapter->dev;
@@ -7399,7 +7399,14 @@ static void hdd_cleanup_adapter(struct hdd_context *hdd_ctx,
 	}
 
 	hdd_apf_context_destroy(adapter);
-	qdf_spinlock_destroy(&adapter->deflink->vdev_lock);
+	hdd_adapter_for_each_link_entry(adapter, link_idx) {
+		link_info = hdd_adapter_get_link_info_ptr(adapter, link_idx);
+		if (!link_info)
+			continue;
+
+		qdf_spinlock_destroy(&link_info->vdev_lock);
+	}
+
 	hdd_sta_info_deinit(&adapter->sta_info_list);
 	hdd_sta_info_deinit(&adapter->cache_sta_info_list);
 
@@ -7946,10 +7953,13 @@ static void hdd_adapter_init_link_info(struct hdd_adapter *adapter)
 	uint8_t link_idx;
 	struct wlan_hdd_link_info *link_info;
 
-	/* Assign the adapter back pointer in all link_info structs */
+	/* Initialize each member in link info array to default values */
 	hdd_adapter_for_each_link_entry(adapter, link_idx) {
 		link_info = &adapter->link_info[link_idx];
 		link_info->adapter = adapter;
+		link_info->vdev_id = WLAN_UMAC_VDEV_ID_MAX;
+		qdf_spinlock_create(&link_info->vdev_lock);
+		init_completion(&link_info->vdev_destroy_event);
 	}
 }
 
@@ -8193,7 +8203,6 @@ struct hdd_adapter *hdd_open_adapter(struct hdd_context *hdd_ctx,
 		goto err_cleanup_adapter;
 
 	adapter->upgrade_udp_qos_threshold = QCA_WLAN_AC_BK;
-	qdf_spinlock_create(&adapter->deflink->vdev_lock);
 
 	hdd_init_completion(adapter);
 	INIT_WORK(&adapter->scan_block_work, wlan_hdd_cfg80211_scan_block_cb);