mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 06:25:52 +02:00
cfg80211: Purge frame registrations on iftype change
commit c1d3ad84ea upstream.
Currently frame registrations are not purged, even when changing the
interface type. This can lead to potentially weird situations where
frames possibly not allowed on a given interface type remain registered
due to the type switching happening after registration.
The kernel currently relies on userspace apps to actually purge the
registrations themselves, this is not something that the kernel should
rely on.
Add a call to cfg80211_mlme_purge_registrations() to forcefully remove
any registrations left over prior to switching the iftype.
Cc: stable@vger.kernel.org
Signed-off-by: Denis Kenzior <denkenz@gmail.com>
Link: https://lore.kernel.org/r/20190828211110.15005-1-denkenz@gmail.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5dc86e9574
commit
bd3a11af1b
|
|
@ -930,6 +930,7 @@ int cfg80211_change_iface(struct cfg80211_registered_device *rdev,
|
|||
}
|
||||
|
||||
cfg80211_process_rdev_events(rdev);
|
||||
cfg80211_mlme_purge_registrations(dev->ieee80211_ptr);
|
||||
}
|
||||
|
||||
err = rdev_change_virtual_intf(rdev, dev, ntype, params);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user