wext-sme.c 9.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/*
 * 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>
11
#include "wext-compat.h"
12 13
#include "nl80211.h"

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

J
Johannes Berg 已提交
21 22 23
	ASSERT_RDEV_LOCK(rdev);
	ASSERT_WDEV_LOCK(wdev);

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

	wdev->wext.connect.ie = wdev->wext.ie;
	wdev->wext.connect.ie_len = wdev->wext.ie_len;

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

	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];
	}
47 48 49 50

	if (wdev->wext.prev_bssid_valid)
		prev_bssid = wdev->wext.prev_bssid;

J
Johannes Berg 已提交
51
	err = __cfg80211_connect(rdev, wdev->netdev,
52
				 &wdev->wext.connect, ck, prev_bssid);
J
Johannes Berg 已提交
53 54
	if (err)
		kfree(ck);
55 56 57 58 59 60

	return err;
}

int cfg80211_mgd_wext_siwfreq(struct net_device *dev,
			      struct iw_request_info *info,
61
			      struct iw_freq *wextfreq, char *extra)
62 63 64
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
65 66
	struct ieee80211_channel *chan = NULL;
	int err, freq;
67 68 69 70 71

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

72 73 74
	freq = cfg80211_wext_freq(wdev->wiphy, wextfreq);
	if (freq < 0)
		return freq;
75

76 77 78 79 80 81 82
	if (freq) {
		chan = ieee80211_get_channel(wdev->wiphy, freq);
		if (!chan)
			return -EINVAL;
		if (chan->flags & IEEE80211_CHAN_DISABLED)
			return -EINVAL;
	}
83

J
Johannes Berg 已提交
84
	cfg80211_lock_rdev(rdev);
85
	mutex_lock(&rdev->devlist_mtx);
J
Johannes Berg 已提交
86 87
	wdev_lock(wdev);

88 89
	if (wdev->sme_state != CFG80211_SME_IDLE) {
		bool event = true;
90 91 92 93 94 95

		if (wdev->wext.connect.channel == chan) {
			err = 0;
			goto out;
		}

96 97 98
		/* if SSID set, we'll try right again, avoid event */
		if (wdev->wext.connect.ssid_len)
			event = false;
99 100
		err = __cfg80211_disconnect(rdev, dev,
					    WLAN_REASON_DEAUTH_LEAVING, event);
101
		if (err)
J
Johannes Berg 已提交
102
			goto out;
103 104
	}

J
Johannes Berg 已提交
105

106 107 108
	wdev->wext.connect.channel = chan;

	/* SSID is not set, we just want to switch channel */
109
	if (chan && !wdev->wext.connect.ssid_len) {
110
		err = rdev_set_freq(rdev, wdev, freq, NL80211_CHAN_NO_HT);
J
Johannes Berg 已提交
111
		goto out;
112 113
	}

114
	err = cfg80211_mgd_wext_connect(rdev, wdev);
J
Johannes Berg 已提交
115 116
 out:
	wdev_unlock(wdev);
117
	mutex_unlock(&rdev->devlist_mtx);
J
Johannes Berg 已提交
118 119
	cfg80211_unlock_rdev(rdev);
	return err;
120 121 122 123 124 125 126 127 128 129 130 131 132
}

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 已提交
133
	wdev_lock(wdev);
134
	if (wdev->current_bss)
J
Johannes Berg 已提交
135
		chan = wdev->current_bss->pub.channel;
136 137
	else if (wdev->wext.connect.channel)
		chan = wdev->wext.connect.channel;
J
Johannes Berg 已提交
138
	wdev_unlock(wdev);
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154

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

	/* no channel if not joining */
	return -EINVAL;
}

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;
155
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
156 157 158 159 160 161 162 163 164 165 166 167 168 169
	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--;

170 171
	cfg80211_lock_rdev(rdev);
	mutex_lock(&rdev->devlist_mtx);
J
Johannes Berg 已提交
172 173 174 175
	wdev_lock(wdev);

	err = 0;

176 177
	if (wdev->sme_state != CFG80211_SME_IDLE) {
		bool event = true;
178 179 180 181 182 183

		if (wdev->wext.connect.ssid && len &&
		    len == wdev->wext.connect.ssid_len &&
		    memcmp(wdev->wext.connect.ssid, ssid, len) == 0)
			goto out;

184 185 186
		/* if SSID set now, we'll try to connect, avoid event */
		if (len)
			event = false;
187 188
		err = __cfg80211_disconnect(rdev, dev,
					    WLAN_REASON_DEAUTH_LEAVING, event);
189
		if (err)
J
Johannes Berg 已提交
190
			goto out;
191 192
	}

193
	wdev->wext.prev_bssid_valid = false;
194 195 196 197 198 199
	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;

200
	err = cfg80211_mgd_wext_connect(rdev, wdev);
J
Johannes Berg 已提交
201 202
 out:
	wdev_unlock(wdev);
203 204
	mutex_unlock(&rdev->devlist_mtx);
	cfg80211_unlock_rdev(rdev);
J
Johannes Berg 已提交
205
	return err;
206 207 208 209 210 211 212 213 214 215 216 217 218 219
}

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 已提交
220
	wdev_lock(wdev);
221 222 223 224 225 226 227 228 229
	if (wdev->current_bss) {
		const u8 *ie = ieee80211_bss_get_ie(&wdev->current_bss->pub,
						    WLAN_EID_SSID);
		if (ie) {
			data->flags = 1;
			data->length = ie[1];
			memcpy(ssid, ie + 2, data->length);
		}
	} else if (wdev->wext.connect.ssid && wdev->wext.connect.ssid_len) {
230 231 232
		data->flags = 1;
		data->length = wdev->wext.connect.ssid_len;
		memcpy(ssid, wdev->wext.connect.ssid, data->length);
233
	}
J
Johannes Berg 已提交
234
	wdev_unlock(wdev);
235 236 237 238 239 240 241 242 243

	return 0;
}

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;
244
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
245 246 247 248 249 250 251 252 253 254 255 256 257 258
	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;

259 260
	cfg80211_lock_rdev(rdev);
	mutex_lock(&rdev->devlist_mtx);
J
Johannes Berg 已提交
261 262
	wdev_lock(wdev);

263 264 265 266 267
	if (wdev->sme_state != CFG80211_SME_IDLE) {
		err = 0;
		/* both automatic */
		if (!bssid && !wdev->wext.connect.bssid)
			goto out;
268

269 270 271 272
		/* fixed already - and no change */
		if (wdev->wext.connect.bssid && bssid &&
		    compare_ether_addr(bssid, wdev->wext.connect.bssid) == 0)
			goto out;
273

274 275
		err = __cfg80211_disconnect(rdev, dev,
					    WLAN_REASON_DEAUTH_LEAVING, false);
276
		if (err)
J
Johannes Berg 已提交
277
			goto out;
278 279 280 281 282 283 284 285
	}

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

286
	err = cfg80211_mgd_wext_connect(rdev, wdev);
J
Johannes Berg 已提交
287 288
 out:
	wdev_unlock(wdev);
289 290
	mutex_unlock(&rdev->devlist_mtx);
	cfg80211_unlock_rdev(rdev);
J
Johannes Berg 已提交
291
	return err;
292 293 294 295 296 297 298 299 300 301 302 303 304 305
}

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 已提交
306
	wdev_lock(wdev);
307
	if (wdev->current_bss)
J
Johannes Berg 已提交
308
		memcpy(ap_addr->sa_data, wdev->current_bss->pub.bssid, ETH_ALEN);
309 310
	else
		memset(ap_addr->sa_data, 0, ETH_ALEN);
J
Johannes Berg 已提交
311
	wdev_unlock(wdev);
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330

	return 0;
}

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 已提交
331 332
	wdev_lock(wdev);

333
	/* no change */
J
Johannes Berg 已提交
334
	err = 0;
335 336
	if (wdev->wext.ie_len == ie_len &&
	    memcmp(wdev->wext.ie, ie, ie_len) == 0)
J
Johannes Berg 已提交
337
		goto out;
338 339 340

	if (ie_len) {
		ie = kmemdup(extra, ie_len, GFP_KERNEL);
J
Johannes Berg 已提交
341 342 343 344
		if (!ie) {
			err = -ENOMEM;
			goto out;
		}
345 346 347 348 349 350 351 352
	} 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 已提交
353 354
		err = __cfg80211_disconnect(rdev, dev,
					    WLAN_REASON_DEAUTH_LEAVING, false);
355
		if (err)
J
Johannes Berg 已提交
356
			goto out;
357 358 359
	}

	/* userspace better not think we'll reconnect */
J
Johannes Berg 已提交
360 361 362 363
	err = 0;
 out:
	wdev_unlock(wdev);
	return err;
364 365 366 367 368 369 370 371 372 373
}
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 已提交
374
	int err;
375 376 377 378 379 380 381 382 383 384 385 386

	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 已提交
387
	wdev_lock(wdev);
388 389 390
	switch (mlme->cmd) {
	case IW_MLME_DEAUTH:
	case IW_MLME_DISASSOC:
J
Johannes Berg 已提交
391 392 393
		err = __cfg80211_disconnect(rdev, dev, mlme->reason_code,
					    true);
		break;
394
	default:
J
Johannes Berg 已提交
395 396
		err = -EOPNOTSUPP;
		break;
397
	}
J
Johannes Berg 已提交
398 399 400
	wdev_unlock(wdev);

	return err;
401 402
}
EXPORT_SYMBOL_GPL(cfg80211_wext_siwmlme);