blob: 9afe2f9885dc93f68582809bcc778c5a9f2b3d25 [file] [log] [blame]
Johannes Berg0a51b272008-09-08 17:44:25 +02001/*
Johannes Berg5484e232008-09-08 17:44:27 +02002 * Scanning implementation
3 *
Johannes Berg0a51b272008-09-08 17:44:25 +02004 * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi>
5 * Copyright 2004, Instant802 Networks, Inc.
6 * Copyright 2005, Devicescape Software, Inc.
7 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
8 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
Johannes Berg0a51b272008-09-08 17:44:25 +020015#include <linux/if_arp.h>
Johannes Berg078e1e62009-01-22 18:07:31 +010016#include <linux/rtnetlink.h>
Johannes Berg0a51b272008-09-08 17:44:25 +020017#include <net/mac80211.h>
Johannes Berg0a51b272008-09-08 17:44:25 +020018
19#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020020#include "driver-ops.h"
Johannes Berg5484e232008-09-08 17:44:27 +020021#include "mesh.h"
Johannes Berg0a51b272008-09-08 17:44:25 +020022
23#define IEEE80211_PROBE_DELAY (HZ / 33)
24#define IEEE80211_CHANNEL_TIME (HZ / 33)
Helmut Schaa96f7e732009-06-30 14:49:18 +020025#define IEEE80211_PASSIVE_CHANNEL_TIME (HZ / 8)
Johannes Berg0a51b272008-09-08 17:44:25 +020026
Johannes Bergc2b13452008-09-11 00:01:55 +020027struct ieee80211_bss *
Johannes Berg5484e232008-09-08 17:44:27 +020028ieee80211_rx_bss_get(struct ieee80211_local *local, u8 *bssid, int freq,
29 u8 *ssid, u8 ssid_len)
30{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +010031 struct cfg80211_bss *cbss;
32
33 cbss = cfg80211_get_bss(local->hw.wiphy,
34 ieee80211_get_channel(local->hw.wiphy, freq),
35 bssid, ssid, ssid_len, 0, 0);
36 if (!cbss)
37 return NULL;
38 return (void *)cbss->priv;
Johannes Berg5484e232008-09-08 17:44:27 +020039}
40
Johannes Berg00d3f142009-02-10 21:26:00 +010041static void ieee80211_rx_bss_free(struct cfg80211_bss *cbss)
Johannes Berg5484e232008-09-08 17:44:27 +020042{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +010043 struct ieee80211_bss *bss = (void *)cbss->priv;
Johannes Berg5484e232008-09-08 17:44:27 +020044
Johannes Berg5484e232008-09-08 17:44:27 +020045 kfree(bss_mesh_id(bss));
46 kfree(bss_mesh_cfg(bss));
Johannes Berg5484e232008-09-08 17:44:27 +020047}
48
49void ieee80211_rx_bss_put(struct ieee80211_local *local,
Johannes Bergc2b13452008-09-11 00:01:55 +020050 struct ieee80211_bss *bss)
Johannes Berg5484e232008-09-08 17:44:27 +020051{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +010052 if (!bss)
53 return;
54 cfg80211_put_bss(container_of((void *)bss, struct cfg80211_bss, priv));
Johannes Berg5484e232008-09-08 17:44:27 +020055}
56
Kalle Valoab133152010-01-12 10:42:31 +020057static bool is_uapsd_supported(struct ieee802_11_elems *elems)
58{
59 u8 qos_info;
60
61 if (elems->wmm_info && elems->wmm_info_len == 7
62 && elems->wmm_info[5] == 1)
63 qos_info = elems->wmm_info[6];
64 else if (elems->wmm_param && elems->wmm_param_len == 24
65 && elems->wmm_param[5] == 1)
66 qos_info = elems->wmm_param[6];
67 else
68 /* no valid wmm information or parameter element found */
69 return false;
70
71 return qos_info & IEEE80211_WMM_IE_AP_QOSINFO_UAPSD;
72}
73
Johannes Bergc2b13452008-09-11 00:01:55 +020074struct ieee80211_bss *
Johannes Berg5484e232008-09-08 17:44:27 +020075ieee80211_bss_info_update(struct ieee80211_local *local,
76 struct ieee80211_rx_status *rx_status,
77 struct ieee80211_mgmt *mgmt,
78 size_t len,
79 struct ieee802_11_elems *elems,
Johannes Berg2a519312009-02-10 21:25:55 +010080 struct ieee80211_channel *channel,
81 bool beacon)
Johannes Berg5484e232008-09-08 17:44:27 +020082{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +010083 struct cfg80211_bss *cbss;
Johannes Bergc2b13452008-09-11 00:01:55 +020084 struct ieee80211_bss *bss;
Johannes Berg00d3f142009-02-10 21:26:00 +010085 int clen;
Johannes Berg2a519312009-02-10 21:25:55 +010086 s32 signal = 0;
87
Johannes Berg77965c92009-02-18 18:45:06 +010088 if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
Johannes Berg2a519312009-02-10 21:25:55 +010089 signal = rx_status->signal * 100;
Johannes Berg77965c92009-02-18 18:45:06 +010090 else if (local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)
Johannes Berg2a519312009-02-10 21:25:55 +010091 signal = (rx_status->signal * 100) / local->hw.max_signal;
Johannes Berg2a519312009-02-10 21:25:55 +010092
Johannes Berg0c1ad2c2009-12-23 13:15:39 +010093 cbss = cfg80211_inform_bss_frame(local->hw.wiphy, channel,
94 mgmt, len, signal, GFP_ATOMIC);
Johannes Berg5484e232008-09-08 17:44:27 +020095
Johannes Berg0c1ad2c2009-12-23 13:15:39 +010096 if (!cbss)
Johannes Berg00d3f142009-02-10 21:26:00 +010097 return NULL;
98
Johannes Berg0c1ad2c2009-12-23 13:15:39 +010099 cbss->free_priv = ieee80211_rx_bss_free;
100 bss = (void *)cbss->priv;
Johannes Berg5484e232008-09-08 17:44:27 +0200101
102 /* save the ERP value so that it is available at association time */
103 if (elems->erp_info && elems->erp_info_len >= 1) {
104 bss->erp_value = elems->erp_info[0];
105 bss->has_erp_value = 1;
106 }
107
Johannes Berg5484e232008-09-08 17:44:27 +0200108 if (elems->tim) {
109 struct ieee80211_tim_ie *tim_ie =
110 (struct ieee80211_tim_ie *)elems->tim;
111 bss->dtim_period = tim_ie->dtim_period;
112 }
113
Johannes Berg6a211bf2009-09-17 10:19:23 -0700114 /* set default value for buggy AP/no TIM element */
115 if (bss->dtim_period == 0)
Johannes Berg5484e232008-09-08 17:44:27 +0200116 bss->dtim_period = 1;
117
118 bss->supp_rates_len = 0;
119 if (elems->supp_rates) {
120 clen = IEEE80211_MAX_SUPP_RATES - bss->supp_rates_len;
121 if (clen > elems->supp_rates_len)
122 clen = elems->supp_rates_len;
123 memcpy(&bss->supp_rates[bss->supp_rates_len], elems->supp_rates,
124 clen);
125 bss->supp_rates_len += clen;
126 }
127 if (elems->ext_supp_rates) {
128 clen = IEEE80211_MAX_SUPP_RATES - bss->supp_rates_len;
129 if (clen > elems->ext_supp_rates_len)
130 clen = elems->ext_supp_rates_len;
131 memcpy(&bss->supp_rates[bss->supp_rates_len],
132 elems->ext_supp_rates, clen);
133 bss->supp_rates_len += clen;
134 }
135
Johannes Berg5484e232008-09-08 17:44:27 +0200136 bss->wmm_used = elems->wmm_param || elems->wmm_info;
Kalle Valoab133152010-01-12 10:42:31 +0200137 bss->uapsd_supported = is_uapsd_supported(elems);
Johannes Berg5484e232008-09-08 17:44:27 +0200138
139 if (!beacon)
140 bss->last_probe_resp = jiffies;
141
Johannes Berg5484e232008-09-08 17:44:27 +0200142 return bss;
143}
Johannes Berg0a51b272008-09-08 17:44:25 +0200144
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200145ieee80211_rx_result
Johannes Bergf1d58c22009-06-17 13:13:00 +0200146ieee80211_scan_rx(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200147{
Johannes Bergf1d58c22009-06-17 13:13:00 +0200148 struct ieee80211_rx_status *rx_status = IEEE80211_SKB_RXCB(skb);
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200149 struct ieee80211_mgmt *mgmt;
Johannes Bergc2b13452008-09-11 00:01:55 +0200150 struct ieee80211_bss *bss;
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200151 u8 *elements;
152 struct ieee80211_channel *channel;
153 size_t baselen;
154 int freq;
155 __le16 fc;
156 bool presp, beacon = false;
157 struct ieee802_11_elems elems;
158
159 if (skb->len < 2)
160 return RX_DROP_UNUSABLE;
161
162 mgmt = (struct ieee80211_mgmt *) skb->data;
163 fc = mgmt->frame_control;
164
165 if (ieee80211_is_ctl(fc))
166 return RX_CONTINUE;
167
168 if (skb->len < 24)
169 return RX_DROP_MONITOR;
170
171 presp = ieee80211_is_probe_resp(fc);
172 if (presp) {
173 /* ignore ProbeResp to foreign address */
Johannes Berg47846c92009-11-25 17:46:19 +0100174 if (memcmp(mgmt->da, sdata->vif.addr, ETH_ALEN))
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200175 return RX_DROP_MONITOR;
176
177 presp = true;
178 elements = mgmt->u.probe_resp.variable;
179 baselen = offsetof(struct ieee80211_mgmt, u.probe_resp.variable);
180 } else {
181 beacon = ieee80211_is_beacon(fc);
182 baselen = offsetof(struct ieee80211_mgmt, u.beacon.variable);
183 elements = mgmt->u.beacon.variable;
184 }
185
186 if (!presp && !beacon)
187 return RX_CONTINUE;
188
189 if (baselen > skb->len)
190 return RX_DROP_MONITOR;
191
192 ieee802_11_parse_elems(elements, skb->len - baselen, &elems);
193
194 if (elems.ds_params && elems.ds_params_len == 1)
195 freq = ieee80211_channel_to_frequency(elems.ds_params[0]);
196 else
197 freq = rx_status->freq;
198
199 channel = ieee80211_get_channel(sdata->local->hw.wiphy, freq);
200
201 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
202 return RX_DROP_MONITOR;
203
204 bss = ieee80211_bss_info_update(sdata->local, rx_status,
205 mgmt, skb->len, &elems,
Johannes Berg2a519312009-02-10 21:25:55 +0100206 channel, beacon);
Jouni Malinend048e502008-10-11 03:29:55 +0300207 if (bss)
208 ieee80211_rx_bss_put(sdata->local, bss);
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200209
210 dev_kfree_skb(skb);
211 return RX_QUEUED;
212}
213
Johannes Berg4d36ec52009-10-27 20:59:55 +0100214/* return false if no more work */
215static bool ieee80211_prep_hw_scan(struct ieee80211_local *local)
216{
217 struct cfg80211_scan_request *req = local->scan_req;
218 enum ieee80211_band band;
219 int i, ielen, n_chans;
220
221 do {
222 if (local->hw_scan_band == IEEE80211_NUM_BANDS)
223 return false;
224
225 band = local->hw_scan_band;
226 n_chans = 0;
227 for (i = 0; i < req->n_channels; i++) {
228 if (req->channels[i]->band == band) {
229 local->hw_scan_req->channels[n_chans] =
230 req->channels[i];
231 n_chans++;
232 }
233 }
234
235 local->hw_scan_band++;
236 } while (!n_chans);
237
238 local->hw_scan_req->n_channels = n_chans;
239
240 ielen = ieee80211_build_preq_ies(local, (u8 *)local->hw_scan_req->ie,
241 req->ie, req->ie_len, band);
242 local->hw_scan_req->ie_len = ielen;
243
244 return true;
245}
246
Johannes Berg2a519312009-02-10 21:25:55 +0100247void ieee80211_scan_completed(struct ieee80211_hw *hw, bool aborted)
Johannes Berg0a51b272008-09-08 17:44:25 +0200248{
249 struct ieee80211_local *local = hw_to_local(hw);
Johannes Bergf3b85252009-04-23 16:01:47 +0200250 bool was_hw_scan;
Johannes Berg0a51b272008-09-08 17:44:25 +0200251
Johannes Bergf3b85252009-04-23 16:01:47 +0200252 mutex_lock(&local->scan_mtx);
253
Johannes Berg6d3560d2009-10-31 07:44:08 +0100254 /*
255 * It's ok to abort a not-yet-running scan (that
256 * we have one at all will be verified by checking
257 * local->scan_req next), but not to complete it
258 * successfully.
259 */
260 if (WARN_ON(!local->scanning && !aborted))
261 aborted = true;
Johannes Bergde95a542009-04-01 11:58:36 +0200262
Johannes Bergf3b85252009-04-23 16:01:47 +0200263 if (WARN_ON(!local->scan_req)) {
264 mutex_unlock(&local->scan_mtx);
265 return;
266 }
267
Johannes Berg4d36ec52009-10-27 20:59:55 +0100268 was_hw_scan = test_bit(SCAN_HW_SCANNING, &local->scanning);
269 if (was_hw_scan && !aborted && ieee80211_prep_hw_scan(local)) {
270 ieee80211_queue_delayed_work(&local->hw,
271 &local->scan_work, 0);
272 mutex_unlock(&local->scan_mtx);
273 return;
274 }
275
276 kfree(local->hw_scan_req);
277 local->hw_scan_req = NULL;
Johannes Bergf3b85252009-04-23 16:01:47 +0200278
Johannes Berg5ba63532009-08-07 17:54:07 +0200279 if (local->scan_req != local->int_scan_req)
Johannes Berg2a519312009-02-10 21:25:55 +0100280 cfg80211_scan_done(local->scan_req, aborted);
281 local->scan_req = NULL;
Johannes Berg15db0b72009-08-25 16:33:47 +0200282 local->scan_sdata = NULL;
Johannes Berg2a519312009-02-10 21:25:55 +0100283
Helmut Schaafbe9c422009-07-23 12:14:04 +0200284 local->scanning = 0;
Johannes Berg58905ca2009-05-07 14:23:01 +0200285 local->scan_channel = NULL;
Johannes Bergf3b85252009-04-23 16:01:47 +0200286
287 /* we only have to protect scan_req and hw/sw scan */
288 mutex_unlock(&local->scan_mtx);
289
Johannes Berge8975582008-10-09 12:18:51 +0200290 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
Johannes Berg5cff20e2009-04-29 12:26:17 +0200291 if (was_hw_scan)
292 goto done;
Johannes Berg0a51b272008-09-08 17:44:25 +0200293
Johannes Berg3ac64be2009-08-17 16:16:53 +0200294 ieee80211_configure_filter(local);
Johannes Berg0a51b272008-09-08 17:44:25 +0200295
Johannes Berg24487982009-04-23 18:52:52 +0200296 drv_sw_scan_complete(local);
Michael Buesch80e775b2009-02-20 15:37:03 +0100297
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100298 ieee80211_offchannel_return(local, true);
Johannes Berg0a51b272008-09-08 17:44:25 +0200299
300 done:
Johannes Berg5cff20e2009-04-29 12:26:17 +0200301 ieee80211_recalc_idle(local);
Johannes Berg0a51b272008-09-08 17:44:25 +0200302 ieee80211_mlme_notify_scan_completed(local);
Johannes Berg46900292009-02-15 12:44:28 +0100303 ieee80211_ibss_notify_scan_completed(local);
Johannes Berg472dbc42008-09-11 00:01:49 +0200304 ieee80211_mesh_notify_scan_completed(local);
Johannes Berg81ac3462010-01-06 15:30:58 +0100305 ieee80211_queue_work(&local->hw, &local->work_work);
Johannes Berg0a51b272008-09-08 17:44:25 +0200306}
307EXPORT_SYMBOL(ieee80211_scan_completed);
308
Johannes Bergf3b85252009-04-23 16:01:47 +0200309static int ieee80211_start_sw_scan(struct ieee80211_local *local)
310{
Johannes Bergf3b85252009-04-23 16:01:47 +0200311 /*
312 * Hardware/driver doesn't support hw_scan, so use software
313 * scanning instead. First send a nullfunc frame with power save
314 * bit on so that AP will buffer the frames for us while we are not
315 * listening, then send probe requests to each channel and wait for
316 * the responses. After all channels are scanned, tune back to the
317 * original channel and send a nullfunc frame with power save bit
318 * off to trigger the AP to send us all the buffered frames.
319 *
320 * Note that while local->sw_scanning is true everything else but
321 * nullfunc frames and probe requests will be dropped in
322 * ieee80211_tx_h_check_assoc().
323 */
Johannes Berg24487982009-04-23 18:52:52 +0200324 drv_sw_scan_start(local);
Johannes Bergf3b85252009-04-23 16:01:47 +0200325
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100326 ieee80211_offchannel_stop_beaconing(local);
Johannes Bergf3b85252009-04-23 16:01:47 +0200327
Helmut Schaa977923b2009-07-23 12:14:20 +0200328 local->next_scan_state = SCAN_DECISION;
Johannes Bergf3b85252009-04-23 16:01:47 +0200329 local->scan_channel_idx = 0;
330
Johannes Berga80f7c02009-12-23 13:15:32 +0100331 drv_flush(local, false);
332
Johannes Berg3ac64be2009-08-17 16:16:53 +0200333 ieee80211_configure_filter(local);
Johannes Bergf3b85252009-04-23 16:01:47 +0200334
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400335 ieee80211_queue_delayed_work(&local->hw,
336 &local->scan_work,
337 IEEE80211_CHANNEL_TIME);
Johannes Bergf3b85252009-04-23 16:01:47 +0200338
339 return 0;
340}
341
342
343static int __ieee80211_start_scan(struct ieee80211_sub_if_data *sdata,
344 struct cfg80211_scan_request *req)
345{
346 struct ieee80211_local *local = sdata->local;
Johannes Bergf3b85252009-04-23 16:01:47 +0200347 int rc;
348
349 if (local->scan_req)
350 return -EBUSY;
351
352 if (local->ops->hw_scan) {
353 u8 *ies;
Johannes Bergf3b85252009-04-23 16:01:47 +0200354
Johannes Berg4d36ec52009-10-27 20:59:55 +0100355 local->hw_scan_req = kmalloc(
356 sizeof(*local->hw_scan_req) +
357 req->n_channels * sizeof(req->channels[0]) +
358 2 + IEEE80211_MAX_SSID_LEN + local->scan_ies_len +
359 req->ie_len, GFP_KERNEL);
360 if (!local->hw_scan_req)
Johannes Bergf3b85252009-04-23 16:01:47 +0200361 return -ENOMEM;
362
Johannes Berg4d36ec52009-10-27 20:59:55 +0100363 local->hw_scan_req->ssids = req->ssids;
364 local->hw_scan_req->n_ssids = req->n_ssids;
365 ies = (u8 *)local->hw_scan_req +
366 sizeof(*local->hw_scan_req) +
367 req->n_channels * sizeof(req->channels[0]);
368 local->hw_scan_req->ie = ies;
369
370 local->hw_scan_band = 0;
Johannes Bergf3b85252009-04-23 16:01:47 +0200371 }
372
373 local->scan_req = req;
374 local->scan_sdata = sdata;
375
Johannes Bergaf6b6372009-12-23 13:15:35 +0100376 if (!list_empty(&local->work_list)) {
377 /* wait for the work to finish/time out */
Johannes Bergf3b85252009-04-23 16:01:47 +0200378 return 0;
379 }
380
381 if (local->ops->hw_scan)
Helmut Schaafbe9c422009-07-23 12:14:04 +0200382 __set_bit(SCAN_HW_SCANNING, &local->scanning);
Johannes Bergf3b85252009-04-23 16:01:47 +0200383 else
Helmut Schaafbe9c422009-07-23 12:14:04 +0200384 __set_bit(SCAN_SW_SCANNING, &local->scanning);
Johannes Bergf3b85252009-04-23 16:01:47 +0200385 /*
386 * Kicking off the scan need not be protected,
387 * only the scan variable stuff, since now
388 * local->scan_req is assigned and other callers
389 * will abort their scan attempts.
390 *
391 * This avoids getting a scan_mtx -> iflist_mtx
392 * dependency, so that the scan completed calls
393 * have more locking freedom.
394 */
Johannes Berg5cff20e2009-04-29 12:26:17 +0200395
396 ieee80211_recalc_idle(local);
Johannes Bergf3b85252009-04-23 16:01:47 +0200397 mutex_unlock(&local->scan_mtx);
398
Johannes Berg4d36ec52009-10-27 20:59:55 +0100399 if (local->ops->hw_scan) {
400 WARN_ON(!ieee80211_prep_hw_scan(local));
401 rc = drv_hw_scan(local, local->hw_scan_req);
402 } else
Johannes Bergf3b85252009-04-23 16:01:47 +0200403 rc = ieee80211_start_sw_scan(local);
404
405 mutex_lock(&local->scan_mtx);
406
407 if (rc) {
Johannes Berg4d36ec52009-10-27 20:59:55 +0100408 kfree(local->hw_scan_req);
409 local->hw_scan_req = NULL;
Helmut Schaafbe9c422009-07-23 12:14:04 +0200410 local->scanning = 0;
Johannes Bergf3b85252009-04-23 16:01:47 +0200411
Johannes Berg5cff20e2009-04-29 12:26:17 +0200412 ieee80211_recalc_idle(local);
413
Johannes Bergf3b85252009-04-23 16:01:47 +0200414 local->scan_req = NULL;
415 local->scan_sdata = NULL;
416 }
417
418 return rc;
419}
420
Helmut Schaa2fb3f0282009-07-23 12:13:56 +0200421static int ieee80211_scan_state_decision(struct ieee80211_local *local,
422 unsigned long *next_delay)
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200423{
Helmut Schaa142b9f52009-07-23 13:18:01 +0200424 bool associated = false;
425 struct ieee80211_sub_if_data *sdata;
426
427 /* if no more bands/channels left, complete scan and advance to the idle state */
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200428 if (local->scan_channel_idx >= local->scan_req->n_channels) {
429 ieee80211_scan_completed(&local->hw, false);
430 return 1;
431 }
Helmut Schaa2fb3f0282009-07-23 12:13:56 +0200432
Helmut Schaa142b9f52009-07-23 13:18:01 +0200433 /* check if at least one STA interface is associated */
434 mutex_lock(&local->iflist_mtx);
435 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +0100436 if (!ieee80211_sdata_running(sdata))
Helmut Schaa142b9f52009-07-23 13:18:01 +0200437 continue;
438
439 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
440 if (sdata->u.mgd.associated) {
441 associated = true;
442 break;
443 }
444 }
445 }
446 mutex_unlock(&local->iflist_mtx);
447
448 if (local->scan_channel) {
449 /*
450 * we're currently scanning a different channel, let's
451 * switch back to the operating channel now if at least
452 * one interface is associated. Otherwise just scan the
453 * next channel
454 */
455 if (associated)
Helmut Schaa977923b2009-07-23 12:14:20 +0200456 local->next_scan_state = SCAN_ENTER_OPER_CHANNEL;
Helmut Schaa142b9f52009-07-23 13:18:01 +0200457 else
Helmut Schaa977923b2009-07-23 12:14:20 +0200458 local->next_scan_state = SCAN_SET_CHANNEL;
Helmut Schaa142b9f52009-07-23 13:18:01 +0200459 } else {
460 /*
461 * we're on the operating channel currently, let's
462 * leave that channel now to scan another one
463 */
Helmut Schaa977923b2009-07-23 12:14:20 +0200464 local->next_scan_state = SCAN_LEAVE_OPER_CHANNEL;
Helmut Schaa142b9f52009-07-23 13:18:01 +0200465 }
466
Helmut Schaa2fb3f0282009-07-23 12:13:56 +0200467 *next_delay = 0;
Helmut Schaa2fb3f0282009-07-23 12:13:56 +0200468 return 0;
469}
470
Helmut Schaa142b9f52009-07-23 13:18:01 +0200471static void ieee80211_scan_state_leave_oper_channel(struct ieee80211_local *local,
472 unsigned long *next_delay)
473{
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100474 ieee80211_offchannel_stop_station(local);
Helmut Schaa142b9f52009-07-23 13:18:01 +0200475
476 __set_bit(SCAN_OFF_CHANNEL, &local->scanning);
477
Johannes Berga80f7c02009-12-23 13:15:32 +0100478 /*
479 * What if the nullfunc frames didn't arrive?
480 */
481 drv_flush(local, false);
482 if (local->ops->flush)
483 *next_delay = 0;
484 else
485 *next_delay = HZ / 10;
486
Helmut Schaa142b9f52009-07-23 13:18:01 +0200487 /* advance to the next channel to be scanned */
Helmut Schaa977923b2009-07-23 12:14:20 +0200488 local->next_scan_state = SCAN_SET_CHANNEL;
Helmut Schaa142b9f52009-07-23 13:18:01 +0200489}
490
491static void ieee80211_scan_state_enter_oper_channel(struct ieee80211_local *local,
492 unsigned long *next_delay)
493{
Helmut Schaa142b9f52009-07-23 13:18:01 +0200494 /* switch back to the operating channel */
495 local->scan_channel = NULL;
496 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
497
498 /*
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100499 * Only re-enable station mode interface now; beaconing will be
500 * re-enabled once the full scan has been completed.
Helmut Schaa142b9f52009-07-23 13:18:01 +0200501 */
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100502 ieee80211_offchannel_return(local, false);
Helmut Schaa142b9f52009-07-23 13:18:01 +0200503
504 __clear_bit(SCAN_OFF_CHANNEL, &local->scanning);
505
506 *next_delay = HZ / 5;
Helmut Schaa977923b2009-07-23 12:14:20 +0200507 local->next_scan_state = SCAN_DECISION;
Helmut Schaa142b9f52009-07-23 13:18:01 +0200508}
509
Helmut Schaa2fb3f0282009-07-23 12:13:56 +0200510static void ieee80211_scan_state_set_channel(struct ieee80211_local *local,
511 unsigned long *next_delay)
512{
513 int skip;
514 struct ieee80211_channel *chan;
Helmut Schaa2fb3f0282009-07-23 12:13:56 +0200515
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200516 skip = 0;
517 chan = local->scan_req->channels[local->scan_channel_idx];
518
Johannes Berg584991d2009-11-02 13:32:03 +0100519 local->scan_channel = chan;
520 if (ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL))
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200521 skip = 1;
522
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200523 /* advance state machine to next channel/band */
524 local->scan_channel_idx++;
525
Helmut Schaa0ee9c132009-07-25 17:25:51 +0200526 if (skip) {
527 /* if we skip this channel return to the decision state */
528 local->next_scan_state = SCAN_DECISION;
Helmut Schaa2fb3f0282009-07-23 12:13:56 +0200529 return;
Helmut Schaa0ee9c132009-07-25 17:25:51 +0200530 }
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200531
532 /*
533 * Probe delay is used to update the NAV, cf. 11.1.3.2.2
534 * (which unfortunately doesn't say _why_ step a) is done,
535 * but it waits for the probe delay or until a frame is
536 * received - and the received frame would update the NAV).
537 * For now, we do not support waiting until a frame is
538 * received.
539 *
540 * In any case, it is not necessary for a passive scan.
541 */
542 if (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN ||
543 !local->scan_req->n_ssids) {
544 *next_delay = IEEE80211_PASSIVE_CHANNEL_TIME;
Helmut Schaa977923b2009-07-23 12:14:20 +0200545 local->next_scan_state = SCAN_DECISION;
Helmut Schaa2fb3f0282009-07-23 12:13:56 +0200546 return;
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200547 }
548
Helmut Schaa2fb3f0282009-07-23 12:13:56 +0200549 /* active scan, send probes */
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200550 *next_delay = IEEE80211_PROBE_DELAY;
Helmut Schaa977923b2009-07-23 12:14:20 +0200551 local->next_scan_state = SCAN_SEND_PROBE;
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200552}
553
554static void ieee80211_scan_state_send_probe(struct ieee80211_local *local,
555 unsigned long *next_delay)
556{
557 int i;
558 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
559
560 for (i = 0; i < local->scan_req->n_ssids; i++)
561 ieee80211_send_probe_req(
562 sdata, NULL,
563 local->scan_req->ssids[i].ssid,
564 local->scan_req->ssids[i].ssid_len,
565 local->scan_req->ie, local->scan_req->ie_len);
566
567 /*
568 * After sending probe requests, wait for probe responses
569 * on the channel.
570 */
571 *next_delay = IEEE80211_CHANNEL_TIME;
Helmut Schaa977923b2009-07-23 12:14:20 +0200572 local->next_scan_state = SCAN_DECISION;
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200573}
574
Johannes Bergc2b13452008-09-11 00:01:55 +0200575void ieee80211_scan_work(struct work_struct *work)
Johannes Berg0a51b272008-09-08 17:44:25 +0200576{
577 struct ieee80211_local *local =
578 container_of(work, struct ieee80211_local, scan_work.work);
579 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
Johannes Berg0a51b272008-09-08 17:44:25 +0200580 unsigned long next_delay = 0;
581
Johannes Bergf3b85252009-04-23 16:01:47 +0200582 mutex_lock(&local->scan_mtx);
583 if (!sdata || !local->scan_req) {
584 mutex_unlock(&local->scan_mtx);
585 return;
586 }
587
Johannes Berg4d36ec52009-10-27 20:59:55 +0100588 if (local->hw_scan_req) {
589 int rc = drv_hw_scan(local, local->hw_scan_req);
590 mutex_unlock(&local->scan_mtx);
591 if (rc)
592 ieee80211_scan_completed(&local->hw, true);
593 return;
594 }
595
Helmut Schaafbe9c422009-07-23 12:14:04 +0200596 if (local->scan_req && !local->scanning) {
Johannes Bergf3b85252009-04-23 16:01:47 +0200597 struct cfg80211_scan_request *req = local->scan_req;
598 int rc;
599
600 local->scan_req = NULL;
Johannes Berg15db0b72009-08-25 16:33:47 +0200601 local->scan_sdata = NULL;
Johannes Bergf3b85252009-04-23 16:01:47 +0200602
603 rc = __ieee80211_start_scan(sdata, req);
604 mutex_unlock(&local->scan_mtx);
605
606 if (rc)
607 ieee80211_scan_completed(&local->hw, true);
608 return;
609 }
610
611 mutex_unlock(&local->scan_mtx);
612
Johannes Berg5bc75722008-09-11 00:01:51 +0200613 /*
614 * Avoid re-scheduling when the sdata is going away.
615 */
Johannes Berg9607e6b2009-12-23 13:15:31 +0100616 if (!ieee80211_sdata_running(sdata)) {
Johannes Bergf3b85252009-04-23 16:01:47 +0200617 ieee80211_scan_completed(&local->hw, true);
Johannes Berg0a51b272008-09-08 17:44:25 +0200618 return;
Johannes Bergf3b85252009-04-23 16:01:47 +0200619 }
Johannes Berg0a51b272008-09-08 17:44:25 +0200620
Helmut Schaaf502d092009-07-23 12:13:48 +0200621 /*
622 * as long as no delay is required advance immediately
623 * without scheduling a new work
624 */
625 do {
Helmut Schaa977923b2009-07-23 12:14:20 +0200626 switch (local->next_scan_state) {
Helmut Schaa2fb3f0282009-07-23 12:13:56 +0200627 case SCAN_DECISION:
628 if (ieee80211_scan_state_decision(local, &next_delay))
Helmut Schaaf502d092009-07-23 12:13:48 +0200629 return;
630 break;
Helmut Schaa2fb3f0282009-07-23 12:13:56 +0200631 case SCAN_SET_CHANNEL:
632 ieee80211_scan_state_set_channel(local, &next_delay);
633 break;
Helmut Schaaf502d092009-07-23 12:13:48 +0200634 case SCAN_SEND_PROBE:
635 ieee80211_scan_state_send_probe(local, &next_delay);
636 break;
Helmut Schaa142b9f52009-07-23 13:18:01 +0200637 case SCAN_LEAVE_OPER_CHANNEL:
638 ieee80211_scan_state_leave_oper_channel(local, &next_delay);
639 break;
640 case SCAN_ENTER_OPER_CHANNEL:
641 ieee80211_scan_state_enter_oper_channel(local, &next_delay);
642 break;
Helmut Schaaf502d092009-07-23 12:13:48 +0200643 }
644 } while (next_delay == 0);
Johannes Berg0a51b272008-09-08 17:44:25 +0200645
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400646 ieee80211_queue_delayed_work(&local->hw, &local->scan_work, next_delay);
Johannes Berg0a51b272008-09-08 17:44:25 +0200647}
648
Johannes Bergc2b13452008-09-11 00:01:55 +0200649int ieee80211_request_scan(struct ieee80211_sub_if_data *sdata,
Johannes Berg2a519312009-02-10 21:25:55 +0100650 struct cfg80211_scan_request *req)
Johannes Berg0a51b272008-09-08 17:44:25 +0200651{
Johannes Bergf3b85252009-04-23 16:01:47 +0200652 int res;
653
654 mutex_lock(&sdata->local->scan_mtx);
655 res = __ieee80211_start_scan(sdata, req);
656 mutex_unlock(&sdata->local->scan_mtx);
657
658 return res;
659}
660
661int ieee80211_request_internal_scan(struct ieee80211_sub_if_data *sdata,
662 const u8 *ssid, u8 ssid_len)
663{
Johannes Berg0a51b272008-09-08 17:44:25 +0200664 struct ieee80211_local *local = sdata->local;
Johannes Bergf3b85252009-04-23 16:01:47 +0200665 int ret = -EBUSY;
Johannes Berg0a51b272008-09-08 17:44:25 +0200666
Johannes Bergf3b85252009-04-23 16:01:47 +0200667 mutex_lock(&local->scan_mtx);
Johannes Berg2a519312009-02-10 21:25:55 +0100668
Johannes Bergf3b85252009-04-23 16:01:47 +0200669 /* busy scanning */
670 if (local->scan_req)
671 goto unlock;
Johannes Berg2a519312009-02-10 21:25:55 +0100672
Johannes Berg5ba63532009-08-07 17:54:07 +0200673 memcpy(local->int_scan_req->ssids[0].ssid, ssid, IEEE80211_MAX_SSID_LEN);
674 local->int_scan_req->ssids[0].ssid_len = ssid_len;
Johannes Berg2a519312009-02-10 21:25:55 +0100675
Johannes Berg5ba63532009-08-07 17:54:07 +0200676 ret = __ieee80211_start_scan(sdata, sdata->local->int_scan_req);
Johannes Bergf3b85252009-04-23 16:01:47 +0200677 unlock:
678 mutex_unlock(&local->scan_mtx);
679 return ret;
Johannes Berg0a51b272008-09-08 17:44:25 +0200680}
Johannes Berg5bb644a2009-05-17 11:40:42 +0200681
682void ieee80211_scan_cancel(struct ieee80211_local *local)
683{
Johannes Berg15db0b72009-08-25 16:33:47 +0200684 bool abortscan;
Johannes Berg5bb644a2009-05-17 11:40:42 +0200685
686 cancel_delayed_work_sync(&local->scan_work);
687
688 /*
689 * Only call this function when a scan can't be
690 * queued -- mostly at suspend under RTNL.
691 */
692 mutex_lock(&local->scan_mtx);
Johannes Berg15db0b72009-08-25 16:33:47 +0200693 abortscan = test_bit(SCAN_SW_SCANNING, &local->scanning) ||
694 (!local->scanning && local->scan_req);
Johannes Berg5bb644a2009-05-17 11:40:42 +0200695 mutex_unlock(&local->scan_mtx);
696
Johannes Berg15db0b72009-08-25 16:33:47 +0200697 if (abortscan)
Johannes Berg5bb644a2009-05-17 11:40:42 +0200698 ieee80211_scan_completed(&local->hw, true);
699}