sme.c 26.4 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 13
#include <linux/wireless.h>
#include <net/iw_handler.h>
S
Samuel Ortiz 已提交
14 15 16
#include <net/cfg80211.h>
#include <net/rtnetlink.h>
#include "nl80211.h"
17
#include "reg.h"
S
Samuel Ortiz 已提交
18

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

38
static bool cfg80211_is_all_idle(void)
39 40 41 42 43 44 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
{
	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);
		list_for_each_entry(wdev, &rdev->netdev_list, list) {
			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);
76 77 78

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

	ASSERT_RTNL();
84
	ASSERT_RDEV_LOCK(rdev);
J
Johannes Berg 已提交
85
	ASSERT_WDEV_LOCK(wdev);
86

87
	if (rdev->scan_req)
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
		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;
113 114
		struct ieee80211_supported_band *bands;
		struct ieee80211_channel *channel;
115 116

		for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
117 118
			bands = wdev->wiphy->bands[band];
			if (!bands)
119
				continue;
120 121 122 123 124 125 126
			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;
127
		}
128
		n_channels = i;
129 130
	}
	request->n_channels = n_channels;
131
	request->ssids = (void *)&request->channels[n_channels];
132 133 134 135 136 137
	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;

138
	request->dev = wdev->netdev;
139
	request->wiphy = &rdev->wiphy;
140

141
	rdev->scan_req = request;
142

143
	err = rdev->ops->scan(wdev->wiphy, wdev->netdev, request);
144 145
	if (!err) {
		wdev->conn->state = CFG80211_CONN_SCANNING;
146
		nl80211_send_scan_start(rdev, wdev->netdev);
147
		dev_hold(wdev->netdev);
148
	} else {
149
		rdev->scan_req = NULL;
150 151 152 153 154 155 156
		kfree(request);
	}
	return err;
}

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

J
Johannes Berg 已提交
162 163
	ASSERT_WDEV_LOCK(wdev);

164 165 166
	if (!wdev->conn)
		return 0;

J
Johannes Berg 已提交
167 168
	params = &wdev->conn->params;

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

void cfg80211_conn_work(struct work_struct *work)
{
212
	struct cfg80211_registered_device *rdev =
213 214
		container_of(work, struct cfg80211_registered_device, conn_work);
	struct wireless_dev *wdev;
J
Johannes Berg 已提交
215
	u8 bssid_buf[ETH_ALEN], *bssid = NULL;
216 217

	rtnl_lock();
218 219
	cfg80211_lock_rdev(rdev);
	mutex_lock(&rdev->devlist_mtx);
220

221
	list_for_each_entry(wdev, &rdev->netdev_list, list) {
J
Johannes Berg 已提交
222 223 224
		wdev_lock(wdev);
		if (!netif_running(wdev->netdev)) {
			wdev_unlock(wdev);
225
			continue;
J
Johannes Berg 已提交
226 227 228
		}
		if (wdev->sme_state != CFG80211_SME_CONNECTING) {
			wdev_unlock(wdev);
229
			continue;
J
Johannes Berg 已提交
230
		}
J
Johannes Berg 已提交
231 232 233 234
		if (wdev->conn->params.bssid) {
			memcpy(bssid_buf, wdev->conn->params.bssid, ETH_ALEN);
			bssid = bssid_buf;
		}
235
		if (cfg80211_conn_do_work(wdev))
J
Johannes Berg 已提交
236
			__cfg80211_connect_result(
237
					wdev->netdev, bssid,
J
Johannes Berg 已提交
238 239
					NULL, 0, NULL, 0,
					WLAN_STATUS_UNSPECIFIED_FAILURE,
240
					false, NULL);
J
Johannes Berg 已提交
241
		wdev_unlock(wdev);
242 243
	}

244 245
	mutex_unlock(&rdev->devlist_mtx);
	cfg80211_unlock_rdev(rdev);
246 247 248
	rtnl_unlock();
}

J
Johannes Berg 已提交
249
static struct cfg80211_bss *cfg80211_get_conn_bss(struct wireless_dev *wdev)
250
{
251
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
252 253 254
	struct cfg80211_bss *bss;
	u16 capa = WLAN_CAPABILITY_ESS;

J
Johannes Berg 已提交
255 256
	ASSERT_WDEV_LOCK(wdev);

257 258 259
	if (wdev->conn->params.privacy)
		capa |= WLAN_CAPABILITY_PRIVACY;

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

	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;
273
	schedule_work(&rdev->conn_work);
274

J
Johannes Berg 已提交
275
	return bss;
276 277
}

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

J
Johannes Berg 已提交
284 285
	ASSERT_WDEV_LOCK(wdev);

286 287 288
	if (wdev->sme_state != CFG80211_SME_CONNECTING)
		return;

289
	if (!wdev->conn)
290 291 292 293 294 295
		return;

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

J
Johannes Berg 已提交
296 297 298 299
	bss = cfg80211_get_conn_bss(wdev);
	if (bss) {
		cfg80211_put_bss(bss);
	} else {
300 301
		/* not found */
		if (wdev->conn->state == CFG80211_CONN_SCAN_AGAIN)
302
			schedule_work(&rdev->conn_work);
303
		else
J
Johannes Berg 已提交
304 305 306 307 308
			__cfg80211_connect_result(
					wdev->netdev,
					wdev->conn->params.bssid,
					NULL, 0, NULL, 0,
					WLAN_STATUS_UNSPECIFIED_FAILURE,
309
					false, NULL);
310 311 312
	}
}

J
Johannes Berg 已提交
313 314 315 316
void cfg80211_sme_scan_done(struct net_device *dev)
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;

317
	mutex_lock(&wiphy_to_dev(wdev->wiphy)->devlist_mtx);
J
Johannes Berg 已提交
318 319 320
	wdev_lock(wdev);
	__cfg80211_sme_scan_done(dev);
	wdev_unlock(wdev);
321
	mutex_unlock(&wiphy_to_dev(wdev->wiphy)->devlist_mtx);
J
Johannes Berg 已提交
322 323 324 325
}

void cfg80211_sme_rx_auth(struct net_device *dev,
			  const u8 *buf, size_t len)
326 327 328 329 330 331 332
{
	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 已提交
333 334
	ASSERT_WDEV_LOCK(wdev);

335 336 337 338 339 340 341 342 343 344 345 346 347
	/* 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 已提交
348 349 350 351 352 353
			if (wdev->connect_keys)
				wdev->conn->params.auth_type =
					NL80211_AUTHTYPE_SHARED_KEY;
			else
				wdev->conn->params.auth_type =
					NL80211_AUTHTYPE_NETWORK_EAP;
354 355 356 357 358 359 360 361 362 363 364 365 366
			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 已提交
367
	} else if (status_code != WLAN_STATUS_SUCCESS) {
J
Johannes Berg 已提交
368
		__cfg80211_connect_result(dev, mgmt->bssid, NULL, 0, NULL, 0,
369
					  status_code, false, NULL);
J
Johannes Berg 已提交
370
	} else if (wdev->sme_state == CFG80211_SME_CONNECTING &&
371 372 373 374 375
		 wdev->conn->state == CFG80211_CONN_AUTHENTICATING) {
		wdev->conn->state = CFG80211_CONN_ASSOCIATE_NEXT;
		schedule_work(&rdev->conn_work);
	}
}
S
Samuel Ortiz 已提交
376

377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
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;
}

399 400 401 402 403 404 405 406 407
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 已提交
408 409 410
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,
411 412
			       u16 status, bool wextev,
			       struct cfg80211_bss *bss)
S
Samuel Ortiz 已提交
413 414
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
415
	u8 *country_ie;
J
Johannes Berg 已提交
416
#ifdef CONFIG_CFG80211_WEXT
S
Samuel Ortiz 已提交
417 418 419
	union iwreq_data wrqu;
#endif

J
Johannes Berg 已提交
420 421
	ASSERT_WDEV_LOCK(wdev);

422 423
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION &&
		    wdev->iftype != NL80211_IFTYPE_P2P_CLIENT))
S
Samuel Ortiz 已提交
424 425
		return;

426
	if (wdev->sme_state != CFG80211_SME_CONNECTING)
427 428 429
		return;

	nl80211_send_connect_result(wiphy_to_dev(wdev->wiphy), dev,
430
				    bssid, req_ie, req_ie_len,
431 432
				    resp_ie, resp_ie_len,
				    status, GFP_KERNEL);
433

J
Johannes Berg 已提交
434
#ifdef CONFIG_CFG80211_WEXT
435 436 437 438
	if (wextev) {
		if (req_ie && status == WLAN_STATUS_SUCCESS) {
			memset(&wrqu, 0, sizeof(wrqu));
			wrqu.data.length = req_ie_len;
Z
Zhu Yi 已提交
439
			wireless_send_event(dev, IWEVASSOCREQIE, &wrqu, req_ie);
440 441 442 443 444 445 446 447 448 449
		}

		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;
450
		if (bssid && status == WLAN_STATUS_SUCCESS) {
451
			memcpy(wrqu.ap_addr.sa_data, bssid, ETH_ALEN);
452 453 454
			memcpy(wdev->wext.prev_bssid, bssid, ETH_ALEN);
			wdev->wext.prev_bssid_valid = true;
		}
455 456 457 458
		wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
	}
#endif

459 460 461 462 463 464
	if (wdev->current_bss) {
		cfg80211_unhold_bss(wdev->current_bss);
		cfg80211_put_bss(&wdev->current_bss->pub);
		wdev->current_bss = NULL;
	}

J
Johannes Berg 已提交
465 466 467
	if (wdev->conn)
		wdev->conn->state = CFG80211_CONN_IDLE;

J
Johannes Berg 已提交
468
	if (status != WLAN_STATUS_SUCCESS) {
S
Samuel Ortiz 已提交
469
		wdev->sme_state = CFG80211_SME_IDLE;
470 471
		if (wdev->conn)
			kfree(wdev->conn->ie);
J
Johannes Berg 已提交
472 473
		kfree(wdev->conn);
		wdev->conn = NULL;
J
Johannes Berg 已提交
474 475
		kfree(wdev->connect_keys);
		wdev->connect_keys = NULL;
476
		wdev->ssid_len = 0;
J
Johannes Berg 已提交
477
		return;
S
Samuel Ortiz 已提交
478
	}
J
Johannes Berg 已提交
479

480
	if (!bss)
481 482 483 484
		bss = cfg80211_get_bss(wdev->wiphy,
				       wdev->conn ? wdev->conn->params.channel :
				       NULL,
				       bssid,
485 486 487
				       wdev->ssid, wdev->ssid_len,
				       WLAN_CAPABILITY_ESS,
				       WLAN_CAPABILITY_ESS);
J
Johannes Berg 已提交
488 489 490 491 492 493 494 495 496

	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);
497 498 499 500 501 502 503 504 505 506 507 508

	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,
509
			    bss->channel->band,
510 511
			    country_ie + 2,
			    country_ie[1]);
S
Samuel Ortiz 已提交
512
}
513 514 515 516 517 518

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 已提交
519 520 521 522 523
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	struct cfg80211_event *ev;
	unsigned long flags;

524 525
	CFG80211_DEV_WARN_ON(wdev->sme_state != CFG80211_SME_CONNECTING);

J
Johannes Berg 已提交
526 527 528 529 530
	ev = kzalloc(sizeof(*ev) + req_ie_len + resp_ie_len, gfp);
	if (!ev)
		return;

	ev->type = EVENT_CONNECT_RESULT;
531 532
	if (bssid)
		memcpy(ev->cr.bssid, bssid, ETH_ALEN);
533 534 535 536 537 538 539 540 541 542
	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 已提交
543 544 545 546 547
	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);
548
	queue_work(cfg80211_wq, &rdev->event_work);
549
}
S
Samuel Ortiz 已提交
550 551
EXPORT_SYMBOL(cfg80211_connect_result);

552 553 554
void __cfg80211_roamed(struct wireless_dev *wdev,
		       struct ieee80211_channel *channel,
		       const u8 *bssid,
J
Johannes Berg 已提交
555 556
		       const u8 *req_ie, size_t req_ie_len,
		       const u8 *resp_ie, size_t resp_ie_len)
S
Samuel Ortiz 已提交
557 558
{
	struct cfg80211_bss *bss;
J
Johannes Berg 已提交
559
#ifdef CONFIG_CFG80211_WEXT
S
Samuel Ortiz 已提交
560 561 562
	union iwreq_data wrqu;
#endif

J
Johannes Berg 已提交
563 564
	ASSERT_WDEV_LOCK(wdev);

565 566
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION &&
		    wdev->iftype != NL80211_IFTYPE_P2P_CLIENT))
S
Samuel Ortiz 已提交
567 568
		return;

569
	if (wdev->sme_state != CFG80211_SME_CONNECTED)
S
Samuel Ortiz 已提交
570 571 572 573 574 575 576 577
		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 已提交
578
	cfg80211_put_bss(&wdev->current_bss->pub);
S
Samuel Ortiz 已提交
579 580
	wdev->current_bss = NULL;

581
	bss = cfg80211_get_bss(wdev->wiphy, channel, bssid,
S
Samuel Ortiz 已提交
582 583 584 585 586 587
			       wdev->ssid, wdev->ssid_len,
			       WLAN_CAPABILITY_ESS, WLAN_CAPABILITY_ESS);

	if (WARN_ON(!bss))
		return;

J
Johannes Berg 已提交
588 589
	cfg80211_hold_bss(bss_from_pub(bss));
	wdev->current_bss = bss_from_pub(bss);
S
Samuel Ortiz 已提交
590

J
Johannes Berg 已提交
591 592 593
	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 已提交
594

J
Johannes Berg 已提交
595
#ifdef CONFIG_CFG80211_WEXT
S
Samuel Ortiz 已提交
596 597 598
	if (req_ie) {
		memset(&wrqu, 0, sizeof(wrqu));
		wrqu.data.length = req_ie_len;
Z
Zhu Yi 已提交
599
		wireless_send_event(wdev->netdev, IWEVASSOCREQIE,
J
Johannes Berg 已提交
600
				    &wrqu, req_ie);
S
Samuel Ortiz 已提交
601 602 603 604 605
	}

	if (resp_ie) {
		memset(&wrqu, 0, sizeof(wrqu));
		wrqu.data.length = resp_ie_len;
J
Johannes Berg 已提交
606 607
		wireless_send_event(wdev->netdev, IWEVASSOCRESPIE,
				    &wrqu, resp_ie);
S
Samuel Ortiz 已提交
608 609 610 611 612
	}

	memset(&wrqu, 0, sizeof(wrqu));
	wrqu.ap_addr.sa_family = ARPHRD_ETHER;
	memcpy(wrqu.ap_addr.sa_data, bssid, ETH_ALEN);
613 614
	memcpy(wdev->wext.prev_bssid, bssid, ETH_ALEN);
	wdev->wext.prev_bssid_valid = true;
J
Johannes Berg 已提交
615
	wireless_send_event(wdev->netdev, SIOCGIWAP, &wrqu, NULL);
S
Samuel Ortiz 已提交
616 617
#endif
}
J
Johannes Berg 已提交
618

619 620 621
void cfg80211_roamed(struct net_device *dev,
		     struct ieee80211_channel *channel,
		     const u8 *bssid,
J
Johannes Berg 已提交
622 623 624 625 626 627 628 629
		     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;

630 631
	CFG80211_DEV_WARN_ON(wdev->sme_state != CFG80211_SME_CONNECTED);

J
Johannes Berg 已提交
632 633 634 635 636
	ev = kzalloc(sizeof(*ev) + req_ie_len + resp_ie_len, gfp);
	if (!ev)
		return;

	ev->type = EVENT_ROAMED;
637
	ev->rm.channel = channel;
J
Johannes Berg 已提交
638 639 640 641 642 643 644 645 646 647 648
	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);
649
	queue_work(cfg80211_wq, &rdev->event_work);
J
Johannes Berg 已提交
650
}
S
Samuel Ortiz 已提交
651 652
EXPORT_SYMBOL(cfg80211_roamed);

J
Johannes Berg 已提交
653
void __cfg80211_disconnected(struct net_device *dev, const u8 *ie,
654
			     size_t ie_len, u16 reason, bool from_ap)
S
Samuel Ortiz 已提交
655 656
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
J
Johannes Berg 已提交
657 658
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	int i;
J
Johannes Berg 已提交
659
#ifdef CONFIG_CFG80211_WEXT
S
Samuel Ortiz 已提交
660 661 662
	union iwreq_data wrqu;
#endif

J
Johannes Berg 已提交
663 664
	ASSERT_WDEV_LOCK(wdev);

665 666
	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION &&
		    wdev->iftype != NL80211_IFTYPE_P2P_CLIENT))
S
Samuel Ortiz 已提交
667 668
		return;

669
	if (wdev->sme_state != CFG80211_SME_CONNECTED)
S
Samuel Ortiz 已提交
670 671 672 673
		return;

	if (wdev->current_bss) {
		cfg80211_unhold_bss(wdev->current_bss);
J
Johannes Berg 已提交
674
		cfg80211_put_bss(&wdev->current_bss->pub);
S
Samuel Ortiz 已提交
675 676 677 678
	}

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

681
	if (wdev->conn) {
682 683 684
		const u8 *bssid;
		int ret;

685 686
		kfree(wdev->conn->ie);
		wdev->conn->ie = NULL;
J
Johannes Berg 已提交
687 688
		kfree(wdev->conn);
		wdev->conn = NULL;
689 690 691 692 693 694 695 696 697 698 699 700 701 702

		/*
		 * 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,
703 704
						WLAN_REASON_DEAUTH_LEAVING,
						false);
705 706
			WARN(ret, "deauth failed: %d\n", ret);
		}
707 708
	}

J
Johannes Berg 已提交
709 710 711 712 713 714 715 716
	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++)
717
			rdev->ops->del_key(wdev->wiphy, dev, i, false, NULL);
S
Samuel Ortiz 已提交
718

J
Johannes Berg 已提交
719
#ifdef CONFIG_CFG80211_WEXT
S
Samuel Ortiz 已提交
720 721 722
	memset(&wrqu, 0, sizeof(wrqu));
	wrqu.ap_addr.sa_family = ARPHRD_ETHER;
	wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
723
	wdev->wext.connect.ssid_len = 0;
S
Samuel Ortiz 已提交
724
#endif
725 726

	schedule_work(&cfg80211_disconnect_work);
S
Samuel Ortiz 已提交
727 728 729 730 731
}

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

737 738
	CFG80211_DEV_WARN_ON(wdev->sme_state != CFG80211_SME_CONNECTED);

J
Johannes Berg 已提交
739 740 741 742 743 744 745 746 747 748 749 750 751
	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);
752
	queue_work(cfg80211_wq, &rdev->event_work);
S
Samuel Ortiz 已提交
753 754 755
}
EXPORT_SYMBOL(cfg80211_disconnected);

J
Johannes Berg 已提交
756 757
int __cfg80211_connect(struct cfg80211_registered_device *rdev,
		       struct net_device *dev,
J
Johannes Berg 已提交
758
		       struct cfg80211_connect_params *connect,
759 760
		       struct cfg80211_cached_keys *connkeys,
		       const u8 *prev_bssid)
S
Samuel Ortiz 已提交
761 762
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
J
Johannes Berg 已提交
763
	struct cfg80211_bss *bss = NULL;
J
Johannes Berg 已提交
764 765 766
	int err;

	ASSERT_WDEV_LOCK(wdev);
S
Samuel Ortiz 已提交
767 768 769 770

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

J
Johannes Berg 已提交
771 772 773 774 775 776 777
	if (WARN_ON(wdev->connect_keys)) {
		kfree(wdev->connect_keys);
		wdev->connect_keys = NULL;
	}

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

		idx = connkeys->def;
S
Samuel Ortiz 已提交
781
		cipher = connkeys->params[idx].cipher;
J
Johannes Berg 已提交
782
		/* If given a WEP key we may need it for shared key auth */
S
Samuel Ortiz 已提交
783 784
		if (cipher == WLAN_CIPHER_SUITE_WEP40 ||
		    cipher == WLAN_CIPHER_SUITE_WEP104) {
J
Johannes Berg 已提交
785 786 787
			connect->key_idx = idx;
			connect->key = connkeys->params[idx].key;
			connect->key_len = connkeys->params[idx].key_len;
S
Samuel Ortiz 已提交
788 789 790 791 792 793 794 795 796 797 798 799

			/*
			 * 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 已提交
800 801 802
		}
	}

S
Samuel Ortiz 已提交
803
	if (!rdev->ops->connect) {
804 805 806
		if (!rdev->ops->auth || !rdev->ops->assoc)
			return -EOPNOTSUPP;

J
Johannes Berg 已提交
807 808 809 810 811 812
		if (WARN_ON(wdev->conn))
			return -EINPROGRESS;

		wdev->conn = kzalloc(sizeof(*wdev->conn), GFP_KERNEL);
		if (!wdev->conn)
			return -ENOMEM;
813 814 815 816 817 818 819 820 821 822 823 824 825 826

		/*
		 * 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 已提交
827 828 829
			if (!wdev->conn->ie) {
				kfree(wdev->conn);
				wdev->conn = NULL;
830
				return -ENOMEM;
J
Johannes Berg 已提交
831
			}
832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847
		}

		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 已提交
848 849
		/* see if we have the bss already */
		bss = cfg80211_get_conn_bss(wdev);
850 851

		wdev->sme_state = CFG80211_SME_CONNECTING;
J
Johannes Berg 已提交
852
		wdev->connect_keys = connkeys;
853

854 855 856 857 858
		if (prev_bssid) {
			memcpy(wdev->conn->prev_bssid, prev_bssid, ETH_ALEN);
			wdev->conn->prev_bssid_valid = true;
		}

J
Johannes Berg 已提交
859 860
		/* we're good if we have a matching bss struct */
		if (bss) {
861 862
			wdev->conn->state = CFG80211_CONN_AUTHENTICATE_NEXT;
			err = cfg80211_conn_do_work(wdev);
J
Johannes Berg 已提交
863
			cfg80211_put_bss(bss);
864 865 866 867 868 869 870 871 872 873 874 875 876
		} 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 已提交
877
		if (err) {
878
			kfree(wdev->conn->ie);
J
Johannes Berg 已提交
879 880
			kfree(wdev->conn);
			wdev->conn = NULL;
881
			wdev->sme_state = CFG80211_SME_IDLE;
J
Johannes Berg 已提交
882
			wdev->connect_keys = NULL;
883
			wdev->ssid_len = 0;
J
Johannes Berg 已提交
884
		}
885 886

		return err;
S
Samuel Ortiz 已提交
887 888
	} else {
		wdev->sme_state = CFG80211_SME_CONNECTING;
J
Johannes Berg 已提交
889
		wdev->connect_keys = connkeys;
S
Samuel Ortiz 已提交
890 891
		err = rdev->ops->connect(&rdev->wiphy, dev, connect);
		if (err) {
J
Johannes Berg 已提交
892
			wdev->connect_keys = NULL;
S
Samuel Ortiz 已提交
893 894 895 896
			wdev->sme_state = CFG80211_SME_IDLE;
			return err;
		}

897 898
		memcpy(wdev->ssid, connect->ssid, connect->ssid_len);
		wdev->ssid_len = connect->ssid_len;
S
Samuel Ortiz 已提交
899

900 901
		return 0;
	}
S
Samuel Ortiz 已提交
902 903
}

J
Johannes Berg 已提交
904 905
int cfg80211_connect(struct cfg80211_registered_device *rdev,
		     struct net_device *dev,
J
Johannes Berg 已提交
906 907
		     struct cfg80211_connect_params *connect,
		     struct cfg80211_cached_keys *connkeys)
J
Johannes Berg 已提交
908 909 910
{
	int err;

911
	mutex_lock(&rdev->devlist_mtx);
J
Johannes Berg 已提交
912
	wdev_lock(dev->ieee80211_ptr);
913
	err = __cfg80211_connect(rdev, dev, connect, connkeys, NULL);
J
Johannes Berg 已提交
914
	wdev_unlock(dev->ieee80211_ptr);
915
	mutex_unlock(&rdev->devlist_mtx);
J
Johannes Berg 已提交
916 917 918 919 920 921

	return err;
}

int __cfg80211_disconnect(struct cfg80211_registered_device *rdev,
			  struct net_device *dev, u16 reason, bool wextev)
S
Samuel Ortiz 已提交
922
{
923
	struct wireless_dev *wdev = dev->ieee80211_ptr;
S
Samuel Ortiz 已提交
924 925
	int err;

J
Johannes Berg 已提交
926 927
	ASSERT_WDEV_LOCK(wdev);

928 929 930
	if (wdev->sme_state == CFG80211_SME_IDLE)
		return -EINVAL;

J
Johannes Berg 已提交
931 932 933
	kfree(wdev->connect_keys);
	wdev->connect_keys = NULL;

S
Samuel Ortiz 已提交
934
	if (!rdev->ops->disconnect) {
J
Johannes Berg 已提交
935 936
		if (!rdev->ops->deauth)
			return -EOPNOTSUPP;
937

J
Johannes Berg 已提交
938 939 940 941 942
		/* was it connected by userspace SME? */
		if (!wdev->conn) {
			cfg80211_mlme_down(rdev, dev);
			return 0;
		}
943 944 945 946 947

		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;
948
			kfree(wdev->conn->ie);
J
Johannes Berg 已提交
949 950
			kfree(wdev->conn);
			wdev->conn = NULL;
951
			wdev->ssid_len = 0;
952 953 954 955
			return 0;
		}

		/* wdev->conn->params.bssid must be set if > SCANNING */
J
Johannes Berg 已提交
956 957
		err = __cfg80211_mlme_deauth(rdev, dev,
					     wdev->conn->params.bssid,
958
					     NULL, 0, reason, false);
959 960
		if (err)
			return err;
S
Samuel Ortiz 已提交
961 962 963 964 965 966
	} else {
		err = rdev->ops->disconnect(&rdev->wiphy, dev, reason);
		if (err)
			return err;
	}

967
	if (wdev->sme_state == CFG80211_SME_CONNECTED)
J
Johannes Berg 已提交
968
		__cfg80211_disconnected(dev, NULL, 0, 0, false);
969
	else if (wdev->sme_state == CFG80211_SME_CONNECTING)
970 971
		__cfg80211_connect_result(dev, NULL, NULL, 0, NULL, 0,
					  WLAN_STATUS_UNSPECIFIED_FAILURE,
972
					  wextev, NULL);
S
Samuel Ortiz 已提交
973 974 975

	return 0;
}
J
Johannes Berg 已提交
976

J
Johannes Berg 已提交
977 978 979 980 981 982 983 984 985 986 987 988 989
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 已提交
990 991 992 993 994 995
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 已提交
996 997
	ASSERT_WDEV_LOCK(wdev);

J
Johannes Berg 已提交
998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
	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 已提交
1013
	if (__cfg80211_mlme_deauth(rdev, dev, bssid,
1014 1015
				   NULL, 0, WLAN_REASON_DEAUTH_LEAVING,
				   false)) {
J
Johannes Berg 已提交
1016 1017 1018 1019 1020 1021
		/* whatever -- assume gone anyway */
		cfg80211_unhold_bss(wdev->auth_bsses[idx]);
		cfg80211_put_bss(&wdev->auth_bsses[idx]->pub);
		wdev->auth_bsses[idx] = NULL;
	}
}