CVE-2026-80561
Last modified
CVE-2026-80561 is a critical-severity vulnerability rated 9.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: libceph: fix multiple unsafe decodes in decode_locker() decode_locker() in cls_lock_client.c contains three unsafe decode operations that allow a malicious or compromised OSD to trigger slab-out-of-bounds reads: 1. ceph_decode_copy() at the locker_id_t name field has no preceding bounds check.
Description
In the Linux kernel, the following vulnerability has been resolved: libceph: fix multiple unsafe decodes in decode_locker() decode_locker() in cls_lock_client.c contains three unsafe decode operations that allow a malicious or compromised OSD to trigger slab-out-of-bounds reads: 1. ceph_decode_copy() at the locker_id_t name field has no preceding bounds check. With p == end after ceph_start_decoding() accepts struct_len=0, this reads sizeof(ceph_entity_name) = 9 bytes past the validated buffer boundary. 2. *p += sizeof(struct ceph_timespec) after the locker_info_t header is an unchecked pointer advance. A malicious OSD can position p past end, causing all subsequent _safe checks to pass against a bogus boundary. 3. len = ceph_decode_32(p) has no preceding bounds check, and the immediately following *p += len is uncapped. A malicious OSD can send len=0xffffffff, advancing p gigabytes past end and escaping the decode window entirely. Fix all three by replacing bare operations with their safe variants: ceph_decode_copy -> ceph_decode_copy_safe *p += sizeof(...) -> ceph_decode_skip_n ceph_decode_32(p) -> ceph_decode_32_safe *p += len -> ceph_decode_skip_n A new label is added to return -EINVAL on any bounds violation. -EINVAL is appropriate here: the data received from the OSD is structurally malformed, which is an invalid argument to the decode contract regardless of whether the caller or the wire is at fault. Attacker model: a malicious or compromised OSD in a multi-tenant Ceph deployment can trigger this against any kernel client that issues the lock.get_info class method (e.g. during RBD exclusive lock acquisition) without any further privileges beyond OSD session establishment. [ idryomov: use ceph_decode_skip_string() to skip description, trim changelog ]
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= d4ed4a530562881cc5225050e42d96034f405aae, < 1ed45c8d96498725eb54f740172f9068d8673906; >= d4ed4a530562881cc5225050e42d96034f405aae, < 6265103e78f0ee7e2518de9cf938b94bee9700a0; >= d4ed4a530562881cc5225050e42d96034f405aae, < 3c3716dc06a34e4ca7f743f5fcfa07fbc5a11070; >= d4ed4a530562881cc5225050e42d96034f405aae, < fa4aa86fff0c56799c2e3f51a88879053285f4a9; >= d4ed4a530562881cc5225050e42d96034f405aae, < dbfd83f722a78446ec18a476ef7a38e52240b50a; >= d4ed4a530562881cc5225050e42d96034f405aae, < d1bba38574d095f191557d397d9633f08cd966b1; >= d4ed4a530562881cc5225050e42d96034f405aae, < 51c8d238fe7236de627ab1a1433694552a904136; >= d4ed4a530562881cc5225050e42d96034f405aae, < 437b6551cfcc235eea1d735a874f9d421f555e17 |
| Linux | Linux | 4.9 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-80561?
How severe is CVE-2026-80561?
How do I fix CVE-2026-80561?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-80556In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-80557In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-80558In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-80559In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-8056IBM Langflow OSS 1.0.0 through 1.10.0 allows authenticated u…8.8
- CVE-2026-80560In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-80562In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80565In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-80568In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-80569In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-80570In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-80572In the Linux kernel, the following vulnerability has been re…7.8
Are you affected by CVE-2026-80561?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
