Commit 19957bb3 authored by Johannes Berg's avatar Johannes Berg Committed by John W. Linville

cfg80211: keep track of BSSes

In order to avoid problems with BSS structs going away
while they're in use, I've long wanted to make cfg80211
keep track of them. Without the SME, that wasn't doable
but now that we have the SME we can do this too. It can
keep track of up to four separate authentications and
one association, regardless of whether it's controlled
by the cfg80211 SME or the userspace SME.
Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 517357c6
...@@ -584,7 +584,6 @@ enum cfg80211_signal_type { ...@@ -584,7 +584,6 @@ enum cfg80211_signal_type {
* is no guarantee that these are well-formed!) * is no guarantee that these are well-formed!)
* @len_information_elements: total length of the information elements * @len_information_elements: total length of the information elements
* @signal: signal strength value (type depends on the wiphy's signal_type) * @signal: signal strength value (type depends on the wiphy's signal_type)
* @hold: BSS should not expire
* @free_priv: function pointer to free private data * @free_priv: function pointer to free private data
* @priv: private area for driver use, has at least wiphy->bss_priv_size bytes * @priv: private area for driver use, has at least wiphy->bss_priv_size bytes
*/ */
...@@ -642,33 +641,17 @@ struct cfg80211_crypto_settings { ...@@ -642,33 +641,17 @@ struct cfg80211_crypto_settings {
* *
* This structure provides information needed to complete IEEE 802.11 * This structure provides information needed to complete IEEE 802.11
* authentication. * authentication.
* NOTE: This structure will likely change when more code from mac80211 is *
* moved into cfg80211 so that non-mac80211 drivers can benefit from it, too. * @bss: The BSS to authenticate with.
* Before using this in a driver that does not use mac80211, it would be better
* to check the status of that work and better yet, volunteer to work on it.
*
* @chan: The channel to use or %NULL if not specified (auto-select based on
* scan results)
* @peer_addr: The address of the peer STA (AP BSSID in infrastructure case);
* this field is required to be present; if the driver wants to help with
* BSS selection, it should use (yet to be added) MLME event to allow user
* space SME to be notified of roaming candidate, so that the SME can then
* use the authentication request with the recommended BSSID and whatever
* other data may be needed for authentication/association
* @ssid: SSID or %NULL if not yet available
* @ssid_len: Length of ssid in octets
* @auth_type: Authentication type (algorithm) * @auth_type: Authentication type (algorithm)
* @ie: Extra IEs to add to Authentication frame or %NULL * @ie: Extra IEs to add to Authentication frame or %NULL
* @ie_len: Length of ie buffer in octets * @ie_len: Length of ie buffer in octets
*/ */
struct cfg80211_auth_request { struct cfg80211_auth_request {
struct ieee80211_channel *chan; struct cfg80211_bss *bss;
u8 *peer_addr;
const u8 *ssid;
size_t ssid_len;
enum nl80211_auth_type auth_type;
const u8 *ie; const u8 *ie;
size_t ie_len; size_t ie_len;
enum nl80211_auth_type auth_type;
}; };
/** /**
...@@ -676,32 +659,18 @@ struct cfg80211_auth_request { ...@@ -676,32 +659,18 @@ struct cfg80211_auth_request {
* *
* This structure provides information needed to complete IEEE 802.11 * This structure provides information needed to complete IEEE 802.11
* (re)association. * (re)association.
* NOTE: This structure will likely change when more code from mac80211 is * @bss: The BSS to associate with.
* moved into cfg80211 so that non-mac80211 drivers can benefit from it, too.
* Before using this in a driver that does not use mac80211, it would be better
* to check the status of that work and better yet, volunteer to work on it.
*
* @chan: The channel to use or %NULL if not specified (auto-select based on
* scan results)
* @peer_addr: The address of the peer STA (AP BSSID); this field is required
* to be present and the STA must be in State 2 (authenticated) with the
* peer STA
* @ssid: SSID
* @ssid_len: Length of ssid in octets
* @ie: Extra IEs to add to (Re)Association Request frame or %NULL * @ie: Extra IEs to add to (Re)Association Request frame or %NULL
* @ie_len: Length of ie buffer in octets * @ie_len: Length of ie buffer in octets
* @use_mfp: Use management frame protection (IEEE 802.11w) in this association * @use_mfp: Use management frame protection (IEEE 802.11w) in this association
* @crypto: crypto settings * @crypto: crypto settings
*/ */
struct cfg80211_assoc_request { struct cfg80211_assoc_request {
struct ieee80211_channel *chan; struct cfg80211_bss *bss;
u8 *peer_addr;
const u8 *ssid;
size_t ssid_len;
const u8 *ie; const u8 *ie;
size_t ie_len; size_t ie_len;
bool use_mfp;
struct cfg80211_crypto_settings crypto; struct cfg80211_crypto_settings crypto;
bool use_mfp;
}; };
/** /**
...@@ -710,16 +679,16 @@ struct cfg80211_assoc_request { ...@@ -710,16 +679,16 @@ struct cfg80211_assoc_request {
* This structure provides information needed to complete IEEE 802.11 * This structure provides information needed to complete IEEE 802.11
* deauthentication. * deauthentication.
* *
* @peer_addr: The address of the peer STA (AP BSSID); this field is required * @bss: the BSS to deauthenticate from
* to be present and the STA must be authenticated with the peer STA
* @ie: Extra IEs to add to Deauthentication frame or %NULL * @ie: Extra IEs to add to Deauthentication frame or %NULL
* @ie_len: Length of ie buffer in octets * @ie_len: Length of ie buffer in octets
* @reason_code: The reason code for the deauthentication
*/ */
struct cfg80211_deauth_request { struct cfg80211_deauth_request {
u8 *peer_addr; struct cfg80211_bss *bss;
u16 reason_code;
const u8 *ie; const u8 *ie;
size_t ie_len; size_t ie_len;
u16 reason_code;
}; };
/** /**
...@@ -728,16 +697,16 @@ struct cfg80211_deauth_request { ...@@ -728,16 +697,16 @@ struct cfg80211_deauth_request {
* This structure provides information needed to complete IEEE 802.11 * This structure provides information needed to complete IEEE 802.11
* disassocation. * disassocation.
* *
* @peer_addr: The address of the peer STA (AP BSSID); this field is required * @bss: the BSS to disassociate from
* to be present and the STA must be associated with the peer STA
* @ie: Extra IEs to add to Disassociation frame or %NULL * @ie: Extra IEs to add to Disassociation frame or %NULL
* @ie_len: Length of ie buffer in octets * @ie_len: Length of ie buffer in octets
* @reason_code: The reason code for the disassociation
*/ */
struct cfg80211_disassoc_request { struct cfg80211_disassoc_request {
u8 *peer_addr; struct cfg80211_bss *bss;
u16 reason_code;
const u8 *ie; const u8 *ie;
size_t ie_len; size_t ie_len;
u16 reason_code;
}; };
/** /**
...@@ -1252,6 +1221,9 @@ extern void wiphy_free(struct wiphy *wiphy); ...@@ -1252,6 +1221,9 @@ extern void wiphy_free(struct wiphy *wiphy);
/* internal struct */ /* internal struct */
struct cfg80211_conn; struct cfg80211_conn;
struct cfg80211_internal_bss;
#define MAX_AUTH_BSSES 4
/** /**
* struct wireless_dev - wireless per-netdev state * struct wireless_dev - wireless per-netdev state
...@@ -1281,7 +1253,6 @@ struct wireless_dev { ...@@ -1281,7 +1253,6 @@ struct wireless_dev {
struct net_device *netdev; struct net_device *netdev;
/* currently used for IBSS and SME - might be rearranged later */ /* currently used for IBSS and SME - might be rearranged later */
struct cfg80211_bss *current_bss;
u8 ssid[IEEE80211_MAX_SSID_LEN]; u8 ssid[IEEE80211_MAX_SSID_LEN];
u8 ssid_len; u8 ssid_len;
enum { enum {
...@@ -1291,6 +1262,10 @@ struct wireless_dev { ...@@ -1291,6 +1262,10 @@ struct wireless_dev {
} sme_state; } sme_state;
struct cfg80211_conn *conn; struct cfg80211_conn *conn;
struct cfg80211_internal_bss *authtry_bsses[MAX_AUTH_BSSES];
struct cfg80211_internal_bss *auth_bsses[MAX_AUTH_BSSES];
struct cfg80211_internal_bss *current_bss; /* associated / joined */
#ifdef CONFIG_WIRELESS_EXT #ifdef CONFIG_WIRELESS_EXT
/* wext data */ /* wext data */
struct { struct {
...@@ -1812,23 +1787,6 @@ void cfg80211_send_deauth(struct net_device *dev, const u8 *buf, size_t len, gfp ...@@ -1812,23 +1787,6 @@ void cfg80211_send_deauth(struct net_device *dev, const u8 *buf, size_t len, gfp
*/ */
void cfg80211_send_disassoc(struct net_device *dev, const u8 *buf, size_t len, gfp_t gfp); void cfg80211_send_disassoc(struct net_device *dev, const u8 *buf, size_t len, gfp_t gfp);
/**
* cfg80211_hold_bss - exclude bss from expiration
* @bss: bss which should not expire
*
* In a case when the BSS is not updated but it shouldn't expire this
* function can be used to mark the BSS to be excluded from expiration.
*/
void cfg80211_hold_bss(struct cfg80211_bss *bss);
/**
* cfg80211_unhold_bss - remove expiration exception from the BSS
* @bss: bss which can expire again
*
* This function marks the BSS to be expirable again.
*/
void cfg80211_unhold_bss(struct cfg80211_bss *bss);
/** /**
* cfg80211_michael_mic_failure - notification of Michael MIC failure (TKIP) * cfg80211_michael_mic_failure - notification of Michael MIC failure (TKIP)
* @dev: network device * @dev: network device
......
...@@ -1173,6 +1173,7 @@ static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev, ...@@ -1173,6 +1173,7 @@ static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
struct cfg80211_auth_request *req) struct cfg80211_auth_request *req)
{ {
struct ieee80211_sub_if_data *sdata; struct ieee80211_sub_if_data *sdata;
const u8 *ssid;
sdata = IEEE80211_DEV_TO_SUB_IF(dev); sdata = IEEE80211_DEV_TO_SUB_IF(dev);
...@@ -1193,15 +1194,16 @@ static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev, ...@@ -1193,15 +1194,16 @@ static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
return -EOPNOTSUPP; return -EOPNOTSUPP;
} }
memcpy(sdata->u.mgd.bssid, req->peer_addr, ETH_ALEN); memcpy(sdata->u.mgd.bssid, req->bss->bssid, ETH_ALEN);
sdata->local->oper_channel = req->chan; sdata->local->oper_channel = req->bss->channel;
ieee80211_hw_config(sdata->local, 0); ieee80211_hw_config(sdata->local, 0);
if (!req->ssid) ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
if (!ssid)
return -EINVAL; return -EINVAL;
memcpy(sdata->u.mgd.ssid, req->ssid, req->ssid_len); sdata->u.mgd.ssid_len = *(ssid + 1);
sdata->u.mgd.ssid_len = req->ssid_len; memcpy(sdata->u.mgd.ssid, ssid + 2, sdata->u.mgd.ssid_len);
kfree(sdata->u.mgd.sme_auth_ie); kfree(sdata->u.mgd.sme_auth_ie);
sdata->u.mgd.sme_auth_ie = NULL; sdata->u.mgd.sme_auth_ie = NULL;
...@@ -1227,7 +1229,7 @@ static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev, ...@@ -1227,7 +1229,7 @@ static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
sdata = IEEE80211_DEV_TO_SUB_IF(dev); sdata = IEEE80211_DEV_TO_SUB_IF(dev);
if (memcmp(sdata->u.mgd.bssid, req->peer_addr, ETH_ALEN) != 0 || if (memcmp(sdata->u.mgd.bssid, req->bss->bssid, ETH_ALEN) != 0 ||
!(sdata->u.mgd.flags & IEEE80211_STA_AUTHENTICATED)) !(sdata->u.mgd.flags & IEEE80211_STA_AUTHENTICATED))
return -ENOLINK; /* not authenticated */ return -ENOLINK; /* not authenticated */
...@@ -1239,15 +1241,9 @@ static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev, ...@@ -1239,15 +1241,9 @@ static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104)
sdata->u.mgd.flags |= IEEE80211_STA_DISABLE_11N; sdata->u.mgd.flags |= IEEE80211_STA_DISABLE_11N;
sdata->local->oper_channel = req->chan; sdata->local->oper_channel = req->bss->channel;
ieee80211_hw_config(sdata->local, 0); ieee80211_hw_config(sdata->local, 0);
if (!req->ssid)
return -EINVAL;
memcpy(sdata->u.mgd.ssid, req->ssid, req->ssid_len);
sdata->u.mgd.ssid_len = req->ssid_len;
ret = ieee80211_sta_set_extra_ie(sdata, req->ie, req->ie_len); ret = ieee80211_sta_set_extra_ie(sdata, req->ie, req->ie_len);
if (ret && ret != -EALREADY) if (ret && ret != -EALREADY)
return ret; return ret;
......
...@@ -876,8 +876,6 @@ static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata, ...@@ -876,8 +876,6 @@ static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
bss_info_changed |= ieee80211_handle_bss_capability(sdata, bss_info_changed |= ieee80211_handle_bss_capability(sdata,
bss->cbss.capability, bss->has_erp_value, bss->erp_value); bss->cbss.capability, bss->has_erp_value, bss->erp_value);
cfg80211_hold_bss(&bss->cbss);
ieee80211_rx_bss_put(local, bss); ieee80211_rx_bss_put(local, bss);
} }
...@@ -1031,10 +1029,8 @@ static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata, ...@@ -1031,10 +1029,8 @@ static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
conf->channel->center_freq, conf->channel->center_freq,
ifmgd->ssid, ifmgd->ssid_len); ifmgd->ssid, ifmgd->ssid_len);
if (bss) { if (bss)
cfg80211_unhold_bss(&bss->cbss);
ieee80211_rx_bss_put(local, bss); ieee80211_rx_bss_put(local, bss);
}
if (self_disconnected) { if (self_disconnected) {
if (deauth) if (deauth)
......
...@@ -583,15 +583,12 @@ static int cfg80211_netdev_notifier_call(struct notifier_block * nb, ...@@ -583,15 +583,12 @@ static int cfg80211_netdev_notifier_call(struct notifier_block * nb,
#endif #endif
cfg80211_disconnect(rdev, dev, cfg80211_disconnect(rdev, dev,
WLAN_REASON_DEAUTH_LEAVING, true); WLAN_REASON_DEAUTH_LEAVING, true);
cfg80211_mlme_down(rdev, dev);
break; break;
default: default:
break; break;
} }
break; break;
case NETDEV_DOWN:
kfree(wdev->conn);
wdev->conn = NULL;
break;
case NETDEV_UP: case NETDEV_UP:
#ifdef CONFIG_WIRELESS_EXT #ifdef CONFIG_WIRELESS_EXT
switch (wdev->iftype) { switch (wdev->iftype) {
......
...@@ -110,12 +110,30 @@ struct cfg80211_internal_bss { ...@@ -110,12 +110,30 @@ struct cfg80211_internal_bss {
struct rb_node rbn; struct rb_node rbn;
unsigned long ts; unsigned long ts;
struct kref ref; struct kref ref;
bool hold, ies_allocated; atomic_t hold;
bool ies_allocated;
/* must be last because of priv member */ /* must be last because of priv member */
struct cfg80211_bss pub; struct cfg80211_bss pub;
}; };
static inline struct cfg80211_internal_bss *bss_from_pub(struct cfg80211_bss *pub)
{
return container_of(pub, struct cfg80211_internal_bss, pub);
}
static inline void cfg80211_hold_bss(struct cfg80211_internal_bss *bss)
{
atomic_inc(&bss->hold);
}
static inline void cfg80211_unhold_bss(struct cfg80211_internal_bss *bss)
{
int r = atomic_dec_return(&bss->hold);
WARN_ON(r < 0);
}
struct cfg80211_registered_device *cfg80211_drv_by_wiphy_idx(int wiphy_idx); struct cfg80211_registered_device *cfg80211_drv_by_wiphy_idx(int wiphy_idx);
int get_wiphy_idx(struct wiphy *wiphy); int get_wiphy_idx(struct wiphy *wiphy);
...@@ -176,6 +194,26 @@ void cfg80211_clear_ibss(struct net_device *dev, bool nowext); ...@@ -176,6 +194,26 @@ void cfg80211_clear_ibss(struct net_device *dev, bool nowext);
int cfg80211_leave_ibss(struct cfg80211_registered_device *rdev, int cfg80211_leave_ibss(struct cfg80211_registered_device *rdev,
struct net_device *dev, bool nowext); struct net_device *dev, bool nowext);
/* MLME */
int cfg80211_mlme_auth(struct cfg80211_registered_device *rdev,
struct net_device *dev, struct ieee80211_channel *chan,
enum nl80211_auth_type auth_type, const u8 *bssid,
const u8 *ssid, int ssid_len,
const u8 *ie, int ie_len);
int cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev,
struct net_device *dev, struct ieee80211_channel *chan,
const u8 *bssid, const u8 *ssid, int ssid_len,
const u8 *ie, int ie_len, bool use_mfp,
struct cfg80211_crypto_settings *crypt);
int cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev,
struct net_device *dev, const u8 *bssid,
const u8 *ie, int ie_len, u16 reason);
int cfg80211_mlme_disassoc(struct cfg80211_registered_device *rdev,
struct net_device *dev, const u8 *bssid,
const u8 *ie, int ie_len, u16 reason);
void cfg80211_mlme_down(struct cfg80211_registered_device *rdev,
struct net_device *dev);
/* SME */ /* SME */
int cfg80211_connect(struct cfg80211_registered_device *rdev, int cfg80211_connect(struct cfg80211_registered_device *rdev,
struct net_device *dev, struct net_device *dev,
...@@ -193,5 +231,6 @@ void __cfg80211_disconnected(struct net_device *dev, gfp_t gfp, u8 *ie, ...@@ -193,5 +231,6 @@ void __cfg80211_disconnected(struct net_device *dev, gfp_t gfp, u8 *ie,
size_t ie_len, u16 reason, bool from_ap); size_t ie_len, u16 reason, bool from_ap);
void cfg80211_sme_scan_done(struct net_device *dev); void cfg80211_sme_scan_done(struct net_device *dev);
void cfg80211_sme_rx_auth(struct net_device *dev, const u8 *buf, size_t len); void cfg80211_sme_rx_auth(struct net_device *dev, const u8 *buf, size_t len);
void cfg80211_sme_disassoc(struct net_device *dev, int idx);
#endif /* __NET_WIRELESS_CORE_H */ #endif /* __NET_WIRELESS_CORE_H */
...@@ -33,11 +33,11 @@ void cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid, gfp_t gfp) ...@@ -33,11 +33,11 @@ void cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid, gfp_t gfp)
if (wdev->current_bss) { if (wdev->current_bss) {
cfg80211_unhold_bss(wdev->current_bss); cfg80211_unhold_bss(wdev->current_bss);
cfg80211_put_bss(wdev->current_bss); cfg80211_put_bss(&wdev->current_bss->pub);
} }
cfg80211_hold_bss(bss); cfg80211_hold_bss(bss_from_pub(bss));
wdev->current_bss = bss; wdev->current_bss = bss_from_pub(bss);
nl80211_send_ibss_bssid(wiphy_to_dev(wdev->wiphy), dev, bssid, gfp); nl80211_send_ibss_bssid(wiphy_to_dev(wdev->wiphy), dev, bssid, gfp);
#ifdef CONFIG_WIRELESS_EXT #ifdef CONFIG_WIRELESS_EXT
...@@ -78,7 +78,7 @@ void cfg80211_clear_ibss(struct net_device *dev, bool nowext) ...@@ -78,7 +78,7 @@ void cfg80211_clear_ibss(struct net_device *dev, bool nowext)
if (wdev->current_bss) { if (wdev->current_bss) {
cfg80211_unhold_bss(wdev->current_bss); cfg80211_unhold_bss(wdev->current_bss);
cfg80211_put_bss(wdev->current_bss); cfg80211_put_bss(&wdev->current_bss->pub);
} }
wdev->current_bss = NULL; wdev->current_bss = NULL;
...@@ -212,7 +212,7 @@ int cfg80211_ibss_wext_giwfreq(struct net_device *dev, ...@@ -212,7 +212,7 @@ int cfg80211_ibss_wext_giwfreq(struct net_device *dev,
return -EINVAL; return -EINVAL;
if (wdev->current_bss) if (wdev->current_bss)
chan = wdev->current_bss->channel; chan = wdev->current_bss->pub.channel;
else if (wdev->wext.ibss.channel) else if (wdev->wext.ibss.channel)
chan = wdev->wext.ibss.channel; chan = wdev->wext.ibss.channel;
...@@ -352,7 +352,7 @@ int cfg80211_ibss_wext_giwap(struct net_device *dev, ...@@ -352,7 +352,7 @@ int cfg80211_ibss_wext_giwap(struct net_device *dev,
ap_addr->sa_family = ARPHRD_ETHER; ap_addr->sa_family = ARPHRD_ETHER;
if (wdev->current_bss) if (wdev->current_bss)
memcpy(ap_addr->sa_data, wdev->current_bss->bssid, ETH_ALEN); memcpy(ap_addr->sa_data, wdev->current_bss->pub.bssid, ETH_ALEN);
else else
memcpy(ap_addr->sa_data, wdev->wext.ibss.bssid, ETH_ALEN); memcpy(ap_addr->sa_data, wdev->wext.ibss.bssid, ETH_ALEN);
return 0; return 0;
......
This diff is collapsed.
...@@ -3044,9 +3044,10 @@ static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info) ...@@ -3044,9 +3044,10 @@ static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info)
{ {
struct cfg80211_registered_device *drv; struct cfg80211_registered_device *drv;
struct net_device *dev; struct net_device *dev;
struct cfg80211_auth_request req; struct ieee80211_channel *chan;
struct wiphy *wiphy; const u8 *bssid, *ssid, *ie = NULL;
int err; int err, ssid_len, ie_len = 0;
enum nl80211_auth_type auth_type;
if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE])) if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
return -EINVAL; return -EINVAL;
...@@ -3057,6 +3058,12 @@ static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info) ...@@ -3057,6 +3058,12 @@ static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info)
if (!info->attrs[NL80211_ATTR_AUTH_TYPE]) if (!info->attrs[NL80211_ATTR_AUTH_TYPE])
return -EINVAL; return -EINVAL;
if (!info->attrs[NL80211_ATTR_SSID])
return -EINVAL;
if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
return -EINVAL;
rtnl_lock(); rtnl_lock();
err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
...@@ -3078,38 +3085,30 @@ static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info) ...@@ -3078,38 +3085,30 @@ static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info)
goto out; goto out;
} }
wiphy = &drv->wiphy; bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
memset(&req, 0, sizeof(req)); chan = ieee80211_get_channel(&drv->wiphy,
nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
req.peer_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED)) {
err = -EINVAL;
if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) { goto out;
req.chan = ieee80211_get_channel(
wiphy,
nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
if (!req.chan) {
err = -EINVAL;
goto out;
}
} }
if (info->attrs[NL80211_ATTR_SSID]) { ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
req.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]); ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
req.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
}
if (info->attrs[NL80211_ATTR_IE]) { if (info->attrs[NL80211_ATTR_IE]) {
req.ie = nla_data(info->attrs[NL80211_ATTR_IE]); ie = nla_data(info->attrs[NL80211_ATTR_IE]);
req.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]); ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
} }
req.auth_type = nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]); auth_type = nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
if (!nl80211_valid_auth_type(req.auth_type)) { if (!nl80211_valid_auth_type(auth_type)) {
err = -EINVAL; err = -EINVAL;
goto out; goto out;
} }
err = drv->ops->auth(&drv->wiphy, dev, &req); err = cfg80211_mlme_auth(drv, dev, chan, auth_type, bssid,
ssid, ssid_len, ie, ie_len);
out: out:
cfg80211_put_dev(drv); cfg80211_put_dev(drv);
...@@ -3183,26 +3182,29 @@ static int nl80211_crypto_settings(struct genl_info *info, ...@@ -3183,26 +3182,29 @@ static int nl80211_crypto_settings(struct genl_info *info,
static int nl80211_associate(struct sk_buff *skb, struct genl_info *info) static int nl80211_associate(struct sk_buff *skb, struct genl_info *info)
{ {
struct cfg80211_registered_device *drv; struct cfg80211_registered_device *rdev;
struct net_device *dev; struct net_device *dev;
struct cfg80211_assoc_request req; struct cfg80211_crypto_settings crypto;
struct wiphy *wiphy; struct ieee80211_channel *chan;
int err; const u8 *bssid, *ssid, *ie = NULL;
int err, ssid_len, ie_len = 0;
bool use_mfp = false;
if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE])) if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
return -EINVAL; return -EINVAL;
if (!info->attrs[NL80211_ATTR_MAC] || if (!info->attrs[NL80211_ATTR_MAC] ||
!info->attrs[NL80211_ATTR_SSID]) !info->attrs[NL80211_ATTR_SSID] ||
!info->attrs[NL80211_ATTR_WIPHY_FREQ])
return -EINVAL; return -EINVAL;
rtnl_lock(); rtnl_lock();
err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); err = get_drv_dev_by_info_ifindex(info->attrs, &rdev, &dev);
if (err) if (err)
goto unlock_rtnl; goto unlock_rtnl;
if (!drv->ops->assoc) { if (!rdev->ops->assoc) {
err = -EOPNOTSUPP; err = -EOPNOTSUPP;
goto out; goto out;
} }
...@@ -3217,46 +3219,42 @@ static int nl80211_associate(struct sk_buff *skb, struct genl_info *info) ...@@ -3217,46 +3219,42 @@ static int nl80211_associate(struct sk_buff *skb, struct genl_info *info)
goto out; goto out;
} }
wiphy = &drv->wiphy; bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
memset(&req, 0, sizeof(req));
req.peer_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) { chan = ieee80211_get_channel(&rdev->wiphy,
req.chan = ieee80211_get_channel( nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
wiphy, if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED)) {
nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ])); err = -EINVAL;
if (!req.chan) { goto out;
err = -EINVAL;
goto out;
}
} }
req.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]); ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
req.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]); ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
if (info->attrs[NL80211_ATTR_IE]) { if (info->attrs[NL80211_ATTR_IE]) {
req.ie = nla_data(info->attrs[NL80211_ATTR_IE]); ie = nla_data(info->attrs[NL80211_ATTR_IE]);
req.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]); ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
} }
if (info->attrs[NL80211_ATTR_USE_MFP]) { if (info->attrs[NL80211_ATTR_USE_MFP]) {
enum nl80211_mfp use_mfp = enum nl80211_mfp use_mfp =
nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]); nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
if (use_mfp == NL80211_MFP_REQUIRED) if (use_mfp == NL80211_MFP_REQUIRED)
req.use_mfp = true; use_mfp = true;
else if (use_mfp != NL80211_MFP_NO) { else if (use_mfp != NL80211_MFP_NO) {
err = -EINVAL; err = -EINVAL;
goto out; goto out;
} }
} }
err = nl80211_crypto_settings(info, &req.crypto); err = nl80211_crypto_settings(info, &crypto);
if (!err) if (!err)
err = drv->ops->assoc(&drv->wiphy, dev, &req); err = cfg80211_mlme_assoc(rdev, dev, chan, bssid, ssid,
ssid_len, ie, ie_len, use_mfp,
&crypto);
out: out:
cfg80211_put_dev(drv); cfg80211_put_dev(rdev);
dev_put(dev); dev_put(dev);
unlock_rtnl: unlock_rtnl:
rtnl_unlock(); rtnl_unlock();
...@@ -3267,9 +3265,9 @@ static int nl80211_deauthenticate(struct sk_buff *skb, struct genl_info *info) ...@@ -3267,9 +3265,9 @@ static int nl80211_deauthenticate(struct sk_buff *skb, struct genl_info *info)
{ {
struct cfg80211_registered_device *drv; struct cfg80211_registered_device *drv;
struct net_device *dev; struct net_device *dev;
struct cfg80211_deauth_request req; const u8 *ie = NULL, *bssid;
struct wiphy *wiphy; int err, ie_len = 0;
int err; u16 reason_code;
if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE])) if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
return -EINVAL; return -EINVAL;
...@@ -3301,24 +3299,21 @@ static int nl80211_deauthenticate(struct sk_buff *skb, struct genl_info *info) ...@@ -3301,24 +3299,21 @@ static int nl80211_deauthenticate(struct sk_buff *skb, struct genl_info *info)
goto out; goto out;
} }
wiphy = &drv->wiphy; bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
memset(&req, 0, sizeof(req));
req.peer_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
req.reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]); reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
if (req.reason_code == 0) { if (reason_code == 0) {
/* Reason Code 0 is reserved */ /* Reason Code 0 is reserved */
err = -EINVAL; err = -EINVAL;
goto out; goto out;
} }
if (info->attrs[NL80211_ATTR_IE]) { if (info->attrs[NL80211_ATTR_IE]) {
req.ie = nla_data(info->attrs[NL80211_ATTR_IE]); ie = nla_data(info->attrs[NL80211_ATTR_IE]);
req.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]); ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
} }
err = drv->ops->deauth(&drv->wiphy, dev, &req); err = cfg80211_mlme_deauth(drv, dev, bssid, ie, ie_len, reason_code);
out: out:
cfg80211_put_dev(drv); cfg80211_put_dev(drv);
...@@ -3332,9 +3327,9 @@ static int nl80211_disassociate(struct sk_buff *skb, struct genl_info *info) ...@@ -3332,9 +3327,9 @@ static int nl80211_disassociate(struct sk_buff *skb, struct genl_info *info)
{ {
struct cfg80211_registered_device *drv; struct cfg80211_registered_device *drv;
struct net_device *dev; struct net_device *dev;
struct cfg80211_disassoc_request req; const u8 *ie = NULL, *bssid;
struct wiphy *wiphy; int err, ie_len = 0;
int err; u16 reason_code;
if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE])) if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
return -EINVAL; return -EINVAL;
...@@ -3366,24 +3361,21 @@ static int nl80211_disassociate(struct sk_buff *skb, struct genl_info *info) ...@@ -3366,24 +3361,21 @@ static int nl80211_disassociate(struct sk_buff *skb, struct genl_info *info)
goto out; goto out;
} }
wiphy = &drv->wiphy; bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
memset(&req, 0, sizeof(req));
req.peer_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
req.reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]); reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
if (req.reason_code == 0) { if (reason_code == 0) {
/* Reason Code 0 is reserved */ /* Reason Code 0 is reserved */
err = -EINVAL; err = -EINVAL;
goto out; goto out;
} }
if (info->attrs[NL80211_ATTR_IE]) { if (info->attrs[NL80211_ATTR_IE]) {
req.ie = nla_data(info->attrs[NL80211_ATTR_IE]); ie = nla_data(info->attrs[NL80211_ATTR_IE]);
req.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]); ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
} }
err = drv->ops->disassoc(&drv->wiphy, dev, &req); err = cfg80211_mlme_disassoc(drv, dev, bssid, ie, ie_len, reason_code);
out: out:
cfg80211_put_dev(drv); cfg80211_put_dev(drv);
......
...@@ -70,6 +70,8 @@ static void bss_release(struct kref *ref) ...@@ -70,6 +70,8 @@ static void bss_release(struct kref *ref)
if (bss->ies_allocated) if (bss->ies_allocated)
kfree(bss->pub.information_elements); kfree(bss->pub.information_elements);
BUG_ON(atomic_read(&bss->hold));
kfree(bss); kfree(bss);
} }
...@@ -92,8 +94,9 @@ void cfg80211_bss_expire(struct cfg80211_registered_device *dev) ...@@ -92,8 +94,9 @@ void cfg80211_bss_expire(struct cfg80211_registered_device *dev)
bool expired = false; bool expired = false;
list_for_each_entry_safe(bss, tmp, &dev->bss_list, list) { list_for_each_entry_safe(bss, tmp, &dev->bss_list, list) {
if (bss->hold || if (atomic_read(&bss->hold))
!time_after(jiffies, bss->ts + IEEE80211_SCAN_RESULT_EXPIRE)) continue;
if (!time_after(jiffies, bss->ts + IEEE80211_SCAN_RESULT_EXPIRE))
continue; continue;
list_del(&bss->list); list_del(&bss->list);
rb_erase(&bss->rbn, &dev->bss_tree); rb_erase(&bss->rbn, &dev->bss_tree);
...@@ -553,30 +556,6 @@ void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *pub) ...@@ -553,30 +556,6 @@ void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *pub)
} }
EXPORT_SYMBOL(cfg80211_unlink_bss); EXPORT_SYMBOL(cfg80211_unlink_bss);
void cfg80211_hold_bss(struct cfg80211_bss *pub)
{
struct cfg80211_internal_bss *bss;
if (!pub)
return;
bss = container_of(pub, struct cfg80211_internal_bss, pub);
bss->hold = true;
}
EXPORT_SYMBOL(cfg80211_hold_bss);
void cfg80211_unhold_bss(struct cfg80211_bss *pub)
{
struct cfg80211_internal_bss *bss;
if (!pub)
return;
bss = container_of(pub, struct cfg80211_internal_bss, pub);
bss->hold = false;
}
EXPORT_SYMBOL(cfg80211_unhold_bss);
#ifdef CONFIG_WIRELESS_EXT #ifdef CONFIG_WIRELESS_EXT
int cfg80211_wext_siwscan(struct net_device *dev, int cfg80211_wext_siwscan(struct net_device *dev,
struct iw_request_info *info, struct iw_request_info *info,
......
...@@ -103,44 +103,37 @@ static int cfg80211_conn_scan(struct wireless_dev *wdev) ...@@ -103,44 +103,37 @@ static int cfg80211_conn_scan(struct wireless_dev *wdev)
static int cfg80211_conn_do_work(struct wireless_dev *wdev) static int cfg80211_conn_do_work(struct wireless_dev *wdev)
{ {
struct cfg80211_registered_device *drv = wiphy_to_dev(wdev->wiphy); struct cfg80211_registered_device *drv = wiphy_to_dev(wdev->wiphy);
union { struct cfg80211_connect_params *params;
struct cfg80211_auth_request auth_req; int err;
struct cfg80211_assoc_request assoc_req;
} u;
memset(&u, 0, sizeof(u));
if (!wdev->conn) if (!wdev->conn)
return 0; return 0;
params = &wdev->conn->params;
switch (wdev->conn->state) { switch (wdev->conn->state) {
case CFG80211_CONN_SCAN_AGAIN: case CFG80211_CONN_SCAN_AGAIN:
return cfg80211_conn_scan(wdev); return cfg80211_conn_scan(wdev);
case CFG80211_CONN_AUTHENTICATE_NEXT: case CFG80211_CONN_AUTHENTICATE_NEXT:
u.auth_req.chan = wdev->conn->params.channel;
u.auth_req.peer_addr = wdev->conn->params.bssid;
u.auth_req.ssid = wdev->conn->params.ssid;
u.auth_req.ssid_len = wdev->conn->params.ssid_len;
u.auth_req.auth_type = wdev->conn->params.auth_type;
u.auth_req.ie = NULL;
u.auth_req.ie_len = 0;
wdev->conn->state = CFG80211_CONN_AUTHENTICATING;
BUG_ON(!drv->ops->auth); BUG_ON(!drv->ops->auth);
return drv->ops->auth(wdev->wiphy, wdev->netdev, &u.auth_req); wdev->conn->state = CFG80211_CONN_AUTHENTICATING;
return cfg80211_mlme_auth(drv, wdev->netdev,
params->channel, params->auth_type,
params->bssid,
params->ssid, params->ssid_len,
NULL, 0);
case CFG80211_CONN_ASSOCIATE_NEXT: case CFG80211_CONN_ASSOCIATE_NEXT:
u.assoc_req.chan = wdev->conn->params.channel;
u.assoc_req.peer_addr = wdev->conn->params.bssid;
u.assoc_req.ssid = wdev->conn->params.ssid;
u.assoc_req.ssid_len = wdev->conn->params.ssid_len;
u.assoc_req.ie = wdev->conn->params.ie;
u.assoc_req.ie_len = wdev->conn->params.ie_len;
u.assoc_req.use_mfp = false;
memcpy(&u.assoc_req.crypto, &wdev->conn->params.crypto,
sizeof(u.assoc_req.crypto));
wdev->conn->state = CFG80211_CONN_ASSOCIATING;
BUG_ON(!drv->ops->assoc); BUG_ON(!drv->ops->assoc);
return drv->ops->assoc(wdev->wiphy, wdev->netdev, wdev->conn->state = CFG80211_CONN_ASSOCIATING;
&u.assoc_req); err = cfg80211_mlme_assoc(drv, wdev->netdev,
params->channel, params->bssid,
params->ssid, params->ssid_len,
params->ie, params->ie_len,
false, &params->crypto);
if (err)
cfg80211_mlme_deauth(drv, wdev->netdev, params->bssid,
NULL, 0, WLAN_REASON_DEAUTH_LEAVING);
return err;
default: default:
return 0; return 0;
} }
...@@ -186,7 +179,6 @@ static bool cfg80211_get_conn_bss(struct wireless_dev *wdev) ...@@ -186,7 +179,6 @@ static bool cfg80211_get_conn_bss(struct wireless_dev *wdev)
wdev->conn->params.ssid_len, wdev->conn->params.ssid_len,
WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_PRIVACY, WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_PRIVACY,
capa); capa);
if (!bss) if (!bss)
return false; return false;
...@@ -264,9 +256,11 @@ void cfg80211_sme_rx_auth(struct net_device *dev, const u8 *buf, size_t len) ...@@ -264,9 +256,11 @@ void cfg80211_sme_rx_auth(struct net_device *dev, const u8 *buf, size_t len)
} }
wdev->conn->state = CFG80211_CONN_AUTHENTICATE_NEXT; wdev->conn->state = CFG80211_CONN_AUTHENTICATE_NEXT;
schedule_work(&rdev->conn_work); schedule_work(&rdev->conn_work);
} else if (status_code != WLAN_STATUS_SUCCESS) } else if (status_code != WLAN_STATUS_SUCCESS) {
wdev->sme_state = CFG80211_SME_IDLE; wdev->sme_state = CFG80211_SME_IDLE;
else if (wdev->sme_state == CFG80211_SME_CONNECTING && kfree(wdev->conn);
wdev->conn = NULL;
} else if (wdev->sme_state == CFG80211_SME_CONNECTING &&
wdev->conn->state == CFG80211_CONN_AUTHENTICATING) { wdev->conn->state == CFG80211_CONN_AUTHENTICATING) {
wdev->conn->state = CFG80211_CONN_ASSOCIATE_NEXT; wdev->conn->state = CFG80211_CONN_ASSOCIATE_NEXT;
schedule_work(&rdev->conn_work); schedule_work(&rdev->conn_work);
...@@ -330,10 +324,13 @@ static void __cfg80211_connect_result(struct net_device *dev, const u8 *bssid, ...@@ -330,10 +324,13 @@ static void __cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
if (wdev->current_bss) { if (wdev->current_bss) {
cfg80211_unhold_bss(wdev->current_bss); cfg80211_unhold_bss(wdev->current_bss);
cfg80211_put_bss(wdev->current_bss); cfg80211_put_bss(&wdev->current_bss->pub);
wdev->current_bss = NULL; wdev->current_bss = NULL;
} }
if (wdev->conn)
wdev->conn->state = CFG80211_CONN_IDLE;
if (status == WLAN_STATUS_SUCCESS) { if (status == WLAN_STATUS_SUCCESS) {
bss = cfg80211_get_bss(wdev->wiphy, NULL, bssid, bss = cfg80211_get_bss(wdev->wiphy, NULL, bssid,
wdev->ssid, wdev->ssid_len, wdev->ssid, wdev->ssid_len,
...@@ -343,16 +340,15 @@ static void __cfg80211_connect_result(struct net_device *dev, const u8 *bssid, ...@@ -343,16 +340,15 @@ static void __cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
if (WARN_ON(!bss)) if (WARN_ON(!bss))
return; return;
cfg80211_hold_bss(bss); cfg80211_hold_bss(bss_from_pub(bss));
wdev->current_bss = bss; wdev->current_bss = bss_from_pub(bss);
wdev->sme_state = CFG80211_SME_CONNECTED; wdev->sme_state = CFG80211_SME_CONNECTED;
} else { } else {
wdev->sme_state = CFG80211_SME_IDLE; wdev->sme_state = CFG80211_SME_IDLE;
kfree(wdev->conn);
wdev->conn = NULL;
} }
if (wdev->conn)
wdev->conn->state = CFG80211_CONN_IDLE;
} }
void cfg80211_connect_result(struct net_device *dev, const u8 *bssid, void cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
...@@ -387,7 +383,7 @@ void cfg80211_roamed(struct net_device *dev, const u8 *bssid, ...@@ -387,7 +383,7 @@ void cfg80211_roamed(struct net_device *dev, const u8 *bssid,
} }
cfg80211_unhold_bss(wdev->current_bss); cfg80211_unhold_bss(wdev->current_bss);
cfg80211_put_bss(wdev->current_bss); cfg80211_put_bss(&wdev->current_bss->pub);
wdev->current_bss = NULL; wdev->current_bss = NULL;
bss = cfg80211_get_bss(wdev->wiphy, NULL, bssid, bss = cfg80211_get_bss(wdev->wiphy, NULL, bssid,
...@@ -397,8 +393,8 @@ void cfg80211_roamed(struct net_device *dev, const u8 *bssid, ...@@ -397,8 +393,8 @@ void cfg80211_roamed(struct net_device *dev, const u8 *bssid,
if (WARN_ON(!bss)) if (WARN_ON(!bss))
return; return;
cfg80211_hold_bss(bss); cfg80211_hold_bss(bss_from_pub(bss));
wdev->current_bss = bss; wdev->current_bss = bss_from_pub(bss);
nl80211_send_roamed(wiphy_to_dev(wdev->wiphy), dev, bssid, nl80211_send_roamed(wiphy_to_dev(wdev->wiphy), dev, bssid,
req_ie, req_ie_len, resp_ie, resp_ie_len, gfp); req_ie, req_ie_len, resp_ie, resp_ie_len, gfp);
...@@ -440,7 +436,7 @@ void __cfg80211_disconnected(struct net_device *dev, gfp_t gfp, u8 *ie, ...@@ -440,7 +436,7 @@ void __cfg80211_disconnected(struct net_device *dev, gfp_t gfp, u8 *ie,
if (wdev->current_bss) { if (wdev->current_bss) {
cfg80211_unhold_bss(wdev->current_bss); cfg80211_unhold_bss(wdev->current_bss);
cfg80211_put_bss(wdev->current_bss); cfg80211_put_bss(&wdev->current_bss->pub);
} }
wdev->current_bss = NULL; wdev->current_bss = NULL;
...@@ -449,6 +445,8 @@ void __cfg80211_disconnected(struct net_device *dev, gfp_t gfp, u8 *ie, ...@@ -449,6 +445,8 @@ void __cfg80211_disconnected(struct net_device *dev, gfp_t gfp, u8 *ie,
if (wdev->conn) { if (wdev->conn) {
kfree(wdev->conn->ie); kfree(wdev->conn->ie);
wdev->conn->ie = NULL; wdev->conn->ie = NULL;
kfree(wdev->conn);
wdev->conn = NULL;
} }
nl80211_send_disconnected(wiphy_to_dev(wdev->wiphy), dev, nl80211_send_disconnected(wiphy_to_dev(wdev->wiphy), dev,
...@@ -482,12 +480,12 @@ int cfg80211_connect(struct cfg80211_registered_device *rdev, ...@@ -482,12 +480,12 @@ int cfg80211_connect(struct cfg80211_registered_device *rdev,
if (!rdev->ops->auth || !rdev->ops->assoc) if (!rdev->ops->auth || !rdev->ops->assoc)
return -EOPNOTSUPP; return -EOPNOTSUPP;
if (!wdev->conn) { if (WARN_ON(wdev->conn))
wdev->conn = kzalloc(sizeof(*wdev->conn), GFP_KERNEL); return -EINPROGRESS;
if (!wdev->conn)
return -ENOMEM; wdev->conn = kzalloc(sizeof(*wdev->conn), GFP_KERNEL);
} else if (!wdev->conn)
memset(wdev->conn, 0, sizeof(*wdev->conn)); return -ENOMEM;
/* /*
* Copy all parameters, and treat explicitly IEs, BSSID, SSID. * Copy all parameters, and treat explicitly IEs, BSSID, SSID.
...@@ -502,8 +500,11 @@ int cfg80211_connect(struct cfg80211_registered_device *rdev, ...@@ -502,8 +500,11 @@ int cfg80211_connect(struct cfg80211_registered_device *rdev,
wdev->conn->ie = kmemdup(connect->ie, connect->ie_len, wdev->conn->ie = kmemdup(connect->ie, connect->ie_len,
GFP_KERNEL); GFP_KERNEL);
wdev->conn->params.ie = wdev->conn->ie; wdev->conn->params.ie = wdev->conn->ie;
if (!wdev->conn->ie) if (!wdev->conn->ie) {
kfree(wdev->conn);
wdev->conn = NULL;
return -ENOMEM; return -ENOMEM;
}
} }
if (connect->auth_type == NL80211_AUTHTYPE_AUTOMATIC) { if (connect->auth_type == NL80211_AUTHTYPE_AUTOMATIC) {
...@@ -543,8 +544,11 @@ int cfg80211_connect(struct cfg80211_registered_device *rdev, ...@@ -543,8 +544,11 @@ int cfg80211_connect(struct cfg80211_registered_device *rdev,
wdev->conn->state = CFG80211_CONN_SCAN_AGAIN; wdev->conn->state = CFG80211_CONN_SCAN_AGAIN;
} }
} }
if (err) if (err) {
kfree(wdev->conn);
wdev->conn = NULL;
wdev->sme_state = CFG80211_SME_IDLE; wdev->sme_state = CFG80211_SME_IDLE;
}
return err; return err;
} else { } else {
...@@ -572,31 +576,27 @@ int cfg80211_disconnect(struct cfg80211_registered_device *rdev, ...@@ -572,31 +576,27 @@ int cfg80211_disconnect(struct cfg80211_registered_device *rdev,
return -EINVAL; return -EINVAL;
if (!rdev->ops->disconnect) { if (!rdev->ops->disconnect) {
struct cfg80211_deauth_request deauth; if (!rdev->ops->deauth)
u8 bssid[ETH_ALEN]; return -EOPNOTSUPP;
/* internal bug. */ /* was it connected by userspace SME? */
if (WARN_ON(!wdev->conn)) if (!wdev->conn) {
return -EINVAL; cfg80211_mlme_down(rdev, dev);
return 0;
}
if (wdev->sme_state == CFG80211_SME_CONNECTING && if (wdev->sme_state == CFG80211_SME_CONNECTING &&
(wdev->conn->state == CFG80211_CONN_SCANNING || (wdev->conn->state == CFG80211_CONN_SCANNING ||
wdev->conn->state == CFG80211_CONN_SCAN_AGAIN)) { wdev->conn->state == CFG80211_CONN_SCAN_AGAIN)) {
wdev->sme_state = CFG80211_SME_IDLE; wdev->sme_state = CFG80211_SME_IDLE;
kfree(wdev->conn);
wdev->conn = NULL;
return 0; return 0;
} }
if (!rdev->ops->deauth)
return -EOPNOTSUPP;
memset(&deauth, 0, sizeof(deauth));
/* wdev->conn->params.bssid must be set if > SCANNING */ /* wdev->conn->params.bssid must be set if > SCANNING */
memcpy(bssid, wdev->conn->params.bssid, ETH_ALEN); err = cfg80211_mlme_deauth(rdev, dev, wdev->conn->params.bssid,
deauth.peer_addr = bssid; NULL, 0, reason);
deauth.reason_code = reason;
err = rdev->ops->deauth(&rdev->wiphy, dev, &deauth);
if (err) if (err)
return err; return err;
} else { } else {
...@@ -614,3 +614,33 @@ int cfg80211_disconnect(struct cfg80211_registered_device *rdev, ...@@ -614,3 +614,33 @@ int cfg80211_disconnect(struct cfg80211_registered_device *rdev,
return 0; return 0;
} }
void cfg80211_sme_disassoc(struct net_device *dev, int idx)
{
struct wireless_dev *wdev = dev->ieee80211_ptr;
struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
u8 bssid[ETH_ALEN];
if (!wdev->conn)
return;
if (wdev->conn->state == CFG80211_CONN_IDLE)
return;
/*
* Ok, so the association was made by this SME -- we don't
* want it any more so deauthenticate too.
*/
if (!wdev->auth_bsses[idx])
return;
memcpy(bssid, wdev->auth_bsses[idx]->pub.bssid, ETH_ALEN);
if (cfg80211_mlme_deauth(rdev, dev, bssid,
NULL, 0, WLAN_REASON_DEAUTH_LEAVING)) {
/* whatever -- assume gone anyway */
cfg80211_unhold_bss(wdev->auth_bsses[idx]);
cfg80211_put_bss(&wdev->auth_bsses[idx]->pub);
wdev->auth_bsses[idx] = NULL;
}
}
...@@ -93,7 +93,7 @@ int cfg80211_mgd_wext_giwfreq(struct net_device *dev, ...@@ -93,7 +93,7 @@ int cfg80211_mgd_wext_giwfreq(struct net_device *dev,
return -EINVAL; return -EINVAL;
if (wdev->current_bss) if (wdev->current_bss)
chan = wdev->current_bss->channel; chan = wdev->current_bss->pub.channel;
else if (wdev->wext.connect.channel) else if (wdev->wext.connect.channel)
chan = wdev->wext.connect.channel; chan = wdev->wext.connect.channel;
...@@ -244,7 +244,7 @@ int cfg80211_mgd_wext_giwap(struct net_device *dev, ...@@ -244,7 +244,7 @@ int cfg80211_mgd_wext_giwap(struct net_device *dev,
ap_addr->sa_family = ARPHRD_ETHER; ap_addr->sa_family = ARPHRD_ETHER;
if (wdev->current_bss) if (wdev->current_bss)
memcpy(ap_addr->sa_data, wdev->current_bss->bssid, ETH_ALEN); memcpy(ap_addr->sa_data, wdev->current_bss->pub.bssid, ETH_ALEN);
else if (wdev->wext.connect.bssid) else if (wdev->wext.connect.bssid)
memcpy(ap_addr->sa_data, wdev->wext.connect.bssid, ETH_ALEN); memcpy(ap_addr->sa_data, wdev->wext.connect.bssid, ETH_ALEN);
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment