Description
In the Linux kernel, the following vulnerability has been resolved:

dm-io: clone the source bio instead of copying its biovec

For DM_IO_BIO requests, do_region() built each destination bio by walking
the source bio's biovec and re-adding the pages one at a time, tracking
the remaining transfer in sectors. The vector lengths are byte granular
and need not be sector aligned (e.g. a misaligned O_DIRECT buffer split
across pages), so the sector-based accounting could lose a sub-sector
fragment: to_sector() truncated the remainder and the outer loop spun
forever submitting empty bios, hanging the I/O.

There is no need to rebuild the biovec at all. The destination reads into
(or writes from) exactly the same pages as the source bio, so the bio can
simply clone the source's biovec with bio_alloc_clone() and remap it to
the target device. The clone inherits the source's iterator and alignment,
and the block layer splits it to the target's limits on submission, so the
whole region maps to a single cloned bio with no manual page copying or
sector accounting.

This removes the per-page copy path (and its open-coded bvec dpages
helpers) for bio-backed I/O and fixes the hang on misaligned direct I/O to
a dm-mirror device. Page-list, vma and kmem sources keep the existing copy
path.
Published: 2026-09-11
Score: 4.1 Medium
EPSS: < 1% Very Low
KEV: No
Impact: Denial of Service (I/O hang)
Action: Patch
AI Analysis

Impact

The vulnerability in the Linux kernel’s dm‑io subsystem occurs when the kernel builds destination bio objects for DM_IO_BIO requests. Instead of re‑existing logic, the implementation walks the source bio’s biovec, copies pages, and performs sector‑based accounting. Misaligned O_DIRECT buffers can cause the sector accounting to truncate remnants, leading to an infinite loop of empty bios that hang I/O operations, resulting in a denial‑of‑service condition affecting dm‑mirror devices.

Affected Systems

Affected systems are deployments of the Linux kernel running the device-mapper module, particularly those using dm‑mirror targets. The bug is tied to the dm‑io component of the kernel; no specific kernel release versions are enumerated in the advisory, so all affected kernels that include the flawed implementation are potentially vulnerable.

Risk and Exploitability

The CVSS score of 4.1 indicates low severity, and the EPSS score is approximately 0.2% (well under 1%), signifying a very low probability of exploitation. This vulnerability is not listed in CISA’s KEV catalog. The flaw is triggered by misaligned O_DIRECT I/O requests to a dm‑mirror device; an attacker must be able to direct such I/O, which typically requires local or privileged access. When triggered, the kernel enters an infinite loop of empty BIO submissions, hanging all I/O operations against the affected device and causing an availability disruption.

Generated by OpenCVE AI on September 13, 2026 at 06:33 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Apply the latest Linux kernel that contains the dm‑io bio clone fix, or apply the patch from the kernel not yet available.
  • Ensure that any application performing direct I/O to a dm‑mirror target uses buffers aligned to the sector size (512 bytes) or otherwise avoid misaligned O_DIRECT operations until the flaw is corrected.
  • Monitor the system for repeated empty BIO submissions or I/O stalls, and consider temporarily disabling or removing dm‑mirror targets that are not critical until the kernel fix is applied.

Generated by OpenCVE AI on September 13, 2026 at 06:33 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Sat, 12 Sep 2026 00:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-835
References
Metrics threat_severity

None

cvssV3_1

{'score': 4.1, 'vector': 'CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:N/I:N/A:H'}

threat_severity

Moderate


Fri, 11 Sep 2026 23:45:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: dm-io: clone the source bio instead of copying its biovec For DM_IO_BIO requests, do_region() built each destination bio by walking the source bio's biovec and re-adding the pages one at a time, tracking the remaining transfer in sectors. The vector lengths are byte granular and need not be sector aligned (e.g. a misaligned O_DIRECT buffer split across pages), so the sector-based accounting could lose a sub-sector fragment: to_sector() truncated the remainder and the outer loop spun forever submitting empty bios, hanging the I/O. There is no need to rebuild the biovec at all. The destination reads into (or writes from) exactly the same pages as the source bio, so the bio can simply clone the source's biovec with bio_alloc_clone() and remap it to the target device. The clone inherits the source's iterator and alignment, and the block layer splits it to the target's limits on submission, so the whole region maps to a single cloned bio with no manual page copying or sector accounting. This removes the per-page copy path (and its open-coded bvec dpages helpers) for bio-backed I/O and fixes the hang on misaligned direct I/O to a dm-mirror device. Page-list, vma and kmem sources keep the existing copy path.
Title dm-io: clone the source bio instead of copying its biovec
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-09-11T19:44:45.364Z

Reserved: 2026-09-11T19:38:34.728Z

Link: CVE-2026-89578

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-09-11T20:19:42.000

Modified: 2026-09-11T20:19:42.000

Link: CVE-2026-89578

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-09-11T19:44:45Z

Links: CVE-2026-89578 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-09-13T06:45:18Z

Weaknesses
  • CWE-835

    Loop with Unreachable Exit Condition ('Infinite Loop')