[PATCH] softmac: deauthentication implies deassociation
[usb.git] / net / ieee80211 / softmac / ieee80211softmac_assoc.c
blob01f21334767cc950f7c488b79813f9ef911c635e
1 /*
2 * This file contains the softmac's association logic.
4 * Copyright (c) 2005, 2006 Johannes Berg <johannes@sipsolutions.net>
5 * Joseph Jezak <josejx@gentoo.org>
6 * Larry Finger <Larry.Finger@lwfinger.net>
7 * Danny van Dyk <kugelfang@gentoo.org>
8 * Michael Buesch <mbuesch@freenet.de>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 * The full GNU General Public License is included in this distribution in the
24 * file called COPYING.
27 #include "ieee80211softmac_priv.h"
30 * Overview
32 * Before you can associate, you have to authenticate.
36 /* Sends out an association request to the desired AP */
37 static void
38 ieee80211softmac_assoc(struct ieee80211softmac_device *mac, struct ieee80211softmac_network *net)
40 unsigned long flags;
42 /* Switch to correct channel for this network */
43 mac->set_channel(mac->dev, net->channel);
45 /* Send association request */
46 ieee80211softmac_send_mgt_frame(mac, net, IEEE80211_STYPE_ASSOC_REQ, 0);
48 dprintk(KERN_INFO PFX "sent association request!\n");
50 /* Change the state to associating */
51 spin_lock_irqsave(&mac->lock, flags);
52 mac->associnfo.associating = 1;
53 mac->associated = 0; /* just to make sure */
55 /* Set a timer for timeout */
56 /* FIXME: make timeout configurable */
57 if (likely(mac->running))
58 schedule_delayed_work(&mac->associnfo.timeout, 5 * HZ);
59 spin_unlock_irqrestore(&mac->lock, flags);
62 void
63 ieee80211softmac_assoc_timeout(void *d)
65 struct ieee80211softmac_device *mac = (struct ieee80211softmac_device *)d;
66 unsigned long flags;
68 spin_lock_irqsave(&mac->lock, flags);
69 /* we might race against ieee80211softmac_handle_assoc_response,
70 * so make sure only one of us does something */
71 if (!mac->associnfo.associating) {
72 spin_unlock_irqrestore(&mac->lock, flags);
73 return;
75 mac->associnfo.associating = 0;
76 mac->associnfo.bssvalid = 0;
77 mac->associated = 0;
78 spin_unlock_irqrestore(&mac->lock, flags);
80 dprintk(KERN_INFO PFX "assoc request timed out!\n");
81 /* FIXME: we need to know the network here. that requires a bit of restructuring */
82 ieee80211softmac_call_events(mac, IEEE80211SOFTMAC_EVENT_ASSOCIATE_TIMEOUT, NULL);
85 void
86 ieee80211softmac_disassoc(struct ieee80211softmac_device *mac)
88 unsigned long flags;
90 spin_lock_irqsave(&mac->lock, flags);
91 if (mac->associnfo.associating)
92 cancel_delayed_work(&mac->associnfo.timeout);
94 netif_carrier_off(mac->dev);
96 mac->associated = 0;
97 mac->associnfo.bssvalid = 0;
98 mac->associnfo.associating = 0;
99 ieee80211softmac_call_events_locked(mac, IEEE80211SOFTMAC_EVENT_DISASSOCIATED, NULL);
100 spin_unlock_irqrestore(&mac->lock, flags);
103 /* Sends out a disassociation request to the desired AP */
104 void
105 ieee80211softmac_send_disassoc_req(struct ieee80211softmac_device *mac, u16 reason)
107 struct ieee80211softmac_network *found;
109 if (mac->associnfo.bssvalid && mac->associated) {
110 found = ieee80211softmac_get_network_by_bssid(mac, mac->associnfo.bssid);
111 if (found)
112 ieee80211softmac_send_mgt_frame(mac, found, IEEE80211_STYPE_DISASSOC, reason);
115 ieee80211softmac_disassoc(mac);
118 static inline int
119 we_support_all_basic_rates(struct ieee80211softmac_device *mac, u8 *from, u8 from_len)
121 int idx, search, found;
122 u8 rate, search_rate;
124 for (idx = 0; idx < (from_len); idx++) {
125 rate = (from)[idx];
126 if (!(rate & IEEE80211_BASIC_RATE_MASK))
127 continue;
128 found = 0;
129 rate &= ~IEEE80211_BASIC_RATE_MASK;
130 for (search = 0; search < mac->ratesinfo.count; search++) {
131 search_rate = mac->ratesinfo.rates[search];
132 search_rate &= ~IEEE80211_BASIC_RATE_MASK;
133 if (rate == search_rate) {
134 found = 1;
135 break;
138 if (!found)
139 return 0;
141 return 1;
144 static int
145 network_matches_request(struct ieee80211softmac_device *mac, struct ieee80211_network *net)
147 /* we cannot associate to networks whose name we don't know */
148 if (ieee80211_is_empty_essid(net->ssid, net->ssid_len))
149 return 0;
150 /* do not associate to a network whose BSSBasicRateSet we cannot support */
151 if (!we_support_all_basic_rates(mac, net->rates, net->rates_len))
152 return 0;
153 /* do we really need to check the ex rates? */
154 if (!we_support_all_basic_rates(mac, net->rates_ex, net->rates_ex_len))
155 return 0;
157 /* assume that users know what they're doing ...
158 * (note we don't let them select a net we're incompatible with) */
159 if (mac->associnfo.bssfixed) {
160 return !memcmp(mac->associnfo.bssid, net->bssid, ETH_ALEN);
163 /* if 'ANY' network requested, take any that doesn't have privacy enabled */
164 if (mac->associnfo.req_essid.len == 0
165 && !(net->capability & WLAN_CAPABILITY_PRIVACY))
166 return 1;
167 if (net->ssid_len != mac->associnfo.req_essid.len)
168 return 0;
169 if (!memcmp(net->ssid, mac->associnfo.req_essid.data, mac->associnfo.req_essid.len))
170 return 1;
171 return 0;
174 static void
175 ieee80211softmac_assoc_notify(struct net_device *dev, void *context)
177 struct ieee80211softmac_device *mac = ieee80211_priv(dev);
178 ieee80211softmac_assoc_work((void*)mac);
181 /* This function is called to handle userspace requests (asynchronously) */
182 void
183 ieee80211softmac_assoc_work(void *d)
185 struct ieee80211softmac_device *mac = (struct ieee80211softmac_device *)d;
186 struct ieee80211softmac_network *found = NULL;
187 struct ieee80211_network *net = NULL, *best = NULL;
188 int bssvalid;
189 unsigned long flags;
191 /* ieee80211_disassoc might clear this */
192 bssvalid = mac->associnfo.bssvalid;
194 /* meh */
195 if (mac->associated)
196 ieee80211softmac_send_disassoc_req(mac, WLAN_REASON_DISASSOC_STA_HAS_LEFT);
198 /* try to find the requested network in our list, if we found one already */
199 if (bssvalid || mac->associnfo.bssfixed)
200 found = ieee80211softmac_get_network_by_bssid(mac, mac->associnfo.bssid);
202 /* Search the ieee80211 networks for this network if we didn't find it by bssid,
203 * but only if we've scanned at least once (to get a better list of networks to
204 * select from). If we have not scanned before, the !found logic below will be
205 * invoked and will scan. */
206 if (!found && (mac->associnfo.scan_retry < IEEE80211SOFTMAC_ASSOC_SCAN_RETRY_LIMIT))
208 s8 rssi = -128; /* if I don't initialise, gcc emits an invalid warning
209 because it cannot follow the best pointer logic. */
210 spin_lock_irqsave(&mac->ieee->lock, flags);
211 list_for_each_entry(net, &mac->ieee->network_list, list) {
212 /* we're supposed to find the network with
213 * the best signal here, as we're asked to join
214 * any network with a specific ESSID, and many
215 * different ones could have that.
217 * I'll for now just go with the reported rssi.
219 * We also should take into account the rateset
220 * here to find the best BSSID to try.
222 if (network_matches_request(mac, net)) {
223 if (!best) {
224 best = net;
225 rssi = best->stats.rssi;
226 continue;
228 /* we already had a matching network, so
229 * compare their properties to get the
230 * better of the two ... (see above)
232 if (rssi < net->stats.rssi) {
233 best = net;
234 rssi = best->stats.rssi;
238 /* if we unlock here, we might get interrupted and the `best'
239 * pointer could go stale */
240 if (best) {
241 found = ieee80211softmac_create_network(mac, best);
242 /* if found is still NULL, then we got -ENOMEM somewhere */
243 if (found)
244 ieee80211softmac_add_network(mac, found);
246 spin_unlock_irqrestore(&mac->ieee->lock, flags);
249 if (!found) {
250 if (mac->associnfo.scan_retry > 0) {
251 spin_lock_irqsave(&mac->lock, flags);
252 mac->associnfo.scan_retry--;
253 spin_unlock_irqrestore(&mac->lock, flags);
255 /* We know of no such network. Let's scan.
256 * NB: this also happens if we had no memory to copy the network info...
257 * Maybe we can hope to have more memory after scanning finishes ;)
259 dprintk(KERN_INFO PFX "Associate: Scanning for networks first.\n");
260 ieee80211softmac_notify(mac->dev, IEEE80211SOFTMAC_EVENT_SCAN_FINISHED, ieee80211softmac_assoc_notify, NULL);
261 if (ieee80211softmac_start_scan(mac))
262 dprintk(KERN_INFO PFX "Associate: failed to initiate scan. Is device up?\n");
263 return;
264 } else {
265 spin_lock_irqsave(&mac->lock, flags);
266 mac->associnfo.associating = 0;
267 mac->associated = 0;
268 spin_unlock_irqrestore(&mac->lock, flags);
270 dprintk(KERN_INFO PFX "Unable to find matching network after scan!\n");
271 /* reset the retry counter for the next user request since we
272 * break out and don't reschedule ourselves after this point. */
273 mac->associnfo.scan_retry = IEEE80211SOFTMAC_ASSOC_SCAN_RETRY_LIMIT;
274 ieee80211softmac_call_events(mac, IEEE80211SOFTMAC_EVENT_ASSOCIATE_NET_NOT_FOUND, NULL);
275 return;
279 /* reset the retry counter for the next user request since we
280 * now found a net and will try to associate to it, but not
281 * schedule this function again. */
282 mac->associnfo.scan_retry = IEEE80211SOFTMAC_ASSOC_SCAN_RETRY_LIMIT;
283 mac->associnfo.bssvalid = 1;
284 memcpy(mac->associnfo.bssid, found->bssid, ETH_ALEN);
285 /* copy the ESSID for displaying it */
286 mac->associnfo.associate_essid.len = found->essid.len;
287 memcpy(mac->associnfo.associate_essid.data, found->essid.data, IW_ESSID_MAX_SIZE + 1);
289 /* we found a network! authenticate (if necessary) and associate to it. */
290 if (!found->authenticated) {
291 /* This relies on the fact that _auth_req only queues the work,
292 * otherwise adding the notification would be racy. */
293 if (!ieee80211softmac_auth_req(mac, found)) {
294 dprintk(KERN_INFO PFX "cannot associate without being authenticated, requested authentication\n");
295 ieee80211softmac_notify_internal(mac, IEEE80211SOFTMAC_EVENT_ANY, found, ieee80211softmac_assoc_notify, NULL, GFP_KERNEL);
296 } else {
297 printkl(KERN_WARNING PFX "Not authenticated, but requesting authentication failed. Giving up to associate\n");
298 ieee80211softmac_call_events(mac, IEEE80211SOFTMAC_EVENT_ASSOCIATE_FAILED, found);
300 return;
302 /* finally! now we can start associating */
303 ieee80211softmac_assoc(mac, found);
306 /* call this to do whatever is necessary when we're associated */
307 static void
308 ieee80211softmac_associated(struct ieee80211softmac_device *mac,
309 struct ieee80211_assoc_response * resp,
310 struct ieee80211softmac_network *net)
312 mac->associnfo.associating = 0;
313 mac->associated = 1;
314 if (mac->set_bssid_filter)
315 mac->set_bssid_filter(mac->dev, net->bssid);
316 memcpy(mac->ieee->bssid, net->bssid, ETH_ALEN);
317 netif_carrier_on(mac->dev);
319 mac->association_id = le16_to_cpup(&resp->aid);
322 /* received frame handling functions */
324 ieee80211softmac_handle_assoc_response(struct net_device * dev,
325 struct ieee80211_assoc_response * resp,
326 struct ieee80211_network * _ieee80211_network_do_not_use)
328 /* NOTE: the network parameter has to be ignored by
329 * this code because it is the ieee80211's pointer
330 * to the struct, not ours (we made a copy)
332 struct ieee80211softmac_device *mac = ieee80211_priv(dev);
333 u16 status = le16_to_cpup(&resp->status);
334 struct ieee80211softmac_network *network = NULL;
335 unsigned long flags;
337 if (unlikely(!mac->running))
338 return -ENODEV;
340 spin_lock_irqsave(&mac->lock, flags);
342 if (!mac->associnfo.associating) {
343 /* we race against the timeout function, so make sure
344 * only one of us can do work */
345 spin_unlock_irqrestore(&mac->lock, flags);
346 return 0;
348 network = ieee80211softmac_get_network_by_bssid_locked(mac, resp->header.addr3);
350 /* someone sending us things without us knowing him? Ignore. */
351 if (!network) {
352 dprintk(KERN_INFO PFX "Received unrequested assocation response from " MAC_FMT "\n", MAC_ARG(resp->header.addr3));
353 spin_unlock_irqrestore(&mac->lock, flags);
354 return 0;
357 /* now that we know it was for us, we can cancel the timeout */
358 cancel_delayed_work(&mac->associnfo.timeout);
360 switch (status) {
361 case 0:
362 dprintk(KERN_INFO PFX "associated!\n");
363 ieee80211softmac_associated(mac, resp, network);
364 ieee80211softmac_call_events_locked(mac, IEEE80211SOFTMAC_EVENT_ASSOCIATED, network);
365 break;
366 case WLAN_REASON_STA_REQ_ASSOC_WITHOUT_AUTH:
367 if (!network->auth_desynced_once) {
368 /* there seem to be a few rare cases where our view of
369 * the world is obscured, or buggy APs that don't DEAUTH
370 * us properly. So we handle that, but allow it only once.
372 printkl(KERN_INFO PFX "We were not authenticated during association, retrying...\n");
373 network->authenticated = 0;
374 /* we don't want to do this more than once ... */
375 network->auth_desynced_once = 1;
376 schedule_work(&mac->associnfo.work);
377 break;
379 default:
380 dprintk(KERN_INFO PFX "associating failed (reason: 0x%x)!\n", status);
381 mac->associnfo.associating = 0;
382 mac->associnfo.bssvalid = 0;
383 mac->associated = 0;
384 ieee80211softmac_call_events_locked(mac, IEEE80211SOFTMAC_EVENT_ASSOCIATE_FAILED, network);
387 spin_unlock_irqrestore(&mac->lock, flags);
388 return 0;
392 ieee80211softmac_handle_disassoc(struct net_device * dev,
393 struct ieee80211_disassoc *disassoc)
395 struct ieee80211softmac_device *mac = ieee80211_priv(dev);
397 if (unlikely(!mac->running))
398 return -ENODEV;
400 if (memcmp(disassoc->header.addr2, mac->associnfo.bssid, ETH_ALEN))
401 return 0;
403 if (memcmp(disassoc->header.addr1, mac->dev->dev_addr, ETH_ALEN))
404 return 0;
406 dprintk(KERN_INFO PFX "got disassoc frame\n");
407 ieee80211softmac_disassoc(mac);
409 /* try to reassociate */
410 schedule_work(&mac->associnfo.work);
412 return 0;
416 ieee80211softmac_handle_reassoc_req(struct net_device * dev,
417 struct ieee80211_reassoc_request * resp)
419 struct ieee80211softmac_device *mac = ieee80211_priv(dev);
420 struct ieee80211softmac_network *network;
422 if (unlikely(!mac->running))
423 return -ENODEV;
425 network = ieee80211softmac_get_network_by_bssid(mac, resp->header.addr3);
426 if (!network) {
427 dprintkl(KERN_INFO PFX "reassoc request from unknown network\n");
428 return 0;
430 schedule_work(&mac->associnfo.work);
432 return 0;