Sfoglia il codice sorgente

qcacld-3.0: Set wdev for vendor event OEM_DATA_INDEX

Currently, host sends wdev as NULL to cfg80211_vendor_event_alloc,
this allows userspace to process nl_cmd for
QCA_NL80211_VENDOR_SUBCMD_OEM_DATA_INDEX event with 1st interface
which is P2P in supplicant instead of WLAN interface.

Set wdev with the proper value for STA interface to avoid processing
nl_cmd with P2P interface by userspace.

Change-Id: I3376640226356bddc57d9c13e6c438498ee58326
CRs-Fixed: 3262753
Vinod Kumar Myadam 2 anni fa
parent
commit
35968ab412
1 ha cambiato i file con 12 aggiunte e 2 eliminazioni
  1. 12 2
      core/hdd/src/wlan_hdd_oemdata.c

+ 12 - 2
core/hdd/src/wlan_hdd_oemdata.c

@@ -1190,6 +1190,8 @@ void hdd_oem_event_async_cb(const struct oem_data *oem_event_data)
 	uint32_t len;
 	int ret;
 	struct hdd_context *hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
+	struct hdd_adapter *adapter;
+	struct wireless_dev *wdev = NULL;
 
 	hdd_enter();
 
@@ -1201,9 +1203,13 @@ void hdd_oem_event_async_cb(const struct oem_data *oem_event_data)
 		return hdd_create_wifi_feature_interface(hdd_ctx);
 	}
 
+	adapter = hdd_get_adapter_by_vdev(hdd_ctx, oem_event_data->vdev_id);
+	if (adapter)
+		wdev = &(adapter->wdev);
+
 	len = nla_total_size(oem_event_data->data_len) + NLMSG_HDRLEN;
 	vendor_event = cfg80211_vendor_event_alloc(
-				hdd_ctx->wiphy, NULL, len,
+				hdd_ctx->wiphy, wdev, len,
 				QCA_NL80211_VENDOR_SUBCMD_OEM_DATA_INDEX,
 				GFP_KERNEL);
 
@@ -1234,6 +1240,8 @@ void hdd_oem_event_handler_cb(const struct oem_data *oem_event_data,
 	struct hdd_context *hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
 	struct hdd_adapter *hdd_adapter = hdd_get_adapter_by_vdev(hdd_ctx,
 								  vdev_id);
+	struct wireless_dev *wdev = NULL;
+
 	hdd_enter();
 
 	ret = wlan_hdd_validate_context(hdd_ctx);
@@ -1269,10 +1277,12 @@ void hdd_oem_event_handler_cb(const struct oem_data *oem_event_data,
 		osif_request_complete(request);
 		osif_request_put(request);
 	} else {
+		wdev = &(hdd_adapter->wdev);
+
 		len = nla_total_size(oem_event_data->data_len) + NLMSG_HDRLEN;
 		vendor_event =
 			cfg80211_vendor_event_alloc(
-				hdd_ctx->wiphy, NULL, len,
+				hdd_ctx->wiphy, wdev, len,
 				QCA_NL80211_VENDOR_SUBCMD_OEM_DATA_INDEX,
 				GFP_KERNEL);