CVE-2026-72342
net/mlx5e: Fix HV VHCA stats agent registration race
Description
In the Linux kernel, the following vulnerability has been resolved: net/mlx5e: Fix HV VHCA stats agent registration race mlx5e_hv_vhca_stats_create() registers the stats agent through mlx5_hv_vhca_agent_create(). The helper publishes the agent in hv_vhca->agents[type] under agents_lock 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 mlx5e_hv_vhca_stats_control(). That callback may either: - call cancel_delayed_work_sync(&priv->stats_agent.work), or - call queue_delayed_work(priv->wq, &sagent->work, sagent->delay). However, the delayed_work and priv->stats_agent.agent are only initialized after mlx5_hv_vhca_agent_create() 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 delayed_work whose timer.function is NULL. queue_delayed_work() calls add_timer() unconditionally, so when the timer expires the timer softirq invokes a NULL function pointer. - Re-initialize the timer later through INIT_DELAYED_WORK() 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, mlx5e_hv_vhca_stats_work() reads sagent->agent (NULL) and dereferences it inside mlx5_hv_vhca_agent_write(). Fix this by: - Initializing priv->stats_agent.work before invoking mlx5_hv_vhca_agent_create(), so the work is always in a valid state when the control callback observes it. - Adding a struct mlx5_hv_vhca_agent **ctx_update out-parameter to mlx5_hv_vhca_agent_create(). The helper writes the agent pointer to *ctx_update before publishing into hv_vhca->agents[] and triggering the agents_update flow, so any callback subsequently invoked from that flow already sees a valid priv->stats_agent.agent. This avoids having the control callback participate in agent initialization. While at it, access priv->stats_agent.agent with READ_ONCE()/WRITE_ONCE() for the cross-CPU access with the worker, and clear priv->stats_agent.buf on the agent_create() failure path.
INFO
Published Date :
Aug. 15, 2026, 6:22 a.m.
Last Modified :
Aug. 17, 2026, 6:18 a.m.
Remotely Exploit :
No
Source :
416baaa9-dc9f-4396-8d5f-8c081fb06d67
CVSS Scores
| Score | Version | Severity | Vector | Exploitability Score | Impact Score | Source |
|---|---|---|---|---|---|---|
| CVSS 3.1 | HIGH | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 |
Solution
- Initialize stats agent work before registration.
- Update agent context via out-parameter.
- Use READ_ONCE/WRITE_ONCE for cross-CPU access.
- Clear agent buffer on creation failure.
References to Advisories, Solutions, and Tools
Here, you will find a curated list of external links that provide in-depth
information, practical solutions, and valuable tools related to
CVE-2026-72342.
CWE - Common Weakness Enumeration
While CVE identifies
specific instances of vulnerabilities, CWE categorizes the common flaws or
weaknesses that can lead to vulnerabilities. CVE-2026-72342 is
associated with the following CWEs:
Common Attack Pattern Enumeration and Classification (CAPEC)
Common Attack Pattern Enumeration and Classification
(CAPEC)
stores attack patterns, which are descriptions of the common attributes and
approaches employed by adversaries to exploit the CVE-2026-72342
weaknesses.
We scan GitHub repositories to detect new proof-of-concept exploits. Following list is a collection of public exploits and proof-of-concepts, which have been published on GitHub (sorted by the most recently updated).
Results are limited to the first 15 repositories due to potential performance issues.
The following list is the news that have been mention
CVE-2026-72342 vulnerability anywhere in the article.
The following table lists the changes that have been made to the
CVE-2026-72342 vulnerability over time.
Vulnerability history details can be useful for understanding the evolution of a vulnerability, and for identifying the most recent changes that may impact the vulnerability's severity, exploitability, or other characteristics.
-
CVE Modified by 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Aug. 17, 2026
Action Type Old Value New Value Added CVSS V3.1 AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H Changed Affected [{'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': 'b0fd6d3bb06182f19f3b59a53f57b5098b99048a', 'versionType': 'git'}, {'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': '24c77044cdfcf5b8b2e9f3b620d8b9aa392d9add', 'versionType': 'git'}, {'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': 'e8fc3304cb67fb1d7d11ff9ef9abd5fb64e7e1d5', 'versionType': 'git'}, {'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': '60fddda7207d81fea71463abd403f0b10f74f2e1', 'versionType': 'git'}, {'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': 'f5677797b094c3ec5fb350eb8ea7710b88a3d018', 'versionType': 'git'}, {'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': '89b25b5f46f488ea3b29b3444864c76944c9075b', 'versionType': 'git'}], 'programFiles': ['drivers/net/ethernet/mellanox/mlx5/core/en/hv_vhca_stats.c', 'drivers/net/ethernet/mellanox/mlx5/core/lib/hv_vhca.c', 'drivers/net/ethernet/mellanox/mlx5/core/lib/hv_vhca.h'], 'defaultStatus': 'unaffected'}, {'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '5.4'}, {'status': 'unaffected', 'version': '0', 'lessThan': '5.4', 'versionType': 'semver'}, {'status': 'unaffected', 'version': '6.1.178', 'versionType': 'semver', 'lessThanOrEqual': '6.1.*'}, {'status': 'unaffected', 'version': '6.6.145', 'versionType': 'semver', 'lessThanOrEqual': '6.6.*'}, {'status': 'unaffected', 'version': '6.12.97', 'versionType': 'semver', 'lessThanOrEqual': '6.12.*'}, {'status': 'unaffected', 'version': '6.18.40', 'versionType': 'semver', 'lessThanOrEqual': '6.18.*'}, {'status': 'unaffected', 'version': '7.1.5', 'versionType': 'semver', 'lessThanOrEqual': '7.1.*'}, {'status': 'unaffected', 'version': '7.2-rc3', 'versionType': 'original_commit_for_fix', 'lessThanOrEqual': '*'}], 'programFiles': ['drivers/net/ethernet/mellanox/mlx5/core/en/hv_vhca_stats.c', 'drivers/net/ethernet/mellanox/mlx5/core/lib/hv_vhca.c', 'drivers/net/ethernet/mellanox/mlx5/core/lib/hv_vhca.h'], 'defaultStatus': 'affected'}] [{'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': 'b0fd6d3bb06182f19f3b59a53f57b5098b99048a', 'versionType': 'git'}, {'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': '24c77044cdfcf5b8b2e9f3b620d8b9aa392d9add', 'versionType': 'git'}, {'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': 'e8fc3304cb67fb1d7d11ff9ef9abd5fb64e7e1d5', 'versionType': 'git'}, {'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': '60fddda7207d81fea71463abd403f0b10f74f2e1', 'versionType': 'git'}, {'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': 'f5677797b094c3ec5fb350eb8ea7710b88a3d018', 'versionType': 'git'}, {'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': '89b25b5f46f488ea3b29b3444864c76944c9075b', 'versionType': 'git'}], 'programFiles': ['drivers/net/ethernet/mellanox/mlx5/core/en/hv_vhca_stats.c', 'drivers/net/ethernet/mellanox/mlx5/core/lib/hv_vhca.c', 'drivers/net/ethernet/mellanox/mlx5/core/lib/hv_vhca.h'], 'defaultStatus': 'unaffected'}, {'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '5.4'}, {'status': 'unaffected', 'version': '0', 'lessThan': '5.4', 'versionType': 'semver'}, {'status': 'unaffected', 'version': '6.1.178', 'versionType': 'semver', 'lessThanOrEqual': '6.1.*'}, {'status': 'unaffected', 'version': '6.6.145', 'versionType': 'semver', 'lessThanOrEqual': '6.6.*'}, {'status': 'unaffected', 'version': '6.12.97', 'versionType': 'semver', 'lessThanOrEqual': '6.12.*'}, {'status': 'unaffected', 'version': '6.18.40', 'versionType': 'semver', 'lessThanOrEqual': '6.18.*'}, {'status': 'unaffected', 'version': '7.1.5', 'versionType': 'semver', 'lessThanOrEqual': '7.1.*'}, {'status': 'unaffected', 'version': '7.2', 'versionType': 'original_commit_for_fix', 'lessThanOrEqual': '*'}], 'programFiles': ['drivers/net/ethernet/mellanox/mlx5/core/en/hv_vhca_stats.c', 'drivers/net/ethernet/mellanox/mlx5/core/lib/hv_vhca.c', 'drivers/net/ethernet/mellanox/mlx5/core/lib/hv_vhca.h'], 'defaultStatus': 'affected'}] -
New CVE Received by 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Aug. 15, 2026
Action Type Old Value New Value Added Affected [{'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': 'b0fd6d3bb06182f19f3b59a53f57b5098b99048a', 'versionType': 'git'}, {'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': '24c77044cdfcf5b8b2e9f3b620d8b9aa392d9add', 'versionType': 'git'}, {'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': 'e8fc3304cb67fb1d7d11ff9ef9abd5fb64e7e1d5', 'versionType': 'git'}, {'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': '60fddda7207d81fea71463abd403f0b10f74f2e1', 'versionType': 'git'}, {'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': 'f5677797b094c3ec5fb350eb8ea7710b88a3d018', 'versionType': 'git'}, {'status': 'affected', 'version': 'cef35af34d6dc3792333075115c7deb7062b6e18', 'lessThan': '89b25b5f46f488ea3b29b3444864c76944c9075b', 'versionType': 'git'}], 'programFiles': ['drivers/net/ethernet/mellanox/mlx5/core/en/hv_vhca_stats.c', 'drivers/net/ethernet/mellanox/mlx5/core/lib/hv_vhca.c', 'drivers/net/ethernet/mellanox/mlx5/core/lib/hv_vhca.h'], 'defaultStatus': 'unaffected'}, {'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '5.4'}, {'status': 'unaffected', 'version': '0', 'lessThan': '5.4', 'versionType': 'semver'}, {'status': 'unaffected', 'version': '6.1.178', 'versionType': 'semver', 'lessThanOrEqual': '6.1.*'}, {'status': 'unaffected', 'version': '6.6.145', 'versionType': 'semver', 'lessThanOrEqual': '6.6.*'}, {'status': 'unaffected', 'version': '6.12.97', 'versionType': 'semver', 'lessThanOrEqual': '6.12.*'}, {'status': 'unaffected', 'version': '6.18.40', 'versionType': 'semver', 'lessThanOrEqual': '6.18.*'}, {'status': 'unaffected', 'version': '7.1.5', 'versionType': 'semver', 'lessThanOrEqual': '7.1.*'}, {'status': 'unaffected', 'version': '7.2-rc3', 'versionType': 'original_commit_for_fix', 'lessThanOrEqual': '*'}], 'programFiles': ['drivers/net/ethernet/mellanox/mlx5/core/en/hv_vhca_stats.c', 'drivers/net/ethernet/mellanox/mlx5/core/lib/hv_vhca.c', 'drivers/net/ethernet/mellanox/mlx5/core/lib/hv_vhca.h'], 'defaultStatus': 'affected'}] Added Description In the Linux kernel, the following vulnerability has been resolved: net/mlx5e: Fix HV VHCA stats agent registration race mlx5e_hv_vhca_stats_create() registers the stats agent through mlx5_hv_vhca_agent_create(). The helper publishes the agent in hv_vhca->agents[type] under agents_lock 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 mlx5e_hv_vhca_stats_control(). That callback may either: - call cancel_delayed_work_sync(&priv->stats_agent.work), or - call queue_delayed_work(priv->wq, &sagent->work, sagent->delay). However, the delayed_work and priv->stats_agent.agent are only initialized after mlx5_hv_vhca_agent_create() 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 delayed_work whose timer.function is NULL. queue_delayed_work() calls add_timer() unconditionally, so when the timer expires the timer softirq invokes a NULL function pointer. - Re-initialize the timer later through INIT_DELAYED_WORK() 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, mlx5e_hv_vhca_stats_work() reads sagent->agent (NULL) and dereferences it inside mlx5_hv_vhca_agent_write(). Fix this by: - Initializing priv->stats_agent.work before invoking mlx5_hv_vhca_agent_create(), so the work is always in a valid state when the control callback observes it. - Adding a struct mlx5_hv_vhca_agent **ctx_update out-parameter to mlx5_hv_vhca_agent_create(). The helper writes the agent pointer to *ctx_update before publishing into hv_vhca->agents[] and triggering the agents_update flow, so any callback subsequently invoked from that flow already sees a valid priv->stats_agent.agent. This avoids having the control callback participate in agent initialization. While at it, access priv->stats_agent.agent with READ_ONCE()/WRITE_ONCE() for the cross-CPU access with the worker, and clear priv->stats_agent.buf on the agent_create() failure path. Added Reference https://git.kernel.org/stable/c/24c77044cdfcf5b8b2e9f3b620d8b9aa392d9add Added Reference https://git.kernel.org/stable/c/60fddda7207d81fea71463abd403f0b10f74f2e1 Added Reference https://git.kernel.org/stable/c/89b25b5f46f488ea3b29b3444864c76944c9075b Added Reference https://git.kernel.org/stable/c/b0fd6d3bb06182f19f3b59a53f57b5098b99048a Added Reference https://git.kernel.org/stable/c/e8fc3304cb67fb1d7d11ff9ef9abd5fb64e7e1d5 Added Reference https://git.kernel.org/stable/c/f5677797b094c3ec5fb350eb8ea7710b88a3d018