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

net: ethernet: oa_tc6: Improve the error recovery

When oversubscribed traffic causes lot of buffer overflow errors,
probably due to loss of data chunks, driver fails to find a
data chunk with end_valid bit set, before it runs out of sk buffer
space. As a result, assert is seen during skb_put.

Now, check is made if skb buffer has enough tailroom for the
incoming data before accepting. If there is no room, current
frame is abandoned and it will start looking for a data chunk
with start_valid bit, that is a new frame.

SK buffer allocation error is considered as recoverable error.

rx_buf_overflow flag is too specific and no longer the only
condition this flag is used for. Therefore it is renamed as
wait_until_start_valid. This is more appropriate as this flag
is used to look for the next data chunk with SV bit set, after
failures like buffer overflow, buffer allocation failure, skb pointer
validity besides buffer overflow error.

Not writing to status0 if it reads 0.
Published: 2026-09-25
Score: n/a
EPSS: n/a
KEV: No
Impact: Denial of Service
Action: Patch
AI Analysis

Impact

In the Linux kernel Ethernet driver, oversubscribed traffic could lead to a buffer overflow that triggered an assertion during skb_put, potentially causing a kernel panic and disrupting network service. The patch adds a tail‑room check before allocating the sk buffer, abandons the frame when insufficient room is available, and treats buffer allocation errors as recoverable. This change mitigates the risk of a local denial‑of‑service by preventing the driver from crashing, addressing a classic buffer‑overflow weakness (CWE‑120).

Affected Systems

The affected product is the Linux kernel, specifically the Ethernet driver driver for oa_tc6. No specific kernel version is listed; the fix applies to all kernel releases that contain the patch in the referenced commit history.

Risk and Exploitability

The CVSS score is not provided, and the EPSS score is unavailable, so a quantitative risk assessment is not possible. The vulnerability was not listed in the CISA KEV catalog, indicating that no mass exploitation has been observed. The fix reduces the likelihood of a kernel crash, but if an attacker can trigger the oversubscribed traffic scenario locally, the attacker might still be able to cause a denial‑of‑service until the patch is applied. The precise attack vector and likelihood remain unquantified.

Generated by OpenCVE AI on September 25, 2026 at 11:48 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update the Linux kernel to a version that includes the oa_tc6 error‑recovery fix by applying the latest security updates from your distribution.
  • If custom kernel builds are used, manually apply the patch changes referenced in the commit logs to the driver source before compiling the kernel.
  • After updating, confirm that the oa_tc6 driver uses the new wait_until_start_valid flag and that the tail‑room check is active; monitor system logs for any remaining skb_put assertions.

Generated by OpenCVE AI on September 25, 2026 at 11:48 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Fri, 25 Sep 2026 12:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-120

Fri, 25 Sep 2026 10:45:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: net: ethernet: oa_tc6: Improve the error recovery When oversubscribed traffic causes lot of buffer overflow errors, probably due to loss of data chunks, driver fails to find a data chunk with end_valid bit set, before it runs out of sk buffer space. As a result, assert is seen during skb_put. Now, check is made if skb buffer has enough tailroom for the incoming data before accepting. If there is no room, current frame is abandoned and it will start looking for a data chunk with start_valid bit, that is a new frame. SK buffer allocation error is considered as recoverable error. rx_buf_overflow flag is too specific and no longer the only condition this flag is used for. Therefore it is renamed as wait_until_start_valid. This is more appropriate as this flag is used to look for the next data chunk with SV bit set, after failures like buffer overflow, buffer allocation failure, skb pointer validity besides buffer overflow error. Not writing to status0 if it reads 0.
Title net: ethernet: oa_tc6: Improve the error recovery
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-25T10:35:55.142Z

Reserved: 2026-09-25T10:25:14.316Z

Link: CVE-2026-98105

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-09-25T11:17:40.987

Modified: 2026-09-25T11:17:40.987

Link: CVE-2026-98105

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-09-25T12:15:15Z

Weaknesses
  • CWE-120

    Buffer Copy without Checking Size of Input ('Classic Buffer Overflow')