ieee80211softmac_assoc.c 15.7 KB
Newer Older
1 2 3
/*
 * This file contains the softmac's association logic.
 *
4 5 6 7 8
 * Copyright (c) 2005, 2006 Johannes Berg <johannes@sipsolutions.net>
 *                          Joseph Jezak <josejx@gentoo.org>
 *                          Larry Finger <Larry.Finger@lwfinger.net>
 *                          Danny van Dyk <kugelfang@gentoo.org>
 *                          Michael Buesch <mbuesch@freenet.de>
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 *
 * The full GNU General Public License is included in this distribution in the
 * file called COPYING.
 */

27 28 29 30 31 32 33 34 35 36 37 38 39 40
#include "ieee80211softmac_priv.h"

/*
 * Overview
 *
 * Before you can associate, you have to authenticate.
 * 
 */

/* Sends out an association request to the desired AP */
static void
ieee80211softmac_assoc(struct ieee80211softmac_device *mac, struct ieee80211softmac_network *net)
{
	unsigned long flags;
41

42 43 44 45 46 47 48 49 50
	/* Switch to correct channel for this network */
	mac->set_channel(mac->dev, net->channel);
	
	/* Send association request */
	ieee80211softmac_send_mgt_frame(mac, net, IEEE80211_STYPE_ASSOC_REQ, 0);
	
	dprintk(KERN_INFO PFX "sent association request!\n");

	spin_lock_irqsave(&mac->lock, flags);
51
	mac->associnfo.associated = 0; /* just to make sure */
52 53 54

	/* Set a timer for timeout */
	/* FIXME: make timeout configurable */
55 56 57
	if (likely(mac->running))
		schedule_delayed_work(&mac->associnfo.timeout, 5 * HZ);
	spin_unlock_irqrestore(&mac->lock, flags);
58 59 60
}

void
D
David Howells 已提交
61
ieee80211softmac_assoc_timeout(struct work_struct *work)
62
{
D
David Howells 已提交
63 64 65
	struct ieee80211softmac_device *mac =
		container_of(work, struct ieee80211softmac_device,
			     associnfo.timeout.work);
66
	struct ieee80211softmac_network *n;
67

68
	mutex_lock(&mac->associnfo.mutex);
69 70
	/* we might race against ieee80211softmac_handle_assoc_response,
	 * so make sure only one of us does something */
71 72
	if (!mac->associnfo.associating)
		goto out;
73 74
	mac->associnfo.associating = 0;
	mac->associnfo.bssvalid = 0;
75
	mac->associnfo.associated = 0;
76 77

	n = ieee80211softmac_get_network_by_bssid_locked(mac, mac->associnfo.bssid);
78 79

	dprintk(KERN_INFO PFX "assoc request timed out!\n");
80
	ieee80211softmac_call_events(mac, IEEE80211SOFTMAC_EVENT_ASSOCIATE_TIMEOUT, n);
81 82
out:
	mutex_unlock(&mac->associnfo.mutex);
83 84
}

J
Johannes Berg 已提交
85
void
86
ieee80211softmac_disassoc(struct ieee80211softmac_device *mac)
87 88
{
	unsigned long flags;
89 90 91 92 93 94 95

	spin_lock_irqsave(&mac->lock, flags);
	if (mac->associnfo.associating)
		cancel_delayed_work(&mac->associnfo.timeout);

	netif_carrier_off(mac->dev);

96
	mac->associnfo.associated = 0;
97 98
	mac->associnfo.bssvalid = 0;
	mac->associnfo.associating = 0;
99
	ieee80211softmac_init_bss(mac);
100 101 102 103 104 105 106 107
	ieee80211softmac_call_events_locked(mac, IEEE80211SOFTMAC_EVENT_DISASSOCIATED, NULL);
	spin_unlock_irqrestore(&mac->lock, flags);
}

/* Sends out a disassociation request to the desired AP */
void
ieee80211softmac_send_disassoc_req(struct ieee80211softmac_device *mac, u16 reason)
{
108 109
	struct ieee80211softmac_network *found;

110
	if (mac->associnfo.bssvalid && mac->associnfo.associated) {
111 112 113 114 115
		found = ieee80211softmac_get_network_by_bssid(mac, mac->associnfo.bssid);
		if (found)
			ieee80211softmac_send_mgt_frame(mac, found, IEEE80211_STYPE_DISASSOC, reason);
	}

116
	ieee80211softmac_disassoc(mac);
117 118 119 120 121
}

static inline int
we_support_all_basic_rates(struct ieee80211softmac_device *mac, u8 *from, u8 from_len)
{
122 123
	int idx;
	u8 rate;
124 125 126 127 128 129

	for (idx = 0; idx < (from_len); idx++) {
		rate = (from)[idx];
		if (!(rate & IEEE80211_BASIC_RATE_MASK))
			continue;
		rate &= ~IEEE80211_BASIC_RATE_MASK;
130
		if (!ieee80211softmac_ratesinfo_rate_supported(&mac->ratesinfo, rate))
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
			return 0;
	}
	return 1;
}

static int
network_matches_request(struct ieee80211softmac_device *mac, struct ieee80211_network *net)
{
	/* we cannot associate to networks whose name we don't know */
	if (ieee80211_is_empty_essid(net->ssid, net->ssid_len))
		return 0;
	/* do not associate to a network whose BSSBasicRateSet we cannot support */
	if (!we_support_all_basic_rates(mac, net->rates, net->rates_len))
		return 0;
	/* do we really need to check the ex rates? */
	if (!we_support_all_basic_rates(mac, net->rates_ex, net->rates_ex_len))
		return 0;

J
Johannes Berg 已提交
149 150 151 152 153 154
	/* assume that users know what they're doing ...
	 * (note we don't let them select a net we're incompatible with) */
	if (mac->associnfo.bssfixed) {
		return !memcmp(mac->associnfo.bssid, net->bssid, ETH_ALEN);
	}

155 156 157 158 159 160 161 162 163 164 165 166
	/* if 'ANY' network requested, take any that doesn't have privacy enabled */
	if (mac->associnfo.req_essid.len == 0 
	    && !(net->capability & WLAN_CAPABILITY_PRIVACY))
		return 1;
	if (net->ssid_len != mac->associnfo.req_essid.len)
		return 0;
	if (!memcmp(net->ssid, mac->associnfo.req_essid.data, mac->associnfo.req_essid.len))
		return 1;
	return 0;
}

static void
167
ieee80211softmac_assoc_notify_scan(struct net_device *dev, int event_type, void *context)
168 169 170 171 172
{
	struct ieee80211softmac_device *mac = ieee80211_priv(dev);
	ieee80211softmac_assoc_work((void*)mac);
}

173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
static void
ieee80211softmac_assoc_notify_auth(struct net_device *dev, int event_type, void *context)
{
	struct ieee80211softmac_device *mac = ieee80211_priv(dev);

	switch (event_type) {
	case IEEE80211SOFTMAC_EVENT_AUTHENTICATED:
		ieee80211softmac_assoc_work((void*)mac);
		break;
	case IEEE80211SOFTMAC_EVENT_AUTH_FAILED:
	case IEEE80211SOFTMAC_EVENT_AUTH_TIMEOUT:
		ieee80211softmac_disassoc(mac);
		break;
	}
}

189 190
/* This function is called to handle userspace requests (asynchronously) */
void
D
David Howells 已提交
191
ieee80211softmac_assoc_work(struct work_struct *work)
192
{
D
David Howells 已提交
193 194 195
	struct ieee80211softmac_device *mac =
		container_of(work, struct ieee80211softmac_device,
			     associnfo.work.work);
196 197
	struct ieee80211softmac_network *found = NULL;
	struct ieee80211_network *net = NULL, *best = NULL;
198
	int bssvalid;
199
	unsigned long flags;
200

201 202 203 204 205
	mutex_lock(&mac->associnfo.mutex);

	if (!mac->associnfo.associating)
		goto out;

206 207 208
	/* ieee80211_disassoc might clear this */
	bssvalid = mac->associnfo.bssvalid;

209
	/* meh */
210
	if (mac->associnfo.associated)
211
		ieee80211softmac_send_disassoc_req(mac, WLAN_REASON_DISASSOC_STA_HAS_LEFT);
212 213

	/* try to find the requested network in our list, if we found one already */
214
	if (bssvalid || mac->associnfo.bssfixed)
215 216
		found = ieee80211softmac_get_network_by_bssid(mac, mac->associnfo.bssid);	
	
217 218 219 220 221
	/* Search the ieee80211 networks for this network if we didn't find it by bssid,
	 * but only if we've scanned at least once (to get a better list of networks to
	 * select from). If we have not scanned before, the !found logic below will be
	 * invoked and will scan. */
	if (!found && (mac->associnfo.scan_retry < IEEE80211SOFTMAC_ASSOC_SCAN_RETRY_LIMIT))
222
	{
223 224
		s8 rssi = -128;	/* if I don't initialise, gcc emits an invalid warning
				   because it cannot follow the best pointer logic. */
225 226 227 228 229 230 231
		spin_lock_irqsave(&mac->ieee->lock, flags);
		list_for_each_entry(net, &mac->ieee->network_list, list) {
			/* we're supposed to find the network with
			 * the best signal here, as we're asked to join
			 * any network with a specific ESSID, and many
			 * different ones could have that.
			 *
232
			 * I'll for now just go with the reported rssi.
233 234 235 236 237 238 239
			 *
			 * We also should take into account the rateset
			 * here to find the best BSSID to try.
			 */
			if (network_matches_request(mac, net)) {
				if (!best) {
					best = net;
240
					rssi = best->stats.rssi;
241 242 243 244 245 246
					continue;
				}
				/* we already had a matching network, so
				 * compare their properties to get the
				 * better of the two ... (see above)
				 */
247 248 249 250
				if (rssi < net->stats.rssi) {
					best = net;
					rssi = best->stats.rssi;
				}
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
			}
		}
		/* if we unlock here, we might get interrupted and the `best'
		 * pointer could go stale */
		if (best) {
			found = ieee80211softmac_create_network(mac, best);
			/* if found is still NULL, then we got -ENOMEM somewhere */
			if (found)
				ieee80211softmac_add_network(mac, found);
		}
		spin_unlock_irqrestore(&mac->ieee->lock, flags);
	}

	if (!found) {
		if (mac->associnfo.scan_retry > 0) {
			mac->associnfo.scan_retry--;
267

268 269 270 271
			/* We know of no such network. Let's scan. 
			 * NB: this also happens if we had no memory to copy the network info...
			 * Maybe we can hope to have more memory after scanning finishes ;)
			 */
272
			dprintk(KERN_INFO PFX "Associate: Scanning for networks first.\n");
273
			ieee80211softmac_notify(mac->dev, IEEE80211SOFTMAC_EVENT_SCAN_FINISHED, ieee80211softmac_assoc_notify_scan, NULL);
274
			if (ieee80211softmac_start_scan(mac))
275
				dprintk(KERN_INFO PFX "Associate: failed to initiate scan. Is device up?\n");
276
			goto out;
J
Johannes Berg 已提交
277
		} else {
278
			mac->associnfo.associating = 0;
279
			mac->associnfo.associated = 0;
280

281
			dprintk(KERN_INFO PFX "Unable to find matching network after scan!\n");
J
Johannes Berg 已提交
282 283 284
			/* reset the retry counter for the next user request since we
			 * break out and don't reschedule ourselves after this point. */
			mac->associnfo.scan_retry = IEEE80211SOFTMAC_ASSOC_SCAN_RETRY_LIMIT;
285
			ieee80211softmac_call_events(mac, IEEE80211SOFTMAC_EVENT_ASSOCIATE_NET_NOT_FOUND, NULL);
286
			goto out;
287 288
		}
	}
J
Johannes Berg 已提交
289 290 291 292 293

	/* reset the retry counter for the next user request since we
	 * now found a net and will try to associate to it, but not
	 * schedule this function again. */
	mac->associnfo.scan_retry = IEEE80211SOFTMAC_ASSOC_SCAN_RETRY_LIMIT;
294 295 296 297 298
	mac->associnfo.bssvalid = 1;
	memcpy(mac->associnfo.bssid, found->bssid, ETH_ALEN);
	/* copy the ESSID for displaying it */
	mac->associnfo.associate_essid.len = found->essid.len;
	memcpy(mac->associnfo.associate_essid.data, found->essid.data, IW_ESSID_MAX_SIZE + 1);
299

300
	/* we found a network! authenticate (if necessary) and associate to it. */
301 302 303 304
	if (found->authenticating) {
		dprintk(KERN_INFO PFX "Already requested authentication, waiting...\n");
		if(!mac->associnfo.assoc_wait) {
			mac->associnfo.assoc_wait = 1;
305
			ieee80211softmac_notify_internal(mac, IEEE80211SOFTMAC_EVENT_ANY, found, ieee80211softmac_assoc_notify_auth, NULL, GFP_KERNEL);
306
		}
307
		goto out;
308 309
	}
	if (!found->authenticated && !found->authenticating) {
310 311 312
		/* This relies on the fact that _auth_req only queues the work,
		 * otherwise adding the notification would be racy. */
		if (!ieee80211softmac_auth_req(mac, found)) {
313 314 315
			if(!mac->associnfo.assoc_wait) {
				dprintk(KERN_INFO PFX "Cannot associate without being authenticated, requested authentication\n");
				mac->associnfo.assoc_wait = 1;
316
				ieee80211softmac_notify_internal(mac, IEEE80211SOFTMAC_EVENT_ANY, found, ieee80211softmac_assoc_notify_auth, NULL, GFP_KERNEL);
317
			}
318 319
		} else {
			printkl(KERN_WARNING PFX "Not authenticated, but requesting authentication failed. Giving up to associate\n");
320
			mac->associnfo.assoc_wait = 0;
321 322
			ieee80211softmac_call_events(mac, IEEE80211SOFTMAC_EVENT_ASSOCIATE_FAILED, found);
		}
323
		goto out;
324 325
	}
	/* finally! now we can start associating */
326
	mac->associnfo.assoc_wait = 0;
327
	ieee80211softmac_assoc(mac, found);
328 329 330

out:
	mutex_unlock(&mac->associnfo.mutex);
331 332 333 334 335 336 337 338
}

/* call this to do whatever is necessary when we're associated */
static void
ieee80211softmac_associated(struct ieee80211softmac_device *mac,
	struct ieee80211_assoc_response * resp,
	struct ieee80211softmac_network *net)
{
339 340 341
	u16 cap = le16_to_cpu(resp->capability);
	u8 erp_value = net->erp_value;

342
	mac->associnfo.associating = 0;
343
	mac->bssinfo.supported_rates = net->supported_rates;
344 345
	ieee80211softmac_recalc_txrates(mac);

346
	mac->associnfo.associated = 1;
347 348 349 350 351

	mac->associnfo.short_preamble_available =
		(cap & WLAN_CAPABILITY_SHORT_PREAMBLE) != 0;
	ieee80211softmac_process_erp(mac, erp_value);

352 353 354
	if (mac->set_bssid_filter)
		mac->set_bssid_filter(mac->dev, net->bssid);
	memcpy(mac->ieee->bssid, net->bssid, ETH_ALEN);
355
	netif_carrier_on(mac->dev);
356 357 358 359 360 361 362 363
	
	mac->association_id = le16_to_cpup(&resp->aid);
}

/* received frame handling functions */
int
ieee80211softmac_handle_assoc_response(struct net_device * dev,
				       struct ieee80211_assoc_response * resp,
364
				       struct ieee80211_network * _ieee80211_network)
365
{
366
	/* NOTE: the network parameter has to be mostly ignored by
367 368 369 370 371 372 373
	 *       this code because it is the ieee80211's pointer
	 *       to the struct, not ours (we made a copy)
	 */
	struct ieee80211softmac_device *mac = ieee80211_priv(dev);
	u16 status = le16_to_cpup(&resp->status);
	struct ieee80211softmac_network *network = NULL;
	unsigned long flags;
374 375 376

	if (unlikely(!mac->running))
		return -ENODEV;
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
	
	spin_lock_irqsave(&mac->lock, flags);

	if (!mac->associnfo.associating) {
		/* we race against the timeout function, so make sure
		 * only one of us can do work */
		spin_unlock_irqrestore(&mac->lock, flags);
		return 0;
	}
	network = ieee80211softmac_get_network_by_bssid_locked(mac, resp->header.addr3);

	/* someone sending us things without us knowing him? Ignore. */
	if (!network) {
		dprintk(KERN_INFO PFX "Received unrequested assocation response from " MAC_FMT "\n", MAC_ARG(resp->header.addr3));
		spin_unlock_irqrestore(&mac->lock, flags);
		return 0;
	}

	/* now that we know it was for us, we can cancel the timeout */
	cancel_delayed_work(&mac->associnfo.timeout);

398 399 400 401 402
	/* if the association response included an ERP IE, update our saved
	 * copy */
	if (_ieee80211_network->flags & NETWORK_HAS_ERP_VALUE)
		network->erp_value = _ieee80211_network->erp_value;

403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
	switch (status) {
		case 0:
			dprintk(KERN_INFO PFX "associated!\n");
			ieee80211softmac_associated(mac, resp, network);
			ieee80211softmac_call_events_locked(mac, IEEE80211SOFTMAC_EVENT_ASSOCIATED, network);
			break;
		case WLAN_REASON_STA_REQ_ASSOC_WITHOUT_AUTH:
			if (!network->auth_desynced_once) {
				/* there seem to be a few rare cases where our view of
				 * the world is obscured, or buggy APs that don't DEAUTH
				 * us properly. So we handle that, but allow it only once.
				 */
				printkl(KERN_INFO PFX "We were not authenticated during association, retrying...\n");
				network->authenticated = 0;
				/* we don't want to do this more than once ... */
				network->auth_desynced_once = 1;
D
David Howells 已提交
419
				schedule_delayed_work(&mac->associnfo.work, 0);
420 421 422 423 424 425
				break;
			}
		default:
			dprintk(KERN_INFO PFX "associating failed (reason: 0x%x)!\n", status);
			mac->associnfo.associating = 0;
			mac->associnfo.bssvalid = 0;
426
			mac->associnfo.associated = 0;
427 428 429 430 431 432 433
			ieee80211softmac_call_events_locked(mac, IEEE80211SOFTMAC_EVENT_ASSOCIATE_FAILED, network);
	}
	
	spin_unlock_irqrestore(&mac->lock, flags);
	return 0;
}

434 435 436 437 438 439 440
void
ieee80211softmac_try_reassoc(struct ieee80211softmac_device *mac)
{
	unsigned long flags;

	spin_lock_irqsave(&mac->lock, flags);
	mac->associnfo.associating = 1;
441
	schedule_delayed_work(&mac->associnfo.work, 0);
442 443 444
	spin_unlock_irqrestore(&mac->lock, flags);
}

445 446 447 448 449
int
ieee80211softmac_handle_disassoc(struct net_device * dev,
				 struct ieee80211_disassoc *disassoc)
{
	struct ieee80211softmac_device *mac = ieee80211_priv(dev);
450 451 452 453

	if (unlikely(!mac->running))
		return -ENODEV;

454 455
	if (memcmp(disassoc->header.addr2, mac->associnfo.bssid, ETH_ALEN))
		return 0;
456

457 458
	if (memcmp(disassoc->header.addr1, mac->dev->dev_addr, ETH_ALEN))
		return 0;
459

460
	dprintk(KERN_INFO PFX "got disassoc frame\n");
461 462
	ieee80211softmac_disassoc(mac);

463
	ieee80211softmac_try_reassoc(mac);
464

465 466
	return 0;
}
467 468 469 470 471 472 473 474

int
ieee80211softmac_handle_reassoc_req(struct net_device * dev,
				    struct ieee80211_reassoc_request * resp)
{
	struct ieee80211softmac_device *mac = ieee80211_priv(dev);
	struct ieee80211softmac_network *network;

475 476 477
	if (unlikely(!mac->running))
		return -ENODEV;

478 479 480 481 482
	network = ieee80211softmac_get_network_by_bssid(mac, resp->header.addr3);
	if (!network) {
		dprintkl(KERN_INFO PFX "reassoc request from unknown network\n");
		return 0;
	}
D
David Howells 已提交
483
	schedule_delayed_work(&mac->associnfo.work, 0);
484

485 486
	return 0;
}