CVE-2026-89649 PUBLISHED

ceph: bound xattr value length in __build_xattrs()

Assigner: Linux
Reserved: 11.09.2026 Published: 11.09.2026 Updated: 13.09.2026

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

ceph: bound xattr value length in __build_xattrs()

__build_xattrs() decodes the MDS-supplied xattr blob one attribute at a time. For each attribute it reads a 32-bit name length, advances past the name bytes, reads a 32-bit value length, records the value pointer, and advances past the value bytes. The two length fields are read with ceph_decode_32_safe(), but the value bytes themselves are advanced over with a bare "p += len" and no ceph_decode_need() check that "len" bytes remain in the blob.

For every attribute except the last, the next iteration's ceph_decode_32_safe() on the following name length implicitly verifies that the previous value did not run past the blob end. The final attribute has no successor, so its decoded value length is never checked against the blob bounds. A malicious or compromised metadata server can set the last attribute's value length larger than the bytes actually present in the blob.

The blob is a dedicated kvmalloc() allocation sized to the wire length (ceph_buffer_new() in ceph_fill_inode()). __set_xattr() records the oversized length in xattr->val_len verbatim, and a later getxattr(2) runs memcpy(value, xattr->val, xattr->val_len) into a user-supplied buffer, copying bytes past the end of the allocation back to user space.

Impact: a malicious metadata server discloses adjacent kernel heap bytes to a local user via getxattr(2) on a CephFS file. Add the missing ceph_decode_need() so an out-of-bounds value length on the final attribute fails the decode and returns -EIO instead of being stored.

Metrics

CVSS Vector: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H
CVSS Score: 9.1

AV:N - The MDS-supplied xattr blob is delivered over the kernel Ceph messenger TCP session in inode replies (parse_reply_info_in → ceph_fill_inode) and CEPH_MSG_CLIENT_CAPS (handle_cap_grant), so a malicious or compromised MDS reaches __build_xattrs() with network protocol data. AC:L - The attacker fully controls the last attribute's 32-bit value length in the xattr blob; setting it larger than the remaining kvmalloc'd wire bytes reliably records an oversized val_len with no race, special memory layout, or rare kernel config. PR:N - Exploitation requires only the ability to send crafted MDS replies or cap grants as the remote cluster peer on an established session; no local account, capability, or user-namespace privilege on the victim host is needed. UI:N - Once CephFS is mounted, MDS replies and cap grants are processed automatically, and ceph_get_acl()/__ceph_getxattr() run on ordinary inode permission checks and xattr queries without a further victim mount or click at exploit time. S:U - The out-of-bounds heap read, userspace disclosure, and possible oops remain inside the client kernel's own security authority and do not cross a VM, IOMMU, or other distinct trust boundary. C:H - __set_xattr() stores the oversized length and getxattr memcpy()s that many bytes from the undersized blob into a user buffer (up to XATTR_SIZE_MAX), disclosing adjacent kernel heap including pointers; the in-kernel ACL path can copy still larger extents. I:N - The bug is an out-of-bounds read into a destination buffer sized from the claimed length (VFS kvzalloc or ceph_get_acl kzalloc); it does not provide an attacker-selected write into kernel memory. A:H - An oversized value length that extends into unmapped kernel addresses faults the in-kernel memcpy in __ceph_getxattr() or ceph_get_acl(), causing a kernel oops or panic the MDS can trigger repeatedly.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from 355da1eb7a1f91c276b991764e951bbcd8047599 to 38be2f3c41ecaba58bb92dc16603e09ba9fd64f1 (excl.)
  • affected from 355da1eb7a1f91c276b991764e951bbcd8047599 to 1dd356310b1660215f9a3626580bf8b363ef981e (excl.)
  • affected from 355da1eb7a1f91c276b991764e951bbcd8047599 to b12b3320c81fd72ab36388fb2445fec9c3038f10 (excl.)
  • affected from 355da1eb7a1f91c276b991764e951bbcd8047599 to 68d541754d6cd3bb98d1fd8314f57e5eb533557d (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 2.6.34 is affected
  • unaffected from 0 to 2.6.34 (excl.)
  • unaffected from 6.12.109 to 6.12.* (incl.)
  • unaffected from 6.18.50 to 6.18.* (incl.)
  • unaffected from 7.2.4 to 7.2.* (incl.)
  • unaffected from 7.3-rc1 to * (incl.)

References