sme.c 26.6 KB
Newer Older
S
Samuel Ortiz 已提交
1 2 3 4 5 6 7 8 9
/*
 * SME code for cfg80211's connect emulation.
 *
 * Copyright 2009	Johannes Berg <johannes@sipsolutions.net>
 * Copyright (C) 2009   Intel Corporation. All rights reserved.
 */

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

21 22 23 24 25 26 27 28 29 30 31
struct cfg80211_conn {
	struct cfg80211_connect_params params;
	/* these are sub-states of the _CONNECTING sme_state */
	enum {
		CFG80211_CONN_IDLE,
		CFG80211_CONN_SCANNING,
		CFG80211_CONN_SCAN_AGAIN,
		CFG80211_CONN_AUTHENTICATE_NEXT,
		CFG80211_CONN_AUTHENTICATING,
		CFG80211_CONN_ASSOCIATE_NEXT,
		CFG80211_CONN_ASSOCIATING,
32
		CFG80211_CONN_DEAUTH_ASSOC_FAIL,
33
	} state;
34
	u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
35 36
	u8 *ie;
	size_t ie_len;
37
	bool auto_auth, prev_bssid_valid;
38 39
};

40
static bool cfg80211_is_all_idle(void)
41 42 43 44 45 46 47 48 49 50 51 52 53 54
{
	struct cfg80211_registered_device *rdev;
	struct wireless_dev *wdev;
	bool is_all_idle = true;

	mutex_lock(&cfg80211_mutex);

	/*
	 * 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) {
		cfg80211_lock_rdev(rdev);
55
		list_for_each_entry(wdev, &rdev->wdev_list, list) {
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
			wdev_lock(wdev);
			if (wdev->sme_state != CFG80211_SME_IDLE)
				is_all_idle = false;
			wdev_unlock(wdev);
		}
		cfg80211_unlock_rdev(rdev);
	}

	mutex_unlock(&cfg80211_mutex);

	return is_all_idle;
}

static void disconnect_work(struct work_struct *work)
{
	if (!cfg80211_is_all_idle())
		return;

	regulatory_hint_disconnect();
}

static DECLARE_WORK(cfg80211_disconnect_work, disconnect_work);
78 79 80

static int cfg80211_conn_scan(struct wireless_dev *wdev)
{
81
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
82 83 84 85
	struct cfg80211_scan_request *request;
	int n_channels, err;

	ASSERT_RTNL();
86
	ASSERT_RDEV_LOCK(rdev);
J
Johannes Berg 已提交
87
	ASSERT_WDEV_LOCK(wdev);
88

89
	if (rdev->scan_req)
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
		return -EBUSY;

	if (wdev->conn->params.channel) {
		n_channels = 1;
	} else {
		enum ieee80211_band band;
		n_channels = 0;

		for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
			if (!wdev->wiphy->bands[band])
				continue;
			n_channels += wdev->wiphy->bands[band]->n_channels;
		}
	}
	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;
115 116
		struct ieee80211_supported_band *bands;
		struct ieee80211_channel *channel;
117 118

		for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
119 120
			bands = wdev->wiphy->bands[band];
			if (!bands)
121
				continue;
122 123 124 125 126 127 128
			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;
129
		}
130
		n_channels = i;
131 132
	}
	request->n_channels = n_channels;
133
	request->ssids = (void *)&request->channels[n_channels];
134 135 136 137 138 139
	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 已提交
140
	request->wdev = wdev;
141
	request->wiphy = &rdev->wiphy;
142
	request->scan_start = jiffies;
143

144
	rdev->scan_req = request;
145

146
	err = rdev_scan(rdev, request);
147 148
	if (!err) {
		wdev->conn->state = CFG80211_CONN_SCANNING;
J
Johannes Berg 已提交
149
		nl80211_send_scan_start(rdev, wdev);
150
		dev_hold(wdev->netdev);
151
	} else {
152
		rdev->scan_req = NULL;
153 154 155 156 157 158 159
		kfree(request);
	}
	return err;
}

static int cfg80211_conn_do_work(struct wireless_dev *wdev)
{
160
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
J
Johannes Berg 已提交
161
	struct cfg80211_connect_params *params;
162
	const u8 *prev_bssid = NULL;
J
Johannes Berg 已提交
163
	int err;
164

J
Johannes Berg 已提交
165 166
	ASSERT_WDEV_LOCK(wdev);

167 168 169
	if (!wdev->conn)
		return 0;

J
Johannes Berg 已提交
170 171
	params = &wdev->conn->params;

172 173 174 175
	switch (wdev->conn->state) {
	case CFG80211_CONN_SCAN_AGAIN:
		return cfg80211_conn_scan(wdev);
	case CFG80211_CONN_AUTHENTICATE_NEXT:
176
		BUG_ON(!rdev->ops->auth);
J
Johannes Berg 已提交
177
		wdev->conn->state = CFG80211_CONN_AUTHENTICATING;
178
		return __cfg80211_mlme_auth(rdev, wdev->netdev,
J
Johannes Berg 已提交
179 180 181
					    params->channel, params->auth_type,
					    params->bssid,
					    params->ssid, params->ssid_len,
J
Johannes Berg 已提交
182 183
					    NULL, 0,
					    params->key, params->key_len,
184
					    params->key_idx, NULL, 0);
185
	case CFG80211_CONN_ASSOCIATE_NEXT:
186
		BUG_ON(!rdev->ops->assoc);
J
Johannes Berg 已提交
187
		wdev->conn->state = CFG80211_CONN_ASSOCIATING;
188 189
		if (wdev->conn->prev_bssid_valid)
			prev_bssid = wdev->conn->prev_bssid;
190
		err = __cfg80211_mlme_assoc(rdev, wdev->netdev,
J
Johannes Berg 已提交
191
					    params->channel, params->bssid,
192
					    prev_bssid,
J
Johannes Berg 已提交
193 194
					    params->ssid, params->ssid_len,
					    params->ie, params->ie_len,
195 196
					    params->mfp != NL80211_MFP_NO,
					    &params->crypto,
197
					    params->flags, &params->ht_capa,
198 199 200
					    &params->ht_capa_mask,
					    &params->vht_capa,
					    &params->vht_capa_mask);
J
Johannes Berg 已提交
201
		if (err)
202
			__cfg80211_mlme_deauth(rdev, wdev->netdev, params->bssid,
J
Johannes Berg 已提交
203
					       NULL, 0,
204 205
					       WLAN_REASON_DEAUTH_LEAVING,
					       false);
J
Johannes Berg 已提交
206
		return err;
207 208 209
	case CFG80211_CONN_DEAUTH_ASSOC_FAIL:
		__cfg80211_mlme_deauth(rdev, wdev->netdev, params->bssid,
				       NULL, 0,
210
				       WLAN_REASON_DEAUTH_LEAVING, false);
211 212
		/* return an error so that we call __cfg80211_connect_result() */
		return -EINVAL;
213 214 215 216 217 218 219
	default:
		return 0;
	}
}

void cfg80211_conn_work(struct work_struct *work)
{
220
	struct cfg80211_registered_device *rdev =
221 222
		container_of(work, struct cfg80211_registered_device, conn_work);
	struct wireless_dev *wdev;
J
Johannes Berg 已提交
223
	u8 bssid_buf[ETH_ALEN], *bssid = NULL;
224 225

	rtnl_lock();
226 227
	cfg80211_lock_rdev(rdev);
	mutex_lock(&rdev->devlist_mtx);
228

229
	list_for_each_entry(wdev, &rdev->wdev_list, list) {
J
Johannes Berg 已提交
230 231 232
		wdev_lock(wdev);
		if (!netif_running(wdev->netdev)) {
			wdev_unlock(wdev);
233
			continue;
J
Johannes Berg 已提交
234 235 236
		}
		if (wdev->sme_state != CFG80211_SME_CONNECTING) {
			wdev_unlock(wdev);
237
			continue;
J
Johannes Berg 已提交
238
		}
J
Johannes Berg 已提交
239 240 241 242
		if (wdev->conn->params.bssid) {
			memcpy(bssid_buf, wdev->conn->params.bssid, ETH_ALEN);
			bssid = bssid_buf;
		}
243
		if (cfg80211_conn_do_work(wdev))
J
Johannes Berg 已提交
244
			__cfg80211_connect_result(
245
					wdev->netdev, bssid,
J
Johannes Berg 已提交
246 247
					NULL, 0, NULL, 0,
					WLAN_STATUS_UNSPECIFIED_FAILURE,
248
					false, NULL);
J
Johannes Berg 已提交
249
		wdev_unlock(wdev);
250 251
	}

252 253
	mutex_unlock(&rdev->devlist_mtx);
	cfg80211_unlock_rdev(rdev);
254 255 256
	rtnl_unlock();
}

J
Johannes Berg 已提交
257
static struct cfg80211_bss *cfg80211_get_conn_bss(struct wireless_dev *wdev)
258
{
259
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
260 261 262
	struct cfg80211_bss *bss;
	u16 capa = WLAN_CAPABILITY_ESS;

J
Johannes Berg 已提交
263 264
	ASSERT_WDEV_LOCK(wdev);

265 266 267
	if (wdev->conn->params.privacy)
		capa |= WLAN_CAPABILITY_PRIVACY;

268 269
	bss = cfg80211_get_bss(wdev->wiphy, wdev->conn->params.channel,
			       wdev->conn->params.bssid,
270 271 272 273 274
			       wdev->conn->params.ssid,
			       wdev->conn->params.ssid_len,
			       WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_PRIVACY,
			       capa);
	if (!bss)
J
Johannes Berg 已提交
275
		return NULL;
276 277 278 279 280

	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;
281
	schedule_work(&rdev->conn_work);
282

J
Johannes Berg 已提交
283
	return bss;
284 285
}

J
Johannes Berg 已提交
286
static void __cfg80211_sme_scan_done(struct net_device *dev)
287 288
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
289
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
J
Johannes Berg 已提交
290
	struct cfg80211_bss *bss;
291

J
Johannes Berg 已提交
292 293
	ASSERT_WDEV_LOCK(wdev);

294 295 296
	if (wdev->sme_state != CFG80211_SME_CONNECTING)
		return;

297
	if (!wdev->conn)
298 299 300 301 302 303
		return;

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

J
Johannes Berg 已提交
304 305
	bss = cfg80211_get_conn_bss(wdev);
	if (bss) {
306
		cfg80211_put_bss(&rdev->wiphy, bss);
J
Johannes Berg 已提交
307
	} else {
308 309
		/* not found */
		if (wdev->conn->state == CFG80211_CONN_SCAN_AGAIN)
310
			schedule_work(&rdev->conn_work);
311
		else
J
Johannes Berg 已提交
312 313 314 315 316
			__cfg80211_connect_result(
					wdev->netdev,
					wdev->conn->params.bssid,
					NULL, 0, NULL, 0,
					WLAN_STATUS_UNSPECIFIED_FAILURE,
317
					false, NULL);
318 319 320
	}
}

J
Johannes Berg 已提交
321 322 323 324
void cfg80211_sme_scan_done(struct net_device *dev)
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;

325
	mutex_lock(&wiphy_to_dev(wdev->wiphy)->devlist_mtx);
J
Johannes Berg 已提交
326 327 328
	wdev_lock(wdev);
	__cfg80211_sme_scan_done(dev);
	wdev_unlock(wdev);
329
	mutex_unlock(&wiphy_to_dev(wdev->wiphy)->devlist_mtx);
J
Johannes Berg 已提交
330 331 332 333
}

void cfg80211_sme_rx_auth(struct net_device *dev,
			  const u8 *buf, size_t len)
334 335 336 337 338 339 340
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	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 已提交
341 342
	ASSERT_WDEV_LOCK(wdev);

343 344 345 346 347 348 349 350 351 352 353 354 355
	/* should only RX auth frames when connecting */
	if (wdev->sme_state != CFG80211_SME_CONNECTING)
		return;

	if (WARN_ON(!wdev->conn))
		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 已提交
356 357 358 359 360 361
			if (wdev->connect_keys)
				wdev->conn->params.auth_type =
					NL80211_AUTHTYPE_SHARED_KEY;
			else
				wdev->conn->params.auth_type =
					NL80211_AUTHTYPE_NETWORK_EAP;
362 363 364 365 366 367 368 369 370 371 372 373 374
			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 已提交
375
	} else if (status_code != WLAN_STATUS_SUCCESS) {
J
Johannes Berg 已提交
376
		__cfg80211_connect_result(dev, mgmt->bssid, NULL, 0, NULL, 0,
377
					  status_code, false, NULL);
J
Johannes Berg 已提交
378
	} else if (wdev->sme_state == CFG80211_SME_CONNECTING &&
379 380 381 382 383
		 wdev->conn->state == CFG80211_CONN_AUTHENTICATING) {
		wdev->conn->state = CFG80211_CONN_ASSOCIATE_NEXT;
		schedule_work(&rdev->conn_work);
	}
}
S
Samuel Ortiz 已提交
384

385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
bool cfg80211_sme_failed_reassoc(struct wireless_dev *wdev)
{
	struct wiphy *wiphy = wdev->wiphy;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);

	if (WARN_ON(!wdev->conn))
		return false;

	if (!wdev->conn->prev_bssid_valid)
		return false;

	/*
	 * Some stupid APs don't accept reassoc, so we
	 * need to fall back to trying regular assoc.
	 */
	wdev->conn->prev_bssid_valid = false;
	wdev->conn->state = CFG80211_CONN_ASSOCIATE_NEXT;
	schedule_work(&rdev->conn_work);

	return true;
}

407 408 409 410 411 412 413 414 415
void cfg80211_sme_failed_assoc(struct wireless_dev *wdev)
{
	struct wiphy *wiphy = wdev->wiphy;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);

	wdev->conn->state = CFG80211_CONN_DEAUTH_ASSOC_FAIL;
	schedule_work(&rdev->conn_work);
}

J
Johannes Berg 已提交
416 417 418
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,
419 420
			       u16 status, bool wextev,
			       struct cfg80211_bss *bss)
S
Samuel Ortiz 已提交
421 422
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
423
	const u8 *country_ie;
J
Johannes Berg 已提交
424
#ifdef CONFIG_CFG80211_WEXT
S
Samuel Ortiz 已提交
425 426 427
	union iwreq_data wrqu;
#endif

J
Johannes Berg 已提交
428 429
	ASSERT_WDEV_LOCK(wdev);

430 431
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION &&
		    wdev->iftype != NL80211_IFTYPE_P2P_CLIENT))
S
Samuel Ortiz 已提交
432 433
		return;

434
	if (wdev->sme_state != CFG80211_SME_CONNECTING)
435 436 437
		return;

	nl80211_send_connect_result(wiphy_to_dev(wdev->wiphy), dev,
438
				    bssid, req_ie, req_ie_len,
439 440
				    resp_ie, resp_ie_len,
				    status, GFP_KERNEL);
441

J
Johannes Berg 已提交
442
#ifdef CONFIG_CFG80211_WEXT
443 444 445 446
	if (wextev) {
		if (req_ie && status == WLAN_STATUS_SUCCESS) {
			memset(&wrqu, 0, sizeof(wrqu));
			wrqu.data.length = req_ie_len;
Z
Zhu Yi 已提交
447
			wireless_send_event(dev, IWEVASSOCREQIE, &wrqu, req_ie);
448 449 450 451 452 453 454 455 456 457
		}

		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;
458
		if (bssid && status == WLAN_STATUS_SUCCESS) {
459
			memcpy(wrqu.ap_addr.sa_data, bssid, ETH_ALEN);
460 461 462
			memcpy(wdev->wext.prev_bssid, bssid, ETH_ALEN);
			wdev->wext.prev_bssid_valid = true;
		}
463 464 465 466
		wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
	}
#endif

467 468
	if (wdev->current_bss) {
		cfg80211_unhold_bss(wdev->current_bss);
469
		cfg80211_put_bss(wdev->wiphy, &wdev->current_bss->pub);
470 471 472
		wdev->current_bss = NULL;
	}

J
Johannes Berg 已提交
473 474 475
	if (wdev->conn)
		wdev->conn->state = CFG80211_CONN_IDLE;

J
Johannes Berg 已提交
476
	if (status != WLAN_STATUS_SUCCESS) {
S
Samuel Ortiz 已提交
477
		wdev->sme_state = CFG80211_SME_IDLE;
478 479
		if (wdev->conn)
			kfree(wdev->conn->ie);
J
Johannes Berg 已提交
480 481
		kfree(wdev->conn);
		wdev->conn = NULL;
J
Johannes Berg 已提交
482 483
		kfree(wdev->connect_keys);
		wdev->connect_keys = NULL;
484
		wdev->ssid_len = 0;
485
		cfg80211_put_bss(wdev->wiphy, bss);
J
Johannes Berg 已提交
486
		return;
S
Samuel Ortiz 已提交
487
	}
J
Johannes Berg 已提交
488

489
	if (!bss)
490 491 492 493
		bss = cfg80211_get_bss(wdev->wiphy,
				       wdev->conn ? wdev->conn->params.channel :
				       NULL,
				       bssid,
494 495 496
				       wdev->ssid, wdev->ssid_len,
				       WLAN_CAPABILITY_ESS,
				       WLAN_CAPABILITY_ESS);
J
Johannes Berg 已提交
497 498 499 500 501 502 503 504 505

	if (WARN_ON(!bss))
		return;

	cfg80211_hold_bss(bss_from_pub(bss));
	wdev->current_bss = bss_from_pub(bss);

	wdev->sme_state = CFG80211_SME_CONNECTED;
	cfg80211_upload_connect_keys(wdev);
506

507 508 509 510 511 512 513 514 515
	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();
516 517 518 519 520 521 522 523 524

	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
	 */
J
Johannes Berg 已提交
525 526
	regulatory_hint_11d(wdev->wiphy, bss->channel->band,
			    country_ie + 2, country_ie[1]);
527
	kfree(country_ie);
S
Samuel Ortiz 已提交
528
}
529 530 531 532 533 534

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 已提交
535 536 537 538 539
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	struct cfg80211_event *ev;
	unsigned long flags;

540 541
	CFG80211_DEV_WARN_ON(wdev->sme_state != CFG80211_SME_CONNECTING);

J
Johannes Berg 已提交
542 543 544 545 546
	ev = kzalloc(sizeof(*ev) + req_ie_len + resp_ie_len, gfp);
	if (!ev)
		return;

	ev->type = EVENT_CONNECT_RESULT;
547 548
	if (bssid)
		memcpy(ev->cr.bssid, bssid, ETH_ALEN);
549 550 551 552 553 554 555 556 557 558
	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 已提交
559 560 561 562 563
	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);
564
	queue_work(cfg80211_wq, &rdev->event_work);
565
}
S
Samuel Ortiz 已提交
566 567
EXPORT_SYMBOL(cfg80211_connect_result);

568
void __cfg80211_roamed(struct wireless_dev *wdev,
569
		       struct cfg80211_bss *bss,
J
Johannes Berg 已提交
570 571
		       const u8 *req_ie, size_t req_ie_len,
		       const u8 *resp_ie, size_t resp_ie_len)
S
Samuel Ortiz 已提交
572
{
J
Johannes Berg 已提交
573
#ifdef CONFIG_CFG80211_WEXT
S
Samuel Ortiz 已提交
574 575
	union iwreq_data wrqu;
#endif
J
Johannes Berg 已提交
576 577
	ASSERT_WDEV_LOCK(wdev);

578 579
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION &&
		    wdev->iftype != NL80211_IFTYPE_P2P_CLIENT))
580
		goto out;
S
Samuel Ortiz 已提交
581

582
	if (wdev->sme_state != CFG80211_SME_CONNECTED)
583
		goto out;
S
Samuel Ortiz 已提交
584 585 586

	/* internal error -- how did we get to CONNECTED w/o BSS? */
	if (WARN_ON(!wdev->current_bss)) {
587
		goto out;
S
Samuel Ortiz 已提交
588 589 590
	}

	cfg80211_unhold_bss(wdev->current_bss);
591
	cfg80211_put_bss(wdev->wiphy, &wdev->current_bss->pub);
S
Samuel Ortiz 已提交
592 593
	wdev->current_bss = NULL;

J
Johannes Berg 已提交
594 595
	cfg80211_hold_bss(bss_from_pub(bss));
	wdev->current_bss = bss_from_pub(bss);
S
Samuel Ortiz 已提交
596

597
	nl80211_send_roamed(wiphy_to_dev(wdev->wiphy), wdev->netdev, bss->bssid,
J
Johannes Berg 已提交
598 599
			    req_ie, req_ie_len, resp_ie, resp_ie_len,
			    GFP_KERNEL);
S
Samuel Ortiz 已提交
600

J
Johannes Berg 已提交
601
#ifdef CONFIG_CFG80211_WEXT
S
Samuel Ortiz 已提交
602 603 604
	if (req_ie) {
		memset(&wrqu, 0, sizeof(wrqu));
		wrqu.data.length = req_ie_len;
Z
Zhu Yi 已提交
605
		wireless_send_event(wdev->netdev, IWEVASSOCREQIE,
J
Johannes Berg 已提交
606
				    &wrqu, req_ie);
S
Samuel Ortiz 已提交
607 608 609 610 611
	}

	if (resp_ie) {
		memset(&wrqu, 0, sizeof(wrqu));
		wrqu.data.length = resp_ie_len;
J
Johannes Berg 已提交
612 613
		wireless_send_event(wdev->netdev, IWEVASSOCRESPIE,
				    &wrqu, resp_ie);
S
Samuel Ortiz 已提交
614 615 616 617
	}

	memset(&wrqu, 0, sizeof(wrqu));
	wrqu.ap_addr.sa_family = ARPHRD_ETHER;
618 619
	memcpy(wrqu.ap_addr.sa_data, bss->bssid, ETH_ALEN);
	memcpy(wdev->wext.prev_bssid, bss->bssid, ETH_ALEN);
620
	wdev->wext.prev_bssid_valid = true;
J
Johannes Berg 已提交
621
	wireless_send_event(wdev->netdev, SIOCGIWAP, &wrqu, NULL);
S
Samuel Ortiz 已提交
622
#endif
623 624 625

	return;
out:
626
	cfg80211_put_bss(wdev->wiphy, bss);
S
Samuel Ortiz 已提交
627
}
J
Johannes Berg 已提交
628

629 630 631
void cfg80211_roamed(struct net_device *dev,
		     struct ieee80211_channel *channel,
		     const u8 *bssid,
J
Johannes Berg 已提交
632 633
		     const u8 *req_ie, size_t req_ie_len,
		     const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp)
634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_bss *bss;

	CFG80211_DEV_WARN_ON(wdev->sme_state != CFG80211_SME_CONNECTED);

	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);

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 已提交
655 656 657 658 659 660
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	struct cfg80211_event *ev;
	unsigned long flags;

661 662
	CFG80211_DEV_WARN_ON(wdev->sme_state != CFG80211_SME_CONNECTED);

663 664 665
	if (WARN_ON(!bss))
		return;

J
Johannes Berg 已提交
666
	ev = kzalloc(sizeof(*ev) + req_ie_len + resp_ie_len, gfp);
667
	if (!ev) {
668
		cfg80211_put_bss(wdev->wiphy, bss);
J
Johannes Berg 已提交
669
		return;
670
	}
J
Johannes Berg 已提交
671 672 673 674 675 676 677 678

	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);
679
	ev->rm.bss = bss;
J
Johannes Berg 已提交
680 681 682 683

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

J
Johannes Berg 已提交
688
void __cfg80211_disconnected(struct net_device *dev, const u8 *ie,
689
			     size_t ie_len, u16 reason, bool from_ap)
S
Samuel Ortiz 已提交
690 691
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
J
Johannes Berg 已提交
692 693
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	int i;
J
Johannes Berg 已提交
694
#ifdef CONFIG_CFG80211_WEXT
S
Samuel Ortiz 已提交
695 696 697
	union iwreq_data wrqu;
#endif

J
Johannes Berg 已提交
698 699
	ASSERT_WDEV_LOCK(wdev);

700 701
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION &&
		    wdev->iftype != NL80211_IFTYPE_P2P_CLIENT))
S
Samuel Ortiz 已提交
702 703
		return;

704
	if (wdev->sme_state != CFG80211_SME_CONNECTED)
S
Samuel Ortiz 已提交
705 706 707 708
		return;

	if (wdev->current_bss) {
		cfg80211_unhold_bss(wdev->current_bss);
709
		cfg80211_put_bss(wdev->wiphy, &wdev->current_bss->pub);
S
Samuel Ortiz 已提交
710 711 712 713
	}

	wdev->current_bss = NULL;
	wdev->sme_state = CFG80211_SME_IDLE;
714
	wdev->ssid_len = 0;
S
Samuel Ortiz 已提交
715

716 717 718
	if (wdev->conn) {
		kfree(wdev->conn->ie);
		wdev->conn->ie = NULL;
J
Johannes Berg 已提交
719 720
		kfree(wdev->conn);
		wdev->conn = NULL;
721 722
	}

J
Johannes Berg 已提交
723 724 725 726 727 728 729 730
	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++)
731
			rdev_del_key(rdev, dev, i, false, NULL);
S
Samuel Ortiz 已提交
732

J
Johannes Berg 已提交
733
#ifdef CONFIG_CFG80211_WEXT
S
Samuel Ortiz 已提交
734 735 736
	memset(&wrqu, 0, sizeof(wrqu));
	wrqu.ap_addr.sa_family = ARPHRD_ETHER;
	wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
737
	wdev->wext.connect.ssid_len = 0;
S
Samuel Ortiz 已提交
738
#endif
739 740

	schedule_work(&cfg80211_disconnect_work);
S
Samuel Ortiz 已提交
741 742 743 744 745
}

void cfg80211_disconnected(struct net_device *dev, u16 reason,
			   u8 *ie, size_t ie_len, gfp_t gfp)
{
J
Johannes Berg 已提交
746 747 748 749 750
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	struct cfg80211_event *ev;
	unsigned long flags;

751 752
	CFG80211_DEV_WARN_ON(wdev->sme_state != CFG80211_SME_CONNECTED);

J
Johannes Berg 已提交
753 754 755 756 757 758 759 760 761 762 763 764 765
	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);
766
	queue_work(cfg80211_wq, &rdev->event_work);
S
Samuel Ortiz 已提交
767 768 769
}
EXPORT_SYMBOL(cfg80211_disconnected);

J
Johannes Berg 已提交
770 771
int __cfg80211_connect(struct cfg80211_registered_device *rdev,
		       struct net_device *dev,
J
Johannes Berg 已提交
772
		       struct cfg80211_connect_params *connect,
773 774
		       struct cfg80211_cached_keys *connkeys,
		       const u8 *prev_bssid)
S
Samuel Ortiz 已提交
775 776
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
J
Johannes Berg 已提交
777
	struct cfg80211_bss *bss = NULL;
J
Johannes Berg 已提交
778 779 780
	int err;

	ASSERT_WDEV_LOCK(wdev);
S
Samuel Ortiz 已提交
781 782 783 784

	if (wdev->sme_state != CFG80211_SME_IDLE)
		return -EALREADY;

J
Johannes Berg 已提交
785 786 787 788 789
	if (WARN_ON(wdev->connect_keys)) {
		kfree(wdev->connect_keys);
		wdev->connect_keys = NULL;
	}

790 791 792
	cfg80211_oper_and_ht_capa(&connect->ht_capa_mask,
				  rdev->wiphy.ht_capa_mod_mask);

J
Johannes Berg 已提交
793 794
	if (connkeys && connkeys->def >= 0) {
		int idx;
S
Samuel Ortiz 已提交
795
		u32 cipher;
J
Johannes Berg 已提交
796 797

		idx = connkeys->def;
S
Samuel Ortiz 已提交
798
		cipher = connkeys->params[idx].cipher;
J
Johannes Berg 已提交
799
		/* If given a WEP key we may need it for shared key auth */
S
Samuel Ortiz 已提交
800 801
		if (cipher == WLAN_CIPHER_SUITE_WEP40 ||
		    cipher == WLAN_CIPHER_SUITE_WEP104) {
J
Johannes Berg 已提交
802 803 804
			connect->key_idx = idx;
			connect->key = connkeys->params[idx].key;
			connect->key_len = connkeys->params[idx].key_len;
S
Samuel Ortiz 已提交
805 806 807 808 809 810 811 812 813 814 815 816

			/*
			 * 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 已提交
817 818 819
		}
	}

S
Samuel Ortiz 已提交
820
	if (!rdev->ops->connect) {
821 822 823
		if (!rdev->ops->auth || !rdev->ops->assoc)
			return -EOPNOTSUPP;

J
Johannes Berg 已提交
824 825 826 827 828 829
		if (WARN_ON(wdev->conn))
			return -EINPROGRESS;

		wdev->conn = kzalloc(sizeof(*wdev->conn), GFP_KERNEL);
		if (!wdev->conn)
			return -ENOMEM;
830 831 832 833 834 835 836 837 838 839 840 841 842 843

		/*
		 * 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;
J
Johannes Berg 已提交
844 845 846
			if (!wdev->conn->ie) {
				kfree(wdev->conn);
				wdev->conn = NULL;
847
				return -ENOMEM;
J
Johannes Berg 已提交
848
			}
849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864
		}

		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;
		}

		memcpy(wdev->ssid, connect->ssid, connect->ssid_len);
		wdev->ssid_len = connect->ssid_len;
		wdev->conn->params.ssid = wdev->ssid;
		wdev->conn->params.ssid_len = connect->ssid_len;

J
Johannes Berg 已提交
865 866
		/* see if we have the bss already */
		bss = cfg80211_get_conn_bss(wdev);
867 868

		wdev->sme_state = CFG80211_SME_CONNECTING;
J
Johannes Berg 已提交
869
		wdev->connect_keys = connkeys;
870

871 872 873 874 875
		if (prev_bssid) {
			memcpy(wdev->conn->prev_bssid, prev_bssid, ETH_ALEN);
			wdev->conn->prev_bssid_valid = true;
		}

J
Johannes Berg 已提交
876 877
		/* we're good if we have a matching bss struct */
		if (bss) {
878 879
			wdev->conn->state = CFG80211_CONN_AUTHENTICATE_NEXT;
			err = cfg80211_conn_do_work(wdev);
880
			cfg80211_put_bss(wdev->wiphy, bss);
881 882 883 884 885 886 887 888 889 890 891 892 893
		} 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;
			}
		}
J
Johannes Berg 已提交
894
		if (err) {
895
			kfree(wdev->conn->ie);
J
Johannes Berg 已提交
896 897
			kfree(wdev->conn);
			wdev->conn = NULL;
898
			wdev->sme_state = CFG80211_SME_IDLE;
J
Johannes Berg 已提交
899
			wdev->connect_keys = NULL;
900
			wdev->ssid_len = 0;
J
Johannes Berg 已提交
901
		}
902 903

		return err;
S
Samuel Ortiz 已提交
904 905
	} else {
		wdev->sme_state = CFG80211_SME_CONNECTING;
J
Johannes Berg 已提交
906
		wdev->connect_keys = connkeys;
907
		err = rdev_connect(rdev, dev, connect);
S
Samuel Ortiz 已提交
908
		if (err) {
J
Johannes Berg 已提交
909
			wdev->connect_keys = NULL;
S
Samuel Ortiz 已提交
910 911 912 913
			wdev->sme_state = CFG80211_SME_IDLE;
			return err;
		}

914 915
		memcpy(wdev->ssid, connect->ssid, connect->ssid_len);
		wdev->ssid_len = connect->ssid_len;
S
Samuel Ortiz 已提交
916

917 918
		return 0;
	}
S
Samuel Ortiz 已提交
919 920
}

J
Johannes Berg 已提交
921 922
int cfg80211_connect(struct cfg80211_registered_device *rdev,
		     struct net_device *dev,
J
Johannes Berg 已提交
923 924
		     struct cfg80211_connect_params *connect,
		     struct cfg80211_cached_keys *connkeys)
J
Johannes Berg 已提交
925 926 927
{
	int err;

928
	mutex_lock(&rdev->devlist_mtx);
J
Johannes Berg 已提交
929
	wdev_lock(dev->ieee80211_ptr);
930
	err = __cfg80211_connect(rdev, dev, connect, connkeys, NULL);
J
Johannes Berg 已提交
931
	wdev_unlock(dev->ieee80211_ptr);
932
	mutex_unlock(&rdev->devlist_mtx);
J
Johannes Berg 已提交
933 934 935 936 937 938

	return err;
}

int __cfg80211_disconnect(struct cfg80211_registered_device *rdev,
			  struct net_device *dev, u16 reason, bool wextev)
S
Samuel Ortiz 已提交
939
{
940
	struct wireless_dev *wdev = dev->ieee80211_ptr;
S
Samuel Ortiz 已提交
941 942
	int err;

J
Johannes Berg 已提交
943 944
	ASSERT_WDEV_LOCK(wdev);

945 946 947
	if (wdev->sme_state == CFG80211_SME_IDLE)
		return -EINVAL;

J
Johannes Berg 已提交
948 949 950
	kfree(wdev->connect_keys);
	wdev->connect_keys = NULL;

S
Samuel Ortiz 已提交
951
	if (!rdev->ops->disconnect) {
J
Johannes Berg 已提交
952 953
		if (!rdev->ops->deauth)
			return -EOPNOTSUPP;
954

J
Johannes Berg 已提交
955 956 957 958 959
		/* was it connected by userspace SME? */
		if (!wdev->conn) {
			cfg80211_mlme_down(rdev, dev);
			return 0;
		}
960 961 962 963 964

		if (wdev->sme_state == CFG80211_SME_CONNECTING &&
		    (wdev->conn->state == CFG80211_CONN_SCANNING ||
		     wdev->conn->state == CFG80211_CONN_SCAN_AGAIN)) {
			wdev->sme_state = CFG80211_SME_IDLE;
965
			kfree(wdev->conn->ie);
J
Johannes Berg 已提交
966 967
			kfree(wdev->conn);
			wdev->conn = NULL;
968
			wdev->ssid_len = 0;
969 970 971 972
			return 0;
		}

		/* wdev->conn->params.bssid must be set if > SCANNING */
J
Johannes Berg 已提交
973 974
		err = __cfg80211_mlme_deauth(rdev, dev,
					     wdev->conn->params.bssid,
975
					     NULL, 0, reason, false);
976 977
		if (err)
			return err;
S
Samuel Ortiz 已提交
978
	} else {
979
		err = rdev_disconnect(rdev, dev, reason);
S
Samuel Ortiz 已提交
980 981 982 983
		if (err)
			return err;
	}

984
	if (wdev->sme_state == CFG80211_SME_CONNECTED)
J
Johannes Berg 已提交
985
		__cfg80211_disconnected(dev, NULL, 0, 0, false);
986
	else if (wdev->sme_state == CFG80211_SME_CONNECTING)
987 988
		__cfg80211_connect_result(dev, NULL, NULL, 0, NULL, 0,
					  WLAN_STATUS_UNSPECIFIED_FAILURE,
989
					  wextev, NULL);
S
Samuel Ortiz 已提交
990 991 992

	return 0;
}
J
Johannes Berg 已提交
993

J
Johannes Berg 已提交
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
int cfg80211_disconnect(struct cfg80211_registered_device *rdev,
			struct net_device *dev,
			u16 reason, bool wextev)
{
	int err;

	wdev_lock(dev->ieee80211_ptr);
	err = __cfg80211_disconnect(rdev, dev, reason, wextev);
	wdev_unlock(dev->ieee80211_ptr);

	return err;
}

1007 1008
void cfg80211_sme_disassoc(struct net_device *dev,
			   struct cfg80211_internal_bss *bss)
J
Johannes Berg 已提交
1009 1010 1011 1012 1013
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	u8 bssid[ETH_ALEN];

J
Johannes Berg 已提交
1014 1015
	ASSERT_WDEV_LOCK(wdev);

J
Johannes Berg 已提交
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
	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.
	 */

1027
	memcpy(bssid, bss->pub.bssid, ETH_ALEN);
J
Johannes Berg 已提交
1028

1029 1030
	__cfg80211_mlme_deauth(rdev, dev, bssid, NULL, 0,
			       WLAN_REASON_DEAUTH_LEAVING, false);
J
Johannes Berg 已提交
1031
}