CVE-2026-72342

Source
https://cve.org/CVERecord?id=CVE-2026-72342
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-72342.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-72342
Downstream
Published
2026-08-15T05:55:48.412Z
Modified
2026-08-16T03:48:37.320010362Z
Summary
net/mlx5e: Fix HV VHCA stats agent registration race
Details

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

net/mlx5e: Fix HV VHCA stats agent registration race

mlx5ehvvhcastatscreate() registers the stats agent through mlx5hvvhcaagentcreate(). The helper publishes the agent in hvvhca->agents[type] under agentslock and immediately schedules an asynchronous control invalidation on the HV VHCA workqueue before returning to mlx5e.

The asynchronous invalidation invokes the control agent's invalidate callback, which reads the hypervisor control block and forwards the command to mlx5ehvvhcastatscontrol(). That callback may either:

  • call canceldelayedworksync(&priv->statsagent.work), or
  • call queuedelayedwork(priv->wq, &sagent->work, sagent->delay).

However, the delayedwork and priv->statsagent.agent are only initialized after mlx5hvvhcaagentcreate() returns to mlx5e:

agent = mlx5_hv_vhca_agent_create(...);   /* publish + invalidate */
...
priv->stats_agent.agent = agent;          /* too late */
INIT_DELAYED_WORK(&priv->stats_agent.work, ...); /* too late */

If the asynchronous control path runs before the two assignments above, it can:

  • Operate on an uninitialized delayedwork whose timer.function is NULL. queuedelayedwork() calls addtimer() unconditionally, so when the timer expires the timer softirq invokes a NULL function pointer.
  • Re-initialize the timer later through INITDELAYEDWORK() while the timer is already enqueued in the timer wheel, corrupting the hlist (entry.pprev cleared while the previous bucket node still points at this entry).
  • When the worker eventually runs, mlx5ehvvhcastatswork() reads sagent->agent (NULL) and dereferences it inside mlx5hvvhcaagentwrite().

Fix this by:

  • Initializing priv->statsagent.work before invoking mlx5hvvhcaagent_create(), so the work is always in a valid state when the control callback observes it.
  • Adding a struct mlx5hvvhcaagent **ctxupdate out-parameter to mlx5hvvhcaagentcreate(). The helper writes the agent pointer to *ctxupdate before publishing into hvvhca->agents[] and triggering the agentsupdate flow, so any callback subsequently invoked from that flow already sees a valid priv->statsagent.agent. This avoids having the control callback participate in agent initialization.

While at it, access priv->statsagent.agent with READONCE()/WRITEONCE() for the cross-CPU access with the worker, and clear priv->statsagent.buf on the agent_create() failure path.

Database specific
{
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/72xxx/CVE-2026-72342.json",
    "cna_assigner": "Linux"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
cef35af34d6dc3792333075115c7deb7062b6e18
Fixed
b0fd6d3bb06182f19f3b59a53f57b5098b99048a
Fixed
24c77044cdfcf5b8b2e9f3b620d8b9aa392d9add
Fixed
e8fc3304cb67fb1d7d11ff9ef9abd5fb64e7e1d5
Fixed
60fddda7207d81fea71463abd403f0b10f74f2e1
Fixed
f5677797b094c3ec5fb350eb8ea7710b88a3d018
Fixed
89b25b5f46f488ea3b29b3444864c76944c9075b

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-72342.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
5.4.0
Fixed
6.1.178
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.6.145
Type
ECOSYSTEM
Events
Introduced
6.7.0
Fixed
6.12.97
Type
ECOSYSTEM
Events
Introduced
6.13.0
Fixed
6.18.40
Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
7.1.5

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-72342.json"