CVE-2026-80557
Last modified
CVE-2026-80557 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 OOB read in decode_watchers() via missing bounds check ceph_start_decoding() validates that struct_len bytes remain in the buffer after the encoding header, but accepts struct_len=0 as valid: ceph_decode_need(p, end, 0, bad) always passes. When a malicious or compromised OSD sends an obj_list_watch_response_t reply with struct_len=0, ceph_start_decoding() returns success with p == end, leaving zero bytes guaranteed for subsequent reads. The immediately following ceph_decode_32(p) in decode_watchers() has no preceding bounds check.
Description
In the Linux kernel, the following vulnerability has been resolved: libceph: fix OOB read in decode_watchers() via missing bounds check ceph_start_decoding() validates that struct_len bytes remain in the buffer after the encoding header, but accepts struct_len=0 as valid: ceph_decode_need(p, end, 0, bad) always passes. When a malicious or compromised OSD sends an obj_list_watch_response_t reply with struct_len=0, ceph_start_decoding() returns success with p == end, leaving zero bytes guaranteed for subsequent reads. The immediately following ceph_decode_32(p) in decode_watchers() has no preceding bounds check. With p == end this is a 4-byte read past the validated buffer boundary. The garbage value is then passed directly to kzalloc_objs() as the watcher count. The sibling function decode_watcher() already uses the safe variants (ceph_decode_copy_safe, ceph_decode_64_safe, ceph_decode_skip_32) after its own ceph_start_decoding() call. decode_watchers() is the only site that uses the bare variant, confirming an oversight. Fix by replacing ceph_decode_32(p) with ceph_decode_32_safe(p, end, *num_watchers, bad), consistent with the established pattern. Attacker model: a malicious or compromised OSD in a multi-tenant Ceph deployment (e.g. cloud) can trigger this against any kernel client that calls CEPH_OSD_OP_LIST_WATCHERS, without any further privileges beyond OSD session establishment. [ idryomov: trim changelog ]
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= a4ed38d7a180f184a6e7aedd09db9ca4b1e6a71c, < 85479b7d65b4ebcb07fbbe57230976793974ab4a; >= a4ed38d7a180f184a6e7aedd09db9ca4b1e6a71c, < 1c824e7c75bb4adf19553dd4ea944a5d83096be8; >= a4ed38d7a180f184a6e7aedd09db9ca4b1e6a71c, < f161be39201eb5f9b1f58fb8f90b8a9cd3931eb6; >= a4ed38d7a180f184a6e7aedd09db9ca4b1e6a71c, < eab3eeb68bfc639d74f27256f05546af5c4f787d; >= a4ed38d7a180f184a6e7aedd09db9ca4b1e6a71c, < c59219a6b62d74936963983e5815524c3de8dd79; >= a4ed38d7a180f184a6e7aedd09db9ca4b1e6a71c, < cb8246e5846dbbe34930903a90c7a90dd8e5910b; >= a4ed38d7a180f184a6e7aedd09db9ca4b1e6a71c, < 7130d94846dadbb97b6b7f4d78a3a7bba6e3daa1; >= a4ed38d7a180f184a6e7aedd09db9ca4b1e6a71c, < 00ead17c7de137a692edee59f2772e6af687e8eb |
| Linux | Linux | 4.9 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-80557?
How severe is CVE-2026-80557?
How do I fix CVE-2026-80557?
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-80551In the Linux kernel, the following vulnerability has been re…9.3
- CVE-2026-80552In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-80553In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-80554In the Linux kernel, the following vulnerability has been re…9.3
- CVE-2026-80555In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-80556In the Linux kernel, the following vulnerability has been re…7.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-80561In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-80562In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-80557?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
