PatchSiren

PatchSiren cyber security CVE debrief

CVE-2026-64073 Linux CVE debrief

A use-after-free vulnerability was found in the Linux kernel's irq_work_single() function on PREEMPT_RT. After clearing the BUSY flag, the function still accesses the @work structure, which can be freed by another CPU, leading to a use-after-free error. The issue is resolved by wrapping run_irq_workd() in guard(rcu)() to ensure the entire irq_work_single() execution is within an RCU read-side critical section, and adding synchronize_rcu() in irq_work_sync() to prevent premature frees.

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

Who should care

Linux kernel users and administrators, especially those using PREEMPT_RT, should be aware of this vulnerability and apply the necessary patches to prevent potential use-after-free errors.

Technical summary

The Linux kernel's irq_work_single() function on PREEMPT_RT is vulnerable to a use-after-free error. The function clears the BUSY flag using atomic_cmpxchg() but still accesses the @work structure for irq_work_is_hard() and rcuwait_wake_up(). If another CPU observes BUSY==0 and frees the work before these accesses complete, a use-after-free occurs. The fix involves wrapping run_irq_workd() in guard(rcu)() to ensure the entire irq_work_single() execution is within an RCU read-side critical section. Additionally, synchronize_rcu() is added in irq_work_sync() after rcuwait_wait_event() to ensure the caller waits for the RCU grace period before returning, preventing premature frees.

Defensive priority

High priority for Linux kernel maintainers and users, especially those using PREEMPT_RT, to apply the necessary patches and prevent potential use-after-free errors.

Recommended defensive actions

  • Apply the official patch to update the Linux kernel's irq_work_single() function
  • Review and update Linux kernel configurations to ensure PREEMPT_RT is properly handled
  • Monitor Linux kernel updates and patches for future vulnerabilities
  • Confirm whether affected product deployments exist in managed environments and assign an owner for follow-up
  • 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

Evidence notes

The CVE record was published on 2026-07-19T16:17:47.893Z and has not been modified since then. The NVD entry is currently Received. Linux kernel users should verify their deployments for potential exposure and review official advisories for affected scope and severity. Evidence is limited to public CVE and NVD details.

Sources and references

Verified primary and authoritative sources

  • CVE-2026-64073 CVE Program record

    Publisher, destination, and source semantics verified

    URL: https://www.cve.org/CVERecord?id=CVE-2026-64073

    CVE Program - Official CVE Program record with source-provided CVE metadata.

  • CVE-2026-64073 NVD vulnerability detail

    Publisher, destination, and source semantics verified

    URL: https://nvd.nist.gov/vuln/detail/CVE-2026-64073

    NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.

Supplemental references

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/18c0456ea2615b1a743a6db739c74411c3b42bc6

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/2dc79362302922cb18f35e262712b5e58de65442

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/684a78183c54c23e70d1cba320f7fc184604210b

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/81b582784518196eff1050212a046bc29d3a05dd

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/91840be8f710370607f949a627e070896faeddb8

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/eef4f71b46a9929ac33e968538c9dd5d96a02460

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

Methodology and review provenance

AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.