diff options
author | Dmitry Ivanov <dmitrijs.ivanovs@ubnt.com> | 2016-04-06 17:23:18 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-05-04 14:49:03 -0700 |
commit | 22717803bc026a31e747cfb642e5e6480c81e3fe (patch) | |
tree | 9a16e10c22e935e1ebc0e29a0d1d27ac708b72d8 | |
parent | 11372ae1ccbfee91d85e59cb1d6d4ff3b55b5659 (diff) | |
download | lwn-22717803bc026a31e747cfb642e5e6480c81e3fe.tar.gz lwn-22717803bc026a31e747cfb642e5e6480c81e3fe.zip |
nl80211: check netlink protocol in socket release notification
commit 8f815cdde3e550e10c2736990d791f60c2ce43eb upstream.
A non-privileged user can create a netlink socket with the same port_id as
used by an existing open nl80211 netlink socket (e.g. as used by a hostapd
process) with a different protocol number.
Closing this socket will then lead to the notification going to nl80211's
socket release notification handler, and possibly cause an action such as
removing a virtual interface.
Fix this issue by checking that the netlink protocol is NETLINK_GENERIC.
Since generic netlink has no notifier chain of its own, we can't fix the
problem more generically.
Fixes: 026331c4d9b5 ("cfg80211/mac80211: allow registering for and sending action frames")
Signed-off-by: Dmitry Ivanov <dima@ubnt.com>
[rewrite commit message]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | net/wireless/nl80211.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index 711cb7ad6ae0..ab62d305b48b 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -13201,7 +13201,7 @@ static int nl80211_netlink_notify(struct notifier_block * nb, struct wireless_dev *wdev; struct cfg80211_beacon_registration *reg, *tmp; - if (state != NETLINK_URELEASE) + if (state != NETLINK_URELEASE || notify->protocol != NETLINK_GENERIC) return NOTIFY_DONE; rcu_read_lock(); |