Ad

CVE-2026-80938

NONE EPSS 0.17%
Обновлено 11 сентября 2026
Linux
Параметр Значение
Поставщик Linux
Публичный эксплойт Нет

В ядре Linux устранена следующая уязвимость: wifi: mt76: mt7615: не дожидайтесь работы Mac под мьютексом mt76 mt7615_suspend() получил мьютекс mt76 и затем вызвал cancel_delayed_work_sync() на mac_work. mt7615_mac_work() получает тот же мьютекс через mt7615_mutex_acquire() в верхней части работника, поэтому, если mac_work уже запущен и заблокирован в мьютексе, пути приостановки тупики, ожидающие выполнения работы, против которой удерживается мьютекс. Очистите scan_work и mac_work перед взятием мьютекса, соответствующего приостановить пути в mt7921 и mt7925. scan_work принимает только мт76 спинблокировка, но ее перемещение сохраняет последовательность последовательной. Это также сохраняет mac_work от запуска уже приостановленного HIF, который предыдущий разделение (асинхронная отмена при блокировке, отмена синхронизации после освобождения) будет разрешили.

Показать оригинальное описание (EN)

In the Linux kernel, the following vulnerability has been resolved: wifi: mt76: mt7615: avoid waiting for mac work under the mt76 mutex mt7615_suspend() acquired the mt76 mutex and then called cancel_delayed_work_sync() on mac_work. mt7615_mac_work() acquires the same mutex via mt7615_mutex_acquire() at the top of the worker, so if mac_work is already running and blocked on the mutex, the suspend path deadlocks waiting for the work it holds the mutex against. Flush scan_work and mac_work before taking the mutex, matching the suspend paths in mt7921 and mt7925. scan_work only takes the mt76 spinlock, but moving it keeps the sequence consistent. This also keeps mac_work from running over an already suspended HIF, which the previous split (async cancel under the lock, sync cancel after release) would have allowed.