sme.c 24.8 KB
Newer Older
S
Samuel Ortiz 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * 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>
#include <linux/workqueue.h>
11 12
#include <linux/wireless.h>
#include <net/iw_handler.h>
S
Samuel Ortiz 已提交
13 14 15
#include <net/cfg80211.h>
#include <net/rtnetlink.h>
#include "nl80211.h"
16
#include "reg.h"
S
Samuel Ortiz 已提交
17

18 19 20 21 22 23 24 25 26 27 28
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,
29
		CFG80211_CONN_DEAUTH_ASSOC_FAIL,
30
	} state;
31
	u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
32 33
	u8 *ie;
	size_t ie_len;
34
	bool auto_auth, prev_bssid_valid;
35 36 37 38 39
};


static int cfg80211_conn_scan(struct wireless_dev *wdev)
{
40
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
41 42 43 44
	struct cfg80211_scan_request *request;
	int n_channels, err;

	ASSERT_RTNL();
45
	ASSERT_RDEV_LOCK(rdev);
J
Johannes Berg 已提交
46
	ASSERT_WDEV_LOCK(wdev);
47

48
	if (rdev->scan_req)
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
		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;

		for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
			if (!wdev->wiphy->bands[band])
				continue;
			for (j = 0; j < wdev->wiphy->bands[band]->n_channels;
			     i++, j++)
				request->channels[i] =
					&wdev->wiphy->bands[band]->channels[j];
		}
	}
	request->n_channels = n_channels;
85
	request->ssids = (void *)&request->channels[n_channels];
86 87 88 89 90 91
	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;

92
	request->dev = wdev->netdev;
93
	request->wiphy = &rdev->wiphy;
94

95
	rdev->scan_req = request;
96

97
	err = rdev->ops->scan(wdev->wiphy, wdev->netdev, request);
98 99
	if (!err) {
		wdev->conn->state = CFG80211_CONN_SCANNING;
100
		nl80211_send_scan_start(rdev, wdev->netdev);
101
		dev_hold(wdev->netdev);
102
	} else {
103
		rdev->scan_req = NULL;
104 105 106 107 108 109 110
		kfree(request);
	}
	return err;
}

static int cfg80211_conn_do_work(struct wireless_dev *wdev)
{
111
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
J
Johannes Berg 已提交
112
	struct cfg80211_connect_params *params;
113
	const u8 *prev_bssid = NULL;
J
Johannes Berg 已提交
114
	int err;
115

J
Johannes Berg 已提交
116 117
	ASSERT_WDEV_LOCK(wdev);

118 119 120
	if (!wdev->conn)
		return 0;

J
Johannes Berg 已提交
121 122
	params = &wdev->conn->params;

123 124 125 126
	switch (wdev->conn->state) {
	case CFG80211_CONN_SCAN_AGAIN:
		return cfg80211_conn_scan(wdev);
	case CFG80211_CONN_AUTHENTICATE_NEXT:
127
		BUG_ON(!rdev->ops->auth);
J
Johannes Berg 已提交
128
		wdev->conn->state = CFG80211_CONN_AUTHENTICATING;
129
		return __cfg80211_mlme_auth(rdev, wdev->netdev,
J
Johannes Berg 已提交
130 131 132
					    params->channel, params->auth_type,
					    params->bssid,
					    params->ssid, params->ssid_len,
J
Johannes Berg 已提交
133 134 135
					    NULL, 0,
					    params->key, params->key_len,
					    params->key_idx);
136
	case CFG80211_CONN_ASSOCIATE_NEXT:
137
		BUG_ON(!rdev->ops->assoc);
J
Johannes Berg 已提交
138
		wdev->conn->state = CFG80211_CONN_ASSOCIATING;
139 140
		if (wdev->conn->prev_bssid_valid)
			prev_bssid = wdev->conn->prev_bssid;
141
		err = __cfg80211_mlme_assoc(rdev, wdev->netdev,
J
Johannes Berg 已提交
142
					    params->channel, params->bssid,
143
					    prev_bssid,
J
Johannes Berg 已提交
144 145 146
					    params->ssid, params->ssid_len,
					    params->ie, params->ie_len,
					    false, &params->crypto);
J
Johannes Berg 已提交
147
		if (err)
148
			__cfg80211_mlme_deauth(rdev, wdev->netdev, params->bssid,
J
Johannes Berg 已提交
149 150
					       NULL, 0,
					       WLAN_REASON_DEAUTH_LEAVING);
J
Johannes Berg 已提交
151
		return err;
152 153 154 155 156 157
	case CFG80211_CONN_DEAUTH_ASSOC_FAIL:
		__cfg80211_mlme_deauth(rdev, wdev->netdev, params->bssid,
				       NULL, 0,
				       WLAN_REASON_DEAUTH_LEAVING);
		/* return an error so that we call __cfg80211_connect_result() */
		return -EINVAL;
158 159 160 161 162 163 164
	default:
		return 0;
	}
}

void cfg80211_conn_work(struct work_struct *work)
{
165
	struct cfg80211_registered_device *rdev =
166 167
		container_of(work, struct cfg80211_registered_device, conn_work);
	struct wireless_dev *wdev;
J
Johannes Berg 已提交
168
	u8 bssid_buf[ETH_ALEN], *bssid = NULL;
169 170

	rtnl_lock();
171 172
	cfg80211_lock_rdev(rdev);
	mutex_lock(&rdev->devlist_mtx);
173

174
	list_for_each_entry(wdev, &rdev->netdev_list, list) {
J
Johannes Berg 已提交
175 176 177
		wdev_lock(wdev);
		if (!netif_running(wdev->netdev)) {
			wdev_unlock(wdev);
178
			continue;
J
Johannes Berg 已提交
179 180 181
		}
		if (wdev->sme_state != CFG80211_SME_CONNECTING) {
			wdev_unlock(wdev);
182
			continue;
J
Johannes Berg 已提交
183
		}
J
Johannes Berg 已提交
184 185 186 187
		if (wdev->conn->params.bssid) {
			memcpy(bssid_buf, wdev->conn->params.bssid, ETH_ALEN);
			bssid = bssid_buf;
		}
188
		if (cfg80211_conn_do_work(wdev))
J
Johannes Berg 已提交
189
			__cfg80211_connect_result(
190
					wdev->netdev, bssid,
J
Johannes Berg 已提交
191 192
					NULL, 0, NULL, 0,
					WLAN_STATUS_UNSPECIFIED_FAILURE,
193
					false, NULL);
J
Johannes Berg 已提交
194
		wdev_unlock(wdev);
195 196
	}

197 198
	mutex_unlock(&rdev->devlist_mtx);
	cfg80211_unlock_rdev(rdev);
199 200 201
	rtnl_unlock();
}

J
Johannes Berg 已提交
202
static struct cfg80211_bss *cfg80211_get_conn_bss(struct wireless_dev *wdev)
203
{
204
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
205 206 207
	struct cfg80211_bss *bss;
	u16 capa = WLAN_CAPABILITY_ESS;

J
Johannes Berg 已提交
208 209
	ASSERT_WDEV_LOCK(wdev);

210 211 212 213 214 215 216 217 218
	if (wdev->conn->params.privacy)
		capa |= WLAN_CAPABILITY_PRIVACY;

	bss = cfg80211_get_bss(wdev->wiphy, NULL, wdev->conn->params.bssid,
			       wdev->conn->params.ssid,
			       wdev->conn->params.ssid_len,
			       WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_PRIVACY,
			       capa);
	if (!bss)
J
Johannes Berg 已提交
219
		return NULL;
220 221 222 223 224

	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;
225
	schedule_work(&rdev->conn_work);
226

J
Johannes Berg 已提交
227
	return bss;
228 229
}

J
Johannes Berg 已提交
230
static void __cfg80211_sme_scan_done(struct net_device *dev)
231 232
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
233
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
J
Johannes Berg 已提交
234
	struct cfg80211_bss *bss;
235

J
Johannes Berg 已提交
236 237
	ASSERT_WDEV_LOCK(wdev);

238 239 240
	if (wdev->sme_state != CFG80211_SME_CONNECTING)
		return;

241
	if (!wdev->conn)
242 243 244 245 246 247
		return;

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

J
Johannes Berg 已提交
248 249 250 251
	bss = cfg80211_get_conn_bss(wdev);
	if (bss) {
		cfg80211_put_bss(bss);
	} else {
252 253
		/* not found */
		if (wdev->conn->state == CFG80211_CONN_SCAN_AGAIN)
254
			schedule_work(&rdev->conn_work);
255
		else
J
Johannes Berg 已提交
256 257 258 259 260
			__cfg80211_connect_result(
					wdev->netdev,
					wdev->conn->params.bssid,
					NULL, 0, NULL, 0,
					WLAN_STATUS_UNSPECIFIED_FAILURE,
261
					false, NULL);
262 263 264
	}
}

J
Johannes Berg 已提交
265 266 267 268
void cfg80211_sme_scan_done(struct net_device *dev)
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;

269
	mutex_lock(&wiphy_to_dev(wdev->wiphy)->devlist_mtx);
J
Johannes Berg 已提交
270 271 272
	wdev_lock(wdev);
	__cfg80211_sme_scan_done(dev);
	wdev_unlock(wdev);
273
	mutex_unlock(&wiphy_to_dev(wdev->wiphy)->devlist_mtx);
J
Johannes Berg 已提交
274 275 276 277
}

void cfg80211_sme_rx_auth(struct net_device *dev,
			  const u8 *buf, size_t len)
278 279 280 281 282 283 284
{
	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 已提交
285 286
	ASSERT_WDEV_LOCK(wdev);

287 288 289 290 291 292 293 294 295 296 297 298 299
	/* 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 已提交
300 301 302 303 304 305
			if (wdev->connect_keys)
				wdev->conn->params.auth_type =
					NL80211_AUTHTYPE_SHARED_KEY;
			else
				wdev->conn->params.auth_type =
					NL80211_AUTHTYPE_NETWORK_EAP;
306 307 308 309 310 311 312 313 314 315 316 317 318
			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 已提交
319
	} else if (status_code != WLAN_STATUS_SUCCESS) {
J
Johannes Berg 已提交
320
		__cfg80211_connect_result(dev, mgmt->bssid, NULL, 0, NULL, 0,
321
					  status_code, false, NULL);
J
Johannes Berg 已提交
322
	} else if (wdev->sme_state == CFG80211_SME_CONNECTING &&
323 324 325 326 327
		 wdev->conn->state == CFG80211_CONN_AUTHENTICATING) {
		wdev->conn->state = CFG80211_CONN_ASSOCIATE_NEXT;
		schedule_work(&rdev->conn_work);
	}
}
S
Samuel Ortiz 已提交
328

329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
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;
}

351 352 353 354 355 356 357 358 359
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 已提交
360 361 362
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,
363 364
			       u16 status, bool wextev,
			       struct cfg80211_bss *bss)
S
Samuel Ortiz 已提交
365 366
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
367
	u8 *country_ie;
S
Samuel Ortiz 已提交
368 369 370 371
#ifdef CONFIG_WIRELESS_EXT
	union iwreq_data wrqu;
#endif

J
Johannes Berg 已提交
372 373
	ASSERT_WDEV_LOCK(wdev);

S
Samuel Ortiz 已提交
374 375 376
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION))
		return;

377
	if (wdev->sme_state != CFG80211_SME_CONNECTING)
378 379 380
		return;

	nl80211_send_connect_result(wiphy_to_dev(wdev->wiphy), dev,
381
				    bssid, req_ie, req_ie_len,
382 383
				    resp_ie, resp_ie_len,
				    status, GFP_KERNEL);
384 385 386 387 388 389

#ifdef CONFIG_WIRELESS_EXT
	if (wextev) {
		if (req_ie && status == WLAN_STATUS_SUCCESS) {
			memset(&wrqu, 0, sizeof(wrqu));
			wrqu.data.length = req_ie_len;
Z
Zhu Yi 已提交
390
			wireless_send_event(dev, IWEVASSOCREQIE, &wrqu, req_ie);
391 392 393 394 395 396 397 398 399 400
		}

		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;
401
		if (bssid && status == WLAN_STATUS_SUCCESS) {
402
			memcpy(wrqu.ap_addr.sa_data, bssid, ETH_ALEN);
403 404 405
			memcpy(wdev->wext.prev_bssid, bssid, ETH_ALEN);
			wdev->wext.prev_bssid_valid = true;
		}
406 407 408 409
		wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
	}
#endif

410 411 412 413 414 415
	if (wdev->current_bss) {
		cfg80211_unhold_bss(wdev->current_bss);
		cfg80211_put_bss(&wdev->current_bss->pub);
		wdev->current_bss = NULL;
	}

J
Johannes Berg 已提交
416 417 418
	if (wdev->conn)
		wdev->conn->state = CFG80211_CONN_IDLE;

J
Johannes Berg 已提交
419
	if (status != WLAN_STATUS_SUCCESS) {
S
Samuel Ortiz 已提交
420
		wdev->sme_state = CFG80211_SME_IDLE;
421 422
		if (wdev->conn)
			kfree(wdev->conn->ie);
J
Johannes Berg 已提交
423 424
		kfree(wdev->conn);
		wdev->conn = NULL;
J
Johannes Berg 已提交
425 426
		kfree(wdev->connect_keys);
		wdev->connect_keys = NULL;
427
		wdev->ssid_len = 0;
J
Johannes Berg 已提交
428
		return;
S
Samuel Ortiz 已提交
429
	}
J
Johannes Berg 已提交
430

431 432 433 434 435
	if (!bss)
		bss = cfg80211_get_bss(wdev->wiphy, NULL, bssid,
				       wdev->ssid, wdev->ssid_len,
				       WLAN_CAPABILITY_ESS,
				       WLAN_CAPABILITY_ESS);
J
Johannes Berg 已提交
436 437 438 439 440 441 442 443 444

	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);
445 446 447 448 449 450 451 452 453 454 455 456 457 458

	country_ie = (u8 *) ieee80211_bss_get_ie(bss, WLAN_EID_COUNTRY);

	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
	 */
	regulatory_hint_11d(wdev->wiphy,
			    country_ie + 2,
			    country_ie[1]);
S
Samuel Ortiz 已提交
459
}
460 461 462 463 464 465

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 已提交
466 467 468 469 470
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	struct cfg80211_event *ev;
	unsigned long flags;

471 472
	CFG80211_DEV_WARN_ON(wdev->sme_state != CFG80211_SME_CONNECTING);

J
Johannes Berg 已提交
473 474 475 476 477
	ev = kzalloc(sizeof(*ev) + req_ie_len + resp_ie_len, gfp);
	if (!ev)
		return;

	ev->type = EVENT_CONNECT_RESULT;
478 479
	if (bssid)
		memcpy(ev->cr.bssid, bssid, ETH_ALEN);
J
Johannes Berg 已提交
480 481 482 483 484 485 486 487 488 489 490 491
	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);
	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);
	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);
	schedule_work(&rdev->event_work);
492
}
S
Samuel Ortiz 已提交
493 494
EXPORT_SYMBOL(cfg80211_connect_result);

J
Johannes Berg 已提交
495 496 497
void __cfg80211_roamed(struct wireless_dev *wdev, const u8 *bssid,
		       const u8 *req_ie, size_t req_ie_len,
		       const u8 *resp_ie, size_t resp_ie_len)
S
Samuel Ortiz 已提交
498 499 500 501 502 503
{
	struct cfg80211_bss *bss;
#ifdef CONFIG_WIRELESS_EXT
	union iwreq_data wrqu;
#endif

J
Johannes Berg 已提交
504 505
	ASSERT_WDEV_LOCK(wdev);

S
Samuel Ortiz 已提交
506 507 508
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION))
		return;

509
	if (wdev->sme_state != CFG80211_SME_CONNECTED)
S
Samuel Ortiz 已提交
510 511 512 513 514 515 516 517
		return;

	/* internal error -- how did we get to CONNECTED w/o BSS? */
	if (WARN_ON(!wdev->current_bss)) {
		return;
	}

	cfg80211_unhold_bss(wdev->current_bss);
J
Johannes Berg 已提交
518
	cfg80211_put_bss(&wdev->current_bss->pub);
S
Samuel Ortiz 已提交
519 520 521 522 523 524 525 526 527
	wdev->current_bss = NULL;

	bss = cfg80211_get_bss(wdev->wiphy, NULL, bssid,
			       wdev->ssid, wdev->ssid_len,
			       WLAN_CAPABILITY_ESS, WLAN_CAPABILITY_ESS);

	if (WARN_ON(!bss))
		return;

J
Johannes Berg 已提交
528 529
	cfg80211_hold_bss(bss_from_pub(bss));
	wdev->current_bss = bss_from_pub(bss);
S
Samuel Ortiz 已提交
530

J
Johannes Berg 已提交
531 532 533
	nl80211_send_roamed(wiphy_to_dev(wdev->wiphy), wdev->netdev, bssid,
			    req_ie, req_ie_len, resp_ie, resp_ie_len,
			    GFP_KERNEL);
S
Samuel Ortiz 已提交
534 535 536 537 538

#ifdef CONFIG_WIRELESS_EXT
	if (req_ie) {
		memset(&wrqu, 0, sizeof(wrqu));
		wrqu.data.length = req_ie_len;
Z
Zhu Yi 已提交
539
		wireless_send_event(wdev->netdev, IWEVASSOCREQIE,
J
Johannes Berg 已提交
540
				    &wrqu, req_ie);
S
Samuel Ortiz 已提交
541 542 543 544 545
	}

	if (resp_ie) {
		memset(&wrqu, 0, sizeof(wrqu));
		wrqu.data.length = resp_ie_len;
J
Johannes Berg 已提交
546 547
		wireless_send_event(wdev->netdev, IWEVASSOCRESPIE,
				    &wrqu, resp_ie);
S
Samuel Ortiz 已提交
548 549 550 551 552
	}

	memset(&wrqu, 0, sizeof(wrqu));
	wrqu.ap_addr.sa_family = ARPHRD_ETHER;
	memcpy(wrqu.ap_addr.sa_data, bssid, ETH_ALEN);
553 554
	memcpy(wdev->wext.prev_bssid, bssid, ETH_ALEN);
	wdev->wext.prev_bssid_valid = true;
J
Johannes Berg 已提交
555
	wireless_send_event(wdev->netdev, SIOCGIWAP, &wrqu, NULL);
S
Samuel Ortiz 已提交
556 557
#endif
}
J
Johannes Berg 已提交
558 559 560 561 562 563 564 565 566 567

void cfg80211_roamed(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, gfp_t gfp)
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	struct cfg80211_event *ev;
	unsigned long flags;

568 569
	CFG80211_DEV_WARN_ON(wdev->sme_state != CFG80211_SME_CONNECTED);

J
Johannes Berg 已提交
570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
	ev = kzalloc(sizeof(*ev) + req_ie_len + resp_ie_len, gfp);
	if (!ev)
		return;

	ev->type = EVENT_ROAMED;
	memcpy(ev->rm.bssid, bssid, ETH_ALEN);
	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);

	spin_lock_irqsave(&wdev->event_lock, flags);
	list_add_tail(&ev->list, &wdev->event_list);
	spin_unlock_irqrestore(&wdev->event_lock, flags);
	schedule_work(&rdev->event_work);
}
S
Samuel Ortiz 已提交
588 589
EXPORT_SYMBOL(cfg80211_roamed);

J
Johannes Berg 已提交
590
void __cfg80211_disconnected(struct net_device *dev, const u8 *ie,
591
			     size_t ie_len, u16 reason, bool from_ap)
S
Samuel Ortiz 已提交
592 593
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
J
Johannes Berg 已提交
594 595
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	int i;
S
Samuel Ortiz 已提交
596 597 598 599
#ifdef CONFIG_WIRELESS_EXT
	union iwreq_data wrqu;
#endif

J
Johannes Berg 已提交
600 601
	ASSERT_WDEV_LOCK(wdev);

S
Samuel Ortiz 已提交
602 603 604
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION))
		return;

605
	if (wdev->sme_state != CFG80211_SME_CONNECTED)
S
Samuel Ortiz 已提交
606 607 608 609
		return;

	if (wdev->current_bss) {
		cfg80211_unhold_bss(wdev->current_bss);
J
Johannes Berg 已提交
610
		cfg80211_put_bss(&wdev->current_bss->pub);
S
Samuel Ortiz 已提交
611 612 613 614
	}

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

617
	if (wdev->conn) {
618 619 620
		const u8 *bssid;
		int ret;

621 622
		kfree(wdev->conn->ie);
		wdev->conn->ie = NULL;
J
Johannes Berg 已提交
623 624
		kfree(wdev->conn);
		wdev->conn = NULL;
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641

		/*
		 * If this disconnect was due to a disassoc, we
		 * we might still have an auth BSS around. For
		 * the userspace SME that's currently expected,
		 * but for the kernel SME (nl80211 CONNECT or
		 * wireless extensions) we want to clear up all
		 * state.
		 */
		for (i = 0; i < MAX_AUTH_BSSES; i++) {
			if (!wdev->auth_bsses[i])
				continue;
			bssid = wdev->auth_bsses[i]->pub.bssid;
			ret = __cfg80211_mlme_deauth(rdev, dev, bssid, NULL, 0,
						WLAN_REASON_DEAUTH_LEAVING);
			WARN(ret, "deauth failed: %d\n", ret);
		}
642 643
	}

J
Johannes Berg 已提交
644 645 646 647 648 649 650 651 652
	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++)
			rdev->ops->del_key(wdev->wiphy, dev, i, NULL);
S
Samuel Ortiz 已提交
653 654 655 656 657 658 659 660 661 662 663

#ifdef CONFIG_WIRELESS_EXT
	memset(&wrqu, 0, sizeof(wrqu));
	wrqu.ap_addr.sa_family = ARPHRD_ETHER;
	wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
#endif
}

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

669 670
	CFG80211_DEV_WARN_ON(wdev->sme_state != CFG80211_SME_CONNECTED);

J
Johannes Berg 已提交
671 672 673 674 675 676 677 678 679 680 681 682 683 684
	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);
	schedule_work(&rdev->event_work);
S
Samuel Ortiz 已提交
685 686 687
}
EXPORT_SYMBOL(cfg80211_disconnected);

J
Johannes Berg 已提交
688 689
int __cfg80211_connect(struct cfg80211_registered_device *rdev,
		       struct net_device *dev,
J
Johannes Berg 已提交
690
		       struct cfg80211_connect_params *connect,
691 692
		       struct cfg80211_cached_keys *connkeys,
		       const u8 *prev_bssid)
S
Samuel Ortiz 已提交
693 694
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
695
	struct ieee80211_channel *chan;
J
Johannes Berg 已提交
696
	struct cfg80211_bss *bss = NULL;
J
Johannes Berg 已提交
697 698 699
	int err;

	ASSERT_WDEV_LOCK(wdev);
S
Samuel Ortiz 已提交
700 701 702 703

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

704 705 706 707
	chan = rdev_fixed_channel(rdev, wdev);
	if (chan && chan != connect->channel)
		return -EBUSY;

J
Johannes Berg 已提交
708 709 710 711 712 713 714
	if (WARN_ON(wdev->connect_keys)) {
		kfree(wdev->connect_keys);
		wdev->connect_keys = NULL;
	}

	if (connkeys && connkeys->def >= 0) {
		int idx;
S
Samuel Ortiz 已提交
715
		u32 cipher;
J
Johannes Berg 已提交
716 717

		idx = connkeys->def;
S
Samuel Ortiz 已提交
718
		cipher = connkeys->params[idx].cipher;
J
Johannes Berg 已提交
719
		/* If given a WEP key we may need it for shared key auth */
S
Samuel Ortiz 已提交
720 721
		if (cipher == WLAN_CIPHER_SUITE_WEP40 ||
		    cipher == WLAN_CIPHER_SUITE_WEP104) {
J
Johannes Berg 已提交
722 723 724
			connect->key_idx = idx;
			connect->key = connkeys->params[idx].key;
			connect->key_len = connkeys->params[idx].key_len;
S
Samuel Ortiz 已提交
725 726 727 728 729 730 731 732 733 734 735 736

			/*
			 * 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 已提交
737 738 739
		}
	}

S
Samuel Ortiz 已提交
740
	if (!rdev->ops->connect) {
741 742 743
		if (!rdev->ops->auth || !rdev->ops->assoc)
			return -EOPNOTSUPP;

J
Johannes Berg 已提交
744 745 746 747 748 749
		if (WARN_ON(wdev->conn))
			return -EINPROGRESS;

		wdev->conn = kzalloc(sizeof(*wdev->conn), GFP_KERNEL);
		if (!wdev->conn)
			return -ENOMEM;
750 751 752 753 754 755 756 757 758 759 760 761 762 763

		/*
		 * 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 已提交
764 765 766
			if (!wdev->conn->ie) {
				kfree(wdev->conn);
				wdev->conn = NULL;
767
				return -ENOMEM;
J
Johannes Berg 已提交
768
			}
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784
		}

		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 已提交
785 786
		/* see if we have the bss already */
		bss = cfg80211_get_conn_bss(wdev);
787 788

		wdev->sme_state = CFG80211_SME_CONNECTING;
J
Johannes Berg 已提交
789
		wdev->connect_keys = connkeys;
790

791 792 793 794 795
		if (prev_bssid) {
			memcpy(wdev->conn->prev_bssid, prev_bssid, ETH_ALEN);
			wdev->conn->prev_bssid_valid = true;
		}

J
Johannes Berg 已提交
796 797
		/* we're good if we have a matching bss struct */
		if (bss) {
798 799
			wdev->conn->state = CFG80211_CONN_AUTHENTICATE_NEXT;
			err = cfg80211_conn_do_work(wdev);
J
Johannes Berg 已提交
800
			cfg80211_put_bss(bss);
801 802 803 804 805 806 807 808 809 810 811 812 813
		} 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 已提交
814
		if (err) {
815
			kfree(wdev->conn->ie);
J
Johannes Berg 已提交
816 817
			kfree(wdev->conn);
			wdev->conn = NULL;
818
			wdev->sme_state = CFG80211_SME_IDLE;
J
Johannes Berg 已提交
819
			wdev->connect_keys = NULL;
820
			wdev->ssid_len = 0;
J
Johannes Berg 已提交
821
		}
822 823

		return err;
S
Samuel Ortiz 已提交
824 825
	} else {
		wdev->sme_state = CFG80211_SME_CONNECTING;
J
Johannes Berg 已提交
826
		wdev->connect_keys = connkeys;
S
Samuel Ortiz 已提交
827 828
		err = rdev->ops->connect(&rdev->wiphy, dev, connect);
		if (err) {
J
Johannes Berg 已提交
829
			wdev->connect_keys = NULL;
S
Samuel Ortiz 已提交
830 831 832 833
			wdev->sme_state = CFG80211_SME_IDLE;
			return err;
		}

834 835
		memcpy(wdev->ssid, connect->ssid, connect->ssid_len);
		wdev->ssid_len = connect->ssid_len;
S
Samuel Ortiz 已提交
836

837 838
		return 0;
	}
S
Samuel Ortiz 已提交
839 840
}

J
Johannes Berg 已提交
841 842
int cfg80211_connect(struct cfg80211_registered_device *rdev,
		     struct net_device *dev,
J
Johannes Berg 已提交
843 844
		     struct cfg80211_connect_params *connect,
		     struct cfg80211_cached_keys *connkeys)
J
Johannes Berg 已提交
845 846 847
{
	int err;

848
	mutex_lock(&rdev->devlist_mtx);
J
Johannes Berg 已提交
849
	wdev_lock(dev->ieee80211_ptr);
850
	err = __cfg80211_connect(rdev, dev, connect, connkeys, NULL);
J
Johannes Berg 已提交
851
	wdev_unlock(dev->ieee80211_ptr);
852
	mutex_unlock(&rdev->devlist_mtx);
J
Johannes Berg 已提交
853 854 855 856 857 858

	return err;
}

int __cfg80211_disconnect(struct cfg80211_registered_device *rdev,
			  struct net_device *dev, u16 reason, bool wextev)
S
Samuel Ortiz 已提交
859
{
860
	struct wireless_dev *wdev = dev->ieee80211_ptr;
S
Samuel Ortiz 已提交
861 862
	int err;

J
Johannes Berg 已提交
863 864
	ASSERT_WDEV_LOCK(wdev);

865 866 867
	if (wdev->sme_state == CFG80211_SME_IDLE)
		return -EINVAL;

J
Johannes Berg 已提交
868 869 870
	kfree(wdev->connect_keys);
	wdev->connect_keys = NULL;

S
Samuel Ortiz 已提交
871
	if (!rdev->ops->disconnect) {
J
Johannes Berg 已提交
872 873
		if (!rdev->ops->deauth)
			return -EOPNOTSUPP;
874

J
Johannes Berg 已提交
875 876 877 878 879
		/* was it connected by userspace SME? */
		if (!wdev->conn) {
			cfg80211_mlme_down(rdev, dev);
			return 0;
		}
880 881 882 883 884

		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;
885
			kfree(wdev->conn->ie);
J
Johannes Berg 已提交
886 887
			kfree(wdev->conn);
			wdev->conn = NULL;
888
			wdev->ssid_len = 0;
889 890 891 892
			return 0;
		}

		/* wdev->conn->params.bssid must be set if > SCANNING */
J
Johannes Berg 已提交
893 894 895
		err = __cfg80211_mlme_deauth(rdev, dev,
					     wdev->conn->params.bssid,
					     NULL, 0, reason);
896 897
		if (err)
			return err;
S
Samuel Ortiz 已提交
898 899 900 901 902 903
	} else {
		err = rdev->ops->disconnect(&rdev->wiphy, dev, reason);
		if (err)
			return err;
	}

904
	if (wdev->sme_state == CFG80211_SME_CONNECTED)
J
Johannes Berg 已提交
905
		__cfg80211_disconnected(dev, NULL, 0, 0, false);
906
	else if (wdev->sme_state == CFG80211_SME_CONNECTING)
907 908
		__cfg80211_connect_result(dev, NULL, NULL, 0, NULL, 0,
					  WLAN_STATUS_UNSPECIFIED_FAILURE,
909
					  wextev, NULL);
S
Samuel Ortiz 已提交
910 911 912

	return 0;
}
J
Johannes Berg 已提交
913

J
Johannes Berg 已提交
914 915 916 917 918 919 920 921 922 923 924 925 926
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;
}

J
Johannes Berg 已提交
927 928 929 930 931 932
void cfg80211_sme_disassoc(struct net_device *dev, int idx)
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	u8 bssid[ETH_ALEN];

J
Johannes Berg 已提交
933 934
	ASSERT_WDEV_LOCK(wdev);

J
Johannes Berg 已提交
935 936 937 938 939 940 941 942 943 944 945 946 947 948 949
	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.
	 */

	if (!wdev->auth_bsses[idx])
		return;

	memcpy(bssid, wdev->auth_bsses[idx]->pub.bssid, ETH_ALEN);
J
Johannes Berg 已提交
950 951
	if (__cfg80211_mlme_deauth(rdev, dev, bssid,
				   NULL, 0, WLAN_REASON_DEAUTH_LEAVING)) {
J
Johannes Berg 已提交
952 953 954 955 956 957
		/* whatever -- assume gone anyway */
		cfg80211_unhold_bss(wdev->auth_bsses[idx]);
		cfg80211_put_bss(&wdev->auth_bsses[idx]->pub);
		wdev->auth_bsses[idx] = NULL;
	}
}