mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 14:49:24 +01:00
station: fix use-after-free on neighbor reports
When netdev goes down so does station, but prior to netdev calling the neighbor report callback. The way the logic was written station is dereferenced prior to checking for any errors, causing a use after free. Since -ENODEV is used in this case check for that early before accessing station.
This commit is contained in:
parent
cf0f6ebddf
commit
b6884df39a
@ -1708,6 +1708,9 @@ static void station_early_neighbor_report_cb(struct netdev *netdev, int err,
|
||||
{
|
||||
struct station *station = user_data;
|
||||
|
||||
if (err == -ENODEV)
|
||||
return;
|
||||
|
||||
l_debug("ifindex: %u, error: %d(%s)",
|
||||
netdev_get_ifindex(station->netdev),
|
||||
err, err < 0 ? strerror(-err) : "");
|
||||
@ -2280,6 +2283,9 @@ static void station_neighbor_report_cb(struct netdev *netdev, int err,
|
||||
struct scan_freq_set *freq_set;
|
||||
int r;
|
||||
|
||||
if (err == -ENODEV)
|
||||
return;
|
||||
|
||||
l_debug("ifindex: %u, error: %d(%s)",
|
||||
netdev_get_ifindex(station->netdev),
|
||||
err, err < 0 ? strerror(-err) : "");
|
||||
|
Loading…
Reference in New Issue
Block a user