|
@@ -25,7 +25,7 @@
|
|
|
*
|
|
|
*
|
|
|
* This file was automatically generated by 'framesc'
|
|
|
- * Tue Aug 8 05:29:17 2023 from the following file(s):
|
|
|
+ * Mon Aug 14 23:24:30 2023 from the following file(s):
|
|
|
*
|
|
|
* dot11f.frms
|
|
|
*
|
|
@@ -336,7 +336,7 @@ static uint32_t get_container_ies_len(tpAniSirGlobal pCtx,
|
|
|
len += *(pBufRemaining+1);
|
|
|
pBufRemaining += len + 2;
|
|
|
len += 2;
|
|
|
- while (len < nBuf) {
|
|
|
+ while (len + 1 < nBuf) {
|
|
|
pIe = find_ie_defn(pCtx, pBufRemaining, nBuf - len, IEs);
|
|
|
if (NULL == pIe)
|
|
|
break;
|
|
@@ -6155,6 +6155,40 @@ uint32_t dot11f_unpack_ie_measurement_request(tpAniSirGlobal pCtx,
|
|
|
(uint8_t *)pDst,
|
|
|
sizeof(*pDst), append_ie);
|
|
|
break;
|
|
|
+ case 7:
|
|
|
+ if (unlikely(ielen < 6)) {
|
|
|
+ pDst->present = 0;
|
|
|
+ return DOT11F_INCOMPLETE_IE;
|
|
|
+ }
|
|
|
+
|
|
|
+ DOT11F_MEMCPY(pCtx, pDst->measurement_request.sta_stats.peer_mac_addr, pBuf, 6);
|
|
|
+ pBuf += 6;
|
|
|
+ ielen -= (uint8_t)6;
|
|
|
+ if (unlikely(ielen < 2)) {
|
|
|
+ pDst->present = 0;
|
|
|
+ return DOT11F_INCOMPLETE_IE;
|
|
|
+ }
|
|
|
+
|
|
|
+ framesntohs(pCtx, &pDst->measurement_request.sta_stats.randomization, pBuf, 0);
|
|
|
+ pBuf += 2;
|
|
|
+ ielen -= (uint8_t)2;
|
|
|
+ if (unlikely(ielen < 2)) {
|
|
|
+ pDst->present = 0;
|
|
|
+ return DOT11F_INCOMPLETE_IE;
|
|
|
+ }
|
|
|
+
|
|
|
+ framesntohs(pCtx, &pDst->measurement_request.sta_stats.meas_duration, pBuf, 0);
|
|
|
+ pBuf += 2;
|
|
|
+ ielen -= (uint8_t)2;
|
|
|
+ if (unlikely(ielen < 1)) {
|
|
|
+ pDst->present = 0;
|
|
|
+ return DOT11F_INCOMPLETE_IE;
|
|
|
+ }
|
|
|
+
|
|
|
+ pDst->measurement_request.sta_stats.group_identity = *pBuf;
|
|
|
+ pBuf += 1;
|
|
|
+ ielen -= (uint8_t)1;
|
|
|
+ break;
|
|
|
}
|
|
|
(void)pCtx;
|
|
|
return status;
|
|
@@ -16912,25 +16946,30 @@ static uint32_t unpack_tlv_core(tpAniSirGlobal pCtx,
|
|
|
}
|
|
|
/* & length, */
|
|
|
if (pTlv->sLen == 2) {
|
|
|
- framesntohs(pCtx, &len, pBufRemaining, pTlv->fMsb);
|
|
|
if (2 > nBufRemaining) {
|
|
|
FRAMES_LOG0(pCtx, FRLOGE, FRFL("This frame reports "
|
|
|
"fewer two byte(s) remaining.\n"));
|
|
|
status |= DOT11F_INCOMPLETE_TLV;
|
|
|
FRAMES_DBG_BREAK();
|
|
|
goto MandatoryCheck;
|
|
|
- }
|
|
|
- pBufRemaining += 2;
|
|
|
- nBufRemaining -= 2;
|
|
|
+ }
|
|
|
+ framesntohs(pCtx, &len, pBufRemaining, pTlv->fMsb);
|
|
|
+ pBufRemaining += 2;
|
|
|
+ nBufRemaining -= 2;
|
|
|
} else {
|
|
|
len = *pBufRemaining;
|
|
|
pBufRemaining += 1;
|
|
|
nBufRemaining -= 1;
|
|
|
}
|
|
|
} else {
|
|
|
+ if (TLVs[0].sType > nBufRemaining) {
|
|
|
+ FRAMES_LOG0(pCtx, FRLOGE, FRFL("This frame reports "
|
|
|
+ "fewer LVs[0].sType byte(s) remaining.\n"));
|
|
|
+ status |= DOT11F_INCOMPLETE_TLV;
|
|
|
+ goto MandatoryCheck;
|
|
|
+ }
|
|
|
pBufRemaining += TLVs[0].sType;
|
|
|
nBufRemaining -= TLVs[0].sType;
|
|
|
- framesntohs(pCtx, &len, pBufRemaining, (TLVs[0].sType == 2));
|
|
|
if (2 > nBufRemaining) {
|
|
|
FRAMES_LOG0(pCtx, FRLOGE, FRFL("This frame reports "
|
|
|
"fewer two byte(s) remaining.\n"));
|
|
@@ -16938,6 +16977,7 @@ static uint32_t unpack_tlv_core(tpAniSirGlobal pCtx,
|
|
|
FRAMES_DBG_BREAK();
|
|
|
goto MandatoryCheck;
|
|
|
}
|
|
|
+ framesntohs(pCtx, &len, pBufRemaining, (TLVs[0].sType == 2));
|
|
|
pBufRemaining += 2;
|
|
|
nBufRemaining -= 2;
|
|
|
}
|
|
@@ -17872,6 +17912,12 @@ uint32_t dot11f_get_packed_ie_measurement_request(tpAniSirGlobal pCtx,
|
|
|
*pnNeeded += 1;
|
|
|
status = get_packed_size_core(pCtx, (uint8_t *)pIe, pnNeeded, IES_measurement_requestftmrr);
|
|
|
break;
|
|
|
+ case 7:
|
|
|
+ *pnNeeded += 6;
|
|
|
+ *pnNeeded += 2;
|
|
|
+ *pnNeeded += 2;
|
|
|
+ *pnNeeded += 1;
|
|
|
+ break;
|
|
|
}
|
|
|
break;
|
|
|
}
|
|
@@ -26462,6 +26508,20 @@ uint32_t dot11f_pack_ie_measurement_request(tpAniSirGlobal pCtx,
|
|
|
FFS_measurement_requestftmrr,
|
|
|
IES_measurement_requestftmrr);
|
|
|
break;
|
|
|
+ case 7:
|
|
|
+ DOT11F_MEMCPY(pCtx, pBuf, pSrc->measurement_request.sta_stats.peer_mac_addr, 6);
|
|
|
+ *pnConsumed += 6;
|
|
|
+ pBuf += 6;
|
|
|
+ frameshtons(pCtx, pBuf, pSrc->measurement_request.sta_stats.randomization, 0);
|
|
|
+ *pnConsumed += 2;
|
|
|
+ pBuf += 2;
|
|
|
+ frameshtons(pCtx, pBuf, pSrc->measurement_request.sta_stats.meas_duration, 0);
|
|
|
+ *pnConsumed += 2;
|
|
|
+ pBuf += 2;
|
|
|
+ *pBuf = pSrc->measurement_request.sta_stats.group_identity;
|
|
|
+ *pnConsumed += 1;
|
|
|
+ /* fieldsEndFlag = 1 */
|
|
|
+ break;
|
|
|
}
|
|
|
break;
|
|
|
}
|