CVE-2026-53380 (GCVE-0-2026-53380)
Vulnerability from cvelistv5
Published
2026-07-19 10:02
Modified
2026-08-05 12:35
Summary
In the Linux kernel, the following vulnerability has been resolved: media: rzv2h-ivc: Fix concurrent buffer list access The list of buffers (`rzv2h_ivc::buffers.queue`) is protected by a spinlock (`rzv2h_ivc::buffers.lock`). However, in `rzv2h_ivc_transfer_buffer()`, which runs in a separate workqueue, the `list_del()` call is executed without holding the spinlock, which makes it possible for the list to be concurrently modified Fix that by removing a buffer from the list in the lock protected section. [assign ivc->buffers.curr in critical section as reported by Barnabas]
Impacted products
Vendor Product Version
Linux Linux Version: f0b3984d821b3a603cd8786dca6cc73d47c4521a
Version: f0b3984d821b3a603cd8786dca6cc73d47c4521a
Create a notification for this product.
Show details on NVD website


{
  "containers": {
    "cna": {
      "affected": [
        {
          "defaultStatus": "unaffected",
          "product": "Linux",
          "programFiles": [
            "drivers/media/platform/renesas/rzv2h-ivc/rzv2h-ivc-video.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "lessThan": "c746522bd3264132ab2e2382e96e19cdb8a6c1ba",
              "status": "affected",
              "version": "f0b3984d821b3a603cd8786dca6cc73d47c4521a",
              "versionType": "git"
            },
            {
              "lessThan": "72773ff1cdfaebc593f53b1719b2c1773ecf8c43",
              "status": "affected",
              "version": "f0b3984d821b3a603cd8786dca6cc73d47c4521a",
              "versionType": "git"
            }
          ]
        },
        {
          "defaultStatus": "affected",
          "product": "Linux",
          "programFiles": [
            "drivers/media/platform/renesas/rzv2h-ivc/rzv2h-ivc-video.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.0.*",
              "status": "unaffected",
              "version": "7.0.9",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "*",
              "status": "unaffected",
              "version": "7.1",
              "versionType": "original_commit_for_fix"
            }
          ]
        }
      ],
      "cpeApplicability": [
        {
          "nodes": [
            {
              "cpeMatch": [
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "7.0.9",
                  "versionStartIncluding": "6.19",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "7.1",
                  "versionStartIncluding": "6.19",
                  "vulnerable": true
                }
              ],
              "negate": false,
              "operator": "OR"
            }
          ]
        }
      ],
      "descriptions": [
        {
          "lang": "en",
          "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nmedia: rzv2h-ivc: Fix concurrent buffer list access\n\nThe list of buffers (`rzv2h_ivc::buffers.queue`) is protected by a\nspinlock (`rzv2h_ivc::buffers.lock`). However, in\n`rzv2h_ivc_transfer_buffer()`, which runs in a separate workqueue, the\n`list_del()` call is executed without holding the spinlock, which makes\nit possible for the list to be concurrently modified\n\nFix that by removing a buffer from the list in the lock protected section.\n\n[assign ivc-\u003ebuffers.curr in critical section as reported by Barnabas]"
        }
      ],
      "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 - The flaw is reached only through local V4L2 syscalls (open/ioctl/mmap) on the /dev/video* node registered by this platform driver; it is not triggered by remote network packets or physical bus insertion.\nAC:L - An attacker controls both sides of the race by issuing concurrent VIDIOC_QBUF and VIDIOC_STREAMOFF/STREAMON calls from multiple threads while streaming, reliably interleaving with the workqueue handler that performs the unlocked list_del().\nPR:L - Exploitation requires only a local account with access to the V4L2 video device node (typically membership in the video group or a dedicated vision-service account on RZ/V2H embedded deployments), not real root in the init namespace.\nUI:N - The attacker directly drives all required V4L2 ioctl operations to queue buffers and start/stop streaming; no independent victim action is needed.\nS:U - Successful exploitation corrupts kernel memory from a local userspace context to achieve kernel-level impact (crash, info leak, or privilege escalation), which remains within the same kernel security authority rather than crossing a VM or hypervisor boundary.\nC:H - Unsynchronized list_del()/list manipulation on the buffer queue can corrupt kernel linked-list pointers and create use-after-free conditions when buffers are concurrently completed or returned, enabling arbitrary kernel memory reads.\nI:H - Corrupted list_head structures and concurrent assignment of ivc-\u003ebuffers.curr outside the spinlock can yield exploitable heap corruption and arbitrary write primitives beyond a simple denial-of-service crash.\nA:H - The race can cause kernel list corruption, use-after-free, and BUG/list debugging failures that result in kernel oops/panic when streaming buffers on affected RZ/V2H systems."
            }
          ]
        }
      ],
      "providerMetadata": {
        "dateUpdated": "2026-08-05T12:35:20.740Z",
        "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
        "shortName": "Linux"
      },
      "references": [
        {
          "url": "https://git.kernel.org/stable/c/c746522bd3264132ab2e2382e96e19cdb8a6c1ba"
        },
        {
          "url": "https://git.kernel.org/stable/c/72773ff1cdfaebc593f53b1719b2c1773ecf8c43"
        }
      ],
      "title": "media: rzv2h-ivc: Fix concurrent buffer list access",
      "x_generator": {
        "engine": "bippy-1.2.0"
      }
    }
  },
  "cveMetadata": {
    "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
    "assignerShortName": "Linux",
    "cveId": "CVE-2026-53380",
    "datePublished": "2026-07-19T10:02:02.030Z",
    "dateReserved": "2026-06-09T07:44:35.401Z",
    "dateUpdated": "2026-08-05T12:35:20.740Z",
    "state": "PUBLISHED"
  },
  "dataType": "CVE_RECORD",
  "dataVersion": "5.2"
}


Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading…

Loading…

Loading…

Sightings

Author Source Type Date

Nomenclature

  • Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
  • Confirmed: The vulnerability is confirmed from an analyst perspective.
  • Published Proof of Concept: A public proof of concept is available for this vulnerability.
  • Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
  • Patched: This vulnerability was successfully patched by the user reporting the sighting.
  • Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
  • Not confirmed: The user expresses doubt about the veracity of the vulnerability.
  • Not patched: This vulnerability was not successfully patched by the user reporting the sighting.


Loading…

Loading…