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
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"
32 * Before you can associate, you have to authenticate.
36 /* Sends out an association request to the desired AP */
38 ieee80211softmac_assoc(struct ieee80211softmac_device
*mac
, struct ieee80211softmac_network
*net
)
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
);
63 ieee80211softmac_assoc_timeout(void *d
)
65 struct ieee80211softmac_device
*mac
= (struct ieee80211softmac_device
*)d
;
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
);
75 mac
->associnfo
.associating
= 0;
76 mac
->associnfo
.bssvalid
= 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
);
86 ieee80211softmac_disassoc(struct ieee80211softmac_device
*mac
)
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
);
97 mac
->associnfo
.bssvalid
= 0;
98 mac
->associnfo
.associating
= 0;
99 ieee80211softmac_init_txrates(mac
);
100 ieee80211softmac_call_events_locked(mac
, IEEE80211SOFTMAC_EVENT_DISASSOCIATED
, NULL
);
101 spin_unlock_irqrestore(&mac
->lock
, flags
);
104 /* Sends out a disassociation request to the desired AP */
106 ieee80211softmac_send_disassoc_req(struct ieee80211softmac_device
*mac
, u16 reason
)
108 struct ieee80211softmac_network
*found
;
110 if (mac
->associnfo
.bssvalid
&& mac
->associated
) {
111 found
= ieee80211softmac_get_network_by_bssid(mac
, mac
->associnfo
.bssid
);
113 ieee80211softmac_send_mgt_frame(mac
, found
, IEEE80211_STYPE_DISASSOC
, reason
);
116 ieee80211softmac_disassoc(mac
);
120 we_support_all_basic_rates(struct ieee80211softmac_device
*mac
, u8
*from
, u8 from_len
)
125 for (idx
= 0; idx
< (from_len
); idx
++) {
127 if (!(rate
& IEEE80211_BASIC_RATE_MASK
))
129 rate
&= ~IEEE80211_BASIC_RATE_MASK
;
130 if (!ieee80211softmac_ratesinfo_rate_supported(&mac
->ratesinfo
, rate
))
137 network_matches_request(struct ieee80211softmac_device
*mac
, struct ieee80211_network
*net
)
139 /* we cannot associate to networks whose name we don't know */
140 if (ieee80211_is_empty_essid(net
->ssid
, net
->ssid_len
))
142 /* do not associate to a network whose BSSBasicRateSet we cannot support */
143 if (!we_support_all_basic_rates(mac
, net
->rates
, net
->rates_len
))
145 /* do we really need to check the ex rates? */
146 if (!we_support_all_basic_rates(mac
, net
->rates_ex
, net
->rates_ex_len
))
149 /* assume that users know what they're doing ...
150 * (note we don't let them select a net we're incompatible with) */
151 if (mac
->associnfo
.bssfixed
) {
152 return !memcmp(mac
->associnfo
.bssid
, net
->bssid
, ETH_ALEN
);
155 /* if 'ANY' network requested, take any that doesn't have privacy enabled */
156 if (mac
->associnfo
.req_essid
.len
== 0
157 && !(net
->capability
& WLAN_CAPABILITY_PRIVACY
))
159 if (net
->ssid_len
!= mac
->associnfo
.req_essid
.len
)
161 if (!memcmp(net
->ssid
, mac
->associnfo
.req_essid
.data
, mac
->associnfo
.req_essid
.len
))
167 ieee80211softmac_assoc_notify_scan(struct net_device
*dev
, int event_type
, void *context
)
169 struct ieee80211softmac_device
*mac
= ieee80211_priv(dev
);
170 ieee80211softmac_assoc_work((void*)mac
);
174 ieee80211softmac_assoc_notify_auth(struct net_device
*dev
, int event_type
, void *context
)
176 struct ieee80211softmac_device
*mac
= ieee80211_priv(dev
);
178 switch (event_type
) {
179 case IEEE80211SOFTMAC_EVENT_AUTHENTICATED
:
180 ieee80211softmac_assoc_work((void*)mac
);
182 case IEEE80211SOFTMAC_EVENT_AUTH_FAILED
:
183 case IEEE80211SOFTMAC_EVENT_AUTH_TIMEOUT
:
184 ieee80211softmac_disassoc(mac
);
189 /* This function is called to handle userspace requests (asynchronously) */
191 ieee80211softmac_assoc_work(void *d
)
193 struct ieee80211softmac_device
*mac
= (struct ieee80211softmac_device
*)d
;
194 struct ieee80211softmac_network
*found
= NULL
;
195 struct ieee80211_network
*net
= NULL
, *best
= NULL
;
199 /* ieee80211_disassoc might clear this */
200 bssvalid
= mac
->associnfo
.bssvalid
;
204 ieee80211softmac_send_disassoc_req(mac
, WLAN_REASON_DISASSOC_STA_HAS_LEFT
);
206 /* try to find the requested network in our list, if we found one already */
207 if (bssvalid
|| mac
->associnfo
.bssfixed
)
208 found
= ieee80211softmac_get_network_by_bssid(mac
, mac
->associnfo
.bssid
);
210 /* Search the ieee80211 networks for this network if we didn't find it by bssid,
211 * but only if we've scanned at least once (to get a better list of networks to
212 * select from). If we have not scanned before, the !found logic below will be
213 * invoked and will scan. */
214 if (!found
&& (mac
->associnfo
.scan_retry
< IEEE80211SOFTMAC_ASSOC_SCAN_RETRY_LIMIT
))
216 s8 rssi
= -128; /* if I don't initialise, gcc emits an invalid warning
217 because it cannot follow the best pointer logic. */
218 spin_lock_irqsave(&mac
->ieee
->lock
, flags
);
219 list_for_each_entry(net
, &mac
->ieee
->network_list
, list
) {
220 /* we're supposed to find the network with
221 * the best signal here, as we're asked to join
222 * any network with a specific ESSID, and many
223 * different ones could have that.
225 * I'll for now just go with the reported rssi.
227 * We also should take into account the rateset
228 * here to find the best BSSID to try.
230 if (network_matches_request(mac
, net
)) {
233 rssi
= best
->stats
.rssi
;
236 /* we already had a matching network, so
237 * compare their properties to get the
238 * better of the two ... (see above)
240 if (rssi
< net
->stats
.rssi
) {
242 rssi
= best
->stats
.rssi
;
246 /* if we unlock here, we might get interrupted and the `best'
247 * pointer could go stale */
249 found
= ieee80211softmac_create_network(mac
, best
);
250 /* if found is still NULL, then we got -ENOMEM somewhere */
252 ieee80211softmac_add_network(mac
, found
);
254 spin_unlock_irqrestore(&mac
->ieee
->lock
, flags
);
258 if (mac
->associnfo
.scan_retry
> 0) {
259 spin_lock_irqsave(&mac
->lock
, flags
);
260 mac
->associnfo
.scan_retry
--;
261 spin_unlock_irqrestore(&mac
->lock
, flags
);
263 /* We know of no such network. Let's scan.
264 * NB: this also happens if we had no memory to copy the network info...
265 * Maybe we can hope to have more memory after scanning finishes ;)
267 dprintk(KERN_INFO PFX
"Associate: Scanning for networks first.\n");
268 ieee80211softmac_notify(mac
->dev
, IEEE80211SOFTMAC_EVENT_SCAN_FINISHED
, ieee80211softmac_assoc_notify_scan
, NULL
);
269 if (ieee80211softmac_start_scan(mac
))
270 dprintk(KERN_INFO PFX
"Associate: failed to initiate scan. Is device up?\n");
273 spin_lock_irqsave(&mac
->lock
, flags
);
274 mac
->associnfo
.associating
= 0;
276 spin_unlock_irqrestore(&mac
->lock
, flags
);
278 dprintk(KERN_INFO PFX
"Unable to find matching network after scan!\n");
279 /* reset the retry counter for the next user request since we
280 * break out and don't reschedule ourselves after this point. */
281 mac
->associnfo
.scan_retry
= IEEE80211SOFTMAC_ASSOC_SCAN_RETRY_LIMIT
;
282 ieee80211softmac_call_events(mac
, IEEE80211SOFTMAC_EVENT_ASSOCIATE_NET_NOT_FOUND
, NULL
);
287 /* reset the retry counter for the next user request since we
288 * now found a net and will try to associate to it, but not
289 * schedule this function again. */
290 mac
->associnfo
.scan_retry
= IEEE80211SOFTMAC_ASSOC_SCAN_RETRY_LIMIT
;
291 mac
->associnfo
.bssvalid
= 1;
292 memcpy(mac
->associnfo
.bssid
, found
->bssid
, ETH_ALEN
);
293 /* copy the ESSID for displaying it */
294 mac
->associnfo
.associate_essid
.len
= found
->essid
.len
;
295 memcpy(mac
->associnfo
.associate_essid
.data
, found
->essid
.data
, IW_ESSID_MAX_SIZE
+ 1);
297 /* we found a network! authenticate (if necessary) and associate to it. */
298 if (!found
->authenticated
) {
299 /* This relies on the fact that _auth_req only queues the work,
300 * otherwise adding the notification would be racy. */
301 if (!ieee80211softmac_auth_req(mac
, found
)) {
302 dprintk(KERN_INFO PFX
"cannot associate without being authenticated, requested authentication\n");
303 ieee80211softmac_notify_internal(mac
, IEEE80211SOFTMAC_EVENT_ANY
, found
, ieee80211softmac_assoc_notify_auth
, NULL
, GFP_KERNEL
);
305 printkl(KERN_WARNING PFX
"Not authenticated, but requesting authentication failed. Giving up to associate\n");
306 ieee80211softmac_call_events(mac
, IEEE80211SOFTMAC_EVENT_ASSOCIATE_FAILED
, found
);
310 /* finally! now we can start associating */
311 ieee80211softmac_assoc(mac
, found
);
314 /* call this to do whatever is necessary when we're associated */
316 ieee80211softmac_associated(struct ieee80211softmac_device
*mac
,
317 struct ieee80211_assoc_response
* resp
,
318 struct ieee80211softmac_network
*net
)
320 mac
->associnfo
.associating
= 0;
321 mac
->associnfo
.supported_rates
= net
->supported_rates
;
322 ieee80211softmac_recalc_txrates(mac
);
325 if (mac
->set_bssid_filter
)
326 mac
->set_bssid_filter(mac
->dev
, net
->bssid
);
327 memcpy(mac
->ieee
->bssid
, net
->bssid
, ETH_ALEN
);
328 netif_carrier_on(mac
->dev
);
330 mac
->association_id
= le16_to_cpup(&resp
->aid
);
333 /* received frame handling functions */
335 ieee80211softmac_handle_assoc_response(struct net_device
* dev
,
336 struct ieee80211_assoc_response
* resp
,
337 struct ieee80211_network
* _ieee80211_network_do_not_use
)
339 /* NOTE: the network parameter has to be ignored by
340 * this code because it is the ieee80211's pointer
341 * to the struct, not ours (we made a copy)
343 struct ieee80211softmac_device
*mac
= ieee80211_priv(dev
);
344 u16 status
= le16_to_cpup(&resp
->status
);
345 struct ieee80211softmac_network
*network
= NULL
;
348 if (unlikely(!mac
->running
))
351 spin_lock_irqsave(&mac
->lock
, flags
);
353 if (!mac
->associnfo
.associating
) {
354 /* we race against the timeout function, so make sure
355 * only one of us can do work */
356 spin_unlock_irqrestore(&mac
->lock
, flags
);
359 network
= ieee80211softmac_get_network_by_bssid_locked(mac
, resp
->header
.addr3
);
361 /* someone sending us things without us knowing him? Ignore. */
363 dprintk(KERN_INFO PFX
"Received unrequested assocation response from " MAC_FMT
"\n", MAC_ARG(resp
->header
.addr3
));
364 spin_unlock_irqrestore(&mac
->lock
, flags
);
368 /* now that we know it was for us, we can cancel the timeout */
369 cancel_delayed_work(&mac
->associnfo
.timeout
);
373 dprintk(KERN_INFO PFX
"associated!\n");
374 ieee80211softmac_associated(mac
, resp
, network
);
375 ieee80211softmac_call_events_locked(mac
, IEEE80211SOFTMAC_EVENT_ASSOCIATED
, network
);
377 case WLAN_REASON_STA_REQ_ASSOC_WITHOUT_AUTH
:
378 if (!network
->auth_desynced_once
) {
379 /* there seem to be a few rare cases where our view of
380 * the world is obscured, or buggy APs that don't DEAUTH
381 * us properly. So we handle that, but allow it only once.
383 printkl(KERN_INFO PFX
"We were not authenticated during association, retrying...\n");
384 network
->authenticated
= 0;
385 /* we don't want to do this more than once ... */
386 network
->auth_desynced_once
= 1;
387 schedule_work(&mac
->associnfo
.work
);
391 dprintk(KERN_INFO PFX
"associating failed (reason: 0x%x)!\n", status
);
392 mac
->associnfo
.associating
= 0;
393 mac
->associnfo
.bssvalid
= 0;
395 ieee80211softmac_call_events_locked(mac
, IEEE80211SOFTMAC_EVENT_ASSOCIATE_FAILED
, network
);
398 spin_unlock_irqrestore(&mac
->lock
, flags
);
403 ieee80211softmac_handle_disassoc(struct net_device
* dev
,
404 struct ieee80211_disassoc
*disassoc
)
406 struct ieee80211softmac_device
*mac
= ieee80211_priv(dev
);
408 if (unlikely(!mac
->running
))
411 if (memcmp(disassoc
->header
.addr2
, mac
->associnfo
.bssid
, ETH_ALEN
))
414 if (memcmp(disassoc
->header
.addr1
, mac
->dev
->dev_addr
, ETH_ALEN
))
417 dprintk(KERN_INFO PFX
"got disassoc frame\n");
418 ieee80211softmac_disassoc(mac
);
420 /* try to reassociate */
421 schedule_work(&mac
->associnfo
.work
);
427 ieee80211softmac_handle_reassoc_req(struct net_device
* dev
,
428 struct ieee80211_reassoc_request
* resp
)
430 struct ieee80211softmac_device
*mac
= ieee80211_priv(dev
);
431 struct ieee80211softmac_network
*network
;
433 if (unlikely(!mac
->running
))
436 network
= ieee80211softmac_get_network_by_bssid(mac
, resp
->header
.addr3
);
438 dprintkl(KERN_INFO PFX
"reassoc request from unknown network\n");
441 schedule_work(&mac
->associnfo
.work
);