CVE-2025-22044
MediumIn the Linux kernel, the following vulnerability has been resolved: acpi: nfit: fix narrowing conversion in acpi_nfit_ctl Syzkaller has reported a warning in to_nfit_bus_uuid(): "only secondary bus families can be translated". This warning is emited if the argument is equal to NVDIMM_BUS_FAMILY_NFIT == 0. Function acpi_nfit_ctl() first verifies that a user-provided value call_pkg->nd_family of type u64 is not equal to 0. Then the value is converted to int, and only after that is compared to NVDIMM_BUS_FAMILY_MAX. This can lead to passing an invalid argument to acpi_nfit_ctl(), if call_pkg->nd_family is non-zero, while the lower 32 bits are zero. Furthermore, it is best to return EINVAL immediately upon seeing the invalid user input. The WARNING is insufficient to prevent further undefined behavior based on other invalid user input. All checks of the input value should be applied to the original variable call_pkg->nd_family. [iweiny: update commit message]
CVSS 3.1 score
5.5
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Weakness type
CWE-704CVE-2025-22044 is a Incorrect Type Conversion or Cast vulnerability
What is Incorrect Type Conversion or Cast?
The product does not correctly convert an object, resource, or structure from one type to another. Learn more on MITRE CWE
Affected versions
Linux kernel versions
5.9
and later are affected. Fixed in
5.10.236,
5.15.180,
6.1.134,
6.6.87,
6.12.23,
6.13.11,
6.14.2,
6.15
and their respective stable series.
References
The following references provide additional information about CVE-2025-22044 including vendor advisories, patch commits, exploit details, and third-party analysis. Links are sourced from the NIST NVD database.
-
-
-
PatchKernel patch commithttps://git.kernel.org/stable/c/2ff0e408db36c21ed3fa5e3c1e0e687c82cf132f
-
PatchKernel patch commithttps://git.kernel.org/stable/c/4b65cff06a004ac54f6ea8886060f0d07b1ca055
-
PatchKernel patch commithttps://git.kernel.org/stable/c/73851cfceb00cc77d7a0851bc10f2263394c3e87
Frequently asked questions
-
What is CVE-2025-22044?
CVE-2025-22044 is a Medium severity Linux kernel vulnerability with a CVSS score of 5.5 out of 10 , classified as an Incorrect Type Conversion or Cast flaw (CWE-704) . It affects Linux kernel versions from 5.9 onward and has been patched in 5.10.236, 5.15.180, 6.1.134 and others. CVE-2025-22044 has not been confirmed as actively exploited and is not listed in the CISA KEV catalog.
-
What is the CVSS score for CVE-2025-22044?
CVE-2025-22044 has a CVSS score of 5.5 out of 10, rated Medium severity (CVSS 3.1). The vector string is
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H. -
Is there a patch available for CVE-2025-22044?
Yes — CVE-2025-22044 has been patched. Fixed versions include 5.10.236, 5.15.180, 6.1.134 and others. If you are running Linux kernel 5.9 or later up to the fix versions, apply the relevant patch for your kernel branch.
-
Is CVE-2025-22044 actively exploited?
No — CVE-2025-22044 has not been confirmed as actively exploited. It is not listed in the CISA Known Exploited Vulnerabilities (KEV) catalog.
-
What is Incorrect Type Conversion or Cast (CWE-704)?
The product does not correctly convert an object, resource, or structure from one type to another. View CWE-704 on MITRE CWE →