CVE-2026-97599 PUBLISHED

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

Assigner: Linux
Reserved: 24.09.2026 Published: 25.09.2026 Updated: 25.09.2026

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:

<pre>pib_old = rtnl_dereference(phy->pib); ... rcu_assign_pointer(phy->pib, pib); kfree_rcu(pib_old, rcu); </pre>

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().

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from f25da51fdc381ca2863248c7060b3662632f0872 to 9973b3a67a7592a780ea12b08334539a900deec1 (excl.)
  • affected from f25da51fdc381ca2863248c7060b3662632f0872 to d3b8f264ce09573aededd0a97dc41c8147797d8f (excl.)
  • affected from f25da51fdc381ca2863248c7060b3662632f0872 to db6442deecb1f13aeaf4f9d77746ea7555630fb3 (excl.)
  • affected from f25da51fdc381ca2863248c7060b3662632f0872 to 979d5b8de8ed4e1f997aef12da5694b99be7b871 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 4.19 is affected
  • unaffected from 0 to 4.19 (excl.)
  • unaffected from 6.12.111 to 6.12.* (incl.)
  • unaffected from 6.18.53 to 6.18.* (incl.)
  • unaffected from 7.2.7 to 7.2.* (incl.)
  • unaffected from 7.3-rc3 to * (incl.)

References