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

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


static int cfg80211_conn_scan(struct wireless_dev *wdev)
{
36
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
37 38 39 40
	struct cfg80211_scan_request *request;
	int n_channels, err;

	ASSERT_RTNL();
41
	ASSERT_RDEV_LOCK(rdev);
J
Johannes Berg 已提交
42
	ASSERT_WDEV_LOCK(wdev);
43

44
	if (rdev->scan_req)
45 46 47 48 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 85 86 87 88
		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;

	request->channels = (void *)((char *)request + sizeof(*request));
	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;
	request->ssids = (void *)(request->channels + n_channels);
	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;

89
	request->dev = wdev->netdev;
90
	request->wiphy = &rdev->wiphy;
91

92
	rdev->scan_req = request;
93

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

static int cfg80211_conn_do_work(struct wireless_dev *wdev)
{
108
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
J
Johannes Berg 已提交
109 110
	struct cfg80211_connect_params *params;
	int err;
111

J
Johannes Berg 已提交
112 113
	ASSERT_WDEV_LOCK(wdev);

114 115 116
	if (!wdev->conn)
		return 0;

J
Johannes Berg 已提交
117 118
	params = &wdev->conn->params;

119 120 121 122
	switch (wdev->conn->state) {
	case CFG80211_CONN_SCAN_AGAIN:
		return cfg80211_conn_scan(wdev);
	case CFG80211_CONN_AUTHENTICATE_NEXT:
123
		BUG_ON(!rdev->ops->auth);
J
Johannes Berg 已提交
124
		wdev->conn->state = CFG80211_CONN_AUTHENTICATING;
125
		return __cfg80211_mlme_auth(rdev, wdev->netdev,
J
Johannes Berg 已提交
126 127 128
					    params->channel, params->auth_type,
					    params->bssid,
					    params->ssid, params->ssid_len,
J
Johannes Berg 已提交
129 130 131
					    NULL, 0,
					    params->key, params->key_len,
					    params->key_idx);
132
	case CFG80211_CONN_ASSOCIATE_NEXT:
133
		BUG_ON(!rdev->ops->assoc);
J
Johannes Berg 已提交
134
		wdev->conn->state = CFG80211_CONN_ASSOCIATING;
135 136 137 138 139 140
		/*
		 * We could, later, implement roaming here and then actually
		 * set prev_bssid to non-NULL. But then we need to be aware
		 * that some APs don't like that -- so we'd need to retry
		 * the association.
		 */
141
		err = __cfg80211_mlme_assoc(rdev, wdev->netdev,
J
Johannes Berg 已提交
142 143 144 145 146
					    params->channel, params->bssid,
					    NULL,
					    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 158
	default:
		return 0;
	}
}

void cfg80211_conn_work(struct work_struct *work)
{
159
	struct cfg80211_registered_device *rdev =
160 161 162 163
		container_of(work, struct cfg80211_registered_device, conn_work);
	struct wireless_dev *wdev;

	rtnl_lock();
164 165
	cfg80211_lock_rdev(rdev);
	mutex_lock(&rdev->devlist_mtx);
166

167
	list_for_each_entry(wdev, &rdev->netdev_list, list) {
J
Johannes Berg 已提交
168 169 170
		wdev_lock(wdev);
		if (!netif_running(wdev->netdev)) {
			wdev_unlock(wdev);
171
			continue;
J
Johannes Berg 已提交
172 173 174
		}
		if (wdev->sme_state != CFG80211_SME_CONNECTING) {
			wdev_unlock(wdev);
175
			continue;
J
Johannes Berg 已提交
176
		}
177
		if (cfg80211_conn_do_work(wdev))
J
Johannes Berg 已提交
178 179 180 181 182 183 184
			__cfg80211_connect_result(
					wdev->netdev,
					wdev->conn->params.bssid,
					NULL, 0, NULL, 0,
					WLAN_STATUS_UNSPECIFIED_FAILURE,
					false);
		wdev_unlock(wdev);
185 186
	}

187 188
	mutex_unlock(&rdev->devlist_mtx);
	cfg80211_unlock_rdev(rdev);
189 190 191 192 193
	rtnl_unlock();
}

static bool cfg80211_get_conn_bss(struct wireless_dev *wdev)
{
194
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
195 196 197
	struct cfg80211_bss *bss;
	u16 capa = WLAN_CAPABILITY_ESS;

J
Johannes Berg 已提交
198 199
	ASSERT_WDEV_LOCK(wdev);

200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
	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)
		return false;

	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;
215
	schedule_work(&rdev->conn_work);
216 217 218 219 220

	cfg80211_put_bss(bss);
	return true;
}

J
Johannes Berg 已提交
221
static void __cfg80211_sme_scan_done(struct net_device *dev)
222 223
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
224
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
225

J
Johannes Berg 已提交
226 227
	ASSERT_WDEV_LOCK(wdev);

228 229 230
	if (wdev->sme_state != CFG80211_SME_CONNECTING)
		return;

231
	if (!wdev->conn)
232 233 234 235 236 237 238 239 240
		return;

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

	if (!cfg80211_get_conn_bss(wdev)) {
		/* not found */
		if (wdev->conn->state == CFG80211_CONN_SCAN_AGAIN)
241
			schedule_work(&rdev->conn_work);
242
		else
J
Johannes Berg 已提交
243 244 245 246 247 248
			__cfg80211_connect_result(
					wdev->netdev,
					wdev->conn->params.bssid,
					NULL, 0, NULL, 0,
					WLAN_STATUS_UNSPECIFIED_FAILURE,
					false);
249 250 251
	}
}

J
Johannes Berg 已提交
252 253 254 255 256 257 258 259 260 261 262
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);
}

void cfg80211_sme_rx_auth(struct net_device *dev,
			  const u8 *buf, size_t len)
263 264 265 266 267 268 269
{
	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 已提交
270 271
	ASSERT_WDEV_LOCK(wdev);

272 273 274 275 276 277 278 279 280 281 282 283 284
	/* 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 已提交
285 286 287 288 289 290
			if (wdev->connect_keys)
				wdev->conn->params.auth_type =
					NL80211_AUTHTYPE_SHARED_KEY;
			else
				wdev->conn->params.auth_type =
					NL80211_AUTHTYPE_NETWORK_EAP;
291 292 293 294 295 296 297 298 299 300 301 302 303
			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 已提交
304
	} else if (status_code != WLAN_STATUS_SUCCESS) {
J
Johannes Berg 已提交
305 306
		__cfg80211_connect_result(dev, mgmt->bssid, NULL, 0, NULL, 0,
					  status_code, false);
J
Johannes Berg 已提交
307
	} else if (wdev->sme_state == CFG80211_SME_CONNECTING &&
308 309 310 311 312
		 wdev->conn->state == CFG80211_CONN_AUTHENTICATING) {
		wdev->conn->state = CFG80211_CONN_ASSOCIATE_NEXT;
		schedule_work(&rdev->conn_work);
	}
}
S
Samuel Ortiz 已提交
313

J
Johannes Berg 已提交
314 315 316 317
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, bool wextev)
S
Samuel Ortiz 已提交
318 319 320 321 322 323 324
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_bss *bss;
#ifdef CONFIG_WIRELESS_EXT
	union iwreq_data wrqu;
#endif

J
Johannes Berg 已提交
325 326
	ASSERT_WDEV_LOCK(wdev);

S
Samuel Ortiz 已提交
327 328 329
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION))
		return;

330 331 332
	if (wdev->sme_state == CFG80211_SME_CONNECTED)
		nl80211_send_roamed(wiphy_to_dev(wdev->wiphy), dev,
				    bssid, req_ie, req_ie_len,
J
Johannes Berg 已提交
333
				    resp_ie, resp_ie_len, GFP_KERNEL);
334 335 336 337
	else
		nl80211_send_connect_result(wiphy_to_dev(wdev->wiphy), dev,
					    bssid, req_ie, req_ie_len,
					    resp_ie, resp_ie_len,
J
Johannes Berg 已提交
338
					    status, GFP_KERNEL);
339 340 341 342 343 344

#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 已提交
345
			wireless_send_event(dev, IWEVASSOCREQIE, &wrqu, req_ie);
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
		}

		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;
		if (bssid && status == WLAN_STATUS_SUCCESS)
			memcpy(wrqu.ap_addr.sa_data, bssid, ETH_ALEN);
		wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
	}
#endif

	if (status == WLAN_STATUS_SUCCESS &&
J
Johannes Berg 已提交
363 364
	    wdev->sme_state == CFG80211_SME_IDLE)
		goto success;
365

366
	if (wdev->sme_state != CFG80211_SME_CONNECTING)
S
Samuel Ortiz 已提交
367 368 369 370
		return;

	if (wdev->current_bss) {
		cfg80211_unhold_bss(wdev->current_bss);
J
Johannes Berg 已提交
371
		cfg80211_put_bss(&wdev->current_bss->pub);
S
Samuel Ortiz 已提交
372 373 374
		wdev->current_bss = NULL;
	}

J
Johannes Berg 已提交
375 376 377
	if (wdev->conn)
		wdev->conn->state = CFG80211_CONN_IDLE;

J
Johannes Berg 已提交
378
	if (status != WLAN_STATUS_SUCCESS) {
S
Samuel Ortiz 已提交
379
		wdev->sme_state = CFG80211_SME_IDLE;
J
Johannes Berg 已提交
380 381
		kfree(wdev->conn);
		wdev->conn = NULL;
J
Johannes Berg 已提交
382 383 384
		kfree(wdev->connect_keys);
		wdev->connect_keys = NULL;
		return;
S
Samuel Ortiz 已提交
385
	}
J
Johannes Berg 已提交
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400

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

	if (WARN_ON(!bss))
		return;

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

 success:
	wdev->sme_state = CFG80211_SME_CONNECTED;
	cfg80211_upload_connect_keys(wdev);
S
Samuel Ortiz 已提交
401
}
402 403 404 405 406 407

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 已提交
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
	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;
	memcpy(ev->cr.bssid, bssid, ETH_ALEN);
	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);
431
}
S
Samuel Ortiz 已提交
432 433
EXPORT_SYMBOL(cfg80211_connect_result);

J
Johannes Berg 已提交
434 435 436
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 已提交
437 438 439 440 441 442
{
	struct cfg80211_bss *bss;
#ifdef CONFIG_WIRELESS_EXT
	union iwreq_data wrqu;
#endif

J
Johannes Berg 已提交
443 444
	ASSERT_WDEV_LOCK(wdev);

S
Samuel Ortiz 已提交
445 446 447 448 449 450 451 452 453 454 455 456
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION))
		return;

	if (WARN_ON(wdev->sme_state != CFG80211_SME_CONNECTED))
		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 已提交
457
	cfg80211_put_bss(&wdev->current_bss->pub);
S
Samuel Ortiz 已提交
458 459 460 461 462 463 464 465 466
	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 已提交
467 468
	cfg80211_hold_bss(bss_from_pub(bss));
	wdev->current_bss = bss_from_pub(bss);
S
Samuel Ortiz 已提交
469

J
Johannes Berg 已提交
470 471 472
	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 已提交
473 474 475 476 477

#ifdef CONFIG_WIRELESS_EXT
	if (req_ie) {
		memset(&wrqu, 0, sizeof(wrqu));
		wrqu.data.length = req_ie_len;
Z
Zhu Yi 已提交
478
		wireless_send_event(wdev->netdev, IWEVASSOCREQIE,
J
Johannes Berg 已提交
479
				    &wrqu, req_ie);
S
Samuel Ortiz 已提交
480 481 482 483 484
	}

	if (resp_ie) {
		memset(&wrqu, 0, sizeof(wrqu));
		wrqu.data.length = resp_ie_len;
J
Johannes Berg 已提交
485 486
		wireless_send_event(wdev->netdev, IWEVASSOCRESPIE,
				    &wrqu, resp_ie);
S
Samuel Ortiz 已提交
487 488 489 490 491
	}

	memset(&wrqu, 0, sizeof(wrqu));
	wrqu.ap_addr.sa_family = ARPHRD_ETHER;
	memcpy(wrqu.ap_addr.sa_data, bssid, ETH_ALEN);
J
Johannes Berg 已提交
492
	wireless_send_event(wdev->netdev, SIOCGIWAP, &wrqu, NULL);
S
Samuel Ortiz 已提交
493 494
#endif
}
J
Johannes Berg 已提交
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

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;

	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 已提交
523 524
EXPORT_SYMBOL(cfg80211_roamed);

J
Johannes Berg 已提交
525
void __cfg80211_disconnected(struct net_device *dev, const u8 *ie,
526
			     size_t ie_len, u16 reason, bool from_ap)
S
Samuel Ortiz 已提交
527 528
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
J
Johannes Berg 已提交
529 530
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	int i;
S
Samuel Ortiz 已提交
531 532 533 534
#ifdef CONFIG_WIRELESS_EXT
	union iwreq_data wrqu;
#endif

J
Johannes Berg 已提交
535 536
	ASSERT_WDEV_LOCK(wdev);

S
Samuel Ortiz 已提交
537 538 539 540 541 542 543 544
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION))
		return;

	if (WARN_ON(wdev->sme_state != CFG80211_SME_CONNECTED))
		return;

	if (wdev->current_bss) {
		cfg80211_unhold_bss(wdev->current_bss);
J
Johannes Berg 已提交
545
		cfg80211_put_bss(&wdev->current_bss->pub);
S
Samuel Ortiz 已提交
546 547 548 549 550
	}

	wdev->current_bss = NULL;
	wdev->sme_state = CFG80211_SME_IDLE;

551 552 553
	if (wdev->conn) {
		kfree(wdev->conn->ie);
		wdev->conn->ie = NULL;
J
Johannes Berg 已提交
554 555
		kfree(wdev->conn);
		wdev->conn = NULL;
556 557
	}

J
Johannes Berg 已提交
558 559 560 561 562 563 564 565 566
	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 已提交
567 568 569 570 571 572 573 574 575 576 577

#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 已提交
578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
	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);
	schedule_work(&rdev->event_work);
S
Samuel Ortiz 已提交
597 598 599
}
EXPORT_SYMBOL(cfg80211_disconnected);

J
Johannes Berg 已提交
600 601
int __cfg80211_connect(struct cfg80211_registered_device *rdev,
		       struct net_device *dev,
J
Johannes Berg 已提交
602 603
		       struct cfg80211_connect_params *connect,
		       struct cfg80211_cached_keys *connkeys)
S
Samuel Ortiz 已提交
604 605
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
J
Johannes Berg 已提交
606 607 608
	int err;

	ASSERT_WDEV_LOCK(wdev);
S
Samuel Ortiz 已提交
609 610 611 612

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

J
Johannes Berg 已提交
613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
	if (WARN_ON(wdev->connect_keys)) {
		kfree(wdev->connect_keys);
		wdev->connect_keys = NULL;
	}

	if (connkeys && connkeys->def >= 0) {
		int idx;

		idx = connkeys->def;
		/* If given a WEP key we may need it for shared key auth */
		if (connkeys->params[idx].cipher == WLAN_CIPHER_SUITE_WEP40 ||
		    connkeys->params[idx].cipher == WLAN_CIPHER_SUITE_WEP104) {
			connect->key_idx = idx;
			connect->key = connkeys->params[idx].key;
			connect->key_len = connkeys->params[idx].key_len;
		}
	}

S
Samuel Ortiz 已提交
631
	if (!rdev->ops->connect) {
632 633 634
		if (!rdev->ops->auth || !rdev->ops->assoc)
			return -EOPNOTSUPP;

J
Johannes Berg 已提交
635 636 637 638 639 640
		if (WARN_ON(wdev->conn))
			return -EINPROGRESS;

		wdev->conn = kzalloc(sizeof(*wdev->conn), GFP_KERNEL);
		if (!wdev->conn)
			return -ENOMEM;
641 642 643 644 645 646 647 648 649 650 651 652 653 654

		/*
		 * 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 已提交
655 656 657
			if (!wdev->conn->ie) {
				kfree(wdev->conn);
				wdev->conn = NULL;
658
				return -ENOMEM;
J
Johannes Berg 已提交
659
			}
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
		}

		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;

		/* don't care about result -- but fill bssid & channel */
		if (!wdev->conn->params.bssid || !wdev->conn->params.channel)
			cfg80211_get_conn_bss(wdev);

		wdev->sme_state = CFG80211_SME_CONNECTING;
J
Johannes Berg 已提交
681
		wdev->connect_keys = connkeys;
682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699

		/* we're good if we have both BSSID and channel */
		if (wdev->conn->params.bssid && wdev->conn->params.channel) {
			wdev->conn->state = CFG80211_CONN_AUTHENTICATE_NEXT;
			err = cfg80211_conn_do_work(wdev);
		} 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 已提交
700 701 702
		if (err) {
			kfree(wdev->conn);
			wdev->conn = NULL;
703
			wdev->sme_state = CFG80211_SME_IDLE;
J
Johannes Berg 已提交
704
			wdev->connect_keys = NULL;
J
Johannes Berg 已提交
705
		}
706 707

		return err;
S
Samuel Ortiz 已提交
708 709
	} else {
		wdev->sme_state = CFG80211_SME_CONNECTING;
J
Johannes Berg 已提交
710
		wdev->connect_keys = connkeys;
S
Samuel Ortiz 已提交
711 712
		err = rdev->ops->connect(&rdev->wiphy, dev, connect);
		if (err) {
J
Johannes Berg 已提交
713
			wdev->connect_keys = NULL;
S
Samuel Ortiz 已提交
714 715 716 717
			wdev->sme_state = CFG80211_SME_IDLE;
			return err;
		}

718 719
		memcpy(wdev->ssid, connect->ssid, connect->ssid_len);
		wdev->ssid_len = connect->ssid_len;
S
Samuel Ortiz 已提交
720

721 722
		return 0;
	}
S
Samuel Ortiz 已提交
723 724
}

J
Johannes Berg 已提交
725 726
int cfg80211_connect(struct cfg80211_registered_device *rdev,
		     struct net_device *dev,
J
Johannes Berg 已提交
727 728
		     struct cfg80211_connect_params *connect,
		     struct cfg80211_cached_keys *connkeys)
J
Johannes Berg 已提交
729 730 731 732
{
	int err;

	wdev_lock(dev->ieee80211_ptr);
J
Johannes Berg 已提交
733
	err = __cfg80211_connect(rdev, dev, connect, connkeys);
J
Johannes Berg 已提交
734 735 736 737 738 739 740
	wdev_unlock(dev->ieee80211_ptr);

	return err;
}

int __cfg80211_disconnect(struct cfg80211_registered_device *rdev,
			  struct net_device *dev, u16 reason, bool wextev)
S
Samuel Ortiz 已提交
741
{
742
	struct wireless_dev *wdev = dev->ieee80211_ptr;
S
Samuel Ortiz 已提交
743 744
	int err;

J
Johannes Berg 已提交
745 746
	ASSERT_WDEV_LOCK(wdev);

747 748 749
	if (wdev->sme_state == CFG80211_SME_IDLE)
		return -EINVAL;

J
Johannes Berg 已提交
750 751 752
	kfree(wdev->connect_keys);
	wdev->connect_keys = NULL;

S
Samuel Ortiz 已提交
753
	if (!rdev->ops->disconnect) {
J
Johannes Berg 已提交
754 755
		if (!rdev->ops->deauth)
			return -EOPNOTSUPP;
756

J
Johannes Berg 已提交
757 758 759 760 761
		/* was it connected by userspace SME? */
		if (!wdev->conn) {
			cfg80211_mlme_down(rdev, dev);
			return 0;
		}
762 763 764 765 766

		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;
J
Johannes Berg 已提交
767 768
			kfree(wdev->conn);
			wdev->conn = NULL;
769 770 771 772
			return 0;
		}

		/* wdev->conn->params.bssid must be set if > SCANNING */
J
Johannes Berg 已提交
773 774 775
		err = __cfg80211_mlme_deauth(rdev, dev,
					     wdev->conn->params.bssid,
					     NULL, 0, reason);
776 777
		if (err)
			return err;
S
Samuel Ortiz 已提交
778 779 780 781 782 783
	} else {
		err = rdev->ops->disconnect(&rdev->wiphy, dev, reason);
		if (err)
			return err;
	}

784
	if (wdev->sme_state == CFG80211_SME_CONNECTED)
J
Johannes Berg 已提交
785
		__cfg80211_disconnected(dev, NULL, 0, 0, false);
786
	else if (wdev->sme_state == CFG80211_SME_CONNECTING)
787 788
		__cfg80211_connect_result(dev, NULL, NULL, 0, NULL, 0,
					  WLAN_STATUS_UNSPECIFIED_FAILURE,
J
Johannes Berg 已提交
789
					  wextev);
S
Samuel Ortiz 已提交
790 791 792

	return 0;
}
J
Johannes Berg 已提交
793

J
Johannes Berg 已提交
794 795 796 797 798 799 800 801 802 803 804 805 806
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 已提交
807 808 809 810 811 812
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 已提交
813 814
	ASSERT_WDEV_LOCK(wdev);

J
Johannes Berg 已提交
815 816 817 818 819 820 821 822 823 824 825 826 827 828 829
	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 已提交
830 831
	if (__cfg80211_mlme_deauth(rdev, dev, bssid,
				   NULL, 0, WLAN_REASON_DEAUTH_LEAVING)) {
J
Johannes Berg 已提交
832 833 834 835 836 837
		/* whatever -- assume gone anyway */
		cfg80211_unhold_bss(wdev->auth_bsses[idx]);
		cfg80211_put_bss(&wdev->auth_bsses[idx]->pub);
		wdev->auth_bsses[idx] = NULL;
	}
}