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

SUNRPC: xdr_buf_trim: clamp buf->len to avoid underflow

xdr_buf_trim() trims `len` bytes from the tail of an xdr_buf by
walking the tail, pages, and head iovecs. Each per-section step
uses min_t() so it never removes more bytes than that section
holds, but the final accounting at the fix_len label subtracts the
total bytes actually consumed from buf->len without any clamp:

fix_len:
buf->len -= (len - trim);

When the caller has set buf->len to a value smaller than the sum
of the iov_lens, (len - trim) can exceed buf->len and the unsigned
subtraction wraps to near UINT_MAX. gss_krb5_unwrap_v2() reaches
xdr_buf_trim() in exactly that state:

buf->head[0].iov_len -= GSS_KRB5_TOK_HDR_LEN + headskip;
buf->len = len - (GSS_KRB5_TOK_HDR_LEN + headskip);
xdr_buf_trim(buf, ec + GSS_KRB5_TOK_HDR_LEN + tailskip);

buf->len is a small wire-derived value while the iov_lens are at
page scale, so the per-section loops legitimately consume far more
bytes than buf->len records. The wrapped buf->len then propagates
as the authoritative stream bound into every downstream XDR
decoder.

Fix by clamping the decrement so buf->len bottoms out at zero:

buf->len -= min_t(unsigned int, buf->len, len - trim);

On the normal path where the iov_lens sum to buf->len, (len - trim)
is always <= buf->len and the result is identical to before. No
callers change behavior outside the underflow case.
Published: 2026-09-11
Score: 9.8 Critical
EPSS: < 1% Very Low
KEV: No
Impact: Remote Code Execution
Action: Patch Immediately
AI Analysis

Impact

The vulnerability arises from the xdr_buf_trim() function in the Linux kernel's SUNRPC component. The function incorrectly subtracts a length value from the buffer length field without clamping the result. When the caller pre‑sets of its iovecs, the subtraction can wrap, producing an inflated buffer length that propagates to downstream XDR decoders. This corruption can lead to out‑ a classic integer underflow that may enable arbitrary code execution or system compromise.

Affected Systems

The flaw resides in the core Linux kernel, specifically the SUNRPC subsystem. Any kernel build that contains the affected xdr_buf_trim() code path is potentially impacted. While no explicit kernel version range is provided, the advisory references commit identifiers that patch the vulnerability; systems running older kernels before those commits are vulnerable. All Linux distributions that ship original kernel sources without the fix are at risk.

Risk and Exploitability

The CVSS score of 7.4 classifies this flaw as high severity. The EPSS score of < 1% indicates that the likelihood of exploitation is low. The flaw is not listed in the CISA KEV catalog. The underflow in xdr_buf_trim() can cause buffer length corruption which, if triggered via malicious SUNRPC traffic or crafted Kerberos tokens reaching the vulnerable routine, could enable an attacker to perform out‑of‑bounds reads or writes and potentially achieve arbitrary code execution is invoked during RPC traffic. No exploitation prerequisites are identified beyond the ability to send crafted requests to an affected kernel.

Generated by OpenCVE AI on September 13, 2026 at 02:47 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade the Linux kernel to a version that includes the patch commit 3f491306dcb673ff5e78e1044ba450c58978774e or apply the change to the running kernel source, rebuild, and reboot.
  • Restrict or disable RPC services by configuring rpcbind to listen only on trusted interfaces untrusted hosts.
  • If an immediate upgrade is not possible, consider temporarily disabling the SUNRPC RPC traffic using network segmentation or a dedicated firewall appliance.

Generated by OpenCVE AI on September 13, 2026 at 02:47 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Sun, 13 Sep 2026 06:45:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 7.4, 'vector': 'CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:H'}

cvssV3_1

{'score': 9.8, 'vector': 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H'}


Sat, 12 Sep 2026 12:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-191
References
Metrics threat_severity

None

cvssV3_1

{'score': 7.4, 'vector': 'CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:H'}

threat_severity

Important


Sat, 12 Sep 2026 11:00:00 +0000

Type Values Removed Values Added
Weaknesses CWE-190

Fri, 11 Sep 2026 23:45:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: SUNRPC: xdr_buf_trim: clamp buf->len to avoid underflow xdr_buf_trim() trims `len` bytes from the tail of an xdr_buf by walking the tail, pages, and head iovecs. Each per-section step uses min_t() so it never removes more bytes than that section holds, but the final accounting at the fix_len label subtracts the total bytes actually consumed from buf->len without any clamp: fix_len: buf->len -= (len - trim); When the caller has set buf->len to a value smaller than the sum of the iov_lens, (len - trim) can exceed buf->len and the unsigned subtraction wraps to near UINT_MAX. gss_krb5_unwrap_v2() reaches xdr_buf_trim() in exactly that state: buf->head[0].iov_len -= GSS_KRB5_TOK_HDR_LEN + headskip; buf->len = len - (GSS_KRB5_TOK_HDR_LEN + headskip); xdr_buf_trim(buf, ec + GSS_KRB5_TOK_HDR_LEN + tailskip); buf->len is a small wire-derived value while the iov_lens are at page scale, so the per-section loops legitimately consume far more bytes than buf->len records. The wrapped buf->len then propagates as the authoritative stream bound into every downstream XDR decoder. Fix by clamping the decrement so buf->len bottoms out at zero: buf->len -= min_t(unsigned int, buf->len, len - trim); On the normal path where the iov_lens sum to buf->len, (len - trim) is always <= buf->len and the result is identical to before. No callers change behavior outside the underflow case.
Title SUNRPC: xdr_buf_trim: clamp buf->len to avoid underflow
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-09-13T06:30:51.667Z

Reserved: 2026-09-11T19:38:34.723Z

Link: CVE-2026-89551

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-09-11T20:19:38.640

Modified: 2026-09-11T20:19:38.640

Link: CVE-2026-89551

cve-icon Redhat

Severity : Important

Publid Date: 2026-09-11T19:44:25Z

Links: CVE-2026-89551 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-09-13T03:00:11Z

Weaknesses
  • CWE-190

    Integer Overflow or Wraparound

  • CWE-191

    Integer Underflow (Wrap or Wraparound)