|
@@ -1059,8 +1059,9 @@ hdd_send_ft_assoc_response(struct net_device *dev,
|
|
|
unsigned int len = 0;
|
|
|
u8 *assoc_rsp = NULL;
|
|
|
|
|
|
- if (roam_info->nAssocRspLength == 0) {
|
|
|
- hdd_debug("assoc rsp length is 0");
|
|
|
+ if (roam_info->nAssocRspLength < FT_ASSOC_RSP_IES_OFFSET) {
|
|
|
+ hdd_debug("Invalid assoc rsp length %d",
|
|
|
+ roam_info->nAssocRspLength);
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -1074,14 +1075,19 @@ hdd_send_ft_assoc_response(struct net_device *dev,
|
|
|
/* assoc_rsp needs to point to the IEs */
|
|
|
assoc_rsp += FT_ASSOC_RSP_IES_OFFSET;
|
|
|
|
|
|
+ /* Send the Assoc Resp, the supplicant needs this for initial Auth. */
|
|
|
+ len = roam_info->nAssocRspLength - FT_ASSOC_RSP_IES_OFFSET;
|
|
|
+ if (len > IW_GENERIC_IE_MAX) {
|
|
|
+ hdd_err("Invalid Assoc resp length %d", len);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ wrqu.data.length = len;
|
|
|
+
|
|
|
/* We need to send the IEs to the supplicant. */
|
|
|
buff = qdf_mem_malloc(IW_GENERIC_IE_MAX);
|
|
|
if (!buff)
|
|
|
return;
|
|
|
|
|
|
- /* Send the Assoc Resp, the supplicant needs this for initial Auth. */
|
|
|
- len = roam_info->nAssocRspLength - FT_ASSOC_RSP_IES_OFFSET;
|
|
|
- wrqu.data.length = len;
|
|
|
memcpy(buff, assoc_rsp, len);
|
|
|
wireless_send_event(dev, IWEVASSOCRESPIE, &wrqu, buff);
|
|
|
|