CVE-2026-80527

HIGHPre-NVD 7.57.5
EchelonGraph scoreHIGH confidence

Score 7.5 from GitHub Security Advisory (severity: HIGH) published 2026-08-27. a secondary CVSS source baseline 7.5; sources differ by 0.0.

Triggered by: GitHub Security Advisory CVSS
Sources: epss, ghsa, secondary
Trending — 5 sources updated this week
7.5EG
EchelonGraph verdictPlan a fixSerious severity, but no confirmed exploitation yet.
  • High severity, but no confirmed exploitation yet
CISA-KEV: Not listedEPSS PROB: 1%CVSS: 7.5Exploit: None knownExposed: 0

No vendor fix yet — apply a workaround or compensating control (WAF / firewall / segmentation) and watch for a patch.

In the Linux kernel, the following vulnerability has been resolved:

ceph: fix hanging __ceph_get_caps() with stale mds_wanted

A reader can hang forever in __ceph_get_caps() when the client no longer holds FILE_RD, but local cap state still says that the capability is already wanted (via mds_wanted).

One way to trigger this is through MDS cap revocation. If another client performs a conflicting operation, the MDS can revoke FILE_RD from the reader; the next read then has to reacquire FILE_RD. If the cap update that should request FILE_RD never reaches the MDS after cap->mds_wanted was raised, the reader is left holding only non-file caps while local mds_wanted still includes the file read caps.

In that state, try_get_cap_refs() sees need <= mds_wanted and returns 0, so __ceph_get_caps() just waits on i_cap_wq. If the cap update that was supposed to request FILE_RD never reaches the MDS after cap->mds_wanted was raised, no further request is sent and the waiter can sleep indefinitely until unrelated cap traffic happens to wake it up.

The ordering issue is that cap->mds_wanted is updated in __prep_cap() before the CEPH_MSG_CLIENT_CAPS message is actually queued for send. That makes one field serve two different meanings at once: what this client wants, and what the client believes the MDS already knows it wants.

A proper fix would be to split those states and track whether a cap update is actually in flight or has been observed by the MDS. However, simply moving the cap->mds_wanted assignment later would not be sufficient: queueing the message in the messenger does not guarantee that the MDS processed that specific wanted set, and reconnect or message loss can still invalidate that assumption. Fixing that properly would require a larger rework of the cap state machine.

To allow simpler backports to stable kernels, this patch implements a simpler workaround:

  • stop waiting forever in __ceph_get_caps(); after a bounded wait,
fall back to the renew path
  • make ceph_renew_caps() issue a synchronous OPEN request whenever
the inode still does not actually hold the wanted caps, instead of only calling ceph_check_caps()

The extra issued-vs-wanted check in ceph_renew_caps() is necessary because the previous test only checked whether the inode still had any real caps at all. That is not enough after revocation: the client can still hold something like pLs and yet be missing FILE_RD completely. In that case, falling back to ceph_check_caps() is not sufficient, because it still trusts cap->mds_wanted and may resend nothing. By requiring (issued & wanted) == wanted before taking the asynchronous path, the code only uses ceph_check_caps() when the wanted caps are already actually issued. Otherwise, it sends the synchronous OPEN renew.

This preserves the existing asynchronous fast path when the wanted caps are already issued, avoids changing cap-state semantics, and fixes the hang by guaranteeing that a stalled waiter eventually retries through a path that does not rely on the stale mds_wanted` state.

[ idryomov: move CEPH_GET_CAPS_WAIT_TIMEOUT from libceph.h to mds_client.h, formatting ]

CVSS v3
7.5
EG Score
7.5(high)
EG Risk
38(Track)
EG Risk 38/100SSVC: Track

EG Risk is EchelonGraph's 0–100 priority score: it fuses intrinsic severity with real-world exploitation and automatability so you can rank equal-severity CVEs and fix the most dangerous first. Higher = act sooner. Distinct from the 0–10 EG Score (severity).

How it’s computed
Severity75% × 45%
Exploitation1% × 40%
Automatability30% × 15%
Action: Routine — remediate on your standard cadence.
EPSS PROB
1%
EPSS %ILE
41%
KEV
Not listed

Published

August 26, 2026

Last Modified

August 27, 2026

Advisory Details (8)

Auto-updated Aug 27, 2026
No patch confirmed yet.
generic

ceph: fix hanging __ceph_get_caps() with stale mds_wanted - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/fcce1b3be6d286aa80831e730289f4c062053ae6
generic

ceph: fix hanging __ceph_get_caps() with stale mds_wanted - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/e05c315b4da0c16ea800ee4b2cb6c617f586d1b5
generic

ceph: fix hanging __ceph_get_caps() with stale mds_wanted - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/b5661524c5a45085a866864ca9b8ae2513dfd67a
generic

ceph: fix hanging __ceph_get_caps() with stale mds_wanted - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/a3bc6b3e9ef3f5f5cb85a902a30a090c7931127c
generic

ceph: fix hanging __ceph_get_caps() with stale mds_wanted - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/9e55fe24c548ad3163903eb58bb002d28d32a630
generic

ceph: fix hanging __ceph_get_caps() with stale mds_wanted - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/5fedf279a1ea369d39c8b06dd4547cdc576065d0
generic

ceph: fix hanging __ceph_get_caps() with stale mds_wanted - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/5e84bc6f67e19fdd192d8b215de728acbfc12572
generic

ceph: fix hanging __ceph_get_caps() with stale mds_wanted - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/50958bb928bad3bdba9e5d1b7ff4bbadcf6951e6

Vendor Advisories for CVE-2026-80527(1)

These vendors published their own advisory mentioning this CVE — often with vendor-specific remediation steps + affected product lists not in NVD.

Data Freshness Timeline

(refreshed 17× in last 7d / 17× in last 30d)

Each row is a source pipeline that fetched or updated this CVE on that date, with what changed. For example, "NVD update" means NVD published or revised its analysis for this CVE; "MITRE cvelistV5" means we ingested or refreshed it from the CNA feed. Most recent first.

  1. 2026-08-30 06:14 UTCEG score recompute
  2. 2026-08-30 06:14 UTCGHSA enrichment
  3. 2026-08-30 01:22 UTCEPSS rescore
  4. 2026-08-29 18:17 UTCGHSA enrichment
  5. 2026-08-29 06:20 UTCEG score recompute
  6. 2026-08-29 06:20 UTCGHSA enrichment
  7. 2026-08-28 21:42 UTCEPSS rescore
  8. 2026-08-28 18:19 UTCGHSA enrichment
  9. 2026-08-28 06:19 UTCGHSA enrichment
  10. 2026-08-27 18:18 UTCEG score recompute
  11. 2026-08-27 18:18 UTCGHSA enrichment
  12. 2026-08-27 14:25 UTCEPSS rescore
  13. 2026-08-27 06:21 UTCEG score recompute 7.50
  14. 2026-08-27 06:11 UTCMITRE cvelistV5CVSS v3 → 7.5 · severity → HIGH
  15. 2026-08-26 15:43 UTCNVD update
  16. 2026-08-26 14:43 UTCEG score recompute
  17. 2026-08-26 14:41 UTCMITRE cvelistV5first tracked

Frequently asked(5)

What is CVE-2026-80527?
CVE-2026-80527 is a high vulnerability published on August 26, 2026. In the Linux kernel, the following vulnerability has been resolved: ceph: fix hanging cephgetcaps() with stale mds_wanted A reader can hang forever in cephgetcaps() when the client no longer holds FILE_RD, but local cap state still says that the capability is already wanted (via mds_wanted). One…
When was CVE-2026-80527 disclosed?
CVE-2026-80527 was first published in the National Vulnerability Database on August 26, 2026, with the most recent update on August 27, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-80527 actively exploited?
CVE-2026-80527 is not currently on CISA's Known Exploited Vulnerabilities catalog. FIRST EPSS estimates a 1% probability of exploitation in the next 30 days, which ranks it in the top 58.8% of all scored CVEs.
What is the CVSS score of CVE-2026-80527?
CVE-2026-80527 has a CVSS v3 base score of 7.5 (NVD).
How do I remediate CVE-2026-80527?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-80527, EchelonGraph cross-links them in the Vendor Advisories panel below — those typically contain the canonical remediation steps, fixed version numbers, and any vendor-specific mitigations.

Dependency Blast Radius

Explore the affected products and dependency analysis for CVE-2026-80527

Explore →

Is Your Infrastructure Affected by CVE-2026-80527?

EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.