|
@@ -175,7 +175,7 @@ static QDF_STATUS lim_check_sta_in_pe_entries(struct mac_context *mac_ctx,
|
|
|
sta_ds->sta_deletion_in_progress = true;
|
|
|
pe_err("Sending Disassoc and Deleting existing STA entry:"
|
|
|
MAC_ADDRESS_STR,
|
|
|
- MAC_ADDR_ARRAY(session->selfMacAddr));
|
|
|
+ QDF_MAC_ADDR_ARRAY(session->selfMacAddr));
|
|
|
lim_send_disassoc_mgmt_frame(mac_ctx,
|
|
|
eSIR_MAC_UNSPEC_FAILURE_REASON,
|
|
|
(uint8_t *) hdr->sa, session, false);
|
|
@@ -285,7 +285,7 @@ static bool lim_chk_assoc_req_parse_error(struct mac_context *mac_ctx,
|
|
|
return true;
|
|
|
|
|
|
pe_warn("Assoc Req rejected: frame parsing error. source addr:"
|
|
|
- MAC_ADDRESS_STR, MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ MAC_ADDRESS_STR, QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
lim_send_assoc_rsp_mgmt_frame(mac_ctx, eSIR_MAC_UNSPEC_FAILURE_STATUS,
|
|
|
1, hdr->sa, sub_type, 0, session);
|
|
|
return false;
|
|
@@ -323,7 +323,7 @@ static bool lim_chk_capab(struct mac_context *mac_ctx, tpSirMacMgmtHdr hdr,
|
|
|
pe_warn("Rcvd %s Req with unsupported capab from"
|
|
|
MAC_ADDRESS_STR,
|
|
|
(LIM_ASSOC == sub_type) ? "Assoc" : "ReAssoc",
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
/*
|
|
|
* Capabilities of requesting STA does not match with
|
|
|
* local capabilities. Respond with 'unsupported capabilities'
|
|
@@ -361,7 +361,7 @@ static bool lim_chk_ssid(struct mac_context *mac_ctx, tpSirMacMgmtHdr hdr,
|
|
|
(LIM_ASSOC == sub_type) ? "Assoc" : "ReAssoc",
|
|
|
assoc_req->ssId.length, assoc_req->ssId.ssId,
|
|
|
session->ssId.length, session->ssId.ssId,
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
|
|
|
/*
|
|
|
* Received Re/Association Request with either Broadcast SSID OR with
|
|
@@ -416,7 +416,7 @@ static bool lim_chk_rates(struct mac_context *mac_ctx, tpSirMacMgmtHdr hdr,
|
|
|
pe_warn("Assoc Req rejected: unsupported rates, soruce addr: %s"
|
|
|
MAC_ADDRESS_STR,
|
|
|
(LIM_ASSOC == sub_type) ? "Assoc" : "ReAssoc",
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
/*
|
|
|
* Requesting STA does not support ALL BSS basic rates. Respond with
|
|
|
* 'basic rates not supported' status code.
|
|
@@ -448,7 +448,7 @@ static bool lim_chk_11g_only(struct mac_context *mac_ctx, tpSirMacMgmtHdr hdr,
|
|
|
(assoc_req->HTCaps.present)) {
|
|
|
pe_err("SOFTAP was in 11G only mode, rejecting legacy STA: "
|
|
|
MAC_ADDRESS_STR,
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
lim_send_assoc_rsp_mgmt_frame(mac_ctx,
|
|
|
eSIR_MAC_CAPABILITIES_NOT_SUPPORTED_STATUS,
|
|
|
1, hdr->sa, sub_type, 0, session);
|
|
@@ -478,7 +478,7 @@ static bool lim_chk_11n_only(struct mac_context *mac_ctx, tpSirMacMgmtHdr hdr,
|
|
|
(!assoc_req->HTCaps.present)) {
|
|
|
pe_err("SOFTAP was in 11N only mode, rejecting legacy STA: "
|
|
|
MAC_ADDRESS_STR,
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
lim_send_assoc_rsp_mgmt_frame(mac_ctx,
|
|
|
eSIR_MAC_CAPABILITIES_NOT_SUPPORTED_STATUS,
|
|
|
1, hdr->sa, sub_type, 0, session);
|
|
@@ -647,14 +647,14 @@ lim_process_for_spectrum_mgmt(struct mac_context *mac_ctx, tpSirMacMgmtHdr hdr,
|
|
|
MAC_ADDRESS_STR,
|
|
|
(LIM_ASSOC == sub_type) ?
|
|
|
"Assoc" : "ReAssoc",
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
}
|
|
|
if (!assoc_req->supportedChannelsPresent) {
|
|
|
pe_warn("LIM Info: Missing Supported channel IE in %s Req from "
|
|
|
MAC_ADDRESS_STR,
|
|
|
(LIM_ASSOC == sub_type) ?
|
|
|
"Assoc" : "ReAssoc",
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
}
|
|
|
} else {
|
|
|
/* Assoc request has mandatory fields */
|
|
@@ -666,7 +666,7 @@ lim_process_for_spectrum_mgmt(struct mac_context *mac_ctx, tpSirMacMgmtHdr hdr,
|
|
|
MAC_ADDRESS_STR,
|
|
|
(LIM_ASSOC == sub_type) ?
|
|
|
"Assoc" : "ReAssoc",
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
}
|
|
|
status = lim_is_dot11h_supported_channels_valid(
|
|
|
mac_ctx, assoc_req);
|
|
@@ -675,7 +675,7 @@ lim_process_for_spectrum_mgmt(struct mac_context *mac_ctx, tpSirMacMgmtHdr hdr,
|
|
|
MAC_ADDRESS_STR,
|
|
|
(LIM_ASSOC == sub_type) ?
|
|
|
"Assoc" : "ReAssoc",
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
}
|
|
|
/* IEs are valid, use them if needed */
|
|
|
}
|
|
@@ -720,7 +720,7 @@ static bool lim_chk_mcs(struct mac_context *mac_ctx, tpSirMacMgmtHdr hdr,
|
|
|
pe_warn("rcvd %s req with unsupported MCS Rate Set from "
|
|
|
MAC_ADDRESS_STR,
|
|
|
(LIM_ASSOC == sub_type) ? "Assoc" : "ReAssoc",
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
/*
|
|
|
* Requesting STA does not support ALL BSS MCS basic Rate set
|
|
|
* rates. Spec does not define any status code for this
|
|
@@ -972,13 +972,13 @@ static bool lim_check_wpa_rsn_ie(struct pe_session *session,
|
|
|
qdf_mem_zero((uint8_t *) &dot11f_ie_rsn, sizeof(dot11f_ie_rsn));
|
|
|
qdf_mem_zero((uint8_t *) &dot11f_ie_wpa, sizeof(dot11f_ie_wpa));
|
|
|
pe_err("RSN enabled auth, Re/Assoc req from STA: "
|
|
|
- MAC_ADDRESS_STR, MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ MAC_ADDRESS_STR, QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
|
|
|
if (assoc_req->rsnPresent) {
|
|
|
if (!(assoc_req->rsn.length)) {
|
|
|
pe_warn("Re/Assoc rejected from: "
|
|
|
MAC_ADDRESS_STR,
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
/*
|
|
|
* rcvd Assoc req frame with RSN IE but
|
|
|
* length is zero
|
|
@@ -1011,7 +1011,7 @@ static bool lim_check_wpa_rsn_ie(struct pe_session *session,
|
|
|
if (eSIR_MAC_SUCCESS_STATUS != status) {
|
|
|
pe_warn("Re/Assoc rejected from: "
|
|
|
MAC_ADDRESS_STR,
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
|
|
|
lim_send_assoc_rsp_mgmt_frame(mac_ctx, status,
|
|
|
1, hdr->sa, sub_type,
|
|
@@ -1020,7 +1020,7 @@ static bool lim_check_wpa_rsn_ie(struct pe_session *session,
|
|
|
}
|
|
|
} else {
|
|
|
pe_warn("Re/Assoc rejected from: " MAC_ADDRESS_STR,
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
/*
|
|
|
* rcvd Assoc req frame with RSN IE but
|
|
|
* IE version is wrong
|
|
@@ -1038,7 +1038,7 @@ static bool lim_check_wpa_rsn_ie(struct pe_session *session,
|
|
|
if (eSIR_MAC_SUCCESS_STATUS != status) {
|
|
|
/* Reject pmf disable SAE STA */
|
|
|
pe_warn("Re/Assoc rejected from: " MAC_ADDRESS_STR,
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
lim_send_assoc_rsp_mgmt_frame(mac_ctx, status,
|
|
|
1, hdr->sa, sub_type,
|
|
|
0, session);
|
|
@@ -1049,7 +1049,7 @@ static bool lim_check_wpa_rsn_ie(struct pe_session *session,
|
|
|
if (!(assoc_req->wpa.length)) {
|
|
|
pe_warn("Re/Assoc rejected from: "
|
|
|
MAC_ADDRESS_STR,
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
|
|
|
/* rcvd Assoc req frame with invalid WPA IE length */
|
|
|
lim_send_assoc_rsp_mgmt_frame(mac_ctx,
|
|
@@ -1076,7 +1076,7 @@ static bool lim_check_wpa_rsn_ie(struct pe_session *session,
|
|
|
if (eSIR_MAC_SUCCESS_STATUS != status) {
|
|
|
pe_warn("Re/Assoc rejected from: "
|
|
|
MAC_ADDRESS_STR,
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
/*
|
|
|
* rcvd Assoc req frame with WPA IE
|
|
|
* but there is mismatch
|
|
@@ -1192,7 +1192,7 @@ static bool lim_process_assoc_req_no_sta_ctx(struct mac_context *mac_ctx,
|
|
|
pe_warn("rcvd %s req, sessionid: %d, without pre-auth ctx"
|
|
|
MAC_ADDRESS_STR,
|
|
|
(LIM_ASSOC == sub_type) ? "Assoc" : "ReAssoc",
|
|
|
- session->peSessionId, MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ session->peSessionId, QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
return false;
|
|
|
}
|
|
|
/* Delete 'pre-auth' context of STA */
|
|
@@ -1647,7 +1647,7 @@ static bool lim_update_sta_ds(struct mac_context *mac_ctx, tpSirMacMgmtHdr hdr,
|
|
|
/* Could not update hash table entry at DPH with rateset */
|
|
|
pe_err("Couldn't update hash entry for aid: %d MacAddr: "
|
|
|
MAC_ADDRESS_STR,
|
|
|
- peer_idx, MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ peer_idx, QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
|
|
|
/* Release AID */
|
|
|
lim_release_peer_idx(mac_ctx, peer_idx, session);
|
|
@@ -2007,7 +2007,7 @@ bool lim_send_assoc_ind_to_sme(struct mac_context *mac_ctx,
|
|
|
/* STA is Associated ! */
|
|
|
pe_debug("Received: %s Req successful from " MAC_ADDRESS_STR,
|
|
|
(sub_type == LIM_ASSOC) ? "Assoc" : "ReAssoc",
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
|
|
|
/*
|
|
|
* AID for this association will be same as the peer Index used in DPH
|
|
@@ -2036,7 +2036,7 @@ bool lim_send_assoc_ind_to_sme(struct mac_context *mac_ctx,
|
|
|
if (!sta_ds) {
|
|
|
/* Could not add hash table entry at DPH */
|
|
|
pe_err("couldn't add hash entry at DPH for aid: %d MacAddr:"
|
|
|
- MAC_ADDRESS_STR, peer_idx, MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ MAC_ADDRESS_STR, peer_idx, QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
|
|
|
/* Release AID */
|
|
|
lim_release_peer_idx(mac_ctx, peer_idx, session);
|
|
@@ -2123,14 +2123,14 @@ void lim_process_assoc_req_frame(struct mac_context *mac_ctx, uint8_t *rx_pkt_in
|
|
|
MAC_ADDRESS_STR,
|
|
|
(LIM_ASSOC == sub_type) ? "Assoc" : "ReAssoc",
|
|
|
session->peSessionId, GET_LIM_SYSTEM_ROLE(session),
|
|
|
- session->limMlmState, MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ session->limMlmState, QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
|
|
|
if (LIM_IS_STA_ROLE(session)) {
|
|
|
pe_err("Rcvd unexpected ASSOC REQ, sessionid: %d sys sub_type: %d for role: %d from: "
|
|
|
MAC_ADDRESS_STR,
|
|
|
session->peSessionId, sub_type,
|
|
|
GET_LIM_SYSTEM_ROLE(session),
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_PE, QDF_TRACE_LEVEL_DEBUG,
|
|
|
WMA_GET_RX_MPDU_DATA(rx_pkt_info),
|
|
|
frame_len);
|
|
@@ -2141,7 +2141,7 @@ void lim_process_assoc_req_frame(struct mac_context *mac_ctx, uint8_t *rx_pkt_in
|
|
|
"role: %d from: "MAC_ADDRESS_STR" in limMlmState: %d",
|
|
|
session->peSessionId,
|
|
|
GET_LIM_SYSTEM_ROLE(session),
|
|
|
- MAC_ADDR_ARRAY(hdr->sa),
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa),
|
|
|
eLIM_MLM_WT_DEL_BSS_RSP_STATE);
|
|
|
return;
|
|
|
}
|
|
@@ -2160,7 +2160,7 @@ void lim_process_assoc_req_frame(struct mac_context *mac_ctx, uint8_t *rx_pkt_in
|
|
|
pe_err("STA is initiating Assoc Req after ACK lost. Do not process sessionid: %d sys sub_type=%d for role=%d from: "
|
|
|
MAC_ADDRESS_STR, session->peSessionId,
|
|
|
sub_type, GET_LIM_SYSTEM_ROLE(session),
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
return;
|
|
|
} else if (!sta_ds->rmfEnabled && (sub_type == LIM_REASSOC)) {
|
|
|
/*
|
|
@@ -2190,7 +2190,7 @@ void lim_process_assoc_req_frame(struct mac_context *mac_ctx, uint8_t *rx_pkt_in
|
|
|
MAC_ADDRESS_STR,
|
|
|
session->peSessionId, sub_type,
|
|
|
session->limSystemRole,
|
|
|
- MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
return;
|
|
|
}
|
|
|
}
|
|
@@ -2224,7 +2224,7 @@ void lim_process_assoc_req_frame(struct mac_context *mac_ctx, uint8_t *rx_pkt_in
|
|
|
pe_err("Rcvd: %s Req, sessionid: %d from a BC/MC address"
|
|
|
MAC_ADDRESS_STR,
|
|
|
(LIM_ASSOC == sub_type) ? "Assoc" : "ReAssoc",
|
|
|
- session->peSessionId, MAC_ADDR_ARRAY(hdr->sa));
|
|
|
+ session->peSessionId, QDF_MAC_ADDR_ARRAY(hdr->sa));
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -2578,7 +2578,7 @@ void lim_send_mlm_assoc_ind(struct mac_context *mac_ctx,
|
|
|
pe_debug("Sessionid: %d ssid: %s sub_type: %d Associd: %d staAddr: "
|
|
|
MAC_ADDRESS_STR, session_entry->peSessionId,
|
|
|
assoc_req->ssId.ssId, sub_type, sta_ds->assocId,
|
|
|
- MAC_ADDR_ARRAY(sta_ds->staAddr));
|
|
|
+ QDF_MAC_ADDR_ARRAY(sta_ds->staAddr));
|
|
|
|
|
|
if (sub_type == LIM_ASSOC || sub_type == LIM_REASSOC) {
|
|
|
temp = sizeof(tLimMlmAssocInd);
|