|
@@ -1,6 +1,6 @@
|
|
|
/*
|
|
|
* Copyright (c) 2011-2021 The Linux Foundation. All rights reserved.
|
|
|
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
+ * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
*
|
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
@@ -41,7 +41,8 @@
|
|
|
#include "lim_prop_exts_utils.h"
|
|
|
#include "lim_ser_des_utils.h"
|
|
|
#include "lim_send_messages.h"
|
|
|
-
|
|
|
+#include "lim_mlo.h"
|
|
|
+#include "wlan_mlo_mgr_sta.h"
|
|
|
#include "parser_api.h"
|
|
|
|
|
|
/**
|
|
@@ -84,6 +85,121 @@ lim_validate_ie_information_in_probe_rsp_frame(struct mac_context *mac_ctx,
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * lim_process_updated_ies_in_probe_rsp() - process IEs of probe rsp frame
|
|
|
+ * @mac_ctx: pointer to global mac context
|
|
|
+ * @session_entry: pointer to pe session
|
|
|
+ * @probe_rsp: pointer to structure tSirProbeRespBeacon
|
|
|
+ *
|
|
|
+ * Return: void
|
|
|
+ */
|
|
|
+static void
|
|
|
+lim_process_updated_ies_in_probe_rsp(struct mac_context *mac_ctx,
|
|
|
+ struct pe_session *session_entry,
|
|
|
+ tSirProbeRespBeacon *probe_rsp)
|
|
|
+{
|
|
|
+ bool qos_enabled;
|
|
|
+ bool wme_enabled;
|
|
|
+ tpDphHashNode sta_ds;
|
|
|
+ QDF_STATUS status;
|
|
|
+
|
|
|
+ if (session_entry->limMlmState == eLIM_MLM_LINK_ESTABLISHED_STATE) {
|
|
|
+ /*
|
|
|
+ * Now Process EDCA Parameters, if EDCAParamSet
|
|
|
+ * count is different.
|
|
|
+ * -- While processing beacons in link established
|
|
|
+ * state if it is determined that
|
|
|
+ * QoS Info IE has a different count for EDCA Params,
|
|
|
+ * and EDCA IE is not present in beacon,
|
|
|
+ * then probe req is sent out to get the EDCA params.
|
|
|
+ */
|
|
|
+ sta_ds = dph_get_hash_entry(mac_ctx, DPH_STA_HASH_INDEX_PEER,
|
|
|
+ &session_entry->dph.dphHashTable);
|
|
|
+
|
|
|
+ limGetQosMode(session_entry, &qos_enabled);
|
|
|
+ limGetWmeMode(session_entry, &wme_enabled);
|
|
|
+ pe_debug("wmeEdcaPresent: %d wme_enabled: %d edcaPresent: %d, qos_enabled: %d edcaParams.qosInfo.count: %d schObject.gLimEdcaParamSetCount: %d",
|
|
|
+ probe_rsp->wmeEdcaPresent, wme_enabled,
|
|
|
+ probe_rsp->edcaPresent, qos_enabled,
|
|
|
+ probe_rsp->edcaParams.qosInfo.count,
|
|
|
+ session_entry->gLimEdcaParamSetCount);
|
|
|
+
|
|
|
+ if (((probe_rsp->wmeEdcaPresent && wme_enabled) ||
|
|
|
+ (probe_rsp->edcaPresent && qos_enabled)) &&
|
|
|
+ (probe_rsp->edcaParams.qosInfo.count !=
|
|
|
+ session_entry->gLimEdcaParamSetCount)) {
|
|
|
+ status = sch_beacon_edca_process(mac_ctx,
|
|
|
+ &probe_rsp->edcaParams,
|
|
|
+ session_entry);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
+ pe_err("EDCA param process error");
|
|
|
+ } else if (sta_ds) {
|
|
|
+ qdf_mem_copy(&sta_ds->qos.peer_edca_params,
|
|
|
+ &probe_rsp->edcaParams,
|
|
|
+ sizeof(probe_rsp->edcaParams));
|
|
|
+ /*
|
|
|
+ * If needed, downgrade the
|
|
|
+ * EDCA parameters
|
|
|
+ */
|
|
|
+ lim_set_active_edca_params(mac_ctx,
|
|
|
+ session_entry->gLimEdcaParams,
|
|
|
+ session_entry);
|
|
|
+ lim_send_edca_params(mac_ctx,
|
|
|
+ session_entry->gLimEdcaParamsActive,
|
|
|
+ session_entry->vdev_id, false);
|
|
|
+ sch_qos_concurrency_update();
|
|
|
+ } else {
|
|
|
+ pe_err("SelfEntry missing in Hash");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (session_entry->fWaitForProbeRsp) {
|
|
|
+ pe_warn("Check probe resp for caps change");
|
|
|
+ lim_detect_change_in_ap_capabilities(mac_ctx, probe_rsp,
|
|
|
+ session_entry);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+void lim_process_gen_probe_rsp_frame(struct mac_context *mac_ctx,
|
|
|
+ struct pe_session *session_entry,
|
|
|
+ uint8_t *bcn_probe, uint32_t len)
|
|
|
+{
|
|
|
+ tSirProbeRespBeacon *probe_rsp;
|
|
|
+ tpSirMacMgmtHdr header;
|
|
|
+ QDF_STATUS status;
|
|
|
+
|
|
|
+ if (!bcn_probe || !len) {
|
|
|
+ pe_err("bcn_probe is null or invalid len %d", len);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!session_entry) {
|
|
|
+ pe_err("session_entry is NULL");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ probe_rsp = qdf_mem_malloc(sizeof(tSirProbeRespBeacon));
|
|
|
+ if (!probe_rsp) {
|
|
|
+ pe_err("Unable to allocate memory");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ header = (tpSirMacMgmtHdr)(bcn_probe);
|
|
|
+ pe_debug("Generate Probe Resp(len %d): " QDF_MAC_ADDR_FMT,
|
|
|
+ len, QDF_MAC_ADDR_REF(header->bssId));
|
|
|
+
|
|
|
+ status = sir_convert_probe_frame2_struct(mac_ctx,
|
|
|
+ bcn_probe, len, probe_rsp);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status) || !probe_rsp->ssidPresent) {
|
|
|
+ pe_err("Parse error ProbeResponse, length=%d", len);
|
|
|
+ qdf_mem_free(probe_rsp);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ lim_process_updated_ies_in_probe_rsp(mac_ctx, session_entry, probe_rsp);
|
|
|
+ qdf_mem_free(probe_rsp);
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* lim_process_probe_rsp_frame() - processes received Probe Response frame
|
|
|
* @mac_ctx: Pointer to Global MAC structure
|
|
@@ -107,9 +223,10 @@ lim_process_probe_rsp_frame(struct mac_context *mac_ctx, uint8_t *rx_Packet_info
|
|
|
tSirMacAddr current_bssid;
|
|
|
tpSirMacMgmtHdr header;
|
|
|
tSirProbeRespBeacon *probe_rsp;
|
|
|
- uint8_t qos_enabled = false;
|
|
|
- uint8_t wme_enabled = false;
|
|
|
uint32_t chan_freq = 0;
|
|
|
+ uint8_t bpcc;
|
|
|
+ bool cu_flag = true;
|
|
|
+ QDF_STATUS status;
|
|
|
|
|
|
if (!session_entry) {
|
|
|
pe_err("session_entry is NULL");
|
|
@@ -164,6 +281,17 @@ lim_process_probe_rsp_frame(struct mac_context *mac_ctx, uint8_t *rx_Packet_info
|
|
|
frame_len,
|
|
|
mac_ctx->lim.bss_rssi);
|
|
|
|
|
|
+ if (mlo_is_mld_sta(session_entry->vdev)) {
|
|
|
+ cu_flag = false;
|
|
|
+ status = lim_get_bpcc_from_mlo_ie(probe_rsp, &bpcc);
|
|
|
+ if (QDF_IS_STATUS_SUCCESS(status)) {
|
|
|
+ cu_flag = lim_check_cu_happens(session_entry->vdev,
|
|
|
+ bpcc);
|
|
|
+ lim_process_cu_for_probe_rsp(mac_ctx, session_entry,
|
|
|
+ body, frame_len);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
if (session_entry->limMlmState ==
|
|
|
eLIM_MLM_WT_JOIN_BEACON_STATE) {
|
|
|
/*
|
|
@@ -197,7 +325,6 @@ lim_process_probe_rsp_frame(struct mac_context *mac_ctx, uint8_t *rx_Packet_info
|
|
|
session_entry);
|
|
|
} else if (session_entry->limMlmState ==
|
|
|
eLIM_MLM_LINK_ESTABLISHED_STATE) {
|
|
|
- tpDphHashNode sta_ds = NULL;
|
|
|
/*
|
|
|
* Check if this Probe Response is for
|
|
|
* our Probe Request sent upon reaching
|
|
@@ -222,62 +349,14 @@ lim_process_probe_rsp_frame(struct mac_context *mac_ctx, uint8_t *rx_Packet_info
|
|
|
probe_rsp->chan_freq,
|
|
|
session_entry);
|
|
|
}
|
|
|
- /*
|
|
|
- * Now Process EDCA Parameters, if EDCAParamSet
|
|
|
- * count is different.
|
|
|
- * -- While processing beacons in link established
|
|
|
- * state if it is determined that
|
|
|
- * QoS Info IE has a different count for EDCA Params,
|
|
|
- * and EDCA IE is not present in beacon,
|
|
|
- * then probe req is sent out to get the EDCA params.
|
|
|
- */
|
|
|
- sta_ds = dph_get_hash_entry(mac_ctx,
|
|
|
- DPH_STA_HASH_INDEX_PEER,
|
|
|
- &session_entry->dph.dphHashTable);
|
|
|
- limGetQosMode(session_entry, &qos_enabled);
|
|
|
- limGetWmeMode(session_entry, &wme_enabled);
|
|
|
- pe_debug("wmeEdcaPresent: %d wme_enabled: %d"
|
|
|
- "edcaPresent: %d, qos_enabled: %d"
|
|
|
- "edcaParams.qosInfo.count: %d"
|
|
|
- "schObject.gLimEdcaParamSetCount: %d",
|
|
|
- probe_rsp->wmeEdcaPresent, wme_enabled,
|
|
|
- probe_rsp->edcaPresent, qos_enabled,
|
|
|
- probe_rsp->edcaParams.qosInfo.count,
|
|
|
- session_entry->gLimEdcaParamSetCount);
|
|
|
|
|
|
- if (((probe_rsp->wmeEdcaPresent && wme_enabled) ||
|
|
|
- (probe_rsp->edcaPresent && qos_enabled)) &&
|
|
|
- (probe_rsp->edcaParams.qosInfo.count !=
|
|
|
- session_entry->gLimEdcaParamSetCount)) {
|
|
|
- if (sch_beacon_edca_process(mac_ctx,
|
|
|
- &probe_rsp->edcaParams,
|
|
|
- session_entry) != QDF_STATUS_SUCCESS) {
|
|
|
- pe_err("EDCA param process error");
|
|
|
- } else if (sta_ds) {
|
|
|
- qdf_mem_copy(&sta_ds->qos.peer_edca_params,
|
|
|
- &probe_rsp->edcaParams,
|
|
|
- sizeof(probe_rsp->edcaParams));
|
|
|
- /*
|
|
|
- * If needed, downgrade the
|
|
|
- * EDCA parameters
|
|
|
- */
|
|
|
- lim_set_active_edca_params(mac_ctx,
|
|
|
- session_entry->
|
|
|
- gLimEdcaParams,
|
|
|
- session_entry);
|
|
|
- lim_send_edca_params(mac_ctx,
|
|
|
- session_entry->gLimEdcaParamsActive,
|
|
|
- session_entry->vdev_id, false);
|
|
|
- sch_qos_concurrency_update();
|
|
|
- } else {
|
|
|
- pe_err("SelfEntry missing in Hash");
|
|
|
- }
|
|
|
- }
|
|
|
- if (session_entry->fWaitForProbeRsp == true) {
|
|
|
- pe_warn("Check probe resp for caps change");
|
|
|
- lim_detect_change_in_ap_capabilities(
|
|
|
- mac_ctx, probe_rsp, session_entry);
|
|
|
+ if (!cu_flag) {
|
|
|
+ qdf_mem_free(probe_rsp);
|
|
|
+ return;
|
|
|
}
|
|
|
+
|
|
|
+ lim_process_updated_ies_in_probe_rsp(mac_ctx, session_entry,
|
|
|
+ probe_rsp);
|
|
|
}
|
|
|
qdf_mem_free(probe_rsp);
|
|
|
|