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

CVE-2026-74328 (GCVE-0-2026-74328)

Vulnerability from cvelistv5 – Published: 2026-08-15 05:58 – Updated: 2026-08-17 05:45
VLAI
Title
iommufd: Destroy the pages content after detaching from dmabuf
Summary
In the Linux kernel, the following vulnerability has been resolved: iommufd: Destroy the pages content after detaching from dmabuf Sashiko points out this has gotten out of order, the mutex could still be in use through the dmabuf invalidation callbacks. Don't destroy any of the pages content until the dmabuf is fully detached.
Impacted products
Vendor Product Version CPE status
Linux Linux Affected: 71db84a092c399f434976d0522e848e9803cd51a , < 0507fcedbdcc87281ef8639c045fc9980363bbb6 (git)
Affected: 71db84a092c399f434976d0522e848e9803cd51a , < f2d70dbd3dcefa8e3c380beff9c31f5f033a4221 (git)
guessed Create a notification for this product.
Linux Linux Affected: 6.19
Unaffected: 0 , < 6.19 (semver)
Unaffected: 7.1.5 , ≤ 7.1.* (semver)
Unaffected: 7.2 , ≤ * (original_commit_for_fix)
guessed Create a notification for this product.
Show details on NVD website

{
  "containers": {
    "cna": {
      "affected": [
        {
          "defaultStatus": "unaffected",
          "product": "Linux",
          "programFiles": [
            "drivers/iommu/iommufd/pages.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "lessThan": "0507fcedbdcc87281ef8639c045fc9980363bbb6",
              "status": "affected",
              "version": "71db84a092c399f434976d0522e848e9803cd51a",
              "versionType": "git"
            },
            {
              "lessThan": "f2d70dbd3dcefa8e3c380beff9c31f5f033a4221",
              "status": "affected",
              "version": "71db84a092c399f434976d0522e848e9803cd51a",
              "versionType": "git"
            }
          ]
        },
        {
          "defaultStatus": "affected",
          "product": "Linux",
          "programFiles": [
            "drivers/iommu/iommufd/pages.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "status": "affected",
              "version": "6.19"
            },
            {
              "lessThan": "6.19",
              "status": "unaffected",
              "version": "0",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "7.1.*",
              "status": "unaffected",
              "version": "7.1.5",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "*",
              "status": "unaffected",
              "version": "7.2",
              "versionType": "original_commit_for_fix"
            }
          ]
        }
      ],
      "cpeApplicability": [
        {
          "nodes": [
            {
              "cpeMatch": [
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "7.1.5",
                  "versionStartIncluding": "6.19",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "7.2",
                  "versionStartIncluding": "6.19",
                  "vulnerable": true
                }
              ],
              "negate": false,
              "operator": "OR"
            }
          ]
        }
      ],
      "descriptions": [
        {
          "lang": "en",
          "value": "In the Linux kernel, the following vulnerability has been resolved:\n\niommufd: Destroy the pages content after detaching from dmabuf\n\nSashiko points out this has gotten out of order, the mutex could still be\nin use through the dmabuf invalidation callbacks. Don\u0027t destroy any of the\npages content until the dmabuf is fully detached."
        }
      ],
      "metrics": [
        {
          "cvssV3_1": {
            "baseScore": 8.8,
            "baseSeverity": "HIGH",
            "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H",
            "version": "3.1"
          },
          "scenarios": [
            {
              "lang": "en",
              "value": "AV:L - Reached via local ioctl on /dev/iommu or /dev/vfio/vfio: open iommufd, map a dma-buf with IOMMU_IOAS_MAP_FILE to create iopt_pages, then unmap/destroy to hit iopt_release_pages(). No network packet path exists.\nAC:L - Attacker controls both sides of the race: one thread issues IOMMU_IOAS_UNMAP/IOMMU_DESTROY while another triggers dma_buf_invalidate_mappings() (e.g. VFIO PCI dmabuf revoke or IOMMU_TEST_OP_DMABUF_REVOKE), reliably hitting mutex_destroy before detach.\nPR:L - Exploitation needs only local access to iommufd and a compatible dma-buf fd (VFIO PCI exporter or iommufd selftest), not init-namespace root; cloud GPU/VFIO tenants with device group membership qualify as PR:L.\nUI:N - No victim interaction is required; the attacker programmatically creates the IOAS dmabuf mapping and orchestrates concurrent teardown and invalidation through their own file descriptors and ioctl calls.\nS:C - The flaw corrupts dmabuf revocation teardown while IOMMU domains may still hold mappings; iopt_revoke_notify unmaps tracked domains and a failed/partial revoke can leave stale IOMMU PTEs, breaking DMA isolation across the IOMMU security boundary.\nC:H - iopt_release_pages() calls mutex_destroy() and later kfree(pages) while dma_buf attachments remain and invalidate_mappings (iopt_revoke_notify) can still lock pages-\u003emutex, causing kernel heap UAF with arbitrary read primitives.\nI:H - Use-after-free of the embedded mutex and entire iopt_pages structure during concurrent invalidate_mappings enables heap corruption and, via incomplete IOMMU unmapping on revoke, can redirect device DMA to attacker-influenced physical pages.\nA:H - Concurrent access to a destroyed mutex or freed iopt_pages during dmabuf invalidation or detach provokes KASAN-reported UAF, kernel oops/panic, and deterministic DoS on affected GPU/VFIO+iommufd workloads."
            }
          ]
        }
      ],
      "providerMetadata": {
        "dateUpdated": "2026-08-17T05:45:55.733Z",
        "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
        "shortName": "Linux"
      },
      "references": [
        {
          "url": "https://git.kernel.org/stable/c/0507fcedbdcc87281ef8639c045fc9980363bbb6"
        },
        {
          "url": "https://git.kernel.org/stable/c/f2d70dbd3dcefa8e3c380beff9c31f5f033a4221"
        }
      ],
      "title": "iommufd: Destroy the pages content after detaching from dmabuf",
      "x_generator": {
        "engine": "bippy-1.2.0"
      }
    }
  },
  "cveMetadata": {
    "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
    "assignerShortName": "Linux",
    "cveId": "CVE-2026-74328",
    "datePublished": "2026-08-15T05:58:22.371Z",
    "dateReserved": "2026-08-15T05:44:03.884Z",
    "dateUpdated": "2026-08-17T05:45:55.733Z",
    "state": "PUBLISHED"
  },
  "dataType": "CVE_RECORD",
  "dataVersion": "5.2",
  "vulnerability-lookup:meta": {
    "epss": {
      "cve": "CVE-2026-74328",
      "date": "2026-09-05",
      "epss": "0.0012",
      "percentile": "0.02085"
    },
    "nvd": "{\"cve\":{\"id\":\"CVE-2026-74328\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2026-08-15T06:22:33.520\",\"lastModified\":\"2026-08-17T06:19:27.213\",\"vulnStatus\":\"Received\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\niommufd: Destroy the pages content after detaching from dmabuf\\n\\nSashiko points out this has gotten out of order, the mutex could still be\\nin use through the dmabuf invalidation callbacks. Don\u0027t destroy any of the\\npages content until the dmabuf is fully detached.\"}],\"affected\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"affectedData\":[{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"unaffected\",\"programFiles\":[\"drivers/iommu/iommufd/pages.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"71db84a092c399f434976d0522e848e9803cd51a\",\"lessThan\":\"0507fcedbdcc87281ef8639c045fc9980363bbb6\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"71db84a092c399f434976d0522e848e9803cd51a\",\"lessThan\":\"f2d70dbd3dcefa8e3c380beff9c31f5f033a4221\",\"versionType\":\"git\",\"status\":\"affected\"}]},{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"affected\",\"programFiles\":[\"drivers/iommu/iommufd/pages.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"6.19\",\"status\":\"affected\"},{\"version\":\"0\",\"lessThan\":\"6.19\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"7.1.5\",\"lessThanOrEqual\":\"7.1.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"7.2\",\"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:C/C:H/I:H/A:H\",\"baseScore\":8.8,\"baseSeverity\":\"HIGH\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"NONE\",\"scope\":\"CHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":2.0,\"impactScore\":6.0}]},\"references\":[{\"url\":\"https://git.kernel.org/stable/c/0507fcedbdcc87281ef8639c045fc9980363bbb6\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/f2d70dbd3dcefa8e3c380beff9c31f5f033a4221\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}]}}",
    "redhat_vex": {
      "aggregate_severity": "Moderate",
      "current_release_date": "2026-09-01T10:37:55+00:00",
      "cve": "CVE-2026-74328",
      "id": "CVE-2026-74328",
      "initial_release_date": "2026-08-15T00:00:00+00:00",
      "product_status:known_affected": "76",
      "product_status:known_not_affected": "198",
      "source": "Red Hat CSAF VEX",
      "status": "final",
      "title": "kernel: iommufd: Destroy the pages content after detaching from dmabuf",
      "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-74328.json",
      "version": "3"
    }
  }
}



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…

Loading…