CVE-2026-68409
WysokieCVSS 8.8Prawdopodobieństwo exploitacji (EPSS)
Niskie ryzykoPercentyl 16 - wyżej niż 16% wszystkich znanych CVE
Streszczenie
W jądrze Linux w podsystemie wifi mac80211 występuje problem z synchronizacją przy usuwaniu łącza MLO. Funkcja sta_remove_link() zwalnia bufor percpu statystyk RX natychmiast, podczas gdy kontener łącza jest zwalniany dopiero po RCU. Może to prowadzić do użycia po zwolnieniu (use-after-free) w ścieżce szybkiego odczytu. Poprawka przenosi zwolnienie bufora percpu do wywołania zwrotnego RCU.
Ocena ryzyka
Podatność może prowadzić do awarii systemu lub potencjalnie do eskalacji uprawnień, jeśli atakujący zdoła wykorzystać wyścig w dostępie do zwolnionej pamięci.
Rekomendacja
Zaleca się aktualizację jądra Linux do wersji zawierającej poprawkę, która opóźnia zwolnienie statystyk percpu do momentu zakończenia RCU.
Oryginalny opis (angielski, źródło NVD)
In the Linux kernel, the following vulnerability has been resolved: wifi: mac80211: defer link RX stats percpu free to RCU sta_remove_link() frees a removed MLO link's RX stats percpu buffer right away, but defers only the link container to RCU: sta_info_free_link(&alloc->info); kfree_rcu(alloc, rcu_head); The RX fast path reads link_sta under rcu_read_lock and writes the percpu stats. A reader that resolved link_sta before the removal keeps the pointer. The container stays alive from the kfree_rcu, so the read still works. But the percpu block it points to is already freed. This needs uses_rss. That is when pcpu_rx_stats exists. The full STA teardown frees the deflink stats only after synchronize_net(). The link removal path had no such barrier. The race is hard to win in practice, but the free should still wait for RCU. Free the link together with its data from a single RCU callback, so the percpu block is reclaimed only after readers drain.

