sme.c 25.2 KB
Newer Older
S
Samuel Ortiz 已提交
1
/*
2 3 4
 * SME code for cfg80211
 * both driver SME event handling and the SME implementation
 * (for nl80211's connect() and wext)
S
Samuel Ortiz 已提交
5 6 7 8 9 10 11
 *
 * Copyright 2009	Johannes Berg <johannes@sipsolutions.net>
 * Copyright (C) 2009   Intel Corporation. All rights reserved.
 */

#include <linux/etherdevice.h>
#include <linux/if_arp.h>
12
#include <linux/slab.h>
S
Samuel Ortiz 已提交
13
#include <linux/workqueue.h>
14
#include <linux/wireless.h>
15
#include <linux/export.h>
16
#include <net/iw_handler.h>
S
Samuel Ortiz 已提交
17 18 19
#include <net/cfg80211.h>
#include <net/rtnetlink.h>
#include "nl80211.h"
20
#include "reg.h"
21
#include "rdev-ops.h"
S
Samuel Ortiz 已提交
22

23 24 25 26 27 28
/*
 * Software SME in cfg80211, using auth/assoc/deauth calls to the
 * driver. This is is for implementing nl80211's connect/disconnect
 * and wireless extensions (if configured.)
 */

29 30 31 32 33 34 35 36
struct cfg80211_conn {
	struct cfg80211_connect_params params;
	/* these are sub-states of the _CONNECTING sme_state */
	enum {
		CFG80211_CONN_SCANNING,
		CFG80211_CONN_SCAN_AGAIN,
		CFG80211_CONN_AUTHENTICATE_NEXT,
		CFG80211_CONN_AUTHENTICATING,
37
		CFG80211_CONN_AUTH_FAILED,
38 39
		CFG80211_CONN_ASSOCIATE_NEXT,
		CFG80211_CONN_ASSOCIATING,
40
		CFG80211_CONN_ASSOC_FAILED,
41 42
		CFG80211_CONN_DEAUTH,
		CFG80211_CONN_CONNECTED,
43
	} state;
44
	u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
45 46
	u8 *ie;
	size_t ie_len;
47
	bool auto_auth, prev_bssid_valid;
48 49
};

50
static void cfg80211_sme_free(struct wireless_dev *wdev)
51
{
52 53
	if (!wdev->conn)
		return;
54

55 56 57
	kfree(wdev->conn->ie);
	kfree(wdev->conn);
	wdev->conn = NULL;
58 59
}

60 61
static int cfg80211_conn_scan(struct wireless_dev *wdev)
{
62
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
63 64 65 66
	struct cfg80211_scan_request *request;
	int n_channels, err;

	ASSERT_RTNL();
J
Johannes Berg 已提交
67
	ASSERT_WDEV_LOCK(wdev);
68

69
	if (rdev->scan_req || rdev->scan_msg)
70 71
		return -EBUSY;

72
	if (wdev->conn->params.channel)
73
		n_channels = 1;
74 75
	else
		n_channels = ieee80211_get_num_supported_channels(wdev->wiphy);
76 77 78 79 80 81 82 83 84 85 86 87

	request = kzalloc(sizeof(*request) + sizeof(request->ssids[0]) +
			  sizeof(request->channels[0]) * n_channels,
			  GFP_KERNEL);
	if (!request)
		return -ENOMEM;

	if (wdev->conn->params.channel)
		request->channels[0] = wdev->conn->params.channel;
	else {
		int i = 0, j;
		enum ieee80211_band band;
88 89
		struct ieee80211_supported_band *bands;
		struct ieee80211_channel *channel;
90 91

		for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
92 93
			bands = wdev->wiphy->bands[band];
			if (!bands)
94
				continue;
95 96 97 98 99 100 101
			for (j = 0; j < bands->n_channels; j++) {
				channel = &bands->channels[j];
				if (channel->flags & IEEE80211_CHAN_DISABLED)
					continue;
				request->channels[i++] = channel;
			}
			request->rates[band] = (1 << bands->n_bitrates) - 1;
102
		}
103
		n_channels = i;
104 105
	}
	request->n_channels = n_channels;
106
	request->ssids = (void *)&request->channels[n_channels];
107 108 109 110 111 112
	request->n_ssids = 1;

	memcpy(request->ssids[0].ssid, wdev->conn->params.ssid,
		wdev->conn->params.ssid_len);
	request->ssids[0].ssid_len = wdev->conn->params.ssid_len;

J
Johannes Berg 已提交
113
	request->wdev = wdev;
114
	request->wiphy = &rdev->wiphy;
115
	request->scan_start = jiffies;
116

117
	rdev->scan_req = request;
118

119
	err = rdev_scan(rdev, request);
120 121
	if (!err) {
		wdev->conn->state = CFG80211_CONN_SCANNING;
J
Johannes Berg 已提交
122
		nl80211_send_scan_start(rdev, wdev);
123
		dev_hold(wdev->netdev);
124
	} else {
125
		rdev->scan_req = NULL;
126 127 128 129 130 131 132
		kfree(request);
	}
	return err;
}

static int cfg80211_conn_do_work(struct wireless_dev *wdev)
{
133
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
J
Johannes Berg 已提交
134
	struct cfg80211_connect_params *params;
135
	struct cfg80211_assoc_request req = {};
J
Johannes Berg 已提交
136
	int err;
137

J
Johannes Berg 已提交
138 139
	ASSERT_WDEV_LOCK(wdev);

140 141 142
	if (!wdev->conn)
		return 0;

J
Johannes Berg 已提交
143 144
	params = &wdev->conn->params;

145
	switch (wdev->conn->state) {
146 147 148
	case CFG80211_CONN_SCANNING:
		/* didn't find it during scan ... */
		return -ENOENT;
149 150 151
	case CFG80211_CONN_SCAN_AGAIN:
		return cfg80211_conn_scan(wdev);
	case CFG80211_CONN_AUTHENTICATE_NEXT:
152
		BUG_ON(!rdev->ops->auth);
J
Johannes Berg 已提交
153
		wdev->conn->state = CFG80211_CONN_AUTHENTICATING;
154 155 156 157 158 159 160
		return cfg80211_mlme_auth(rdev, wdev->netdev,
					  params->channel, params->auth_type,
					  params->bssid,
					  params->ssid, params->ssid_len,
					  NULL, 0,
					  params->key, params->key_len,
					  params->key_idx, NULL, 0);
161 162
	case CFG80211_CONN_AUTH_FAILED:
		return -ENOTCONN;
163
	case CFG80211_CONN_ASSOCIATE_NEXT:
164
		BUG_ON(!rdev->ops->assoc);
J
Johannes Berg 已提交
165
		wdev->conn->state = CFG80211_CONN_ASSOCIATING;
166
		if (wdev->conn->prev_bssid_valid)
167 168 169 170 171 172 173 174 175 176 177
			req.prev_bssid = wdev->conn->prev_bssid;
		req.ie = params->ie;
		req.ie_len = params->ie_len;
		req.use_mfp = params->mfp != NL80211_MFP_NO;
		req.crypto = params->crypto;
		req.flags = params->flags;
		req.ht_capa = params->ht_capa;
		req.ht_capa_mask = params->ht_capa_mask;
		req.vht_capa = params->vht_capa;
		req.vht_capa_mask = params->vht_capa_mask;

178 179 180
		err = cfg80211_mlme_assoc(rdev, wdev->netdev, params->channel,
					  params->bssid, params->ssid,
					  params->ssid_len, &req);
J
Johannes Berg 已提交
181
		if (err)
182 183 184 185
			cfg80211_mlme_deauth(rdev, wdev->netdev, params->bssid,
					     NULL, 0,
					     WLAN_REASON_DEAUTH_LEAVING,
					     false);
J
Johannes Berg 已提交
186
		return err;
187 188 189 190 191
	case CFG80211_CONN_ASSOC_FAILED:
		cfg80211_mlme_deauth(rdev, wdev->netdev, params->bssid,
				     NULL, 0,
				     WLAN_REASON_DEAUTH_LEAVING, false);
		return -ENOTCONN;
192
	case CFG80211_CONN_DEAUTH:
193 194 195
		cfg80211_mlme_deauth(rdev, wdev->netdev, params->bssid,
				     NULL, 0,
				     WLAN_REASON_DEAUTH_LEAVING, false);
196 197
		/* free directly, disconnected event already sent */
		cfg80211_sme_free(wdev);
198
		return 0;
199 200 201 202 203 204 205
	default:
		return 0;
	}
}

void cfg80211_conn_work(struct work_struct *work)
{
206
	struct cfg80211_registered_device *rdev =
207 208
		container_of(work, struct cfg80211_registered_device, conn_work);
	struct wireless_dev *wdev;
J
Johannes Berg 已提交
209
	u8 bssid_buf[ETH_ALEN], *bssid = NULL;
210 211 212

	rtnl_lock();

213
	list_for_each_entry(wdev, &rdev->wdev_list, list) {
214 215 216
		if (!wdev->netdev)
			continue;

J
Johannes Berg 已提交
217 218 219
		wdev_lock(wdev);
		if (!netif_running(wdev->netdev)) {
			wdev_unlock(wdev);
220
			continue;
J
Johannes Berg 已提交
221
		}
222 223
		if (!wdev->conn ||
		    wdev->conn->state == CFG80211_CONN_CONNECTED) {
J
Johannes Berg 已提交
224
			wdev_unlock(wdev);
225
			continue;
J
Johannes Berg 已提交
226
		}
J
Johannes Berg 已提交
227 228 229 230
		if (wdev->conn->params.bssid) {
			memcpy(bssid_buf, wdev->conn->params.bssid, ETH_ALEN);
			bssid = bssid_buf;
		}
231
		if (cfg80211_conn_do_work(wdev)) {
J
Johannes Berg 已提交
232
			__cfg80211_connect_result(
233
					wdev->netdev, bssid,
J
Johannes Berg 已提交
234 235
					NULL, 0, NULL, 0,
					WLAN_STATUS_UNSPECIFIED_FAILURE,
236
					false, NULL);
237 238
			cfg80211_sme_free(wdev);
		}
J
Johannes Berg 已提交
239
		wdev_unlock(wdev);
240 241 242 243 244
	}

	rtnl_unlock();
}

245
/* Returned bss is reference counted and must be cleaned up appropriately. */
J
Johannes Berg 已提交
246
static struct cfg80211_bss *cfg80211_get_conn_bss(struct wireless_dev *wdev)
247
{
248
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
249 250 251
	struct cfg80211_bss *bss;
	u16 capa = WLAN_CAPABILITY_ESS;

J
Johannes Berg 已提交
252 253
	ASSERT_WDEV_LOCK(wdev);

254 255 256
	if (wdev->conn->params.privacy)
		capa |= WLAN_CAPABILITY_PRIVACY;

257 258
	bss = cfg80211_get_bss(wdev->wiphy, wdev->conn->params.channel,
			       wdev->conn->params.bssid,
259 260 261 262 263
			       wdev->conn->params.ssid,
			       wdev->conn->params.ssid_len,
			       WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_PRIVACY,
			       capa);
	if (!bss)
J
Johannes Berg 已提交
264
		return NULL;
265 266 267 268 269

	memcpy(wdev->conn->bssid, bss->bssid, ETH_ALEN);
	wdev->conn->params.bssid = wdev->conn->bssid;
	wdev->conn->params.channel = bss->channel;
	wdev->conn->state = CFG80211_CONN_AUTHENTICATE_NEXT;
270
	schedule_work(&rdev->conn_work);
271

J
Johannes Berg 已提交
272
	return bss;
273 274
}

J
Johannes Berg 已提交
275
static void __cfg80211_sme_scan_done(struct net_device *dev)
276 277
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
278
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
J
Johannes Berg 已提交
279
	struct cfg80211_bss *bss;
280

J
Johannes Berg 已提交
281 282
	ASSERT_WDEV_LOCK(wdev);

283
	if (!wdev->conn)
284 285 286 287 288 289
		return;

	if (wdev->conn->state != CFG80211_CONN_SCANNING &&
	    wdev->conn->state != CFG80211_CONN_SCAN_AGAIN)
		return;

J
Johannes Berg 已提交
290
	bss = cfg80211_get_conn_bss(wdev);
291
	if (bss)
292
		cfg80211_put_bss(&rdev->wiphy, bss);
293 294
	else
		schedule_work(&rdev->conn_work);
295 296
}

J
Johannes Berg 已提交
297 298 299 300 301 302 303 304 305
void cfg80211_sme_scan_done(struct net_device *dev)
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;

	wdev_lock(wdev);
	__cfg80211_sme_scan_done(dev);
	wdev_unlock(wdev);
}

306
void cfg80211_sme_rx_auth(struct wireless_dev *wdev, const u8 *buf, size_t len)
307 308 309 310 311 312
{
	struct wiphy *wiphy = wdev->wiphy;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
	struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)buf;
	u16 status_code = le16_to_cpu(mgmt->u.auth.status_code);

J
Johannes Berg 已提交
313 314
	ASSERT_WDEV_LOCK(wdev);

315
	if (!wdev->conn || wdev->conn->state == CFG80211_CONN_CONNECTED)
316 317 318 319 320 321 322 323
		return;

	if (status_code == WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG &&
	    wdev->conn->auto_auth &&
	    wdev->conn->params.auth_type != NL80211_AUTHTYPE_NETWORK_EAP) {
		/* select automatically between only open, shared, leap */
		switch (wdev->conn->params.auth_type) {
		case NL80211_AUTHTYPE_OPEN_SYSTEM:
J
Johannes Berg 已提交
324 325 326 327 328 329
			if (wdev->connect_keys)
				wdev->conn->params.auth_type =
					NL80211_AUTHTYPE_SHARED_KEY;
			else
				wdev->conn->params.auth_type =
					NL80211_AUTHTYPE_NETWORK_EAP;
330 331 332 333 334 335 336 337 338 339 340 341 342
			break;
		case NL80211_AUTHTYPE_SHARED_KEY:
			wdev->conn->params.auth_type =
				NL80211_AUTHTYPE_NETWORK_EAP;
			break;
		default:
			/* huh? */
			wdev->conn->params.auth_type =
				NL80211_AUTHTYPE_OPEN_SYSTEM;
			break;
		}
		wdev->conn->state = CFG80211_CONN_AUTHENTICATE_NEXT;
		schedule_work(&rdev->conn_work);
J
Johannes Berg 已提交
343
	} else if (status_code != WLAN_STATUS_SUCCESS) {
344 345
		__cfg80211_connect_result(wdev->netdev, mgmt->bssid,
					  NULL, 0, NULL, 0,
346
					  status_code, false, NULL);
347
	} else if (wdev->conn->state == CFG80211_CONN_AUTHENTICATING) {
348 349 350 351
		wdev->conn->state = CFG80211_CONN_ASSOCIATE_NEXT;
		schedule_work(&rdev->conn_work);
	}
}
S
Samuel Ortiz 已提交
352

353
bool cfg80211_sme_rx_assoc_resp(struct wireless_dev *wdev, u16 status)
354
{
355
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
356

357
	if (!wdev->conn)
358 359
		return false;

360 361
	if (status == WLAN_STATUS_SUCCESS) {
		wdev->conn->state = CFG80211_CONN_CONNECTED;
362
		return false;
363
	}
364

365 366 367 368 369 370 371 372 373 374 375 376
	if (wdev->conn->prev_bssid_valid) {
		/*
		 * Some stupid APs don't accept reassoc, so we
		 * need to fall back to trying regular assoc;
		 * return true so no event is sent to userspace.
		 */
		wdev->conn->prev_bssid_valid = false;
		wdev->conn->state = CFG80211_CONN_ASSOCIATE_NEXT;
		schedule_work(&rdev->conn_work);
		return true;
	}

377
	wdev->conn->state = CFG80211_CONN_ASSOC_FAILED;
378
	schedule_work(&rdev->conn_work);
379 380
	return false;
}
381

382 383 384
void cfg80211_sme_deauth(struct wireless_dev *wdev)
{
	cfg80211_sme_free(wdev);
385 386
}

387
void cfg80211_sme_auth_timeout(struct wireless_dev *wdev)
388
{
389 390 391 392 393 394 395
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);

	if (!wdev->conn)
		return;

	wdev->conn->state = CFG80211_CONN_AUTH_FAILED;
	schedule_work(&rdev->conn_work);
396
}
397

398 399 400 401 402 403 404 405
void cfg80211_sme_disassoc(struct wireless_dev *wdev)
{
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);

	if (!wdev->conn)
		return;

	wdev->conn->state = CFG80211_CONN_DEAUTH;
406 407 408
	schedule_work(&rdev->conn_work);
}

409 410
void cfg80211_sme_assoc_timeout(struct wireless_dev *wdev)
{
411 412 413 414 415 416 417
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);

	if (!wdev->conn)
		return;

	wdev->conn->state = CFG80211_CONN_ASSOC_FAILED;
	schedule_work(&rdev->conn_work);
418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
}

static int cfg80211_sme_connect(struct wireless_dev *wdev,
				struct cfg80211_connect_params *connect,
				const u8 *prev_bssid)
{
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	struct cfg80211_bss *bss;
	int err;

	if (!rdev->ops->auth || !rdev->ops->assoc)
		return -EOPNOTSUPP;

	if (wdev->current_bss)
		return -EALREADY;

	if (WARN_ON(wdev->conn))
		return -EINPROGRESS;

	wdev->conn = kzalloc(sizeof(*wdev->conn), GFP_KERNEL);
	if (!wdev->conn)
		return -ENOMEM;

	/*
	 * Copy all parameters, and treat explicitly IEs, BSSID, SSID.
	 */
	memcpy(&wdev->conn->params, connect, sizeof(*connect));
	if (connect->bssid) {
		wdev->conn->params.bssid = wdev->conn->bssid;
		memcpy(wdev->conn->bssid, connect->bssid, ETH_ALEN);
	}

	if (connect->ie) {
		wdev->conn->ie = kmemdup(connect->ie, connect->ie_len,
					GFP_KERNEL);
		wdev->conn->params.ie = wdev->conn->ie;
		if (!wdev->conn->ie) {
			kfree(wdev->conn);
			wdev->conn = NULL;
			return -ENOMEM;
		}
	}

	if (connect->auth_type == NL80211_AUTHTYPE_AUTOMATIC) {
		wdev->conn->auto_auth = true;
		/* start with open system ... should mostly work */
		wdev->conn->params.auth_type =
			NL80211_AUTHTYPE_OPEN_SYSTEM;
	} else {
		wdev->conn->auto_auth = false;
	}

	wdev->conn->params.ssid = wdev->ssid;
471
	wdev->conn->params.ssid_len = wdev->ssid_len;
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574

	/* see if we have the bss already */
	bss = cfg80211_get_conn_bss(wdev);

	if (prev_bssid) {
		memcpy(wdev->conn->prev_bssid, prev_bssid, ETH_ALEN);
		wdev->conn->prev_bssid_valid = true;
	}

	/* we're good if we have a matching bss struct */
	if (bss) {
		err = cfg80211_conn_do_work(wdev);
		cfg80211_put_bss(wdev->wiphy, bss);
	} else {
		/* otherwise we'll need to scan for the AP first */
		err = cfg80211_conn_scan(wdev);

		/*
		 * If we can't scan right now, then we need to scan again
		 * after the current scan finished, since the parameters
		 * changed (unless we find a good AP anyway).
		 */
		if (err == -EBUSY) {
			err = 0;
			wdev->conn->state = CFG80211_CONN_SCAN_AGAIN;
		}
	}

	if (err)
		cfg80211_sme_free(wdev);

	return err;
}

static int cfg80211_sme_disconnect(struct wireless_dev *wdev, u16 reason)
{
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	int err;

	if (!wdev->conn)
		return 0;

	if (!rdev->ops->deauth)
		return -EOPNOTSUPP;

	if (wdev->conn->state == CFG80211_CONN_SCANNING ||
	    wdev->conn->state == CFG80211_CONN_SCAN_AGAIN) {
		err = 0;
		goto out;
	}

	/* wdev->conn->params.bssid must be set if > SCANNING */
	err = cfg80211_mlme_deauth(rdev, wdev->netdev,
				   wdev->conn->params.bssid,
				   NULL, 0, reason, false);
 out:
	cfg80211_sme_free(wdev);
	return err;
}

/*
 * code shared for in-device and software SME
 */

static bool cfg80211_is_all_idle(void)
{
	struct cfg80211_registered_device *rdev;
	struct wireless_dev *wdev;
	bool is_all_idle = true;

	/*
	 * All devices must be idle as otherwise if you are actively
	 * scanning some new beacon hints could be learned and would
	 * count as new regulatory hints.
	 */
	list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
		list_for_each_entry(wdev, &rdev->wdev_list, list) {
			wdev_lock(wdev);
			if (wdev->conn || wdev->current_bss)
				is_all_idle = false;
			wdev_unlock(wdev);
		}
	}

	return is_all_idle;
}

static void disconnect_work(struct work_struct *work)
{
	rtnl_lock();
	if (cfg80211_is_all_idle())
		regulatory_hint_disconnect();
	rtnl_unlock();
}

static DECLARE_WORK(cfg80211_disconnect_work, disconnect_work);


/*
 * API calls for drivers implementing connect/disconnect and
 * SME event handling
 */

575
/* This method must consume bss one way or another */
J
Johannes Berg 已提交
576 577 578
void __cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
			       const u8 *req_ie, size_t req_ie_len,
			       const u8 *resp_ie, size_t resp_ie_len,
579 580
			       u16 status, bool wextev,
			       struct cfg80211_bss *bss)
S
Samuel Ortiz 已提交
581 582
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
583
	const u8 *country_ie;
J
Johannes Berg 已提交
584
#ifdef CONFIG_CFG80211_WEXT
S
Samuel Ortiz 已提交
585 586 587
	union iwreq_data wrqu;
#endif

J
Johannes Berg 已提交
588 589
	ASSERT_WDEV_LOCK(wdev);

590
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION &&
591 592
		    wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)) {
		cfg80211_put_bss(wdev->wiphy, bss);
S
Samuel Ortiz 已提交
593
		return;
594
	}
S
Samuel Ortiz 已提交
595

596
	nl80211_send_connect_result(wiphy_to_dev(wdev->wiphy), dev,
597
				    bssid, req_ie, req_ie_len,
598 599
				    resp_ie, resp_ie_len,
				    status, GFP_KERNEL);
600

J
Johannes Berg 已提交
601
#ifdef CONFIG_CFG80211_WEXT
602 603 604 605
	if (wextev) {
		if (req_ie && status == WLAN_STATUS_SUCCESS) {
			memset(&wrqu, 0, sizeof(wrqu));
			wrqu.data.length = req_ie_len;
Z
Zhu Yi 已提交
606
			wireless_send_event(dev, IWEVASSOCREQIE, &wrqu, req_ie);
607 608 609 610 611 612 613 614 615 616
		}

		if (resp_ie && status == WLAN_STATUS_SUCCESS) {
			memset(&wrqu, 0, sizeof(wrqu));
			wrqu.data.length = resp_ie_len;
			wireless_send_event(dev, IWEVASSOCRESPIE, &wrqu, resp_ie);
		}

		memset(&wrqu, 0, sizeof(wrqu));
		wrqu.ap_addr.sa_family = ARPHRD_ETHER;
617
		if (bssid && status == WLAN_STATUS_SUCCESS) {
618
			memcpy(wrqu.ap_addr.sa_data, bssid, ETH_ALEN);
619 620 621
			memcpy(wdev->wext.prev_bssid, bssid, ETH_ALEN);
			wdev->wext.prev_bssid_valid = true;
		}
622 623 624 625
		wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
	}
#endif

626 627 628 629 630 631 632 633 634 635
	if (!bss && (status == WLAN_STATUS_SUCCESS)) {
		WARN_ON_ONCE(!wiphy_to_dev(wdev->wiphy)->ops->connect);
		bss = cfg80211_get_bss(wdev->wiphy, NULL, bssid,
				       wdev->ssid, wdev->ssid_len,
				       WLAN_CAPABILITY_ESS,
				       WLAN_CAPABILITY_ESS);
		if (bss)
			cfg80211_hold_bss(bss_from_pub(bss));
	}

636 637
	if (wdev->current_bss) {
		cfg80211_unhold_bss(wdev->current_bss);
638
		cfg80211_put_bss(wdev->wiphy, &wdev->current_bss->pub);
639 640 641
		wdev->current_bss = NULL;
	}

J
Johannes Berg 已提交
642 643 644
	if (status != WLAN_STATUS_SUCCESS) {
		kfree(wdev->connect_keys);
		wdev->connect_keys = NULL;
645
		wdev->ssid_len = 0;
646 647 648 649
		if (bss) {
			cfg80211_unhold_bss(bss_from_pub(bss));
			cfg80211_put_bss(wdev->wiphy, bss);
		}
J
Johannes Berg 已提交
650
		return;
S
Samuel Ortiz 已提交
651
	}
J
Johannes Berg 已提交
652

653 654
	if (WARN_ON(!bss))
		return;
J
Johannes Berg 已提交
655 656 657 658

	wdev->current_bss = bss_from_pub(bss);

	cfg80211_upload_connect_keys(wdev);
659

660 661 662 663 664 665 666 667 668
	rcu_read_lock();
	country_ie = ieee80211_bss_get_ie(bss, WLAN_EID_COUNTRY);
	if (!country_ie) {
		rcu_read_unlock();
		return;
	}

	country_ie = kmemdup(country_ie, 2 + country_ie[1], GFP_ATOMIC);
	rcu_read_unlock();
669 670 671 672 673 674 675 676 677

	if (!country_ie)
		return;

	/*
	 * ieee80211_bss_get_ie() ensures we can access:
	 * - country_ie + 2, the start of the country ie data, and
	 * - and country_ie[1] which is the IE length
	 */
678 679
	regulatory_hint_country_ie(wdev->wiphy, bss->channel->band,
				   country_ie + 2, country_ie[1]);
680
	kfree(country_ie);
S
Samuel Ortiz 已提交
681
}
682 683 684 685 686 687

void cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
			     const u8 *req_ie, size_t req_ie_len,
			     const u8 *resp_ie, size_t resp_ie_len,
			     u16 status, gfp_t gfp)
{
J
Johannes Berg 已提交
688 689 690 691 692 693 694 695 696 697
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	struct cfg80211_event *ev;
	unsigned long flags;

	ev = kzalloc(sizeof(*ev) + req_ie_len + resp_ie_len, gfp);
	if (!ev)
		return;

	ev->type = EVENT_CONNECT_RESULT;
698 699
	if (bssid)
		memcpy(ev->cr.bssid, bssid, ETH_ALEN);
700 701 702 703 704 705 706 707 708 709
	if (req_ie_len) {
		ev->cr.req_ie = ((u8 *)ev) + sizeof(*ev);
		ev->cr.req_ie_len = req_ie_len;
		memcpy((void *)ev->cr.req_ie, req_ie, req_ie_len);
	}
	if (resp_ie_len) {
		ev->cr.resp_ie = ((u8 *)ev) + sizeof(*ev) + req_ie_len;
		ev->cr.resp_ie_len = resp_ie_len;
		memcpy((void *)ev->cr.resp_ie, resp_ie, resp_ie_len);
	}
J
Johannes Berg 已提交
710 711 712 713 714
	ev->cr.status = status;

	spin_lock_irqsave(&wdev->event_lock, flags);
	list_add_tail(&ev->list, &wdev->event_list);
	spin_unlock_irqrestore(&wdev->event_lock, flags);
715
	queue_work(cfg80211_wq, &rdev->event_work);
716
}
S
Samuel Ortiz 已提交
717 718
EXPORT_SYMBOL(cfg80211_connect_result);

719
/* Consumes bss object one way or another */
720
void __cfg80211_roamed(struct wireless_dev *wdev,
721
		       struct cfg80211_bss *bss,
J
Johannes Berg 已提交
722 723
		       const u8 *req_ie, size_t req_ie_len,
		       const u8 *resp_ie, size_t resp_ie_len)
S
Samuel Ortiz 已提交
724
{
J
Johannes Berg 已提交
725
#ifdef CONFIG_CFG80211_WEXT
S
Samuel Ortiz 已提交
726 727
	union iwreq_data wrqu;
#endif
J
Johannes Berg 已提交
728 729
	ASSERT_WDEV_LOCK(wdev);

730 731
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION &&
		    wdev->iftype != NL80211_IFTYPE_P2P_CLIENT))
732
		goto out;
S
Samuel Ortiz 已提交
733

734
	if (WARN_ON(!wdev->current_bss))
735
		goto out;
S
Samuel Ortiz 已提交
736 737

	cfg80211_unhold_bss(wdev->current_bss);
738
	cfg80211_put_bss(wdev->wiphy, &wdev->current_bss->pub);
S
Samuel Ortiz 已提交
739 740
	wdev->current_bss = NULL;

J
Johannes Berg 已提交
741 742
	cfg80211_hold_bss(bss_from_pub(bss));
	wdev->current_bss = bss_from_pub(bss);
S
Samuel Ortiz 已提交
743

744
	nl80211_send_roamed(wiphy_to_dev(wdev->wiphy), wdev->netdev, bss->bssid,
J
Johannes Berg 已提交
745 746
			    req_ie, req_ie_len, resp_ie, resp_ie_len,
			    GFP_KERNEL);
S
Samuel Ortiz 已提交
747

J
Johannes Berg 已提交
748
#ifdef CONFIG_CFG80211_WEXT
S
Samuel Ortiz 已提交
749 750 751
	if (req_ie) {
		memset(&wrqu, 0, sizeof(wrqu));
		wrqu.data.length = req_ie_len;
Z
Zhu Yi 已提交
752
		wireless_send_event(wdev->netdev, IWEVASSOCREQIE,
J
Johannes Berg 已提交
753
				    &wrqu, req_ie);
S
Samuel Ortiz 已提交
754 755 756 757 758
	}

	if (resp_ie) {
		memset(&wrqu, 0, sizeof(wrqu));
		wrqu.data.length = resp_ie_len;
J
Johannes Berg 已提交
759 760
		wireless_send_event(wdev->netdev, IWEVASSOCRESPIE,
				    &wrqu, resp_ie);
S
Samuel Ortiz 已提交
761 762 763 764
	}

	memset(&wrqu, 0, sizeof(wrqu));
	wrqu.ap_addr.sa_family = ARPHRD_ETHER;
765 766
	memcpy(wrqu.ap_addr.sa_data, bss->bssid, ETH_ALEN);
	memcpy(wdev->wext.prev_bssid, bss->bssid, ETH_ALEN);
767
	wdev->wext.prev_bssid_valid = true;
J
Johannes Berg 已提交
768
	wireless_send_event(wdev->netdev, SIOCGIWAP, &wrqu, NULL);
S
Samuel Ortiz 已提交
769
#endif
770 771 772

	return;
out:
773
	cfg80211_put_bss(wdev->wiphy, bss);
S
Samuel Ortiz 已提交
774
}
J
Johannes Berg 已提交
775

776 777 778
void cfg80211_roamed(struct net_device *dev,
		     struct ieee80211_channel *channel,
		     const u8 *bssid,
J
Johannes Berg 已提交
779 780
		     const u8 *req_ie, size_t req_ie_len,
		     const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp)
781 782 783 784 785 786 787 788 789 790 791 792 793 794 795
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_bss *bss;

	bss = cfg80211_get_bss(wdev->wiphy, channel, bssid, wdev->ssid,
			       wdev->ssid_len, WLAN_CAPABILITY_ESS,
			       WLAN_CAPABILITY_ESS);
	if (WARN_ON(!bss))
		return;

	cfg80211_roamed_bss(dev, bss, req_ie, req_ie_len, resp_ie,
			    resp_ie_len, gfp);
}
EXPORT_SYMBOL(cfg80211_roamed);

796
/* Consumes bss object one way or another */
797 798 799 800
void cfg80211_roamed_bss(struct net_device *dev,
			 struct cfg80211_bss *bss, const u8 *req_ie,
			 size_t req_ie_len, const u8 *resp_ie,
			 size_t resp_ie_len, gfp_t gfp)
J
Johannes Berg 已提交
801 802 803 804 805 806
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	struct cfg80211_event *ev;
	unsigned long flags;

807 808 809
	if (WARN_ON(!bss))
		return;

J
Johannes Berg 已提交
810
	ev = kzalloc(sizeof(*ev) + req_ie_len + resp_ie_len, gfp);
811
	if (!ev) {
812
		cfg80211_put_bss(wdev->wiphy, bss);
J
Johannes Berg 已提交
813
		return;
814
	}
J
Johannes Berg 已提交
815 816 817 818 819 820 821 822

	ev->type = EVENT_ROAMED;
	ev->rm.req_ie = ((u8 *)ev) + sizeof(*ev);
	ev->rm.req_ie_len = req_ie_len;
	memcpy((void *)ev->rm.req_ie, req_ie, req_ie_len);
	ev->rm.resp_ie = ((u8 *)ev) + sizeof(*ev) + req_ie_len;
	ev->rm.resp_ie_len = resp_ie_len;
	memcpy((void *)ev->rm.resp_ie, resp_ie, resp_ie_len);
823
	ev->rm.bss = bss;
J
Johannes Berg 已提交
824 825 826 827

	spin_lock_irqsave(&wdev->event_lock, flags);
	list_add_tail(&ev->list, &wdev->event_list);
	spin_unlock_irqrestore(&wdev->event_lock, flags);
828
	queue_work(cfg80211_wq, &rdev->event_work);
J
Johannes Berg 已提交
829
}
830
EXPORT_SYMBOL(cfg80211_roamed_bss);
S
Samuel Ortiz 已提交
831

J
Johannes Berg 已提交
832
void __cfg80211_disconnected(struct net_device *dev, const u8 *ie,
833
			     size_t ie_len, u16 reason, bool from_ap)
S
Samuel Ortiz 已提交
834 835
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
J
Johannes Berg 已提交
836 837
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	int i;
J
Johannes Berg 已提交
838
#ifdef CONFIG_CFG80211_WEXT
S
Samuel Ortiz 已提交
839 840 841
	union iwreq_data wrqu;
#endif

J
Johannes Berg 已提交
842 843
	ASSERT_WDEV_LOCK(wdev);

844 845
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION &&
		    wdev->iftype != NL80211_IFTYPE_P2P_CLIENT))
S
Samuel Ortiz 已提交
846 847 848 849
		return;

	if (wdev->current_bss) {
		cfg80211_unhold_bss(wdev->current_bss);
850
		cfg80211_put_bss(wdev->wiphy, &wdev->current_bss->pub);
S
Samuel Ortiz 已提交
851 852 853
	}

	wdev->current_bss = NULL;
854
	wdev->ssid_len = 0;
S
Samuel Ortiz 已提交
855

J
Johannes Berg 已提交
856 857 858 859 860 861 862 863
	nl80211_send_disconnected(rdev, dev, reason, ie, ie_len, from_ap);

	/*
	 * Delete all the keys ... pairwise keys can't really
	 * exist any more anyway, but default keys might.
	 */
	if (rdev->ops->del_key)
		for (i = 0; i < 6; i++)
864
			rdev_del_key(rdev, dev, i, false, NULL);
S
Samuel Ortiz 已提交
865

866 867
	rdev_set_qos_map(rdev, dev, NULL);

J
Johannes Berg 已提交
868
#ifdef CONFIG_CFG80211_WEXT
S
Samuel Ortiz 已提交
869 870 871
	memset(&wrqu, 0, sizeof(wrqu));
	wrqu.ap_addr.sa_family = ARPHRD_ETHER;
	wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
872
	wdev->wext.connect.ssid_len = 0;
S
Samuel Ortiz 已提交
873
#endif
874 875

	schedule_work(&cfg80211_disconnect_work);
S
Samuel Ortiz 已提交
876 877 878 879 880
}

void cfg80211_disconnected(struct net_device *dev, u16 reason,
			   u8 *ie, size_t ie_len, gfp_t gfp)
{
J
Johannes Berg 已提交
881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	struct cfg80211_event *ev;
	unsigned long flags;

	ev = kzalloc(sizeof(*ev) + ie_len, gfp);
	if (!ev)
		return;

	ev->type = EVENT_DISCONNECTED;
	ev->dc.ie = ((u8 *)ev) + sizeof(*ev);
	ev->dc.ie_len = ie_len;
	memcpy((void *)ev->dc.ie, ie, ie_len);
	ev->dc.reason = reason;

	spin_lock_irqsave(&wdev->event_lock, flags);
	list_add_tail(&ev->list, &wdev->event_list);
	spin_unlock_irqrestore(&wdev->event_lock, flags);
899
	queue_work(cfg80211_wq, &rdev->event_work);
S
Samuel Ortiz 已提交
900 901 902
}
EXPORT_SYMBOL(cfg80211_disconnected);

903 904 905
/*
 * API calls for nl80211/wext compatibility code
 */
906 907 908 909 910
int cfg80211_connect(struct cfg80211_registered_device *rdev,
		     struct net_device *dev,
		     struct cfg80211_connect_params *connect,
		     struct cfg80211_cached_keys *connkeys,
		     const u8 *prev_bssid)
S
Samuel Ortiz 已提交
911 912
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
J
Johannes Berg 已提交
913 914 915
	int err;

	ASSERT_WDEV_LOCK(wdev);
S
Samuel Ortiz 已提交
916

J
Johannes Berg 已提交
917 918 919 920 921
	if (WARN_ON(wdev->connect_keys)) {
		kfree(wdev->connect_keys);
		wdev->connect_keys = NULL;
	}

922 923 924
	cfg80211_oper_and_ht_capa(&connect->ht_capa_mask,
				  rdev->wiphy.ht_capa_mod_mask);

J
Johannes Berg 已提交
925 926
	if (connkeys && connkeys->def >= 0) {
		int idx;
S
Samuel Ortiz 已提交
927
		u32 cipher;
J
Johannes Berg 已提交
928 929

		idx = connkeys->def;
S
Samuel Ortiz 已提交
930
		cipher = connkeys->params[idx].cipher;
J
Johannes Berg 已提交
931
		/* If given a WEP key we may need it for shared key auth */
S
Samuel Ortiz 已提交
932 933
		if (cipher == WLAN_CIPHER_SUITE_WEP40 ||
		    cipher == WLAN_CIPHER_SUITE_WEP104) {
J
Johannes Berg 已提交
934 935 936
			connect->key_idx = idx;
			connect->key = connkeys->params[idx].key;
			connect->key_len = connkeys->params[idx].key_len;
S
Samuel Ortiz 已提交
937 938 939 940 941 942 943 944 945 946 947 948

			/*
			 * If ciphers are not set (e.g. when going through
			 * iwconfig), we have to set them appropriately here.
			 */
			if (connect->crypto.cipher_group == 0)
				connect->crypto.cipher_group = cipher;

			if (connect->crypto.n_ciphers_pairwise == 0) {
				connect->crypto.n_ciphers_pairwise = 1;
				connect->crypto.ciphers_pairwise[0] = cipher;
			}
J
Johannes Berg 已提交
949 950 951
		}
	}

952 953 954
	wdev->connect_keys = connkeys;
	memcpy(wdev->ssid, connect->ssid, connect->ssid_len);
	wdev->ssid_len = connect->ssid_len;
955

956 957 958
	if (!rdev->ops->connect)
		err = cfg80211_sme_connect(wdev, connect, prev_bssid);
	else
959
		err = rdev_connect(rdev, dev, connect);
S
Samuel Ortiz 已提交
960

961 962 963 964
	if (err) {
		wdev->connect_keys = NULL;
		wdev->ssid_len = 0;
		return err;
965
	}
966 967

	return 0;
S
Samuel Ortiz 已提交
968 969
}

970 971
int cfg80211_disconnect(struct cfg80211_registered_device *rdev,
			struct net_device *dev, u16 reason, bool wextev)
S
Samuel Ortiz 已提交
972
{
973
	struct wireless_dev *wdev = dev->ieee80211_ptr;
974
	int err = 0;
S
Samuel Ortiz 已提交
975

J
Johannes Berg 已提交
976 977
	ASSERT_WDEV_LOCK(wdev);

J
Johannes Berg 已提交
978 979 980
	kfree(wdev->connect_keys);
	wdev->connect_keys = NULL;

981
	if (wdev->conn)
982
		err = cfg80211_sme_disconnect(wdev, reason);
983
	else if (!rdev->ops->disconnect)
984
		cfg80211_mlme_down(rdev, dev);
985
	else if (wdev->current_bss)
986
		err = rdev_disconnect(rdev, dev, reason);
S
Samuel Ortiz 已提交
987

988
	return err;
J
Johannes Berg 已提交
989
}