Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: wifi: iwlwifi: mvm: Fix a memory corruption issue A few lines above, space is kzalloc()'ed for: sizeof(struct iwl_nvm_data) + sizeof(struct ieee80211_channel) + sizeof(struct ieee80211_rate) 'mvm->nvm_data' is a 'struct iwl_nvm_data', so it is fine. At the end of this structure, there is the 'channels' flex array. Each element is of type 'struct ieee80211_channel'. So only 1 element is allocated in this array. When doing: mvm->nvm_data->bands[0].channels = mvm->nvm_data->channels; We point at the first element of the 'channels' flex array. So this is fine. However, when doing: mvm->nvm_data->bands[0].bitrates = (void *)((u8 *)mvm->nvm_data->channels + 1); because of the "(u8 *)" cast, we add only 1 to the address of the beginning of the flex array. It is likely that we want point at the 'struct ieee80211_rate' allocated just after. Remove the spurious casting so that the pointer arithmetic works as expected.
CVSS Score
HIGH
Affected Products
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux Kernel | >= 3.9, < 5.15.135 |
Related Weaknesses (CWE)
References
- https://git.kernel.org/stable/c/6b3223449c959a8be94a1f042288059e40fcccb0Patch
- https://git.kernel.org/stable/c/7c8faa31080342aec4903c9acb20caf82fcca1efPatch
- https://git.kernel.org/stable/c/8ba438ef3cacc4808a63ed0ce24d4f0942cfe55dPatch
- https://git.kernel.org/stable/c/f06cdd8d4ba5252986f51f80cc30263636397128Patch
- https://git.kernel.org/stable/c/6b3223449c959a8be94a1f042288059e40fcccb0Patch
- https://git.kernel.org/stable/c/7c8faa31080342aec4903c9acb20caf82fcca1efPatch
- https://git.kernel.org/stable/c/8ba438ef3cacc4808a63ed0ce24d4f0942cfe55dPatch
- https://git.kernel.org/stable/c/f06cdd8d4ba5252986f51f80cc30263636397128Patch
FAQ
What is CVE-2023-52531?
CVE-2023-52531 is a vulnerability with a CVSS score of 7.8 (HIGH). In the Linux kernel, the following vulnerability has been resolved: wifi: iwlwifi: mvm: Fix a memory corruption issue A few lines above, space is kzalloc()'ed for: sizeof(struct iwl_nvm_data) + si...
How severe is CVE-2023-52531?
CVE-2023-52531 has been rated HIGH with a CVSS base score of 7.8/10. Review the CVSS metrics above for detailed severity breakdown.
Is there a patch for CVE-2023-52531?
Check the references section above for vendor advisories and patch information. Affected products include: Linux Linux Kernel.