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

8
#include <linux/export.h>
9 10
#include <linux/etherdevice.h>
#include <linux/if_arp.h>
11
#include <linux/slab.h>
12
#include <net/cfg80211.h>
13
#include <net/cfg80211-wext.h>
14
#include "wext-compat.h"
15 16
#include "nl80211.h"

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

24
	ASSERT_RTNL();
J
Johannes Berg 已提交
25 26
	ASSERT_WDEV_LOCK(wdev);

27 28 29 30 31 32
	if (!netif_running(wdev->netdev))
		return 0;

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

33 34 35
	/* Use default background scan period */
	wdev->wext.connect.bg_scan_period = -1;

J
Johannes Berg 已提交
36 37
	if (wdev->wext.keys) {
		wdev->wext.keys->def = wdev->wext.default_key;
38 39
		if (wdev->wext.default_key != -1)
			wdev->wext.connect.privacy = true;
J
Johannes Berg 已提交
40 41 42 43 44 45 46 47 48
	}

	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;
49
		for (i = 0; i < 4; i++)
J
Johannes Berg 已提交
50 51
			ck->params[i].key = ck->data[i];
	}
52 53 54 55

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

56 57
	err = cfg80211_connect(rdev, wdev->netdev,
			       &wdev->wext.connect, ck, prev_bssid);
J
Johannes Berg 已提交
58
	if (err)
59
		kzfree(ck);
60 61 62 63 64 65

	return err;
}

int cfg80211_mgd_wext_siwfreq(struct net_device *dev,
			      struct iw_request_info *info,
66
			      struct iw_freq *wextfreq, char *extra)
67 68
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
69
	struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
70 71
	struct ieee80211_channel *chan = NULL;
	int err, freq;
72 73 74 75 76

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

77
	freq = cfg80211_wext_freq(wextfreq);
78 79
	if (freq < 0)
		return freq;
80

81 82 83 84 85 86 87
	if (freq) {
		chan = ieee80211_get_channel(wdev->wiphy, freq);
		if (!chan)
			return -EINVAL;
		if (chan->flags & IEEE80211_CHAN_DISABLED)
			return -EINVAL;
	}
88

J
Johannes Berg 已提交
89 90
	wdev_lock(wdev);

91
	if (wdev->conn) {
92
		bool event = true;
93 94 95 96 97 98

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

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

J
Johannes Berg 已提交
108

109 110
	wdev->wext.connect.channel = chan;

111 112 113 114 115 116 117
	/*
	 * SSID is not set, we just want to switch monitor channel,
	 * this is really just backward compatibility, if the SSID
	 * is set then we use the channel to select the BSS to use
	 * to connect to instead. If we were connected on another
	 * channel we disconnected above and reconnect below.
	 */
118
	if (chan && !wdev->wext.connect.ssid_len) {
119
		struct cfg80211_chan_def chandef = {
120 121
			.width = NL80211_CHAN_WIDTH_20_NOHT,
			.center_freq1 = freq,
122 123 124 125 126 127 128
		};

		chandef.chan = ieee80211_get_channel(&rdev->wiphy, freq);
		if (chandef.chan)
			err = cfg80211_set_monitor_channel(rdev, &chandef);
		else
			err = -EINVAL;
J
Johannes Berg 已提交
129
		goto out;
130 131
	}

132
	err = cfg80211_mgd_wext_connect(rdev, wdev);
J
Johannes Berg 已提交
133 134 135
 out:
	wdev_unlock(wdev);
	return err;
136 137 138 139 140 141 142 143 144 145 146 147 148
}

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 已提交
149
	wdev_lock(wdev);
150
	if (wdev->current_bss)
J
Johannes Berg 已提交
151
		chan = wdev->current_bss->pub.channel;
152 153
	else if (wdev->wext.connect.channel)
		chan = wdev->wext.connect.channel;
J
Johannes Berg 已提交
154
	wdev_unlock(wdev);
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170

	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;
171
	struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
172 173 174 175 176 177 178 179 180 181 182 183 184 185
	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 已提交
186 187 188 189
	wdev_lock(wdev);

	err = 0;

190
	if (wdev->conn) {
191
		bool event = true;
192 193 194 195 196 197

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

198 199 200
		/* if SSID set now, we'll try to connect, avoid event */
		if (len)
			event = false;
201 202
		err = cfg80211_disconnect(rdev, dev,
					  WLAN_REASON_DEAUTH_LEAVING, event);
203
		if (err)
J
Johannes Berg 已提交
204
			goto out;
205 206
	}

207
	wdev->wext.prev_bssid_valid = false;
208 209 210 211 212
	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;
213 214
	wdev->wext.connect.crypto.control_port_ethertype =
					cpu_to_be16(ETH_P_PAE);
215

216
	err = cfg80211_mgd_wext_connect(rdev, wdev);
J
Johannes Berg 已提交
217 218 219
 out:
	wdev_unlock(wdev);
	return err;
220 221 222 223 224 225 226 227 228 229 230 231 232 233
}

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 已提交
234
	wdev_lock(wdev);
235
	if (wdev->current_bss) {
236 237 238 239 240
		const u8 *ie;

		rcu_read_lock();
		ie = ieee80211_bss_get_ie(&wdev->current_bss->pub,
					  WLAN_EID_SSID);
241 242 243 244 245
		if (ie) {
			data->flags = 1;
			data->length = ie[1];
			memcpy(ssid, ie + 2, data->length);
		}
246
		rcu_read_unlock();
247
	} else if (wdev->wext.connect.ssid && wdev->wext.connect.ssid_len) {
248 249 250
		data->flags = 1;
		data->length = wdev->wext.connect.ssid_len;
		memcpy(ssid, wdev->wext.connect.ssid, data->length);
251
	}
J
Johannes Berg 已提交
252
	wdev_unlock(wdev);
253 254 255 256 257 258 259 260 261

	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;
262
	struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
263 264 265 266 267 268 269 270 271 272 273 274 275 276
	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 已提交
277 278
	wdev_lock(wdev);

279
	if (wdev->conn) {
280 281 282 283
		err = 0;
		/* both automatic */
		if (!bssid && !wdev->wext.connect.bssid)
			goto out;
284

285 286
		/* fixed already - and no change */
		if (wdev->wext.connect.bssid && bssid &&
287
		    ether_addr_equal(bssid, wdev->wext.connect.bssid))
288
			goto out;
289

290 291
		err = cfg80211_disconnect(rdev, dev,
					  WLAN_REASON_DEAUTH_LEAVING, false);
292
		if (err)
J
Johannes Berg 已提交
293
			goto out;
294 295 296 297 298 299 300 301
	}

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

302
	err = cfg80211_mgd_wext_connect(rdev, wdev);
J
Johannes Berg 已提交
303 304 305
 out:
	wdev_unlock(wdev);
	return err;
306 307 308 309 310 311 312 313 314 315 316 317 318 319
}

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 已提交
320
	wdev_lock(wdev);
321
	if (wdev->current_bss)
J
Johannes Berg 已提交
322
		memcpy(ap_addr->sa_data, wdev->current_bss->pub.bssid, ETH_ALEN);
323
	else
324
		eth_zero_addr(ap_addr->sa_data);
J
Johannes Berg 已提交
325
	wdev_unlock(wdev);
326 327 328 329 330 331 332 333 334

	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;
335
	struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
336 337 338 339 340 341 342 343 344
	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 已提交
345 346
	wdev_lock(wdev);

347
	/* no change */
J
Johannes Berg 已提交
348
	err = 0;
349 350
	if (wdev->wext.ie_len == ie_len &&
	    memcmp(wdev->wext.ie, ie, ie_len) == 0)
J
Johannes Berg 已提交
351
		goto out;
352 353 354

	if (ie_len) {
		ie = kmemdup(extra, ie_len, GFP_KERNEL);
J
Johannes Berg 已提交
355 356 357 358
		if (!ie) {
			err = -ENOMEM;
			goto out;
		}
359 360 361 362 363 364 365
	} else
		ie = NULL;

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

366
	if (wdev->conn) {
367 368
		err = cfg80211_disconnect(rdev, dev,
					  WLAN_REASON_DEAUTH_LEAVING, false);
369
		if (err)
J
Johannes Berg 已提交
370
			goto out;
371 372 373
	}

	/* userspace better not think we'll reconnect */
J
Johannes Berg 已提交
374 375 376 377
	err = 0;
 out:
	wdev_unlock(wdev);
	return err;
378 379 380 381 382 383 384 385 386
}

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 已提交
387
	int err;
388 389 390 391

	if (!wdev)
		return -EOPNOTSUPP;

392
	rdev = wiphy_to_rdev(wdev->wiphy);
393 394 395 396 397 398 399

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

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

J
Johannes Berg 已提交
400
	wdev_lock(wdev);
401 402 403
	switch (mlme->cmd) {
	case IW_MLME_DEAUTH:
	case IW_MLME_DISASSOC:
404
		err = cfg80211_disconnect(rdev, dev, mlme->reason_code, true);
J
Johannes Berg 已提交
405
		break;
406
	default:
J
Johannes Berg 已提交
407 408
		err = -EOPNOTSUPP;
		break;
409
	}
J
Johannes Berg 已提交
410 411 412
	wdev_unlock(wdev);

	return err;
413
}