CVE-2024-36010: igb: Fix string truncation warnings in igb_set_fw_version
In the Linux kernel, the following vulnerability has been resolved:
igb: Fix string truncation warnings in igbsetfwversion
Commit 1978d3ead82c ("intel: fix string truncation warnings") fixes '-Wformat-truncation=' warnings in igbmain.c by using kasprintf.
drivers/net/ethernet/intel/igb/igbmain.c:3092:53: warning:‘%d’ directive output may be truncated writing between 1 and 5 bytes into a region of size between 1 and 13 [-Wformat-truncation=] 3092 | "%d.%d, 0x%08x, %d.%d.%d", | ^~ drivers/net/ethernet/intel/igb/igbmain.c:3092:34: note:directive argument in the range [0, 65535] 3092 | "%d.%d, 0x%08x, %d.%d.%d", | ^~~~~~~~~~~~~~~~~~~~~~~~~ drivers/net/ethernet/intel/igb/igbmain.c:3092:34: note:directive argument in the range [0, 65535] drivers/net/ethernet/intel/igb/igbmain.c:3090:25: note:‘snprintf’ output between 23 and 43 bytes into a destination of size 32
kasprintf() returns a pointer to dynamically allocated memory which can be NULL upon failure.
Fix this warning by using a larger space for adapter->fwversion, and then fall back and continue to use snprintf.
Other sources
In the Linux kernel, the following vulnerability has been resolved:
igb: Fix string truncation warnings in igbsetfwversion
The Linux kernel CVE team has assigned CVE-2024-36010 to this issue.
Upstream advisory: https://lore.kernel.org/linux-cve-announce/2024052237-CVE-2024-36010-c98b@gregkh/T
— Red Hat
Linux Kernel is vulnerable to a denial of service, caused by string truncation warnings in igbsetfwversion. A local authenticated attacker could exploit this vulnerability to cause a denial of service.
— IBM
Affected Software
Remediation
Event History
Frequently Asked Questions
What is the severity of CVE-2024-36010?
CVE-2024-36010 has a medium severity level due to potential string truncation issues in the Linux kernel.
How do I fix CVE-2024-36010?
To fix CVE-2024-36010, you should update the kernel package to version 6.8 or later.
Which systems are affected by CVE-2024-36010?
CVE-2024-36010 affects the Red Hat kernel versions prior to 6.8.
What is the nature of the vulnerability in CVE-2024-36010?
CVE-2024-36010 involves string truncation warnings that could lead to unexpected behavior in the igb driver.
Is there a patch available for CVE-2024-36010?
Yes, the issues related to CVE-2024-36010 have been resolved in the recent kernel updates.