|
@@ -33,15 +33,15 @@
|
|
|
#include "wma_nan_datapath.h"
|
|
|
|
|
|
/**
|
|
|
- * lim_send_ndp_event_to_sme() - generic function to pepare and send NDP message
|
|
|
- * to SME directly.
|
|
|
- * @mac_ctx: handle to mac structure
|
|
|
+ * lim_send_ndp_event_to_sme() - generic function to prepare and send NDP
|
|
|
+ * message to SME.
|
|
|
+ * @mac_ctx: handle to mac context structure
|
|
|
* @msg_type: sme message type to send
|
|
|
* @body_ptr: buffer
|
|
|
* @len: buffer length
|
|
|
* @body_val: value
|
|
|
*
|
|
|
- * Return: Nothing
|
|
|
+ * Return: None
|
|
|
*/
|
|
|
static void lim_send_ndp_event_to_sme(tpAniSirGlobal mac_ctx, uint32_t msg_type,
|
|
|
void *body_ptr, uint32_t len, uint32_t body_val)
|
|
@@ -62,6 +62,61 @@ static void lim_send_ndp_event_to_sme(tpAniSirGlobal mac_ctx, uint32_t msg_type,
|
|
|
lim_sys_process_mmh_msg_api(mac_ctx, &mmh_msg, ePROT);
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * lim_add_ndi_peer() - Function to add ndi peer
|
|
|
+ * @mac_ctx: handle to mac structure
|
|
|
+ * @vdev_id: vdev id on which peer is added
|
|
|
+ * @peer_mac_addr: peer to be added
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS_SUCCESS on success; error number otherwise
|
|
|
+ */
|
|
|
+static QDF_STATUS lim_add_ndi_peer(tpAniSirGlobal mac_ctx,
|
|
|
+ uint32_t vdev_id, struct qdf_mac_addr peer_mac_addr)
|
|
|
+{
|
|
|
+ tpPESession session;
|
|
|
+ tpDphHashNode sta_ds;
|
|
|
+ uint16_t assoc_id, peer_idx;
|
|
|
+ tSirRetStatus status;
|
|
|
+
|
|
|
+ session = pe_find_session_by_sme_session_id(mac_ctx,
|
|
|
+ vdev_id);
|
|
|
+ if (session == NULL) {
|
|
|
+ /* couldn't find session */
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+ sta_ds = dph_lookup_hash_entry(mac_ctx,
|
|
|
+ peer_mac_addr.bytes,
|
|
|
+ &assoc_id, &session->dph.dphHashTable);
|
|
|
+ /* peer exists, don't do anything */
|
|
|
+ if (sta_ds != NULL) {
|
|
|
+ lim_log(mac_ctx, LOGE, FL("NDI Peer already exists!!"));
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+ }
|
|
|
+ lim_log(mac_ctx, LOG1,
|
|
|
+ FL("Need to create NDI Peer :" MAC_ADDRESS_STR),
|
|
|
+ MAC_ADDR_ARRAY(peer_mac_addr.bytes));
|
|
|
+ peer_idx = lim_assign_peer_idx(mac_ctx, session);
|
|
|
+ sta_ds = dph_add_hash_entry(mac_ctx, peer_mac_addr.bytes, peer_idx,
|
|
|
+ &session->dph.dphHashTable);
|
|
|
+ if (sta_ds == NULL) {
|
|
|
+ lim_log(mac_ctx, LOGE,
|
|
|
+ FL("Couldn't add dph entry"));
|
|
|
+ /* couldn't add dph entry */
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+ /* wma decides NDI mode from wma->inferface struct */
|
|
|
+ sta_ds->staType = STA_ENTRY_NDI_PEER;
|
|
|
+ status = lim_add_sta(mac_ctx, sta_ds, false, session);
|
|
|
+ if (eSIR_SUCCESS != status) {
|
|
|
+ /* couldn't add peer */
|
|
|
+ lim_log(mac_ctx, LOGE,
|
|
|
+ FL("limAddSta failed status: %d"),
|
|
|
+ status);
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* lim_handle_ndp_indication_event() - Function to handle SIR_HAL_NDP_INDICATION
|
|
|
* event from WMA
|
|
@@ -73,10 +128,7 @@ static void lim_send_ndp_event_to_sme(tpAniSirGlobal mac_ctx, uint32_t msg_type,
|
|
|
static QDF_STATUS lim_handle_ndp_indication_event(tpAniSirGlobal mac_ctx,
|
|
|
struct ndp_indication_event *ndp_ind)
|
|
|
{
|
|
|
- tpPESession session;
|
|
|
- tpDphHashNode sta_ds;
|
|
|
- uint16_t assoc_id, peer_idx;
|
|
|
- tSirRetStatus status;
|
|
|
+ QDF_STATUS status;
|
|
|
|
|
|
lim_log(mac_ctx, LOG1,
|
|
|
FL("role: %d, vdev: %d, peer_mac_addr "MAC_ADDRESS_STR),
|
|
@@ -84,47 +136,28 @@ static QDF_STATUS lim_handle_ndp_indication_event(tpAniSirGlobal mac_ctx,
|
|
|
MAC_ADDR_ARRAY(ndp_ind->peer_mac_addr.bytes));
|
|
|
|
|
|
if (ndp_ind->role == NDP_ROLE_INITIATOR) {
|
|
|
+ /* Free config only for INITIATOR role */
|
|
|
+ qdf_mem_free(ndp_ind->ndp_config.ndp_cfg);
|
|
|
+ qdf_mem_free(ndp_ind->ndp_info.ndp_app_info);
|
|
|
|
|
|
- session = pe_find_session_by_sme_session_id(mac_ctx,
|
|
|
- ndp_ind->vdev_id);
|
|
|
- if (session == NULL) {
|
|
|
- lim_log(mac_ctx, LOGE,
|
|
|
- FL("Couldn't find session, vdev_id: %d, ndp_role: %d"),
|
|
|
- ndp_ind->vdev_id, ndp_ind->role);
|
|
|
- goto ndp_indication_failed;
|
|
|
- }
|
|
|
- sta_ds = dph_lookup_hash_entry(mac_ctx,
|
|
|
- ndp_ind->peer_mac_addr.bytes,
|
|
|
- &assoc_id, &session->dph.dphHashTable);
|
|
|
- /* peer exists, don't do anything */
|
|
|
- if (sta_ds != NULL) {
|
|
|
- lim_log(mac_ctx, LOGE, FL("NDI Peer already exists!!"));
|
|
|
- return QDF_STATUS_SUCCESS;
|
|
|
- }
|
|
|
-
|
|
|
- /* else create one */
|
|
|
- lim_log(mac_ctx, LOG1, FL("Need to create NDI Peer!!"));
|
|
|
- peer_idx = lim_assign_peer_idx(mac_ctx, session);
|
|
|
- sta_ds = dph_add_hash_entry(mac_ctx,
|
|
|
- ndp_ind->peer_mac_addr.bytes,
|
|
|
- peer_idx, &session->dph.dphHashTable);
|
|
|
- if (sta_ds == NULL) {
|
|
|
+ status = lim_add_ndi_peer(mac_ctx, ndp_ind->vdev_id,
|
|
|
+ ndp_ind->peer_mac_addr);
|
|
|
+ if (QDF_STATUS_SUCCESS != status) {
|
|
|
lim_log(mac_ctx, LOGE,
|
|
|
- FL("Couldn't add dph entry, ndp_role: %d"),
|
|
|
+ FL("Couldn't add ndi peer, ndp_role: %d"),
|
|
|
ndp_ind->role);
|
|
|
goto ndp_indication_failed;
|
|
|
}
|
|
|
- /* wma decides NDI mode from wma->inferface struct */
|
|
|
- sta_ds->staType = STA_ENTRY_NDI_PEER;
|
|
|
- status = lim_add_sta(mac_ctx, sta_ds, false, session);
|
|
|
- if (eSIR_SUCCESS != status) {
|
|
|
- lim_log(mac_ctx, LOGE,
|
|
|
- FL("limAddSta failed status: %d, ndp_role: %d"),
|
|
|
- status, ndp_ind->role);
|
|
|
- goto ndp_indication_failed;
|
|
|
+ } else if (NDP_ROLE_RESPONDER == ndp_ind->role) {
|
|
|
+ /*
|
|
|
+ * For RESPONDER role ndp_cfg and app_info sent till HDD
|
|
|
+ * will be freed in sme.
|
|
|
+ */
|
|
|
+ if (NDP_ACCEPT_POLICY_ALL != ndp_ind->policy) {
|
|
|
+ lim_send_ndp_event_to_sme(mac_ctx,
|
|
|
+ eWNI_SME_NDP_INDICATION,
|
|
|
+ ndp_ind, sizeof(*ndp_ind), 0);
|
|
|
}
|
|
|
- } else {
|
|
|
- /* Processing for NDP Data Reponder role */
|
|
|
}
|
|
|
/*
|
|
|
* With NDP indication if peer does not exists already add_sta is
|
|
@@ -140,7 +173,47 @@ ndp_indication_failed:
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * lim_handle_ndp_event_message() - Handler for NDP events from WMA
|
|
|
+ * lim_ndp_responder_rsp_handler() - Handler for NDP responder rsp
|
|
|
+ * @mac_ctx: handle to mac structure
|
|
|
+ * @ndp_rsp: pointer to rsp message
|
|
|
+ * @bodyval: value
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS_SUCCESS on success; error number otherwise
|
|
|
+ */
|
|
|
+static QDF_STATUS lim_ndp_responder_rsp_handler(tpAniSirGlobal mac_ctx,
|
|
|
+ struct ndp_responder_rsp_event *rsp_ind, uint32_t bodyval)
|
|
|
+{
|
|
|
+ QDF_STATUS ret_val = QDF_STATUS_SUCCESS;
|
|
|
+
|
|
|
+ if ((NULL == rsp_ind) || bodyval) {
|
|
|
+ lim_log(mac_ctx, LOGE,
|
|
|
+ FL("rsp_ind is NULL or bodyval %d"), bodyval);
|
|
|
+ /* msg to unblock SME, but not send rsp to HDD */
|
|
|
+ bodyval = true;
|
|
|
+ ret_val = QDF_STATUS_E_INVAL;
|
|
|
+ goto responder_rsp;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (QDF_STATUS_SUCCESS == rsp_ind->status) {
|
|
|
+ ret_val = lim_add_ndi_peer(mac_ctx, rsp_ind->vdev_id,
|
|
|
+ rsp_ind->peer_mac_addr);
|
|
|
+ if (QDF_STATUS_SUCCESS != ret_val) {
|
|
|
+ lim_log(mac_ctx, LOGE,
|
|
|
+ FL("Couldn't add ndi peer"));
|
|
|
+ rsp_ind->status = QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+responder_rsp:
|
|
|
+ /* send eWNI_SME_NDP_RESPONDER_RSP */
|
|
|
+ lim_send_ndp_event_to_sme(mac_ctx, eWNI_SME_NDP_RESPONDER_RSP,
|
|
|
+ bodyval ? NULL : rsp_ind,
|
|
|
+ bodyval ? 0 : sizeof(*rsp_ind), bodyval);
|
|
|
+ return ret_val;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * lim_handle_ndp_event_message() - Handler for NDP events/RSP from WMA
|
|
|
* @mac_ctx: handle to mac structure
|
|
|
* @msg: pointer to message
|
|
|
*
|
|
@@ -168,6 +241,10 @@ QDF_STATUS lim_handle_ndp_event_message(tpAniSirGlobal mac_ctx, cds_msg_t *msg)
|
|
|
qdf_mem_free(ndp_ind->ndp_info.ndp_app_info);
|
|
|
break;
|
|
|
}
|
|
|
+ case SIR_HAL_NDP_RESPONDER_RSP:
|
|
|
+ status = lim_ndp_responder_rsp_handler(mac_ctx, msg->bodyptr,
|
|
|
+ msg->bodyval);
|
|
|
+ break;
|
|
|
default:
|
|
|
lim_log(mac_ctx, LOGE,
|
|
|
FL("Unhandled NDP event: %d"), msg->type);
|
|
@@ -232,12 +309,61 @@ send_initiator_rsp:
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
-* lim_handle_ndp_request_message() - Handler for NDP req from SME
|
|
|
-* @mac_ctx: handle to mac structure
|
|
|
-* @msg: pointer to message
|
|
|
-*
|
|
|
-* Return: QDF_STATUS_SUCCESS on success; error number otherwise
|
|
|
-*/
|
|
|
+ * lim_process_sme_ndp_responder_req() - Handler for NDP responder req
|
|
|
+ * @mac_ctx: handle to mac structure
|
|
|
+ * @ndp_msg: pointer to message
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS_SUCCESS on success or failure code in case of failure
|
|
|
+ */
|
|
|
+static QDF_STATUS lim_process_sme_ndp_responder_req(tpAniSirGlobal mac_ctx,
|
|
|
+ struct sir_sme_ndp_responder_req *lim_msg)
|
|
|
+{
|
|
|
+ tSirMsgQ msg;
|
|
|
+ QDF_STATUS status = QDF_STATUS_SUCCESS;
|
|
|
+ struct ndp_responder_req *responder_req;
|
|
|
+
|
|
|
+ if (NULL == lim_msg) {
|
|
|
+ lim_log(mac_ctx, LOGE, FL("ndp_msg is NULL"));
|
|
|
+ status = QDF_STATUS_E_INVAL;
|
|
|
+ goto send_failure_rsp;
|
|
|
+ }
|
|
|
+ responder_req = qdf_mem_malloc(sizeof(*responder_req));
|
|
|
+ if (NULL == responder_req) {
|
|
|
+ lim_log(mac_ctx, LOGE,
|
|
|
+ FL("Unable to allocate memory for responder_req"));
|
|
|
+ status = QDF_STATUS_E_NOMEM;
|
|
|
+ goto send_failure_rsp;
|
|
|
+ }
|
|
|
+ qdf_mem_copy(responder_req, &lim_msg->req, sizeof(*responder_req));
|
|
|
+ msg.type = SIR_HAL_NDP_RESPONDER_REQ;
|
|
|
+ msg.reserved = 0;
|
|
|
+ msg.bodyptr = responder_req;
|
|
|
+ msg.bodyval = 0;
|
|
|
+
|
|
|
+ lim_log(mac_ctx, LOG1, FL("sending SIR_HAL_NDP_RESPONDER_REQ to WMA"));
|
|
|
+ MTRACE(mac_trace_msg_tx(mac_ctx, NO_SESSION, msg.type));
|
|
|
+
|
|
|
+ if (eSIR_SUCCESS != wma_post_ctrl_msg(mac_ctx, &msg)) {
|
|
|
+ lim_log(mac_ctx, LOGP, FL("wma_post_ctrl_msg failed"));
|
|
|
+ status = QDF_STATUS_E_FAILURE;
|
|
|
+ qdf_mem_free(responder_req);
|
|
|
+ goto send_failure_rsp;
|
|
|
+ }
|
|
|
+ return status;
|
|
|
+send_failure_rsp:
|
|
|
+ /* msg to unblock SME, but not send rsp to HDD */
|
|
|
+ lim_send_ndp_event_to_sme(mac_ctx, eWNI_SME_NDP_RESPONDER_RSP,
|
|
|
+ NULL, 0, true);
|
|
|
+ return status;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * lim_handle_ndp_request_message() - Handler for NDP req from SME
|
|
|
+ * @mac_ctx: handle to mac structure
|
|
|
+ * @msg: pointer to message
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS_SUCCESS on success; error number otherwise
|
|
|
+ */
|
|
|
QDF_STATUS lim_handle_ndp_request_message(tpAniSirGlobal mac_ctx,
|
|
|
tpSirMsgQ msg)
|
|
|
{
|
|
@@ -248,6 +374,10 @@ QDF_STATUS lim_handle_ndp_request_message(tpAniSirGlobal mac_ctx,
|
|
|
status = lim_process_sme_ndp_initiator_req(mac_ctx,
|
|
|
msg->bodyptr);
|
|
|
break;
|
|
|
+ case eWNI_SME_NDP_RESPONDER_REQ:
|
|
|
+ status = lim_process_sme_ndp_responder_req(mac_ctx,
|
|
|
+ msg->bodyptr);
|
|
|
+ break;
|
|
|
default:
|
|
|
lim_log(mac_ctx, LOGE, FL("Unhandled NDP request: %d"),
|
|
|
msg->type);
|