CVE-2026-80866 PUBLISHED

tipc: avoid busy looping in tipc_exit_net()

Assigner: Linux
Reserved: 26.08.2026 Published: 04.09.2026 Updated: 04.09.2026

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

tipc: avoid busy looping in tipc_exit_net()

Blamed commit introduced a busy-wait loop in tipc_exit_net() to wait for pending UDP bearer cleanup works to complete:

<pre> while (atomic_read(&tn->wq_count)) cond_resched(); </pre>

This loop can busy-wait for a long time if cond_resched() is a NOP. This typically happens if the netns exit is executed by a high priority task, or under kernels configured without preemption (CONFIG_PREEMPT_NONE). In such cases, it wastes CPU cycles and can lead to soft lockups.

Fix this by replacing the busy loop with wait_var_event(), allowing the thread to sleep properly until the work queue count reaches zero.

Accordingly, update cleanup_bearer() to use atomic_dec_and_test() and wake_up_var() to wake up the waiter when the count drops to zero.

This uses the global wait queue hash table, avoiding the need to bloat struct tipc_net with a wait_queue_head_t. The atomic_dec_and_test() provides the necessary memory barrier to ensure the wakeup is not missed.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from 04c26faa51d1e2fe71cf13c45791f5174c37f986 to 522d1d950b9e3b68190a6de7534827c8dccedb73 (excl.)
  • affected from 04c26faa51d1e2fe71cf13c45791f5174c37f986 to c1481c94e74c955e0448ddf46b8615a44d840c1e (excl.)
  • Version d1f76dfadaf8f47ed1753f97dbcbd41c16215ffa is affected
  • Version 5195ec5e365a2a9331bfeb585b613a6e94f98dba is affected
  • Version b9f5b7ad4ac3af006443f535b1ce7bff1d130d7d is affected
  • affected from 5.4.124 to 5.5 (excl.)
  • affected from 5.10.42 to 5.11 (excl.)
  • affected from 5.12.9 to 5.13 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 5.13 is affected
  • unaffected from 0 to 5.13 (excl.)
  • unaffected from 7.1.5 to 7.1.* (incl.)
  • unaffected from 7.2 to * (incl.)

References