CVE-2026-74691: net: thunderbolt: Tear down DMA paths before stopping the rings

Greg Kroah-Hartman <[email protected]>
Newsgroups org.kernel.vger.linux-cve-announce
Message-ID <2026082233-CVE-2026-74691-08a4@gregkh>
From: Greg Kroah-Hartman <[email protected]>

Description
===========

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

net: thunderbolt: Tear down DMA paths before stopping the rings

tbnet_tear_down() stops both rings and frees their frame buffers before
calling tb_xdomain_disable_paths().  tb_ring_stop() zeroes the ring's
descriptor base and tbnet_free_buffers() unmaps and frees the pages the
frames sit in, so by the time __tb_path_deactivate_hop() polls the hop's
'pending' bit, anything still in flight has nowhere to drain to.

The teardown sequence has been in this order since the driver was added.
The setup path has not: commit ff7cd07f3064 ("net: thunderbolt: Enable
DMA paths only after rings are enabled") moved the path enable to the end
of tbnet_connected_work() and documented why:

	/* Both logins successful so enable the rings, high-speed DMA
	 * paths and start the network device queue.
	 *
	 * Note we enable the DMA paths last to make sure we have primed
	 * the Rx ring before any incoming packets are allowed to
	 * arrive.
	 */

Teardown was never updated to match, so the rings and the paths now come
down in the same order they go up instead of in reverse.

On an ASMedia ASM4242 host router the 'pending' bit then never clears:
every teardown burns the full 500 ms timeout and
__tb_path_deactivate_hop() returns -ETIMEDOUT.  Raising the timeout to
5 s does not help, so the hop is not slow to drain, it never drains
at all.

The failure is invisible above the thunderbolt core.
__tb_path_deactivate_hops() is void and only calls tb_port_warn();
tb_path_deactivate(), tb_tunnel_deactivate() and
__tb_disconnect_xdomain_paths() are void as well, and
tb_disconnect_xdomain_paths() ends in an unconditional "return 0".  So
tb_xdomain_disable_paths() reports success and the netdev_warn() below
it never fires.  Repeated teardowns eventually take the XDomain control
channel down, after which the peer node is gone and only a power cycle
brings the controller back.

Deactivating the paths first fixes it.  Measured with kretprobes on a
stock v6.17 tree with no other patches applied, on a link that was up
and had just carried traffic:

  before: __tb_path_deactivate_hop() returns 0 for the first hop, then
          -ETIMEDOUT for the second 500335 us later
  after:  0 for both, 525 us apart

Alternating the two orderings ABBA over three load levels, four
teardowns per arm: every teardown failed before the change (21 of 21
that ran), none failed after (0 of 24).  The before arms ran short
because the link died partway through.  The same split shows up when
the interface is enslaved to a bond instead of just brought down, which
is how I ran into this in the first place.  Throughput and latency after
the change are unchanged.

Hosts whose routers drain the hop despite the stale descriptor base see
no functional difference, since the paths end up deactivated either way.

The Linux kernel CVE team has assigned CVE-2026-74691 to this issue.


Affected and fixed versions
===========================

	Issue introduced in 4.15 with commit e69b6c02b4c3b8d03be7136f90dd9551ad5a5a5e and fixed in 5.15.216 with commit 7cce39109206bc5497e0953806563644b88bfc44
	Issue introduced in 4.15 with commit e69b6c02b4c3b8d03be7136f90dd9551ad5a5a5e and fixed in 6.1.183 with commit 0da9a6d27155ad072dd76db8cd637feead99a0e0
	Issue introduced in 4.15 with commit e69b6c02b4c3b8d03be7136f90dd9551ad5a5a5e and fixed in 6.6.152 with commit b5a21615f627c48dafaa6ef82a34a5b97a4352aa
	Issue introduced in 4.15 with commit e69b6c02b4c3b8d03be7136f90dd9551ad5a5a5e and fixed in 6.12.104 with commit 103a9b663ac1cacb8465aeff18f84a247154a562
	Issue introduced in 4.15 with commit e69b6c02b4c3b8d03be7136f90dd9551ad5a5a5e and fixed in 6.18.45 with commit 4dd71cb0d23d40cb58fe4261c7bd183dca66caa0
	Issue introduced in 4.15 with commit e69b6c02b4c3b8d03be7136f90dd9551ad5a5a5e and fixed in 7.1.9 with commit 9a482b2b117e5fa656b6d24fc01799e8ac2d4368
	Issue introduced in 4.15 with commit e69b6c02b4c3b8d03be7136f90dd9551ad5a5a5e and fixed in 7.2 with commit 68bf02b6b4ad3f748c6db71fd77b6c0402d252f4

Please see https://www.kernel.org for a full list of currently supported
kernel versions by the kernel community.

Unaffected versions might change over time as fixes are backported to
older supported kernel versions.  The official CVE entry at
	https://cve.org/CVERecord/?id=CVE-2026-74691
will be updated if fixes are backported, please check that for the most
up to date information about this issue.


Affected files
==============

The file(s) affected by this issue are:
	drivers/net/thunderbolt/main.c


Mitigation
==========

The Linux kernel CVE team recommends that you update to the latest
stable kernel version for this, and many other bugfixes.  Individual
changes are never tested alone, but rather are part of a larger kernel
release.  Cherry-picking individual commits is not recommended or
supported by the Linux kernel community at all.  If however, updating to
the latest release is impossible, the individual changes to resolve this
issue can be found at these commits:
	https://git.kernel.org/stable/c/7cce39109206bc5497e0953806563644b88bfc44
	https://git.kernel.org/stable/c/0da9a6d27155ad072dd76db8cd637feead99a0e0
	https://git.kernel.org/stable/c/b5a21615f627c48dafaa6ef82a34a5b97a4352aa
	https://git.kernel.org/stable/c/103a9b663ac1cacb8465aeff18f84a247154a562
	https://git.kernel.org/stable/c/4dd71cb0d23d40cb58fe4261c7bd183dca66caa0
	https://git.kernel.org/stable/c/9a482b2b117e5fa656b6d24fc01799e8ac2d4368
	https://git.kernel.org/stable/c/68bf02b6b4ad3f748c6db71fd77b6c0402d252f4
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.