๐Ÿ” CVE Alert

CVE-2026-97599

UNKNOWN 0.0

ieee802154: hwsim: serialize pib updates to fix double-free

CVSS Score
0.0
EPSS Score
0.0%
EPSS Percentile
0th

In the Linux kernel, the following vulnerability has been resolved: ieee802154: hwsim: serialize pib updates to fix double-free hwsim_update_pib() does an unserialized read-swap-free of phy->pib: pib_old = rtnl_dereference(phy->pib); ... rcu_assign_pointer(phy->pib, pib); kfree_rcu(pib_old, rcu); It assumes the RTNL is held, but ->set_channel is not always called under it: the mac802154 scan worker changes channels via drv_set_channel() without the RTNL. Such an update can race an RTNL-held one on the same phy; both read the same pib_old and both kfree_rcu() it, double-freeing the object. With SLUB percpu sheaves batching kfree_rcu(), this surfaces as a KASAN invalid-free in rcu_free_sheaf(). struct hwsim_phy has no lock for pib. Add one and make the swap atomic with rcu_replace_pointer() under it, dropping the misleading rtnl_dereference().

Vendor linux
Product linux
Ecosystems
Industries
Technology
Published Sep 25, 2026
Stay Ahead of the Next One

Get instant alerts for linux linux

Be the first to know when new unknown vulnerabilities affecting linux linux are published โ€” delivered to Slack, Telegram or Discord.

Get Free Alerts โ†’ Free ยท No credit card ยท 60 sec setup

Affected Versions

Linux / Linux
f25da51fdc381ca2863248c7060b3662632f0872 < 9973b3a67a7592a780ea12b08334539a900deec1 f25da51fdc381ca2863248c7060b3662632f0872 < d3b8f264ce09573aededd0a97dc41c8147797d8f f25da51fdc381ca2863248c7060b3662632f0872 < db6442deecb1f13aeaf4f9d77746ea7555630fb3 f25da51fdc381ca2863248c7060b3662632f0872 < 979d5b8de8ed4e1f997aef12da5694b99be7b871
Linux / Linux
4.19

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
git.kernel.org: https://git.kernel.org/stable/c/9973b3a67a7592a780ea12b08334539a900deec1 git.kernel.org: https://git.kernel.org/stable/c/d3b8f264ce09573aededd0a97dc41c8147797d8f git.kernel.org: https://git.kernel.org/stable/c/db6442deecb1f13aeaf4f9d77746ea7555630fb3 git.kernel.org: https://git.kernel.org/stable/c/979d5b8de8ed4e1f997aef12da5694b99be7b871