CVE-2026-80521 PUBLISHED

af_unix: Unlink scc_entry in unix_del_edge().

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

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

af_unix: Unlink scc_entry in unix_del_edge().

Kyle Zeng reported that GC could free a dead SCC partially.

The scenario is as follows:

1) Create two SCCs:

<pre> X -. A <-> B ^--' </pre>

2) Run the following concurrently:

<pre> 2-1) send() sk-B to sk-B from sk-X 2-2) close() both A and B </pre>

At 2-1), there is a small window where unix_add_edges() publishes a new edge (B <-> B) to GC but its skb is not queued by skb_queue_tail().

If 2-2) completes before skb_queue_tail() and GC is triggered, it judges A <-> B as dead, but B is not freed because GC cannot collect the not-yet-queued skb holding the B <-> B edge.

<pre> X -. A <-> B -. This edge is visible ^--' ^..' but skb is not </pre>

This itself is not a problem since the next GC run will judge B as dead as well and free it finally.

<pre> X -. A <.> B -. ^--' ^--' </pre>

However, X's SCC forces the next GC to call unix_walk_scc_fast(), and it iterates over A through B's scc_entry.

Let's unlink scc_entry before freeing the vertex in unix_del_edge().

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from 4090fa373f0e763c43610853d2774b5979915959 to e3702470ced94fad74d71e2232f022d2eb752a6d (excl.)
  • affected from 4090fa373f0e763c43610853d2774b5979915959 to 594d905195024b228c962627ae5ae7c17bd582a4 (excl.)
  • Version 5dfd283f4651d04dbb70ceb9ae5c4a30eda3c52a is affected
  • Version de7921631ff323369aa63a4324695ab54ea4047e is affected
  • affected from 6.1.141 to 6.2 (excl.)
  • affected from 6.6.93 to 6.7 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 6.10 is affected
  • unaffected from 0 to 6.10 (excl.)
  • unaffected from 7.1.10 to 7.1.* (incl.)
  • unaffected from 7.2 to * (incl.)

References