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

cifs: call pagecache_isize_extended() in cifs_setsize() when extending

cifs_setsize() calls truncate_pagecache() but skips
pagecache_isize_extended() on extension. truncate_setsize() shows
the correct pattern:

i_size_write(inode, newsize);
if (newsize > oldsize)
pagecache_isize_extended(inode, oldsize, newsize);
truncate_pagecache(inode, newsize);

pagecache_isize_extended() zeroes the tail of the page straddling old
EOF. Without it, dirty bytes in that region can be written back to
the server, exposing stale data in the newly extended range.
Published: 2026-09-11
Score: 6.5 Medium
EPSS: < 1% Very Low
KEV: No
Impact: Information Disclosure via Stale Data Leakage
Action: Immediate Patch
AI Analysis

Impact

The Linux kernel omits a required call to pagecache_isize_extended() when extending a file, causing the tail page that crosses the previous end‑of‑file to remain uncleared. This flaw is an instance of CWE‑201: Improper Restriction of Operations within the Bounds of a Resource, as the kernel permits dirty data beyond the logical file size to be written back to the server. Consequently, stale bytes that were previously written can be flushed to the CIFS share, allowing an attacker who can read the file on the server to recover sensitive information that is no longer part of the logical file contents.

Affected Systems

The vulnerability affects any Linux system running a kernel version prior to the patch that adds the missing pagecache_isize_extended() call when CIFS is enabled. Systems that use CIFS mounts for shared storage and do not provide that code path are at riskSS score of 6.5 indicates moderate severity, and the EPSS score is < 1%, indicating a low exploitation probability. The vulnerability is not listed in the CISA KEV catalog. The likely attack to a CIFS share that causes a file size extension, after which the stale data may be flushed to the server. Exploitation requires that the attacker can write to the share and that dirty pages containing relevant data are present. No publicly known exploits or active exploitation data exist, so the probability of immediate exploitation is low, but the potential for information leakage warrants preemptive action.

Risk and Exploitability

The CVSS base score of 6.5 indicates a medium severity flaw. The EPSS value of less than 1% signals a very low probability of exploitation in the wild, and there are no publicly known exploit references or active attacks reported in the CVE references. The vulnerability is not listed in the CISA KEV catalog, suggesting it has not become a prioritized target. An attacker with the ability to write to a CIFS‑mounted file can deliberately increase the file size; during this operation the kernel may flush pages that contain stale data beyond the logical file end to the server if the protective call to pagecache_isize_extended() is omitted. If the attacker also has a mechanism to read those stale bytes from the server side (for example, by accessing the file directly on the server), they could recover sensitive information that should no longer be present. However, this requires both write privileges on the share and the existence of dirty pages holding the stale data, making the threat moderate but not trivial. Consequently, systems that rely on CIFS mounts and run kernels prior to the patch should consider promptly applying the kernel update or otherwise restricting write access to mitigate the risk.

Generated by OpenCVE AI on September 13, 2026 at 05:25 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade the Linux kernel to a release that applies the patch adding the missing pagecache_isize_extended() call during file size extensions.
  • Verify that all CIFS mounts use the updated kernel and do not employ legacy mount options that could bypass the fix. (Check mount configuration and kernel version compatibility.)
  • If a kernel upgrade cannot be performed immediately, restrict write privileges to CIFS shares to trusted users and consider clearing or flushing dirty the chance of stale data leakage.

Generated by OpenCVE AI on September 13, 2026 at 05:25 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

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

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

None

cvssV3_1

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

threat_severity

Moderate


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

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: cifs: call pagecache_isize_extended() in cifs_setsize() when extending cifs_setsize() calls truncate_pagecache() but skips pagecache_isize_extended() on extension. truncate_setsize() shows the correct pattern: i_size_write(inode, newsize); if (newsize > oldsize) pagecache_isize_extended(inode, oldsize, newsize); truncate_pagecache(inode, newsize); pagecache_isize_extended() zeroes the tail of the page straddling old EOF. Without it, dirty bytes in that region can be written back to the server, exposing stale data in the newly extended range.
Title cifs: call pagecache_isize_extended() in cifs_setsize() when extending
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-11T19:45:34.778Z

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

Link: CVE-2026-89642

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

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

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

Link: CVE-2026-89642

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-09-11T19:45:34Z

Links: CVE-2026-89642 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-09-13T05:30:06Z

Weaknesses
  • CWE-201

    Insertion of Sensitive Information Into Sent Data