CVE Catalog

CVE-2026-89922

HighCVSS 7.8
Published: Updated: Translated: NVD NIST

Summary

In the Linux kernel, KVM for s390 has an issue with not holding srcu when importing watchpoint data. __import_wp_info() reads guest memory, which requires holding kvm->srcu to avoid a race with memslot updates, potentially leading to use-after-free.

Risk Assessment

Concurrent memslot updates can lead to memory safety violations, potentially enabling privilege escalation or system crash.

Recommendation

Apply a kernel patch that ensures srcu is held for the full import of watchpoint data.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: KVM: s390: Take srcu when importing watchpoint data __import_wp_info() backs up the original guest memory contents of a watchpoint with read_guest_abs(), which is kvm_read_guest() and therefore resolves the memslot via __kvm_memslots(). That requires kvm->srcu (or kvm->slots_lock) to be held, otherwise a concurrent memslot update can free the memslots array under us once its SRCU grace period has elapsed. As this is not fast path, following lock ordering (mutex first, then srcu) take the big hammer and hold the srcu for the full import.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS