|
@@ -624,6 +624,7 @@ int hdd_ndi_delete(uint8_t vdev_id, char *iface_name, uint16_t transaction_id)
|
|
|
struct hdd_adapter *adapter;
|
|
|
struct hdd_station_ctx *sta_ctx;
|
|
|
struct hdd_context *hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
|
|
|
+ uint8_t sta_id;
|
|
|
|
|
|
if (!hdd_ctx) {
|
|
|
hdd_err("hdd_ctx is null");
|
|
@@ -643,8 +644,14 @@ int hdd_ndi_delete(uint8_t vdev_id, char *iface_name, uint16_t transaction_id)
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
+ sta_id = sta_ctx->broadcast_sta_id;
|
|
|
+ if (sta_id >= HDD_MAX_ADAPTERS) {
|
|
|
+ hdd_err("Error: Invalid sta id %u", sta_id);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
/* Since, the interface is being deleted, remove the broadcast id. */
|
|
|
- hdd_ctx->sta_to_adapter[sta_ctx->broadcast_sta_id] = 0;
|
|
|
+ hdd_ctx->sta_to_adapter[sta_id] = NULL;
|
|
|
sta_ctx->broadcast_sta_id = HDD_WLAN_INVALID_STA_ID;
|
|
|
|
|
|
os_if_nan_set_ndp_delete_transaction_id(adapter->vdev,
|
|
@@ -670,6 +677,7 @@ void hdd_ndi_drv_ndi_create_rsp_handler(uint8_t vdev_id,
|
|
|
struct csr_roam_info *roam_info;
|
|
|
struct bss_description tmp_bss_descp = {0};
|
|
|
struct qdf_mac_addr bc_mac_addr = QDF_MAC_ADDR_BCAST_INIT;
|
|
|
+ uint8_t sta_id;
|
|
|
|
|
|
hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
|
|
|
if (!hdd_ctx) {
|
|
@@ -689,6 +697,12 @@ void hdd_ndi_drv_ndi_create_rsp_handler(uint8_t vdev_id,
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
+ sta_id = ndi_rsp->sta_id;
|
|
|
+ if (sta_id >= HDD_MAX_ADAPTERS) {
|
|
|
+ hdd_err("Error: Invalid sta id %u", sta_id);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
roam_info = qdf_mem_malloc(sizeof(*roam_info));
|
|
|
if (!roam_info)
|
|
|
return;
|
|
@@ -706,12 +720,11 @@ void hdd_ndi_drv_ndi_create_rsp_handler(uint8_t vdev_id,
|
|
|
ndi_rsp->reason /* create_reason */);
|
|
|
}
|
|
|
|
|
|
- sta_ctx->broadcast_sta_id = ndi_rsp->sta_id;
|
|
|
- hdd_save_peer(sta_ctx, sta_ctx->broadcast_sta_id, &bc_mac_addr);
|
|
|
- hdd_roam_register_sta(adapter, roam_info,
|
|
|
- sta_ctx->broadcast_sta_id,
|
|
|
- &tmp_bss_descp);
|
|
|
- hdd_ctx->sta_to_adapter[sta_ctx->broadcast_sta_id] = adapter;
|
|
|
+ sta_ctx->broadcast_sta_id = sta_id;
|
|
|
+ hdd_save_peer(sta_ctx, sta_id, &bc_mac_addr);
|
|
|
+ hdd_roam_register_sta(adapter, roam_info, sta_id, &tmp_bss_descp);
|
|
|
+ hdd_ctx->sta_to_adapter[sta_id] = adapter;
|
|
|
+
|
|
|
qdf_mem_free(roam_info);
|
|
|
}
|
|
|
|
|
@@ -740,6 +753,7 @@ void hdd_ndi_drv_ndi_delete_rsp_handler(uint8_t vdev_id)
|
|
|
struct hdd_context *hdd_ctx;
|
|
|
struct hdd_adapter *adapter;
|
|
|
struct hdd_station_ctx *sta_ctx;
|
|
|
+ uint8_t sta_id;
|
|
|
|
|
|
hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
|
|
|
if (!hdd_ctx) {
|
|
@@ -759,10 +773,13 @@ void hdd_ndi_drv_ndi_delete_rsp_handler(uint8_t vdev_id)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- hdd_ctx->sta_to_adapter[sta_ctx->broadcast_sta_id] = NULL;
|
|
|
- hdd_roam_deregister_sta(adapter, sta_ctx->broadcast_sta_id);
|
|
|
- hdd_delete_peer(sta_ctx, sta_ctx->broadcast_sta_id);
|
|
|
- sta_ctx->broadcast_sta_id = HDD_WLAN_INVALID_STA_ID;
|
|
|
+ sta_id = sta_ctx->broadcast_sta_id;
|
|
|
+ if (sta_id < HDD_MAX_ADAPTERS) {
|
|
|
+ hdd_ctx->sta_to_adapter[sta_id] = NULL;
|
|
|
+ hdd_roam_deregister_sta(adapter, sta_id);
|
|
|
+ hdd_delete_peer(sta_ctx, sta_id);
|
|
|
+ sta_ctx->broadcast_sta_id = HDD_WLAN_INVALID_STA_ID;
|
|
|
+ }
|
|
|
|
|
|
wlan_hdd_netif_queue_control(adapter,
|
|
|
WLAN_STOP_ALL_NETIF_QUEUE_N_CARRIER,
|
|
@@ -812,6 +829,11 @@ int hdd_ndp_new_peer_handler(uint8_t vdev_id, uint16_t sta_id,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
+ if (sta_id >= HDD_MAX_ADAPTERS) {
|
|
|
+ hdd_err("Error: Invalid sta_id: %u", sta_id);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
/* save peer in ndp ctx */
|
|
|
if (false == hdd_save_peer(sta_ctx, sta_id, peer_mac_addr)) {
|
|
|
hdd_err("Ndp peer table full. cannot save new peer");
|
|
@@ -873,6 +895,11 @@ void hdd_ndp_peer_departed_handler(uint8_t vdev_id, uint16_t sta_id,
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
+ if (sta_id >= HDD_MAX_ADAPTERS) {
|
|
|
+ hdd_err("Error: Invalid sta_id: %u", sta_id);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
hdd_roam_deregister_sta(adapter, sta_id);
|
|
|
hdd_delete_peer(sta_ctx, sta_id);
|
|
|
hdd_ctx->sta_to_adapter[sta_id] = NULL;
|
|
@@ -886,5 +913,6 @@ void hdd_ndp_peer_departed_handler(uint8_t vdev_id, uint16_t sta_id,
|
|
|
wlan_hdd_netif_queue_control(adapter, WLAN_STOP_ALL_NETIF_QUEUE,
|
|
|
WLAN_CONTROL_PATH);
|
|
|
}
|
|
|
+
|
|
|
hdd_exit();
|
|
|
}
|