GCVE Workshop - 22 September 2026 (14:00-18:00), Luxembourg Before The Vulnopticon Conference - Registration

CVE-2026-89584 (GCVE-0-2026-89584)

Vulnerability from cvelistv5 – Published: 2026-09-11 19:44 – Updated: 2026-09-13 06:31
VLAI
Title
block: validate user space vectors during extraction
Summary
In the Linux kernel, the following vulnerability has been resolved: block: validate user space vectors during extraction The bio-based drivers don't necessarily check the alignment split, and stacking block drivers don't always handle a misalignment detected after submitting the bio. Validate user vectors against the device's dma_alignment as the bio is built from the iov_iter, rejecting misaligned early with -EINVAL.
Impacted products
Vendor Product Version CPE status
Linux Linux Affected: 5ff3f74e145adc79b49668adb8de276446acf6be , < d44a97a3b1c00cc571245124e23e5ceb0a0225a0 (git)
Affected: 5ff3f74e145adc79b49668adb8de276446acf6be , < 14b007e178811db72fbb1ebb3535160db6ec1e6a (git)
guessed Create a notification for this product.
Linux Linux Affected: 6.18
Unaffected: 0 , < 6.18 (semver)
Unaffected: 7.2.4 , ≤ 7.2.* (semver)
Unaffected: 7.3-rc1 , ≤ * (original_commit_for_fix)
guessed Create a notification for this product.
Show details on NVD website

{
  "containers": {
    "cna": {
      "affected": [
        {
          "defaultStatus": "unaffected",
          "product": "Linux",
          "programFiles": [
            "block/bio.c",
            "block/blk-map.c",
            "block/fops.c",
            "fs/iomap/direct-io.c",
            "include/linux/bio.h",
            "include/linux/uio.h",
            "lib/iov_iter.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "lessThan": "d44a97a3b1c00cc571245124e23e5ceb0a0225a0",
              "status": "affected",
              "version": "5ff3f74e145adc79b49668adb8de276446acf6be",
              "versionType": "git"
            },
            {
              "lessThan": "14b007e178811db72fbb1ebb3535160db6ec1e6a",
              "status": "affected",
              "version": "5ff3f74e145adc79b49668adb8de276446acf6be",
              "versionType": "git"
            }
          ]
        },
        {
          "defaultStatus": "affected",
          "product": "Linux",
          "programFiles": [
            "block/bio.c",
            "block/blk-map.c",
            "block/fops.c",
            "fs/iomap/direct-io.c",
            "include/linux/bio.h",
            "include/linux/uio.h",
            "lib/iov_iter.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "status": "affected",
              "version": "6.18"
            },
            {
              "lessThan": "6.18",
              "status": "unaffected",
              "version": "0",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "7.2.*",
              "status": "unaffected",
              "version": "7.2.4",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "*",
              "status": "unaffected",
              "version": "7.3-rc1",
              "versionType": "original_commit_for_fix"
            }
          ]
        }
      ],
      "cpeApplicability": [
        {
          "nodes": [
            {
              "cpeMatch": [
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "7.2.4",
                  "versionStartIncluding": "6.18",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "7.3-rc1",
                  "versionStartIncluding": "6.18",
                  "vulnerable": true
                }
              ],
              "negate": false,
              "operator": "OR"
            }
          ]
        }
      ],
      "descriptions": [
        {
          "lang": "en",
          "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nblock: validate user space vectors during extraction\n\nThe bio-based drivers don\u0027t necessarily check the alignment split, and\nstacking block drivers don\u0027t always handle a misalignment detected after\nsubmitting the bio. Validate user vectors against the device\u0027s\ndma_alignment as the bio is built from the iov_iter, rejecting\nmisaligned early with -EINVAL."
        }
      ],
      "metrics": [
        {
          "cvssV3_1": {
            "baseScore": 7.8,
            "baseSeverity": "HIGH",
            "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
            "version": "3.1"
          },
          "scenarios": [
            {
              "lang": "en",
              "value": "AV:L - Missing dma_alignment validation is in bio_iov_iter_get_pages()/iov_iter_extract_bvecs(), reached only via local O_DIRECT (preadv/pwritev/io_uring) through blkdev_direct_IO() and iomap_dio_bio_iter_one() on ext4/XFS/btrfs/f2fs or raw block devices; ksmbd/nfsd do not feed attacker-controlled user iovecs into this path.\nAC:L - After the simplified DIO checks, only file offset and total length must be logical-block aligned; the attacker fully controls each iovec address and length and can submit misaligned buffers or io_uring registered buffers deterministically, with no race or attacker-uncontrolled layout required.\nPR:L - Any unprivileged user with read or write access to a regular file on an iomap DIO filesystem, or to a block device they can open, can issue O_DIRECT with no capability; stacked dm/md/LUKS setups are a deployment precondition, not a privilege the attacker must obtain.\nUI:N - The attacker opens their own file or device and issues the misaligned O_DIRECT I/O themselves; no separate victim must mount media, confirm a prompt, or otherwise participate.\nS:U - Impact stays inside the host kernel block layer and stacked devices (invalid DMA, driver mishandling, array denial of service) and does not cross a VM, hypervisor, IOMMU, or sandbox boundary.\nC:H - Bio-based drivers (dm, md) skip __bio_split_to_limits() on normal I/O, so attacker-controlled bvec offsets reach DMA and crypto SG lists such as dm-crypt sg_set_page(). Unaligned or page-crossing DMA, including non-coherent cache-line effects and hardware address rounding, can read adjacent memory.\nI:H - The same unvalidated user vectors are programmed into device DMA and driver scatterlists; misaligned writes, hardware address masking, and cache-line tearing on non-coherent DMA can corrupt adjacent memory or neighboring disk blocks, and drivers that assume aligned bvecs can perform out-of-bounds writes.\nA:H - Misaligned bios are known to degrade md/raid1 and dm-mirror arrays when lower devices return BLK_STS_INVAL, hang dm-io on byte-granular fragments, and can oops or hang bio-based drivers and DMA engines that reject unaligned segments, all kernel-level availability failures."
            }
          ]
        }
      ],
      "providerMetadata": {
        "dateUpdated": "2026-09-13T06:31:17.636Z",
        "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
        "shortName": "Linux"
      },
      "references": [
        {
          "url": "https://git.kernel.org/stable/c/d44a97a3b1c00cc571245124e23e5ceb0a0225a0"
        },
        {
          "url": "https://git.kernel.org/stable/c/14b007e178811db72fbb1ebb3535160db6ec1e6a"
        }
      ],
      "title": "block: validate user space vectors during extraction",
      "x_generator": {
        "engine": "bippy-1.2.0"
      }
    }
  },
  "cveMetadata": {
    "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
    "assignerShortName": "Linux",
    "cveId": "CVE-2026-89584",
    "datePublished": "2026-09-11T19:44:49.838Z",
    "dateReserved": "2026-09-11T19:38:34.729Z",
    "dateUpdated": "2026-09-13T06:31:17.636Z",
    "state": "PUBLISHED"
  },
  "dataType": "CVE_RECORD",
  "dataVersion": "5.2",
  "vulnerability-lookup:meta": {
    "epss": {
      "cve": "CVE-2026-89584",
      "date": "2026-09-16",
      "epss": "0.00154",
      "percentile": "0.04899"
    },
    "nvd": "{\"cve\":{\"id\":\"CVE-2026-89584\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2026-09-11T20:19:42.797\",\"lastModified\":\"2026-09-13T07:17:24.127\",\"vulnStatus\":\"Received\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nblock: validate user space vectors during extraction\\n\\nThe bio-based drivers don\u0027t necessarily check the alignment split, and\\nstacking block drivers don\u0027t always handle a misalignment detected after\\nsubmitting the bio. Validate user vectors against the device\u0027s\\ndma_alignment as the bio is built from the iov_iter, rejecting\\nmisaligned early with -EINVAL.\"}],\"affected\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"affectedData\":[{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"unaffected\",\"programFiles\":[\"block/bio.c\",\"block/blk-map.c\",\"block/fops.c\",\"fs/iomap/direct-io.c\",\"include/linux/bio.h\",\"include/linux/uio.h\",\"lib/iov_iter.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"5ff3f74e145adc79b49668adb8de276446acf6be\",\"lessThan\":\"d44a97a3b1c00cc571245124e23e5ceb0a0225a0\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"5ff3f74e145adc79b49668adb8de276446acf6be\",\"lessThan\":\"14b007e178811db72fbb1ebb3535160db6ec1e6a\",\"versionType\":\"git\",\"status\":\"affected\"}]},{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"affected\",\"programFiles\":[\"block/bio.c\",\"block/blk-map.c\",\"block/fops.c\",\"fs/iomap/direct-io.c\",\"include/linux/bio.h\",\"include/linux/uio.h\",\"lib/iov_iter.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"6.18\",\"status\":\"affected\"},{\"version\":\"0\",\"lessThan\":\"6.18\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"7.2.4\",\"lessThanOrEqual\":\"7.2.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"7.3-rc1\",\"lessThanOrEqual\":\"*\",\"versionType\":\"original_commit_for_fix\",\"status\":\"unaffected\"}]}]}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H\",\"baseScore\":7.8,\"baseSeverity\":\"HIGH\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":1.8,\"impactScore\":5.9}]},\"references\":[{\"url\":\"https://git.kernel.org/stable/c/14b007e178811db72fbb1ebb3535160db6ec1e6a\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/d44a97a3b1c00cc571245124e23e5ceb0a0225a0\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}]}}",
    "redhat_vex": {
      "aggregate_severity": "Moderate",
      "current_release_date": "2026-09-13T06:58:21+00:00",
      "cve": "CVE-2026-89584",
      "id": "CVE-2026-89584",
      "initial_release_date": "2026-09-11T19:44:49.838000+00:00",
      "product_status:known_affected": "2",
      "source": "Red Hat CSAF VEX",
      "status": "final",
      "title": "kernel: Linux Kernel: Denial of Service due to improper user space vector validation in block layer",
      "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-89584.json",
      "version": "3"
    },
    "suse_vex": {
      "aggregate_severity": "moderate",
      "current_release_date": "2026-09-16T00:01:51Z",
      "cve": "CVE-2026-89584",
      "id": "CVE-2026-89584",
      "initial_release_date": "2026-09-12T16:25:36Z",
      "product_status:known_affected": "12",
      "product_status:known_not_affected": "341",
      "source": "SUSE CSAF VEX",
      "status": "interim",
      "title": "SUSE CVE CVE-2026-89584",
      "url": "https://ftp.suse.com/pub/projects/security/csaf-vex/cve-2026-89584.json",
      "version": "4"
    }
  }
}



Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading…

Loading…

Loading…

Forecast uses a logistic model when the trend is rising, or an exponential decay model when the trend is falling. Fitted via linearized least squares.

Sightings

Author Source Type Date Other

Nomenclature

  • Seen: The vulnerability was mentioned, discussed, or observed by the user.
  • Confirmed: The vulnerability has been validated from an analyst's perspective.
  • Published Proof of Concept: A public proof of concept is available for this vulnerability.
  • Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
  • Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
  • Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
  • Not confirmed: The user expressed doubt about the validity of the vulnerability.
  • Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.

Loading…

Detection rules are retrieved from Rulezet.

Loading…

Loading…

Related by attack behaviour

Vulnerabilities whose description is nearest to this one in the vector space of the CIRCL/vulnerability-attack-technique-biencoder model. This is a similarity search over the bi-encoder space (plain cosine), not a classification, and it has no measured accuracy.


Loading…