CVE-2024-53113: mm: fix NULL pointer dereference in alloc_pages_bulk_noprof
In the Linux kernel, the following vulnerability has been resolved:
mm: fix NULL pointer dereference in allocpagesbulknoprof
We triggered a NULL pointer dereference for ac.preferredzoneref->zone in allocpagesbulknoprof() when the task is migrated between cpusets.
When cpuset is enabled, in prepareallocpages(), ac->nodemask may be ¤t->memsallowed. when firstzoneszonelist() is called to find preferredzoneref, the ac->nodemask may be modified concurrently if the task is migrated between different cpusets. Assuming we have 2 NUMA Node, when traversing Node1 in ac->zonelist, the nodemask is 2, and when traversing Node2 in ac->zonelist, the nodemask is 1. As a result, the ac->preferredzoneref points to NULL zone.
In allocpagesbulknoprof(), foreachzonezonelistnodemask() finds a allowable zone and calls zonelistnodeidx(ac.preferredzoneref), leading to NULL pointer dereference.
allocpagesnoprof() fixes this issue by checking NULL pointer in commit ea57485af8f4 ("mm, pagealloc: fix check for NULL preferredzone") and commit df76cee6bbeb ("mm, pagealloc: remove redundant checks from alloc fastpath").
To fix it, check NULL pointer for preferredzoneref->zone.
Other sources
This CVE was automatically created from a reference found in an email or other text. If you are reading this, then this CVE entry is probably erroneous, since this text should be replaced by the official CVE description automatically.
— Launchpad
Affected Software
Remediation
Event History
Frequently Asked Questions
What is the severity of CVE-2024-53113?
CVE-2024-53113 is considered to have a low to moderate severity as it involves a NULL pointer dereference during task migration.
How do I fix CVE-2024-53113?
To fix CVE-2024-53113, upgrade to a patched version of the Linux kernel that addresses the NULL pointer dereference issue.
Which versions of the Linux kernel are affected by CVE-2024-53113?
CVE-2024-53113 affects various versions of the Linux kernel from 5.13 to 6.11.10 and specific release candidates of 6.12.
What impact does CVE-2024-53113 have on my system?
CVE-2024-53113 may cause system instability and potential crashes due to NULL pointer dereference errors.
Is there a workaround for CVE-2024-53113?
Currently, the recommended approach is to update the kernel, as no specific workaround has been identified for CVE-2024-53113.