wext-sme.c 9.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * cfg80211 wext compat for managed mode.
 *
 * Copyright 2009	Johannes Berg <johannes@sipsolutions.net>
 * Copyright (C) 2009   Intel Corporation. All rights reserved.
 */

#include <linux/etherdevice.h>
#include <linux/if_arp.h>
#include <net/cfg80211.h>
#include "nl80211.h"

J
Johannes Berg 已提交
13 14
int cfg80211_mgd_wext_connect(struct cfg80211_registered_device *rdev,
			      struct wireless_dev *wdev)
15
{
J
Johannes Berg 已提交
16 17
	struct cfg80211_cached_keys *ck = NULL;
	int err, i;
18

J
Johannes Berg 已提交
19 20 21
	ASSERT_RDEV_LOCK(rdev);
	ASSERT_WDEV_LOCK(wdev);

22 23 24 25 26 27 28
	if (!netif_running(wdev->netdev))
		return 0;

	wdev->wext.connect.ie = wdev->wext.ie;
	wdev->wext.connect.ie_len = wdev->wext.ie_len;
	wdev->wext.connect.privacy = wdev->wext.default_key != -1;

J
Johannes Berg 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
	if (wdev->wext.keys) {
		wdev->wext.keys->def = wdev->wext.default_key;
		wdev->wext.keys->defmgmt = wdev->wext.default_mgmt_key;
	}

	if (!wdev->wext.connect.ssid_len)
		return 0;

	if (wdev->wext.keys) {
		ck = kmemdup(wdev->wext.keys, sizeof(*ck), GFP_KERNEL);
		if (!ck)
			return -ENOMEM;
		for (i = 0; i < 6; i++)
			ck->params[i].key = ck->data[i];
	}
	err = __cfg80211_connect(rdev, wdev->netdev,
				 &wdev->wext.connect, ck);
	if (err)
		kfree(ck);
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71

	return err;
}

int cfg80211_mgd_wext_siwfreq(struct net_device *dev,
			      struct iw_request_info *info,
			      struct iw_freq *freq, char *extra)
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	struct ieee80211_channel *chan;
	int err;

	/* call only for station! */
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION))
		return -EINVAL;

	chan = cfg80211_wext_freq(wdev->wiphy, freq);
	if (chan && IS_ERR(chan))
		return PTR_ERR(chan);

	if (chan && (chan->flags & IEEE80211_CHAN_DISABLED))
		return -EINVAL;

J
Johannes Berg 已提交
72 73 74 75 76 77 78
	cfg80211_lock_rdev(rdev);
	wdev_lock(wdev);

	if (wdev->wext.connect.channel == chan) {
		err = 0;
		goto out;
	}
79 80 81 82 83 84

	if (wdev->sme_state != CFG80211_SME_IDLE) {
		bool event = true;
		/* if SSID set, we'll try right again, avoid event */
		if (wdev->wext.connect.ssid_len)
			event = false;
J
Johannes Berg 已提交
85 86 87
		err = __cfg80211_disconnect(wiphy_to_dev(wdev->wiphy),
					    dev, WLAN_REASON_DEAUTH_LEAVING,
					    event);
88
		if (err)
J
Johannes Berg 已提交
89
			goto out;
90 91
	}

J
Johannes Berg 已提交
92

93 94 95 96
	wdev->wext.connect.channel = chan;

	/* SSID is not set, we just want to switch channel */
	if (wdev->wext.connect.ssid_len && chan) {
J
Johannes Berg 已提交
97 98 99 100 101
		err = -EOPNOTSUPP;
		if (rdev->ops->set_channel)
			err = rdev->ops->set_channel(wdev->wiphy, chan,
						     NL80211_CHAN_NO_HT);
		goto out;
102 103
	}

J
Johannes Berg 已提交
104 105 106 107 108
	err = cfg80211_mgd_wext_connect(wiphy_to_dev(wdev->wiphy), wdev);
 out:
	wdev_unlock(wdev);
	cfg80211_unlock_rdev(rdev);
	return err;
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
}
/* temporary symbol - mark GPL - in the future the handler won't be */
EXPORT_SYMBOL_GPL(cfg80211_mgd_wext_siwfreq);

int cfg80211_mgd_wext_giwfreq(struct net_device *dev,
			      struct iw_request_info *info,
			      struct iw_freq *freq, char *extra)
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct ieee80211_channel *chan = NULL;

	/* call only for station! */
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION))
		return -EINVAL;

J
Johannes Berg 已提交
124
	wdev_lock(wdev);
125
	if (wdev->current_bss)
J
Johannes Berg 已提交
126
		chan = wdev->current_bss->pub.channel;
127 128
	else if (wdev->wext.connect.channel)
		chan = wdev->wext.connect.channel;
J
Johannes Berg 已提交
129
	wdev_unlock(wdev);
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161

	if (chan) {
		freq->m = chan->center_freq;
		freq->e = 6;
		return 0;
	}

	/* no channel if not joining */
	return -EINVAL;
}
/* temporary symbol - mark GPL - in the future the handler won't be */
EXPORT_SYMBOL_GPL(cfg80211_mgd_wext_giwfreq);

int cfg80211_mgd_wext_siwessid(struct net_device *dev,
			       struct iw_request_info *info,
			       struct iw_point *data, char *ssid)
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	size_t len = data->length;
	int err;

	/* call only for station! */
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION))
		return -EINVAL;

	if (!data->flags)
		len = 0;

	/* iwconfig uses nul termination in SSID.. */
	if (len > 0 && ssid[len - 1] == '\0')
		len--;

J
Johannes Berg 已提交
162 163 164 165 166
	cfg80211_lock_rdev(wiphy_to_dev(wdev->wiphy));
	wdev_lock(wdev);

	err = 0;

167 168 169
	if (wdev->wext.connect.ssid && len &&
	    len == wdev->wext.connect.ssid_len &&
	    memcmp(wdev->wext.connect.ssid, ssid, len))
J
Johannes Berg 已提交
170
		goto out;
171 172 173 174 175 176

	if (wdev->sme_state != CFG80211_SME_IDLE) {
		bool event = true;
		/* if SSID set now, we'll try to connect, avoid event */
		if (len)
			event = false;
J
Johannes Berg 已提交
177 178 179
		err = __cfg80211_disconnect(wiphy_to_dev(wdev->wiphy),
					    dev, WLAN_REASON_DEAUTH_LEAVING,
					    event);
180
		if (err)
J
Johannes Berg 已提交
181
			goto out;
182 183 184 185 186 187 188 189
	}

	wdev->wext.connect.ssid = wdev->wext.ssid;
	memcpy(wdev->wext.ssid, ssid, len);
	wdev->wext.connect.ssid_len = len;

	wdev->wext.connect.crypto.control_port = false;

J
Johannes Berg 已提交
190 191 192 193 194
	err = cfg80211_mgd_wext_connect(wiphy_to_dev(wdev->wiphy), wdev);
 out:
	wdev_unlock(wdev);
	cfg80211_unlock_rdev(wiphy_to_dev(wdev->wiphy));
	return err;
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
}
/* temporary symbol - mark GPL - in the future the handler won't be */
EXPORT_SYMBOL_GPL(cfg80211_mgd_wext_siwessid);

int cfg80211_mgd_wext_giwessid(struct net_device *dev,
			       struct iw_request_info *info,
			       struct iw_point *data, char *ssid)
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;

	/* call only for station! */
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION))
		return -EINVAL;

	data->flags = 0;

J
Johannes Berg 已提交
211
	wdev_lock(wdev);
212
	if (wdev->wext.connect.ssid && wdev->wext.connect.ssid_len) {
213 214 215 216 217
		data->flags = 1;
		data->length = wdev->wext.connect.ssid_len;
		memcpy(ssid, wdev->wext.connect.ssid, data->length);
	} else
		data->flags = 0;
J
Johannes Berg 已提交
218
	wdev_unlock(wdev);
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243

	return 0;
}
/* temporary symbol - mark GPL - in the future the handler won't be */
EXPORT_SYMBOL_GPL(cfg80211_mgd_wext_giwessid);

int cfg80211_mgd_wext_siwap(struct net_device *dev,
			    struct iw_request_info *info,
			    struct sockaddr *ap_addr, char *extra)
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	u8 *bssid = ap_addr->sa_data;
	int err;

	/* call only for station! */
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION))
		return -EINVAL;

	if (ap_addr->sa_family != ARPHRD_ETHER)
		return -EINVAL;

	/* automatic mode */
	if (is_zero_ether_addr(bssid) || is_broadcast_ether_addr(bssid))
		bssid = NULL;

J
Johannes Berg 已提交
244 245 246 247
	cfg80211_lock_rdev(wiphy_to_dev(wdev->wiphy));
	wdev_lock(wdev);

	err = 0;
248 249
	/* both automatic */
	if (!bssid && !wdev->wext.connect.bssid)
J
Johannes Berg 已提交
250
		goto out;
251 252 253 254

	/* fixed already - and no change */
	if (wdev->wext.connect.bssid && bssid &&
	    compare_ether_addr(bssid, wdev->wext.connect.bssid) == 0)
J
Johannes Berg 已提交
255
		goto out;
256 257

	if (wdev->sme_state != CFG80211_SME_IDLE) {
J
Johannes Berg 已提交
258 259 260
		err = __cfg80211_disconnect(wiphy_to_dev(wdev->wiphy),
					    dev, WLAN_REASON_DEAUTH_LEAVING,
					    false);
261
		if (err)
J
Johannes Berg 已提交
262
			goto out;
263 264 265 266 267 268 269 270
	}

	if (bssid) {
		memcpy(wdev->wext.bssid, bssid, ETH_ALEN);
		wdev->wext.connect.bssid = wdev->wext.bssid;
	} else
		wdev->wext.connect.bssid = NULL;

J
Johannes Berg 已提交
271 272 273 274 275
	err = cfg80211_mgd_wext_connect(wiphy_to_dev(wdev->wiphy), wdev);
 out:
	wdev_unlock(wdev);
	cfg80211_unlock_rdev(wiphy_to_dev(wdev->wiphy));
	return err;
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
}
/* temporary symbol - mark GPL - in the future the handler won't be */
EXPORT_SYMBOL_GPL(cfg80211_mgd_wext_siwap);

int cfg80211_mgd_wext_giwap(struct net_device *dev,
			    struct iw_request_info *info,
			    struct sockaddr *ap_addr, char *extra)
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;

	/* call only for station! */
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION))
		return -EINVAL;

	ap_addr->sa_family = ARPHRD_ETHER;

J
Johannes Berg 已提交
292
	wdev_lock(wdev);
293
	if (wdev->current_bss)
J
Johannes Berg 已提交
294
		memcpy(ap_addr->sa_data, wdev->current_bss->pub.bssid, ETH_ALEN);
295 296 297 298
	else if (wdev->wext.connect.bssid)
		memcpy(ap_addr->sa_data, wdev->wext.connect.bssid, ETH_ALEN);
	else
		memset(ap_addr->sa_data, 0, ETH_ALEN);
J
Johannes Berg 已提交
299
	wdev_unlock(wdev);
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320

	return 0;
}
/* temporary symbol - mark GPL - in the future the handler won't be */
EXPORT_SYMBOL_GPL(cfg80211_mgd_wext_giwap);

int cfg80211_wext_siwgenie(struct net_device *dev,
			   struct iw_request_info *info,
			   struct iw_point *data, char *extra)
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	u8 *ie = extra;
	int ie_len = data->length, err;

	if (wdev->iftype != NL80211_IFTYPE_STATION)
		return -EOPNOTSUPP;

	if (!ie_len)
		ie = NULL;

J
Johannes Berg 已提交
321 322
	wdev_lock(wdev);

323
	/* no change */
J
Johannes Berg 已提交
324
	err = 0;
325 326
	if (wdev->wext.ie_len == ie_len &&
	    memcmp(wdev->wext.ie, ie, ie_len) == 0)
J
Johannes Berg 已提交
327
		goto out;
328 329 330

	if (ie_len) {
		ie = kmemdup(extra, ie_len, GFP_KERNEL);
J
Johannes Berg 已提交
331 332 333 334
		if (!ie) {
			err = -ENOMEM;
			goto out;
		}
335 336 337 338 339 340 341 342
	} else
		ie = NULL;

	kfree(wdev->wext.ie);
	wdev->wext.ie = ie;
	wdev->wext.ie_len = ie_len;

	if (wdev->sme_state != CFG80211_SME_IDLE) {
J
Johannes Berg 已提交
343 344
		err = __cfg80211_disconnect(rdev, dev,
					    WLAN_REASON_DEAUTH_LEAVING, false);
345
		if (err)
J
Johannes Berg 已提交
346
			goto out;
347 348 349
	}

	/* userspace better not think we'll reconnect */
J
Johannes Berg 已提交
350 351 352 353
	err = 0;
 out:
	wdev_unlock(wdev);
	return err;
354 355 356 357 358 359 360 361 362 363
}
EXPORT_SYMBOL_GPL(cfg80211_wext_siwgenie);

int cfg80211_wext_siwmlme(struct net_device *dev,
			  struct iw_request_info *info,
			  struct iw_point *data, char *extra)
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct iw_mlme *mlme = (struct iw_mlme *)extra;
	struct cfg80211_registered_device *rdev;
J
Johannes Berg 已提交
364
	int err;
365 366 367 368 369 370 371 372 373 374 375 376

	if (!wdev)
		return -EOPNOTSUPP;

	rdev = wiphy_to_dev(wdev->wiphy);

	if (wdev->iftype != NL80211_IFTYPE_STATION)
		return -EINVAL;

	if (mlme->addr.sa_family != ARPHRD_ETHER)
		return -EINVAL;

J
Johannes Berg 已提交
377
	wdev_lock(wdev);
378 379 380
	switch (mlme->cmd) {
	case IW_MLME_DEAUTH:
	case IW_MLME_DISASSOC:
J
Johannes Berg 已提交
381 382 383
		err = __cfg80211_disconnect(rdev, dev, mlme->reason_code,
					    true);
		break;
384
	default:
J
Johannes Berg 已提交
385 386
		err = -EOPNOTSUPP;
		break;
387
	}
J
Johannes Berg 已提交
388 389 390
	wdev_unlock(wdev);

	return err;
391 392
}
EXPORT_SYMBOL_GPL(cfg80211_wext_siwmlme);