PatchSiren

PatchSiren cyber security CVE debrief

CVE-2026-63802 Linux CVE debrief

A use-after-free vulnerability was found in the Linux kernel's blk-cgroup subsystem. When multiple blkgs in the same blkcg are released concurrently, a use-after-free can occur. The race happens when one blkg's __blkcg_rstat_flush() removes another blkg's iostat entries via llist_del_all(). The second blkg sees an empty list and proceeds to free itself while the first is still iterating over its entries. The fix moves the flush from __blkg_release() (RCU callback) to blkg_release() (before call_rcu). This ensures the RCU grace period waits for any concurrent flush's rcu_read_lock() section to complete before freeing.

Vendor
Linux
Product
Unknown
CVSS
Unknown
CISA KEV
Not listed in stored evidence
Original CVE published
2026-07-19
Original CVE updated
2026-07-19
Advisory published
2026-07-19
Advisory updated
2026-07-19

Who should care

Linux kernel users, administrators, and security teams should be aware of this vulnerability and take steps to mitigate it. Affected deployments should be identified, and owners assigned for follow-up. Reviewing official advisories and CVE records can help validate affected scope, severity, and vendor guidance.

Technical summary

The vulnerability is caused by a use-after-free in the blk-cgroup subsystem of the Linux kernel. When multiple blkgs in the same blkcg are released concurrently, a use-after-free can occur. The fix moves the flush from __blkg_release() (RCU callback) to blkg_release() (before call_rcu), ensuring the RCU grace period waits for any concurrent flush's rcu_read_lock() section to complete before freeing. This change prevents the second blkg from freeing itself while the first is still iterating over its entries.

Defensive priority

High

Recommended defensive actions

  • Apply the patch to fix the vulnerability
  • Monitor for concurrent releases of blkgs in the same blkcg
  • Use a Linux kernel version that includes the fix
  • Review compensating controls for exposed systems while remediation is scheduled and verified
  • Check relevant monitoring, detection, and logs for exposed assets that need extra review
  • Track exceptions, retest remediated assets, and close the item only after evidence is documented
  • Confirm whether affected product deployments exist in managed environments and assign an owner for follow-up

Evidence notes

The vulnerability was resolved by moving the flush from __blkg_release() (RCU callback) to blkg_release() (before call_rcu). This change ensures that the RCU grace period waits for any concurrent flush's rcu_read_lock() section to complete before freeing. Linux kernel users should verify their deployments and review official advisories for affected scope and severity. Evidence limits suggest that multiple blkgs in the same blkcg can be released concurrently, leading to a use-after-free vulnerability.

Official resources

AI-assisted PatchSiren debrief based on the supplied source corpus. The CVE record was published on 2026-07-19T12:16:52.847Z and has not been modified since then.