CVE-2026-53112
NieznaneStreszczenie
W jądrze systemu Linux zidentyfikowano podatność, która może prowadzić do błędu użycia po zwolnieniu pamięci (use-after-free) w module rtlwifi. Problem występuje, gdy irq_prepare_bcn_tasklet nie jest poprawnie zakończony przed zwolnieniem zasobów ieee80211_hw.
Ocena ryzyka
Organizacje mogą być narażone na nieprzewidziane zachowanie systemu, w tym potencjalne awarie lub naruszenia bezpieczeństwa, gdy zasoby są niewłaściwie zarządzane. Może to prowadzić do utraty danych lub nieautoryzowanego dostępu.
Rekomendacja
Zaleca się aktualizację jądra systemu Linux do wersji, która zawiera poprawkę dla tej podatności. Należy również monitorować systemy pod kątem nieprawidłowego działania związanych z modułem rtlwifi.
Oryginalny opis (angielski, źródło NVD)
In the Linux kernel, the following vulnerability has been resolved: wifi: rtlwifi: pci: fix possible use-after-free caused by unfinished irq_prepare_bcn_tasklet The irq_prepare_bcn_tasklet is initialized in rtl_pci_init() and scheduled when RTL_IMR_BCNINT interrupt is triggered by hardware. But it is never killed in rtl_pci_deinit(). When the rtlwifi card probe fails or is being detached, the ieee80211_hw is deallocated. However, irq_prepare_bcn_tasklet may still be running or pending, leading to use-after-free when the freed ieee80211_hw is accessed in _rtl_pci_prepare_bcn_tasklet(). Similar to irq_tasklet, add tasklet_kill() in rtl_pci_deinit() to ensure that irq_prepare_bcn_tasklet is properly terminated before the ieee80211_hw is released. The issue was identified through static analysis.

