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

net/smc: unregister the connection before draining the rx tasklet

smc_conn_free() calls smc_ism_unset_conn() only while the link group is
still on its device list, and never sets conn->killed.
smc_lgr_terminate_sched() unlinks the group immediately and defers killing
its connections to a work item, so a connection freed in that window keeps
its smcd->conn[] slot with both gates in smcd_handle_irq() open, and the
device can re-arm the receive tasklet after tasklet_kill() has returned. On
the DMB-nocopy path the ghost send buffer is freed right after that drain,
so the re-armed tasklet dereferences it.

Unregister unconditionally and drain before the detach at both teardown
sites, mirroring rmb_desc, which smc_buf_unuse() releases after the drain.
Clear conn->sndbuf_desc before freeing it as well, so a reader that samples
the pointer cannot get one that is already freed.
Published: 2026-09-11
Score: 7.8 High
EPSS: < 1% Very Low
KEV: No
Impact: Potential kernel crash or memory corruption via use‑after‑free in the smc driver
Action: Apply patch
AI Analysis

Impact

The smc driver contains a race condition where a connection is freed while its receive tasklet remains armed. This results in a dangling reference to a freed ghost send buffer, leading to a use‑after‑free that can corrupt kernel memory and cause a crash or arbitrary code execution. The weakness is an error handled incorrectly scenario (CWE‑825). privilege escalation if an attacker can trigger the fault.

Affected Systems

All Linux kernel implementations, as the vulnerability is tied to the generic smc driver and no specific kernel version or patch level was provided. Users of any distribution that ship the affected smc driver should treat this as a broad kernel issue.

Risk and Exploitability

The assigned CVSS score of 7.0 indicates a moderately high severity. No EPSS score is available, and the vulnerability is not listed in the CISA KEV catalog, suggesting the exploitation probability is uncertain but could be high once a suitable trigger is discovered. The likely attack vector is inferred to be local or remote code execution through crafted network traffic to the smc interface, as the flaw involves kernel tasklet handling of incoming packets. Exploitation would require the attacker to trigger the race condition before the tasklet is drained, which could be achieved by sending specifically timed packets to the smc connection, though the exact method is not disclosed in the available data.

Generated by OpenCVE AI on September 12, 2026 at 02:05 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update the Linux kernel to a version that includes the fixed smc driver code. This is the sole definitive protection against the use‑after‑free flaw.
  • If a kernel update is not immediately possible, disable the smc device or the services that instantiate smc connections to eliminate the attack surface until the patch is applied.
  • Continuously monitor kernel logs for signs of tasklet re‑arming anomalies or unexpected memory corruption, and be ready to reboot or apply a hotfix if a panic or suspicious activity is detected.

Generated by OpenCVE AI on September 12, 2026 at 02:05 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.0, 'vector': 'CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H'}

cvssV3_1

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


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

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

None

cvssV3_1

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

threat_severity

Important


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

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: net/smc: unregister the connection before draining the rx tasklet smc_conn_free() calls smc_ism_unset_conn() only while the link group is still on its device list, and never sets conn->killed. smc_lgr_terminate_sched() unlinks the group immediately and defers killing its connections to a work item, so a connection freed in that window keeps its smcd->conn[] slot with both gates in smcd_handle_irq() open, and the device can re-arm the receive tasklet after tasklet_kill() has returned. On the DMB-nocopy path the ghost send buffer is freed right after that drain, so the re-armed tasklet dereferences it. Unregister unconditionally and drain before the detach at both teardown sites, mirroring rmb_desc, which smc_buf_unuse() releases after the drain. Clear conn->sndbuf_desc before freeing it as well, so a reader that samples the pointer cannot get one that is already freed.
Title net/smc: unregister the connection before draining the rx tasklet
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:28:45.368Z

Reserved: 2026-08-26T14:34:25.811Z

Link: CVE-2026-80979

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

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

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

Link: CVE-2026-80979

cve-icon Redhat

Severity : Important

Publid Date: 2026-09-11T19:42:40Z

Links: CVE-2026-80979 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-09-12T03:15:06Z

Weaknesses
  • CWE-825

    Expired Pointer Dereference