diff options
Diffstat (limited to 'net/wireless')
-rw-r--r-- | net/wireless/mlme.c | 27 | ||||
-rw-r--r-- | net/wireless/nl80211.c | 49 | ||||
-rw-r--r-- | net/wireless/nl80211.h | 6 |
3 files changed, 82 insertions, 0 deletions
diff --git a/net/wireless/mlme.c b/net/wireless/mlme.c index 1407244a647e..42184361a109 100644 --- a/net/wireless/mlme.c +++ b/net/wireless/mlme.c | |||
@@ -44,6 +44,33 @@ void cfg80211_send_disassoc(struct net_device *dev, const u8 *buf, size_t len) | |||
44 | } | 44 | } |
45 | EXPORT_SYMBOL(cfg80211_send_disassoc); | 45 | EXPORT_SYMBOL(cfg80211_send_disassoc); |
46 | 46 | ||
47 | static void cfg80211_wext_disconnected(struct net_device *dev) | ||
48 | { | ||
49 | #ifdef CONFIG_WIRELESS_EXT | ||
50 | union iwreq_data wrqu; | ||
51 | memset(&wrqu, 0, sizeof(wrqu)); | ||
52 | wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL); | ||
53 | #endif | ||
54 | } | ||
55 | |||
56 | void cfg80211_send_auth_timeout(struct net_device *dev, const u8 *addr) | ||
57 | { | ||
58 | struct wiphy *wiphy = dev->ieee80211_ptr->wiphy; | ||
59 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy); | ||
60 | nl80211_send_auth_timeout(rdev, dev, addr); | ||
61 | cfg80211_wext_disconnected(dev); | ||
62 | } | ||
63 | EXPORT_SYMBOL(cfg80211_send_auth_timeout); | ||
64 | |||
65 | void cfg80211_send_assoc_timeout(struct net_device *dev, const u8 *addr) | ||
66 | { | ||
67 | struct wiphy *wiphy = dev->ieee80211_ptr->wiphy; | ||
68 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy); | ||
69 | nl80211_send_assoc_timeout(rdev, dev, addr); | ||
70 | cfg80211_wext_disconnected(dev); | ||
71 | } | ||
72 | EXPORT_SYMBOL(cfg80211_send_assoc_timeout); | ||
73 | |||
47 | void cfg80211_michael_mic_failure(struct net_device *dev, const u8 *addr, | 74 | void cfg80211_michael_mic_failure(struct net_device *dev, const u8 *addr, |
48 | enum nl80211_key_type key_type, int key_id, | 75 | enum nl80211_key_type key_type, int key_id, |
49 | const u8 *tsc) | 76 | const u8 *tsc) |
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index 3b21b3e89e96..b1fc98225fd1 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c | |||
@@ -121,6 +121,7 @@ static struct nla_policy nl80211_policy[NL80211_ATTR_MAX+1] __read_mostly = { | |||
121 | [NL80211_ATTR_AUTH_TYPE] = { .type = NLA_U32 }, | 121 | [NL80211_ATTR_AUTH_TYPE] = { .type = NLA_U32 }, |
122 | [NL80211_ATTR_REASON_CODE] = { .type = NLA_U16 }, | 122 | [NL80211_ATTR_REASON_CODE] = { .type = NLA_U16 }, |
123 | [NL80211_ATTR_FREQ_FIXED] = { .type = NLA_FLAG }, | 123 | [NL80211_ATTR_FREQ_FIXED] = { .type = NLA_FLAG }, |
124 | [NL80211_ATTR_TIMED_OUT] = { .type = NLA_FLAG }, | ||
124 | }; | 125 | }; |
125 | 126 | ||
126 | /* IE validation */ | 127 | /* IE validation */ |
@@ -3695,6 +3696,54 @@ void nl80211_send_disassoc(struct cfg80211_registered_device *rdev, | |||
3695 | NL80211_CMD_DISASSOCIATE); | 3696 | NL80211_CMD_DISASSOCIATE); |
3696 | } | 3697 | } |
3697 | 3698 | ||
3699 | void nl80211_send_mlme_timeout(struct cfg80211_registered_device *rdev, | ||
3700 | struct net_device *netdev, int cmd, | ||
3701 | const u8 *addr) | ||
3702 | { | ||
3703 | struct sk_buff *msg; | ||
3704 | void *hdr; | ||
3705 | |||
3706 | msg = nlmsg_new(NLMSG_GOODSIZE, GFP_ATOMIC); | ||
3707 | if (!msg) | ||
3708 | return; | ||
3709 | |||
3710 | hdr = nl80211hdr_put(msg, 0, 0, 0, cmd); | ||
3711 | if (!hdr) { | ||
3712 | nlmsg_free(msg); | ||
3713 | return; | ||
3714 | } | ||
3715 | |||
3716 | NLA_PUT_U32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx); | ||
3717 | NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex); | ||
3718 | NLA_PUT_FLAG(msg, NL80211_ATTR_TIMED_OUT); | ||
3719 | NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr); | ||
3720 | |||
3721 | if (genlmsg_end(msg, hdr) < 0) { | ||
3722 | nlmsg_free(msg); | ||
3723 | return; | ||
3724 | } | ||
3725 | |||
3726 | genlmsg_multicast(msg, 0, nl80211_mlme_mcgrp.id, GFP_ATOMIC); | ||
3727 | return; | ||
3728 | |||
3729 | nla_put_failure: | ||
3730 | genlmsg_cancel(msg, hdr); | ||
3731 | nlmsg_free(msg); | ||
3732 | } | ||
3733 | |||
3734 | void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev, | ||
3735 | struct net_device *netdev, const u8 *addr) | ||
3736 | { | ||
3737 | nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_AUTHENTICATE, | ||
3738 | addr); | ||
3739 | } | ||
3740 | |||
3741 | void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev, | ||
3742 | struct net_device *netdev, const u8 *addr) | ||
3743 | { | ||
3744 | nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_ASSOCIATE, addr); | ||
3745 | } | ||
3746 | |||
3698 | void nl80211_send_ibss_bssid(struct cfg80211_registered_device *rdev, | 3747 | void nl80211_send_ibss_bssid(struct cfg80211_registered_device *rdev, |
3699 | struct net_device *netdev, const u8 *bssid, | 3748 | struct net_device *netdev, const u8 *bssid, |
3700 | gfp_t gfp) | 3749 | gfp_t gfp) |
diff --git a/net/wireless/nl80211.h b/net/wireless/nl80211.h index 17d2d8bfaf75..5c12ad13499b 100644 --- a/net/wireless/nl80211.h +++ b/net/wireless/nl80211.h | |||
@@ -23,6 +23,12 @@ extern void nl80211_send_deauth(struct cfg80211_registered_device *rdev, | |||
23 | extern void nl80211_send_disassoc(struct cfg80211_registered_device *rdev, | 23 | extern void nl80211_send_disassoc(struct cfg80211_registered_device *rdev, |
24 | struct net_device *netdev, | 24 | struct net_device *netdev, |
25 | const u8 *buf, size_t len); | 25 | const u8 *buf, size_t len); |
26 | extern void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev, | ||
27 | struct net_device *netdev, | ||
28 | const u8 *addr); | ||
29 | extern void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev, | ||
30 | struct net_device *netdev, | ||
31 | const u8 *addr); | ||
26 | extern void | 32 | extern void |
27 | nl80211_michael_mic_failure(struct cfg80211_registered_device *rdev, | 33 | nl80211_michael_mic_failure(struct cfg80211_registered_device *rdev, |
28 | struct net_device *netdev, const u8 *addr, | 34 | struct net_device *netdev, const u8 *addr, |