aboutsummaryrefslogtreecommitdiffstats
path: root/net/wireless/nl80211.c
diff options
context:
space:
mode:
authorJouni Malinen <jouni.malinen@atheros.com>2011-03-23 09:29:52 -0400
committerJohn W. Linville <linville@tuxdriver.com>2011-03-30 14:15:18 -0400
commitec15e68ba6a505631016f230899bafbb7b8cd0d6 (patch)
tree21190a10af3c22ccd34b03f11088b5976ef3e34b /net/wireless/nl80211.c
parentcfdc9a8bb8d90c6aa212a5a881862599673c443d (diff)
cfg80211: Add nl80211 event for deletion of a station entry
Indicate an NL80211_CMD_DEL_STATION event when a station entry in mac80211 is deleted to match with the NL80211_CMD_NEW_STATION event that is used when the entry was added. This is needed, e.g., to allow user space to remove a peer from RSN IBSS Authenticator state machine to avoid re-authentication and re-keying delays when the peer is not reachable anymore. Signed-off-by: Jouni Malinen <jouni.malinen@atheros.com> Reviewed-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/wireless/nl80211.c')
-rw-r--r--net/wireless/nl80211.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
index 4ebce4284e9..40c90fb461c 100644
--- a/net/wireless/nl80211.c
+++ b/net/wireless/nl80211.c
@@ -5966,6 +5966,40 @@ void nl80211_send_sta_event(struct cfg80211_registered_device *rdev,
5966 nl80211_mlme_mcgrp.id, gfp); 5966 nl80211_mlme_mcgrp.id, gfp);
5967} 5967}
5968 5968
5969void nl80211_send_sta_del_event(struct cfg80211_registered_device *rdev,
5970 struct net_device *dev, const u8 *mac_addr,
5971 gfp_t gfp)
5972{
5973 struct sk_buff *msg;
5974 void *hdr;
5975
5976 msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
5977 if (!msg)
5978 return;
5979
5980 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DEL_STATION);
5981 if (!hdr) {
5982 nlmsg_free(msg);
5983 return;
5984 }
5985
5986 NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, dev->ifindex);
5987 NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr);
5988
5989 if (genlmsg_end(msg, hdr) < 0) {
5990 nlmsg_free(msg);
5991 return;
5992 }
5993
5994 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
5995 nl80211_mlme_mcgrp.id, gfp);
5996 return;
5997
5998 nla_put_failure:
5999 genlmsg_cancel(msg, hdr);
6000 nlmsg_free(msg);
6001}
6002
5969int nl80211_send_mgmt(struct cfg80211_registered_device *rdev, 6003int nl80211_send_mgmt(struct cfg80211_registered_device *rdev,
5970 struct net_device *netdev, u32 nlpid, 6004 struct net_device *netdev, u32 nlpid,
5971 int freq, const u8 *buf, size_t len, gfp_t gfp) 6005 int freq, const u8 *buf, size_t len, gfp_t gfp)