CVE Catalog

CVE-2026-93149

Unknown
Published: Translated: NVD NIST

Summary

In the Linux kernel, the mac80211_hwsim driver has a vulnerability where a NULL pointer can be passed to ieee80211_free_txskb() during queue stop. The issue arises from separating the empty queue check from the dequeue operation, which is unsafe under concurrent TX status handling.

Risk Assessment

This could lead to a system crash (kernel panic) in environments using WiFi simulation, potentially affecting the stability of test or virtualized systems.

Recommendation

Apply the patch from the official Linux kernel source that changes the loop condition to skb_dequeue() to avoid passing NULL.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: wifi: mac80211_hwsim: avoid NULL skb in stop queue drain mac80211_hwsim_stop() drops any frames left in data->pending. The loop currently checks skb_queue_empty() and then dequeues separately. That split is racy with TX status handling, which can remove a pending frame under the queue lock. If the last entry is removed after the empty check, skb_dequeue() returns NULL and the stop path passes that NULL skb to ieee80211_free_txskb(). Use skb_dequeue() as the loop condition instead. The dequeue result is the object that stop owns and frees, and a concurrent status completion that empties the queue simply makes the loop terminate.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS