blob: adf94ba1ed77a5c44ae8479541d03c63466c62ab [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Johannes Berg0a51b272008-09-08 17:44:25 +02002/*
Johannes Berg5484e232008-09-08 17:44:27 +02003 * Scanning implementation
4 *
Johannes Berg0a51b272008-09-08 17:44:25 +02005 * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi>
6 * Copyright 2004, Instant802 Networks, Inc.
7 * Copyright 2005, Devicescape Software, Inc.
8 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
9 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
Sara Sharon74d803b2015-06-03 10:44:17 +030010 * Copyright 2013-2015 Intel Mobile Communications GmbH
Roee Zamir40b0bd22017-08-06 11:38:23 +030011 * Copyright 2016-2017 Intel Deutschland GmbH
Sara Sharon4abb52a2019-01-16 12:14:41 +020012 * Copyright (C) 2018-2019 Intel Corporation
Johannes Berg0a51b272008-09-08 17:44:25 +020013 */
14
Johannes Berg0a51b272008-09-08 17:44:25 +020015#include <linux/if_arp.h>
Felix Fietkau888d04d2012-03-01 15:22:09 +010016#include <linux/etherdevice.h>
Johannes Berg078e1e62009-01-22 18:07:31 +010017#include <linux/rtnetlink.h>
Helmut Schaadf13cce2010-02-24 14:19:21 +010018#include <net/sch_generic.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040020#include <linux/export.h>
Johannes Bergb9771d42018-05-28 15:47:41 +020021#include <linux/random.h>
Johannes Berg0a51b272008-09-08 17:44:25 +020022#include <net/mac80211.h>
Johannes Berg0a51b272008-09-08 17:44:25 +020023
24#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020025#include "driver-ops.h"
Johannes Berg5484e232008-09-08 17:44:27 +020026#include "mesh.h"
Johannes Berg0a51b272008-09-08 17:44:25 +020027
28#define IEEE80211_PROBE_DELAY (HZ / 33)
29#define IEEE80211_CHANNEL_TIME (HZ / 33)
Stanislaw Gruszka3f892b62013-01-23 12:32:45 +010030#define IEEE80211_PASSIVE_CHANNEL_TIME (HZ / 9)
Johannes Berg0a51b272008-09-08 17:44:25 +020031
Johannes Berg5484e232008-09-08 17:44:27 +020032void ieee80211_rx_bss_put(struct ieee80211_local *local,
Johannes Bergc2b13452008-09-11 00:01:55 +020033 struct ieee80211_bss *bss)
Johannes Berg5484e232008-09-08 17:44:27 +020034{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +010035 if (!bss)
36 return;
Johannes Berg5b112d32013-02-01 01:49:58 +010037 cfg80211_put_bss(local->hw.wiphy,
38 container_of((void *)bss, struct cfg80211_bss, priv));
Johannes Berg5484e232008-09-08 17:44:27 +020039}
40
Kalle Valoab133152010-01-12 10:42:31 +020041static bool is_uapsd_supported(struct ieee802_11_elems *elems)
42{
43 u8 qos_info;
44
45 if (elems->wmm_info && elems->wmm_info_len == 7
46 && elems->wmm_info[5] == 1)
47 qos_info = elems->wmm_info[6];
48 else if (elems->wmm_param && elems->wmm_param_len == 24
49 && elems->wmm_param[5] == 1)
50 qos_info = elems->wmm_param[6];
51 else
52 /* no valid wmm information or parameter element found */
53 return false;
54
55 return qos_info & IEEE80211_WMM_IE_AP_QOSINFO_UAPSD;
56}
57
Sara Sharonfcea7db2019-01-16 20:35:38 +020058static void
59ieee80211_update_bss_from_elems(struct ieee80211_local *local,
60 struct ieee80211_bss *bss,
61 struct ieee802_11_elems *elems,
62 struct ieee80211_rx_status *rx_status,
63 bool beacon)
64{
65 int clen, srlen;
66
67 if (beacon)
68 bss->device_ts_beacon = rx_status->device_timestamp;
69 else
70 bss->device_ts_presp = rx_status->device_timestamp;
71
72 if (elems->parse_error) {
73 if (beacon)
74 bss->corrupt_data |= IEEE80211_BSS_CORRUPT_BEACON;
75 else
76 bss->corrupt_data |= IEEE80211_BSS_CORRUPT_PROBE_RESP;
77 } else {
78 if (beacon)
79 bss->corrupt_data &= ~IEEE80211_BSS_CORRUPT_BEACON;
80 else
81 bss->corrupt_data &= ~IEEE80211_BSS_CORRUPT_PROBE_RESP;
82 }
83
84 /* save the ERP value so that it is available at association time */
85 if (elems->erp_info && (!elems->parse_error ||
86 !(bss->valid_data & IEEE80211_BSS_VALID_ERP))) {
87 bss->erp_value = elems->erp_info[0];
88 bss->has_erp_value = true;
89 if (!elems->parse_error)
90 bss->valid_data |= IEEE80211_BSS_VALID_ERP;
91 }
92
93 /* replace old supported rates if we get new values */
94 if (!elems->parse_error ||
95 !(bss->valid_data & IEEE80211_BSS_VALID_RATES)) {
96 srlen = 0;
97 if (elems->supp_rates) {
98 clen = IEEE80211_MAX_SUPP_RATES;
99 if (clen > elems->supp_rates_len)
100 clen = elems->supp_rates_len;
101 memcpy(bss->supp_rates, elems->supp_rates, clen);
102 srlen += clen;
103 }
104 if (elems->ext_supp_rates) {
105 clen = IEEE80211_MAX_SUPP_RATES - srlen;
106 if (clen > elems->ext_supp_rates_len)
107 clen = elems->ext_supp_rates_len;
108 memcpy(bss->supp_rates + srlen, elems->ext_supp_rates,
109 clen);
110 srlen += clen;
111 }
112 if (srlen) {
113 bss->supp_rates_len = srlen;
114 if (!elems->parse_error)
115 bss->valid_data |= IEEE80211_BSS_VALID_RATES;
116 }
117 }
118
119 if (!elems->parse_error ||
120 !(bss->valid_data & IEEE80211_BSS_VALID_WMM)) {
121 bss->wmm_used = elems->wmm_param || elems->wmm_info;
122 bss->uapsd_supported = is_uapsd_supported(elems);
123 if (!elems->parse_error)
124 bss->valid_data |= IEEE80211_BSS_VALID_WMM;
125 }
126
127 if (beacon) {
128 struct ieee80211_supported_band *sband =
129 local->hw.wiphy->bands[rx_status->band];
130 if (!(rx_status->encoding == RX_ENC_HT) &&
131 !(rx_status->encoding == RX_ENC_VHT))
132 bss->beacon_rate =
133 &sband->bitrates[rx_status->rate_idx];
134 }
135}
136
Johannes Bergc2b13452008-09-11 00:01:55 +0200137struct ieee80211_bss *
Johannes Berg5484e232008-09-08 17:44:27 +0200138ieee80211_bss_info_update(struct ieee80211_local *local,
139 struct ieee80211_rx_status *rx_status,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +0200140 struct ieee80211_mgmt *mgmt, size_t len,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +0200141 struct ieee80211_channel *channel)
Johannes Berg5484e232008-09-08 17:44:27 +0200142{
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +0200143 bool beacon = ieee80211_is_beacon(mgmt->frame_control);
Sara Sharon78ac51f2019-01-16 18:22:56 +0200144 struct cfg80211_bss *cbss, *non_tx_cbss;
145 struct ieee80211_bss *bss, *non_tx_bss;
Johannes Berg162dd6a2016-02-23 23:05:06 +0200146 struct cfg80211_inform_bss bss_meta = {
147 .boottime_ns = rx_status->boottime_ns,
148 };
Sara Sharon74d803b2015-06-03 10:44:17 +0300149 bool signal_valid;
Avraham Stern7947d3e2016-07-05 15:23:12 +0300150 struct ieee80211_sub_if_data *scan_sdata;
Sara Sharon4abb52a2019-01-16 12:14:41 +0200151 struct ieee802_11_elems elems;
152 size_t baselen;
153 u8 *elements;
Johannes Berg2a519312009-02-10 21:25:55 +0100154
Tosoni1ad22fb2018-03-14 16:58:34 +0000155 if (rx_status->flag & RX_FLAG_NO_SIGNAL_VAL)
156 bss_meta.signal = 0; /* invalid signal indication */
157 else if (ieee80211_hw_check(&local->hw, SIGNAL_DBM))
Johannes Berg61f6bba2015-10-13 11:36:21 +0200158 bss_meta.signal = rx_status->signal * 100;
Johannes Berg30686bf2015-06-02 21:39:54 +0200159 else if (ieee80211_hw_check(&local->hw, SIGNAL_UNSPEC))
Johannes Berg61f6bba2015-10-13 11:36:21 +0200160 bss_meta.signal = (rx_status->signal * 100) / local->hw.max_signal;
Johannes Berg2a519312009-02-10 21:25:55 +0100161
Johannes Berg61f6bba2015-10-13 11:36:21 +0200162 bss_meta.scan_width = NL80211_BSS_CHAN_WIDTH_20;
Johannes Bergda6a4352017-04-26 12:14:59 +0200163 if (rx_status->bw == RATE_INFO_BW_5)
Johannes Berg61f6bba2015-10-13 11:36:21 +0200164 bss_meta.scan_width = NL80211_BSS_CHAN_WIDTH_5;
Johannes Bergda6a4352017-04-26 12:14:59 +0200165 else if (rx_status->bw == RATE_INFO_BW_10)
Johannes Berg61f6bba2015-10-13 11:36:21 +0200166 bss_meta.scan_width = NL80211_BSS_CHAN_WIDTH_10;
Simon Wunderlich7ca15a02013-07-08 16:55:56 +0200167
Johannes Berg61f6bba2015-10-13 11:36:21 +0200168 bss_meta.chan = channel;
Avraham Stern7947d3e2016-07-05 15:23:12 +0300169
170 rcu_read_lock();
171 scan_sdata = rcu_dereference(local->scan_sdata);
172 if (scan_sdata && scan_sdata->vif.type == NL80211_IFTYPE_STATION &&
173 scan_sdata->vif.bss_conf.assoc &&
174 ieee80211_have_rx_timestamp(rx_status)) {
175 bss_meta.parent_tsf =
176 ieee80211_calculate_rx_timestamp(local, rx_status,
177 len + FCS_LEN, 24);
178 ether_addr_copy(bss_meta.parent_bssid,
179 scan_sdata->vif.bss_conf.bssid);
180 }
181 rcu_read_unlock();
182
Johannes Berg61f6bba2015-10-13 11:36:21 +0200183 cbss = cfg80211_inform_bss_frame_data(local->hw.wiphy, &bss_meta,
184 mgmt, len, GFP_ATOMIC);
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100185 if (!cbss)
Johannes Berg00d3f142009-02-10 21:26:00 +0100186 return NULL;
Sara Sharon4abb52a2019-01-16 12:14:41 +0200187
188 if (ieee80211_is_probe_resp(mgmt->frame_control)) {
189 elements = mgmt->u.probe_resp.variable;
190 baselen = offsetof(struct ieee80211_mgmt,
191 u.probe_resp.variable);
192 } else {
193 baselen = offsetof(struct ieee80211_mgmt, u.beacon.variable);
194 elements = mgmt->u.beacon.variable;
195 }
196
197 if (baselen > len)
198 return NULL;
199
200 ieee802_11_parse_elems(elements, len - baselen, false, &elems,
201 mgmt->bssid, cbss->bssid);
202
Sara Sharon74d803b2015-06-03 10:44:17 +0300203 /* In case the signal is invalid update the status */
204 signal_valid = abs(channel->center_freq - cbss->channel->center_freq)
205 <= local->hw.wiphy->max_adj_channel_rssi_comp;
206 if (!signal_valid)
207 rx_status->flag |= RX_FLAG_NO_SIGNAL_VAL;
Johannes Berg00d3f142009-02-10 21:26:00 +0100208
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100209 bss = (void *)cbss->priv;
Sara Sharonfcea7db2019-01-16 20:35:38 +0200210 ieee80211_update_bss_from_elems(local, bss, &elems, rx_status, beacon);
Alexander Bondar817cee72013-05-19 14:23:57 +0300211
Sara Sharon78ac51f2019-01-16 18:22:56 +0200212 list_for_each_entry(non_tx_cbss, &cbss->nontrans_list, nontrans_list) {
213 non_tx_bss = (void *)non_tx_cbss->priv;
214
215 ieee80211_update_bss_from_elems(local, non_tx_bss, &elems,
216 rx_status, beacon);
217 }
218
Johannes Berg5484e232008-09-08 17:44:27 +0200219 return bss;
220}
Johannes Berg0a51b272008-09-08 17:44:25 +0200221
Roee Zamir40b0bd22017-08-06 11:38:23 +0300222static bool ieee80211_scan_accept_presp(struct ieee80211_sub_if_data *sdata,
223 u32 scan_flags, const u8 *da)
224{
225 if (!sdata)
226 return false;
227 /* accept broadcast for OCE */
228 if (scan_flags & NL80211_SCAN_FLAG_ACCEPT_BCAST_PROBE_RESP &&
229 is_broadcast_ether_addr(da))
230 return true;
231 if (scan_flags & NL80211_SCAN_FLAG_RANDOM_ADDR)
232 return true;
233 return ether_addr_equal(da, sdata->vif.addr);
234}
235
Johannes Bergd48b2962012-07-06 22:19:27 +0200236void ieee80211_scan_rx(struct ieee80211_local *local, struct sk_buff *skb)
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200237{
Johannes Bergf1d58c22009-06-17 13:13:00 +0200238 struct ieee80211_rx_status *rx_status = IEEE80211_SKB_RXCB(skb);
Johannes Bergd48b2962012-07-06 22:19:27 +0200239 struct ieee80211_sub_if_data *sdata1, *sdata2;
240 struct ieee80211_mgmt *mgmt = (void *)skb->data;
Johannes Bergc2b13452008-09-11 00:01:55 +0200241 struct ieee80211_bss *bss;
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200242 struct ieee80211_channel *channel;
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200243
Johannes Bergd48b2962012-07-06 22:19:27 +0200244 if (skb->len < 24 ||
245 (!ieee80211_is_probe_resp(mgmt->frame_control) &&
246 !ieee80211_is_beacon(mgmt->frame_control)))
247 return;
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200248
Johannes Bergd48b2962012-07-06 22:19:27 +0200249 sdata1 = rcu_dereference(local->scan_sdata);
250 sdata2 = rcu_dereference(local->sched_scan_sdata);
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200251
Johannes Bergd48b2962012-07-06 22:19:27 +0200252 if (likely(!sdata1 && !sdata2))
253 return;
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200254
Johannes Bergd48b2962012-07-06 22:19:27 +0200255 if (ieee80211_is_probe_resp(mgmt->frame_control)) {
Johannes Berga344d672014-06-12 22:24:31 +0200256 struct cfg80211_scan_request *scan_req;
257 struct cfg80211_sched_scan_request *sched_scan_req;
Roee Zamir40b0bd22017-08-06 11:38:23 +0300258 u32 scan_req_flags = 0, sched_scan_req_flags = 0;
Johannes Berga344d672014-06-12 22:24:31 +0200259
260 scan_req = rcu_dereference(local->scan_req);
261 sched_scan_req = rcu_dereference(local->sched_scan_req);
262
Roee Zamir40b0bd22017-08-06 11:38:23 +0300263 if (scan_req)
264 scan_req_flags = scan_req->flags;
265
266 if (sched_scan_req)
267 sched_scan_req_flags = sched_scan_req->flags;
268
269 /* ignore ProbeResp to foreign address or non-bcast (OCE)
270 * unless scanning with randomised address
Johannes Berga344d672014-06-12 22:24:31 +0200271 */
Roee Zamir40b0bd22017-08-06 11:38:23 +0300272 if (!ieee80211_scan_accept_presp(sdata1, scan_req_flags,
273 mgmt->da) &&
274 !ieee80211_scan_accept_presp(sdata2, sched_scan_req_flags,
275 mgmt->da))
Johannes Bergd48b2962012-07-06 22:19:27 +0200276 return;
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200277 }
278
Johannes Berg0172bb72012-11-23 14:23:30 +0100279 channel = ieee80211_get_channel(local->hw.wiphy, rx_status->freq);
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200280
281 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
Johannes Bergd48b2962012-07-06 22:19:27 +0200282 return;
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200283
Johannes Bergd48b2962012-07-06 22:19:27 +0200284 bss = ieee80211_bss_info_update(local, rx_status,
Sara Sharon4abb52a2019-01-16 12:14:41 +0200285 mgmt, skb->len,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +0200286 channel);
Jouni Malinend048e502008-10-11 03:29:55 +0300287 if (bss)
Johannes Bergd48b2962012-07-06 22:19:27 +0200288 ieee80211_rx_bss_put(local, bss);
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200289}
290
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200291static void
292ieee80211_prepare_scan_chandef(struct cfg80211_chan_def *chandef,
293 enum nl80211_bss_scan_width scan_width)
294{
295 memset(chandef, 0, sizeof(*chandef));
296 switch (scan_width) {
297 case NL80211_BSS_CHAN_WIDTH_5:
298 chandef->width = NL80211_CHAN_WIDTH_5;
299 break;
300 case NL80211_BSS_CHAN_WIDTH_10:
301 chandef->width = NL80211_CHAN_WIDTH_10;
302 break;
303 default:
304 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
305 break;
306 }
307}
308
Johannes Berg4d36ec52009-10-27 20:59:55 +0100309/* return false if no more work */
310static bool ieee80211_prep_hw_scan(struct ieee80211_local *local)
311{
Johannes Berg6ea0a692014-11-19 11:55:49 +0100312 struct cfg80211_scan_request *req;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200313 struct cfg80211_chan_def chandef;
David Spinadelc56ef672014-02-05 15:21:13 +0200314 u8 bands_used = 0;
Johannes Berg4d36ec52009-10-27 20:59:55 +0100315 int i, ielen, n_chans;
Johannes Bergb9771d42018-05-28 15:47:41 +0200316 u32 flags = 0;
Johannes Berg4d36ec52009-10-27 20:59:55 +0100317
Johannes Berg6ea0a692014-11-19 11:55:49 +0100318 req = rcu_dereference_protected(local->scan_req,
319 lockdep_is_held(&local->mtx));
320
Emmanuel Grumbacha7540552013-09-16 11:12:07 +0300321 if (test_bit(SCAN_HW_CANCELLED, &local->scanning))
322 return false;
323
Johannes Berg30686bf2015-06-02 21:39:54 +0200324 if (ieee80211_hw_check(&local->hw, SINGLE_SCAN_ON_ALL_BANDS)) {
Johannes Berg4d36ec52009-10-27 20:59:55 +0100325 for (i = 0; i < req->n_channels; i++) {
David Spinadelc56ef672014-02-05 15:21:13 +0200326 local->hw_scan_req->req.channels[i] = req->channels[i];
327 bands_used |= BIT(req->channels[i]->band);
Johannes Berg4d36ec52009-10-27 20:59:55 +0100328 }
329
David Spinadelc56ef672014-02-05 15:21:13 +0200330 n_chans = req->n_channels;
331 } else {
332 do {
Johannes Berg57fbcce2016-04-12 15:56:15 +0200333 if (local->hw_scan_band == NUM_NL80211_BANDS)
David Spinadelc56ef672014-02-05 15:21:13 +0200334 return false;
Johannes Berg4d36ec52009-10-27 20:59:55 +0100335
David Spinadelc56ef672014-02-05 15:21:13 +0200336 n_chans = 0;
337
338 for (i = 0; i < req->n_channels; i++) {
339 if (req->channels[i]->band !=
340 local->hw_scan_band)
341 continue;
342 local->hw_scan_req->req.channels[n_chans] =
343 req->channels[i];
344 n_chans++;
345 bands_used |= BIT(req->channels[i]->band);
346 }
347
348 local->hw_scan_band++;
349 } while (!n_chans);
350 }
351
352 local->hw_scan_req->req.n_channels = n_chans;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200353 ieee80211_prepare_scan_chandef(&chandef, req->scan_width);
Johannes Berg4d36ec52009-10-27 20:59:55 +0100354
Johannes Bergb9771d42018-05-28 15:47:41 +0200355 if (req->flags & NL80211_SCAN_FLAG_MIN_PREQ_CONTENT)
356 flags |= IEEE80211_PROBE_FLAG_MIN_CONTENT;
357
David Spinadelc56ef672014-02-05 15:21:13 +0200358 ielen = ieee80211_build_preq_ies(local,
359 (u8 *)local->hw_scan_req->req.ie,
Johannes Bergc604b9f2012-11-29 12:45:18 +0100360 local->hw_scan_ies_bufsize,
David Spinadelc56ef672014-02-05 15:21:13 +0200361 &local->hw_scan_req->ies,
362 req->ie, req->ie_len,
Johannes Bergb9771d42018-05-28 15:47:41 +0200363 bands_used, req->rates, &chandef,
364 flags);
David Spinadelc56ef672014-02-05 15:21:13 +0200365 local->hw_scan_req->req.ie_len = ielen;
366 local->hw_scan_req->req.no_cck = req->no_cck;
Johannes Berga344d672014-06-12 22:24:31 +0200367 ether_addr_copy(local->hw_scan_req->req.mac_addr, req->mac_addr);
368 ether_addr_copy(local->hw_scan_req->req.mac_addr_mask,
369 req->mac_addr_mask);
Jouni Malinene345f442016-02-26 22:12:48 +0200370 ether_addr_copy(local->hw_scan_req->req.bssid, req->bssid);
Johannes Berg4d36ec52009-10-27 20:59:55 +0100371
372 return true;
373}
374
Eliad Peller8bd2a242013-12-05 11:21:27 +0200375static void __ieee80211_scan_completed(struct ieee80211_hw *hw, bool aborted)
Johannes Berg0a51b272008-09-08 17:44:25 +0200376{
377 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berge9da68d2018-10-18 10:35:47 +0200378 bool hw_scan = test_bit(SCAN_HW_SCANNING, &local->scanning);
Eliad Pellera2b70e82013-12-05 11:21:28 +0200379 bool was_scanning = local->scanning;
Johannes Berg6ea0a692014-11-19 11:55:49 +0100380 struct cfg80211_scan_request *scan_req;
Johannes Berga344d672014-06-12 22:24:31 +0200381 struct ieee80211_sub_if_data *scan_sdata;
Sachin Kulkarni4fa11ec2016-01-12 14:30:19 +0530382 struct ieee80211_sub_if_data *sdata;
Johannes Berg0a51b272008-09-08 17:44:25 +0200383
Stanislaw Gruszkae229f842010-10-06 11:22:09 +0200384 lockdep_assert_held(&local->mtx);
Johannes Bergf3b85252009-04-23 16:01:47 +0200385
Johannes Berg6d3560d2009-10-31 07:44:08 +0100386 /*
387 * It's ok to abort a not-yet-running scan (that
388 * we have one at all will be verified by checking
389 * local->scan_req next), but not to complete it
390 * successfully.
391 */
392 if (WARN_ON(!local->scanning && !aborted))
393 aborted = true;
Johannes Bergde95a542009-04-01 11:58:36 +0200394
Stanislaw Gruszkae229f842010-10-06 11:22:09 +0200395 if (WARN_ON(!local->scan_req))
Johannes Bergd07bfd82011-03-07 15:48:41 +0100396 return;
Johannes Bergf3b85252009-04-23 16:01:47 +0200397
David Spinadelc56ef672014-02-05 15:21:13 +0200398 if (hw_scan && !aborted &&
Johannes Berg30686bf2015-06-02 21:39:54 +0200399 !ieee80211_hw_check(&local->hw, SINGLE_SCAN_ON_ALL_BANDS) &&
David Spinadelc56ef672014-02-05 15:21:13 +0200400 ieee80211_prep_hw_scan(local)) {
Johannes Berge2fd5db2012-07-06 21:39:28 +0200401 int rc;
402
403 rc = drv_hw_scan(local,
404 rcu_dereference_protected(local->scan_sdata,
405 lockdep_is_held(&local->mtx)),
406 local->hw_scan_req);
407
Stanislaw Gruszka6eb11a92010-10-06 11:22:11 +0200408 if (rc == 0)
Johannes Bergd07bfd82011-03-07 15:48:41 +0100409 return;
Avraham Stern7947d3e2016-07-05 15:23:12 +0300410
Johannes Berg7d10f6b2016-07-05 15:23:13 +0300411 /* HW scan failed and is going to be reported as aborted,
412 * so clear old scan info.
Avraham Stern7947d3e2016-07-05 15:23:12 +0300413 */
414 memset(&local->scan_info, 0, sizeof(local->scan_info));
Johannes Berg7d10f6b2016-07-05 15:23:13 +0300415 aborted = true;
Johannes Berg4d36ec52009-10-27 20:59:55 +0100416 }
417
418 kfree(local->hw_scan_req);
419 local->hw_scan_req = NULL;
Johannes Bergf3b85252009-04-23 16:01:47 +0200420
Johannes Berg6ea0a692014-11-19 11:55:49 +0100421 scan_req = rcu_dereference_protected(local->scan_req,
422 lockdep_is_held(&local->mtx));
423
Avraham Stern1d762502016-07-05 17:10:13 +0300424 if (scan_req != local->int_scan_req) {
Avraham Stern7947d3e2016-07-05 15:23:12 +0300425 local->scan_info.aborted = aborted;
426 cfg80211_scan_done(scan_req, &local->scan_info);
Avraham Stern1d762502016-07-05 17:10:13 +0300427 }
Johannes Berg6ea0a692014-11-19 11:55:49 +0100428 RCU_INIT_POINTER(local->scan_req, NULL);
Johannes Berga344d672014-06-12 22:24:31 +0200429
430 scan_sdata = rcu_dereference_protected(local->scan_sdata,
431 lockdep_is_held(&local->mtx));
Monam Agarwal0c2bef462014-03-24 00:51:43 +0530432 RCU_INIT_POINTER(local->scan_sdata, NULL);
Johannes Berg2a519312009-02-10 21:25:55 +0100433
Helmut Schaafbe9c4292009-07-23 12:14:04 +0200434 local->scanning = 0;
Simon Wunderlich7ca15a02013-07-08 16:55:56 +0200435 local->scan_chandef.chan = NULL;
Johannes Bergf3b85252009-04-23 16:01:47 +0200436
Johannes Berg07ef03e2011-11-08 16:21:21 +0100437 /* Set power back to normal operating levels. */
438 ieee80211_hw_config(local, 0);
Ben Greearb23b0252011-02-04 11:54:17 -0800439
Eliad Peller8bd2a242013-12-05 11:21:27 +0200440 if (!hw_scan) {
Ben Greearb23b0252011-02-04 11:54:17 -0800441 ieee80211_configure_filter(local);
Johannes Berga344d672014-06-12 22:24:31 +0200442 drv_sw_scan_complete(local, scan_sdata);
Stanislaw Gruszkaaacde9e2012-12-20 14:41:18 +0100443 ieee80211_offchannel_return(local);
Ben Greearb23b0252011-02-04 11:54:17 -0800444 }
445
Johannes Berg5cff20e2009-04-29 12:26:17 +0200446 ieee80211_recalc_idle(local);
Stanislaw Gruszkae229f842010-10-06 11:22:09 +0200447
Johannes Berg0a51b272008-09-08 17:44:25 +0200448 ieee80211_mlme_notify_scan_completed(local);
Johannes Berg46900292009-02-15 12:44:28 +0100449 ieee80211_ibss_notify_scan_completed(local);
Sachin Kulkarni4fa11ec2016-01-12 14:30:19 +0530450
451 /* Requeue all the work that might have been ignored while
452 * the scan was in progress; if there was none this will
453 * just be a no-op for the particular interface.
454 */
455 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
456 if (ieee80211_sdata_running(sdata))
457 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
458 }
459
Eliad Pellera2b70e82013-12-05 11:21:28 +0200460 if (was_scanning)
461 ieee80211_start_next_roc(local);
Johannes Berg0a51b272008-09-08 17:44:25 +0200462}
Johannes Berg8789d452010-08-26 13:30:26 +0200463
Avraham Stern7947d3e2016-07-05 15:23:12 +0300464void ieee80211_scan_completed(struct ieee80211_hw *hw,
465 struct cfg80211_scan_info *info)
Johannes Berg8789d452010-08-26 13:30:26 +0200466{
467 struct ieee80211_local *local = hw_to_local(hw);
468
Johannes Berg58bd7f12016-09-14 09:37:54 +0200469 trace_api_scan_completed(local, info->aborted);
Johannes Berg8789d452010-08-26 13:30:26 +0200470
471 set_bit(SCAN_COMPLETED, &local->scanning);
Avraham Stern7947d3e2016-07-05 15:23:12 +0300472 if (info->aborted)
Johannes Berg8789d452010-08-26 13:30:26 +0200473 set_bit(SCAN_ABORTED, &local->scanning);
Avraham Stern7947d3e2016-07-05 15:23:12 +0300474
475 memcpy(&local->scan_info, info, sizeof(*info));
476
Johannes Berg8789d452010-08-26 13:30:26 +0200477 ieee80211_queue_delayed_work(&local->hw, &local->scan_work, 0);
478}
Johannes Berg0a51b272008-09-08 17:44:25 +0200479EXPORT_SYMBOL(ieee80211_scan_completed);
480
Johannes Berga344d672014-06-12 22:24:31 +0200481static int ieee80211_start_sw_scan(struct ieee80211_local *local,
482 struct ieee80211_sub_if_data *sdata)
Johannes Bergf3b85252009-04-23 16:01:47 +0200483{
Johannes Bergfe57d9f2012-07-26 14:55:08 +0200484 /* Software scan is not supported in multi-channel cases */
485 if (local->use_chanctx)
486 return -EOPNOTSUPP;
487
Johannes Bergf3b85252009-04-23 16:01:47 +0200488 /*
489 * Hardware/driver doesn't support hw_scan, so use software
490 * scanning instead. First send a nullfunc frame with power save
491 * bit on so that AP will buffer the frames for us while we are not
492 * listening, then send probe requests to each channel and wait for
493 * the responses. After all channels are scanned, tune back to the
494 * original channel and send a nullfunc frame with power save bit
495 * off to trigger the AP to send us all the buffered frames.
496 *
497 * Note that while local->sw_scanning is true everything else but
498 * nullfunc frames and probe requests will be dropped in
499 * ieee80211_tx_h_check_assoc().
500 */
Johannes Berga344d672014-06-12 22:24:31 +0200501 drv_sw_scan_start(local, sdata, local->scan_addr);
Johannes Bergf3b85252009-04-23 16:01:47 +0200502
Rajkumar Manoharande312db2012-03-27 11:01:06 +0530503 local->leave_oper_channel_time = jiffies;
Helmut Schaa977923b2009-07-23 12:14:20 +0200504 local->next_scan_state = SCAN_DECISION;
Johannes Bergf3b85252009-04-23 16:01:47 +0200505 local->scan_channel_idx = 0;
506
Stanislaw Gruszkaaacde9e2012-12-20 14:41:18 +0100507 ieee80211_offchannel_stop_vifs(local);
Johannes Berga80f7c02009-12-23 13:15:32 +0100508
Seth Forshee9c35d7d2013-02-11 11:21:08 -0600509 /* ensure nullfunc is transmitted before leaving operating channel */
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +0200510 ieee80211_flush_queues(local, NULL, false);
Seth Forshee9c35d7d2013-02-11 11:21:08 -0600511
Johannes Berg3ac64be2009-08-17 16:16:53 +0200512 ieee80211_configure_filter(local);
Johannes Bergf3b85252009-04-23 16:01:47 +0200513
Ben Greear59bdf3b2011-02-07 13:44:38 -0800514 /* We need to set power level at maximum rate for scanning. */
515 ieee80211_hw_config(local, 0);
516
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400517 ieee80211_queue_delayed_work(&local->hw,
Johannes Berg07ef03e2011-11-08 16:21:21 +0100518 &local->scan_work, 0);
Johannes Bergf3b85252009-04-23 16:01:47 +0200519
520 return 0;
521}
522
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +0200523static bool ieee80211_can_scan(struct ieee80211_local *local,
524 struct ieee80211_sub_if_data *sdata)
525{
Eliad Peller5cbc95a2015-01-07 17:50:09 +0200526 if (ieee80211_is_radar_required(local))
Simon Wunderlich164eb022013-02-08 18:16:20 +0100527 return false;
528
Johannes Berg2eb278e2012-06-05 14:28:42 +0200529 if (!list_empty(&local->roc_list))
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +0200530 return false;
531
532 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +0200533 sdata->u.mgd.flags & IEEE80211_STA_CONNECTION_POLL)
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +0200534 return false;
535
536 return true;
537}
538
539void ieee80211_run_deferred_scan(struct ieee80211_local *local)
540{
541 lockdep_assert_held(&local->mtx);
542
543 if (!local->scan_req || local->scanning)
544 return;
545
Johannes Berge2fd5db2012-07-06 21:39:28 +0200546 if (!ieee80211_can_scan(local,
547 rcu_dereference_protected(
548 local->scan_sdata,
549 lockdep_is_held(&local->mtx))))
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +0200550 return;
551
552 ieee80211_queue_delayed_work(&local->hw, &local->scan_work,
553 round_jiffies_relative(0));
554}
Johannes Bergf3b85252009-04-23 16:01:47 +0200555
Johannes Berg45ad6832018-05-28 15:47:39 +0200556static void ieee80211_send_scan_probe_req(struct ieee80211_sub_if_data *sdata,
557 const u8 *src, const u8 *dst,
558 const u8 *ssid, size_t ssid_len,
559 const u8 *ie, size_t ie_len,
560 u32 ratemask, u32 flags, u32 tx_flags,
561 struct ieee80211_channel *channel)
562{
563 struct sk_buff *skb;
Johannes Bergb9771d42018-05-28 15:47:41 +0200564 u32 txdata_flags = 0;
Johannes Berg45ad6832018-05-28 15:47:39 +0200565
566 skb = ieee80211_build_probe_req(sdata, src, dst, ratemask, channel,
567 ssid, ssid_len,
568 ie, ie_len, flags);
Johannes Bergb9771d42018-05-28 15:47:41 +0200569
Johannes Berg45ad6832018-05-28 15:47:39 +0200570 if (skb) {
Johannes Bergb9771d42018-05-28 15:47:41 +0200571 if (flags & IEEE80211_PROBE_FLAG_RANDOM_SN) {
572 struct ieee80211_hdr *hdr = (void *)skb->data;
573 u16 sn = get_random_u32();
574
575 txdata_flags |= IEEE80211_TX_NO_SEQNO;
576 hdr->seq_ctrl =
577 cpu_to_le16(IEEE80211_SN_TO_SEQ(sn));
578 }
Johannes Berg45ad6832018-05-28 15:47:39 +0200579 IEEE80211_SKB_CB(skb)->flags |= tx_flags;
Johannes Bergb9771d42018-05-28 15:47:41 +0200580 ieee80211_tx_skb_tid_band(sdata, skb, 7, channel->band,
581 txdata_flags);
Johannes Berg45ad6832018-05-28 15:47:39 +0200582 }
583}
584
Ben Greear8a690672012-04-17 10:54:16 -0700585static void ieee80211_scan_state_send_probe(struct ieee80211_local *local,
586 unsigned long *next_delay)
587{
588 int i;
Johannes Berge2fd5db2012-07-06 21:39:28 +0200589 struct ieee80211_sub_if_data *sdata;
Johannes Berg6ea0a692014-11-19 11:55:49 +0100590 struct cfg80211_scan_request *scan_req;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200591 enum nl80211_band band = local->hw.conf.chandef.chan->band;
Johannes Bergb9771d42018-05-28 15:47:41 +0200592 u32 flags = 0, tx_flags;
Seth Forshee6c17b772013-02-11 11:21:07 -0600593
Johannes Berg6ea0a692014-11-19 11:55:49 +0100594 scan_req = rcu_dereference_protected(local->scan_req,
595 lockdep_is_held(&local->mtx));
596
Seth Forshee6c17b772013-02-11 11:21:07 -0600597 tx_flags = IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Johannes Berg6ea0a692014-11-19 11:55:49 +0100598 if (scan_req->no_cck)
Seth Forshee6c17b772013-02-11 11:21:07 -0600599 tx_flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
Johannes Bergb9771d42018-05-28 15:47:41 +0200600 if (scan_req->flags & NL80211_SCAN_FLAG_MIN_PREQ_CONTENT)
601 flags |= IEEE80211_PROBE_FLAG_MIN_CONTENT;
602 if (scan_req->flags & NL80211_SCAN_FLAG_RANDOM_SN)
603 flags |= IEEE80211_PROBE_FLAG_RANDOM_SN;
Ben Greear8a690672012-04-17 10:54:16 -0700604
Johannes Berge2fd5db2012-07-06 21:39:28 +0200605 sdata = rcu_dereference_protected(local->scan_sdata,
Peter Senna Tschudin316b6b52012-09-06 18:09:16 +0200606 lockdep_is_held(&local->mtx));
Johannes Berge2fd5db2012-07-06 21:39:28 +0200607
Johannes Berg6ea0a692014-11-19 11:55:49 +0100608 for (i = 0; i < scan_req->n_ssids; i++)
Johannes Berg45ad6832018-05-28 15:47:39 +0200609 ieee80211_send_scan_probe_req(
Jouni Malinene345f442016-02-26 22:12:48 +0200610 sdata, local->scan_addr, scan_req->bssid,
Johannes Berg6ea0a692014-11-19 11:55:49 +0100611 scan_req->ssids[i].ssid, scan_req->ssids[i].ssid_len,
612 scan_req->ie, scan_req->ie_len,
Johannes Bergb9771d42018-05-28 15:47:41 +0200613 scan_req->rates[band], flags,
Johannes Berg45ad6832018-05-28 15:47:39 +0200614 tx_flags, local->hw.conf.chandef.chan);
Ben Greear8a690672012-04-17 10:54:16 -0700615
616 /*
617 * After sending probe requests, wait for probe responses
618 * on the channel.
619 */
620 *next_delay = IEEE80211_CHANNEL_TIME;
621 local->next_scan_state = SCAN_DECISION;
622}
623
Johannes Bergf3b85252009-04-23 16:01:47 +0200624static int __ieee80211_start_scan(struct ieee80211_sub_if_data *sdata,
625 struct cfg80211_scan_request *req)
626{
627 struct ieee80211_local *local = sdata->local;
Johannes Berge9da68d2018-10-18 10:35:47 +0200628 bool hw_scan = local->ops->hw_scan;
Johannes Bergf3b85252009-04-23 16:01:47 +0200629 int rc;
630
Stanislaw Gruszkae229f842010-10-06 11:22:09 +0200631 lockdep_assert_held(&local->mtx);
632
Eliad Peller2726f232015-01-07 17:50:11 +0200633 if (local->scan_req || ieee80211_is_radar_required(local))
Johannes Bergf3b85252009-04-23 16:01:47 +0200634 return -EBUSY;
635
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +0200636 if (!ieee80211_can_scan(local, sdata)) {
John W. Linville6e7e6212010-02-08 16:38:38 -0500637 /* wait for the work to finish/time out */
Johannes Berg6ea0a692014-11-19 11:55:49 +0100638 rcu_assign_pointer(local->scan_req, req);
Johannes Berge2fd5db2012-07-06 21:39:28 +0200639 rcu_assign_pointer(local->scan_sdata, sdata);
Johannes Bergc0ce77b2010-02-03 10:22:31 +0100640 return 0;
641 }
642
Johannes Berge9da68d2018-10-18 10:35:47 +0200643 again:
644 if (hw_scan) {
Johannes Bergf3b85252009-04-23 16:01:47 +0200645 u8 *ies;
Johannes Bergf3b85252009-04-23 16:01:47 +0200646
David Spinadele4dcbb32014-02-11 13:45:41 +0200647 local->hw_scan_ies_bufsize = local->scan_ies_len + req->ie_len;
David Spinadelc56ef672014-02-05 15:21:13 +0200648
Johannes Berg30686bf2015-06-02 21:39:54 +0200649 if (ieee80211_hw_check(&local->hw, SINGLE_SCAN_ON_ALL_BANDS)) {
David Spinadelc56ef672014-02-05 15:21:13 +0200650 int i, n_bands = 0;
651 u8 bands_counted = 0;
652
653 for (i = 0; i < req->n_channels; i++) {
654 if (bands_counted & BIT(req->channels[i]->band))
655 continue;
656 bands_counted |= BIT(req->channels[i]->band);
657 n_bands++;
658 }
659
660 local->hw_scan_ies_bufsize *= n_bands;
661 }
662
Johannes Berg4d36ec52009-10-27 20:59:55 +0100663 local->hw_scan_req = kmalloc(
664 sizeof(*local->hw_scan_req) +
665 req->n_channels * sizeof(req->channels[0]) +
Johannes Bergc604b9f2012-11-29 12:45:18 +0100666 local->hw_scan_ies_bufsize, GFP_KERNEL);
Johannes Berg4d36ec52009-10-27 20:59:55 +0100667 if (!local->hw_scan_req)
Johannes Bergf3b85252009-04-23 16:01:47 +0200668 return -ENOMEM;
669
David Spinadelc56ef672014-02-05 15:21:13 +0200670 local->hw_scan_req->req.ssids = req->ssids;
671 local->hw_scan_req->req.n_ssids = req->n_ssids;
Johannes Berg4d36ec52009-10-27 20:59:55 +0100672 ies = (u8 *)local->hw_scan_req +
673 sizeof(*local->hw_scan_req) +
674 req->n_channels * sizeof(req->channels[0]);
David Spinadelc56ef672014-02-05 15:21:13 +0200675 local->hw_scan_req->req.ie = ies;
676 local->hw_scan_req->req.flags = req->flags;
Jouni Malinene345f442016-02-26 22:12:48 +0200677 eth_broadcast_addr(local->hw_scan_req->req.bssid);
Avraham Stern7947d3e2016-07-05 15:23:12 +0300678 local->hw_scan_req->req.duration = req->duration;
679 local->hw_scan_req->req.duration_mandatory =
680 req->duration_mandatory;
Johannes Berg4d36ec52009-10-27 20:59:55 +0100681
682 local->hw_scan_band = 0;
John W. Linville6e7e6212010-02-08 16:38:38 -0500683
684 /*
685 * After allocating local->hw_scan_req, we must
686 * go through until ieee80211_prep_hw_scan(), so
687 * anything that might be changed here and leave
688 * this function early must not go after this
689 * allocation.
690 */
Johannes Bergf3b85252009-04-23 16:01:47 +0200691 }
692
Johannes Berg6ea0a692014-11-19 11:55:49 +0100693 rcu_assign_pointer(local->scan_req, req);
Johannes Berge2fd5db2012-07-06 21:39:28 +0200694 rcu_assign_pointer(local->scan_sdata, sdata);
Johannes Bergf3b85252009-04-23 16:01:47 +0200695
Johannes Berga344d672014-06-12 22:24:31 +0200696 if (req->flags & NL80211_SCAN_FLAG_RANDOM_ADDR)
697 get_random_mask_addr(local->scan_addr,
698 req->mac_addr,
699 req->mac_addr_mask);
700 else
701 memcpy(local->scan_addr, sdata->vif.addr, ETH_ALEN);
702
Johannes Berge9da68d2018-10-18 10:35:47 +0200703 if (hw_scan) {
Helmut Schaafbe9c4292009-07-23 12:14:04 +0200704 __set_bit(SCAN_HW_SCANNING, &local->scanning);
Ben Greear8a690672012-04-17 10:54:16 -0700705 } else if ((req->n_channels == 1) &&
Karl Beldan675a0b02013-03-25 16:26:57 +0100706 (req->channels[0] == local->_oper_chandef.chan)) {
Johannes Berg9b864872012-07-26 14:38:32 +0200707 /*
708 * If we are scanning only on the operating channel
709 * then we do not need to stop normal activities
Ben Greear8a690672012-04-17 10:54:16 -0700710 */
711 unsigned long next_delay;
712
713 __set_bit(SCAN_ONCHANNEL_SCANNING, &local->scanning);
714
715 ieee80211_recalc_idle(local);
716
717 /* Notify driver scan is starting, keep order of operations
718 * same as normal software scan, in case that matters. */
Johannes Berga344d672014-06-12 22:24:31 +0200719 drv_sw_scan_start(local, sdata, local->scan_addr);
Ben Greear8a690672012-04-17 10:54:16 -0700720
721 ieee80211_configure_filter(local); /* accept probe-responses */
722
723 /* We need to ensure power level is at max for scanning. */
724 ieee80211_hw_config(local, 0);
725
Antonio Quartulli4e39cca2015-11-21 18:13:40 +0800726 if ((req->channels[0]->flags & (IEEE80211_CHAN_NO_IR |
727 IEEE80211_CHAN_RADAR)) ||
Johannes Berg6ea0a692014-11-19 11:55:49 +0100728 !req->n_ssids) {
Ben Greear8a690672012-04-17 10:54:16 -0700729 next_delay = IEEE80211_PASSIVE_CHANNEL_TIME;
730 } else {
731 ieee80211_scan_state_send_probe(local, &next_delay);
732 next_delay = IEEE80211_CHANNEL_TIME;
733 }
734
735 /* Now, just wait a bit and we are all done! */
736 ieee80211_queue_delayed_work(&local->hw, &local->scan_work,
737 next_delay);
738 return 0;
739 } else {
740 /* Do normal software scan */
Helmut Schaafbe9c4292009-07-23 12:14:04 +0200741 __set_bit(SCAN_SW_SCANNING, &local->scanning);
Ben Greear8a690672012-04-17 10:54:16 -0700742 }
John W. Linville6e7e6212010-02-08 16:38:38 -0500743
Johannes Berg5cff20e2009-04-29 12:26:17 +0200744 ieee80211_recalc_idle(local);
Johannes Bergf3b85252009-04-23 16:01:47 +0200745
Johannes Berge9da68d2018-10-18 10:35:47 +0200746 if (hw_scan) {
Johannes Berg4d36ec52009-10-27 20:59:55 +0100747 WARN_ON(!ieee80211_prep_hw_scan(local));
Johannes Berga060bbf2010-04-27 11:59:34 +0200748 rc = drv_hw_scan(local, sdata, local->hw_scan_req);
Johannes Berga344d672014-06-12 22:24:31 +0200749 } else {
750 rc = ieee80211_start_sw_scan(local, sdata);
751 }
Johannes Bergf3b85252009-04-23 16:01:47 +0200752
Johannes Bergf3b85252009-04-23 16:01:47 +0200753 if (rc) {
Johannes Berg4d36ec52009-10-27 20:59:55 +0100754 kfree(local->hw_scan_req);
755 local->hw_scan_req = NULL;
Helmut Schaafbe9c4292009-07-23 12:14:04 +0200756 local->scanning = 0;
Johannes Bergf3b85252009-04-23 16:01:47 +0200757
Johannes Berg5cff20e2009-04-29 12:26:17 +0200758 ieee80211_recalc_idle(local);
759
Johannes Bergf3b85252009-04-23 16:01:47 +0200760 local->scan_req = NULL;
Monam Agarwal0c2bef462014-03-24 00:51:43 +0530761 RCU_INIT_POINTER(local->scan_sdata, NULL);
Johannes Bergf3b85252009-04-23 16:01:47 +0200762 }
763
Johannes Berge9da68d2018-10-18 10:35:47 +0200764 if (hw_scan && rc == 1) {
765 /*
766 * we can't fall back to software for P2P-GO
767 * as it must update NoA etc.
768 */
769 if (ieee80211_vif_type_p2p(&sdata->vif) ==
770 NL80211_IFTYPE_P2P_GO)
771 return -EOPNOTSUPP;
772 hw_scan = false;
773 goto again;
774 }
775
Johannes Bergf3b85252009-04-23 16:01:47 +0200776 return rc;
777}
778
Helmut Schaadf13cce2010-02-24 14:19:21 +0100779static unsigned long
780ieee80211_scan_get_channel_time(struct ieee80211_channel *chan)
781{
782 /*
783 * TODO: channel switching also consumes quite some time,
784 * add that delay as well to get a better estimation
785 */
Antonio Quartulli4e39cca2015-11-21 18:13:40 +0800786 if (chan->flags & (IEEE80211_CHAN_NO_IR | IEEE80211_CHAN_RADAR))
Helmut Schaadf13cce2010-02-24 14:19:21 +0100787 return IEEE80211_PASSIVE_CHANNEL_TIME;
788 return IEEE80211_PROBE_DELAY + IEEE80211_CHANNEL_TIME;
789}
790
Stanislaw Gruszkae229f842010-10-06 11:22:09 +0200791static void ieee80211_scan_state_decision(struct ieee80211_local *local,
792 unsigned long *next_delay)
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200793{
Helmut Schaa142b9f52009-07-23 13:18:01 +0200794 bool associated = false;
Helmut Schaadf13cce2010-02-24 14:19:21 +0100795 bool tx_empty = true;
796 bool bad_latency;
Helmut Schaa142b9f52009-07-23 13:18:01 +0200797 struct ieee80211_sub_if_data *sdata;
Helmut Schaadf13cce2010-02-24 14:19:21 +0100798 struct ieee80211_channel *next_chan;
Sam Lefflercd2bb512012-10-11 21:03:35 -0700799 enum mac80211_scan_state next_scan_state;
Johannes Berg6ea0a692014-11-19 11:55:49 +0100800 struct cfg80211_scan_request *scan_req;
Helmut Schaa142b9f52009-07-23 13:18:01 +0200801
Helmut Schaadf13cce2010-02-24 14:19:21 +0100802 /*
803 * check if at least one STA interface is associated,
804 * check if at least one STA interface has pending tx frames
805 * and grab the lowest used beacon interval
806 */
Helmut Schaa142b9f52009-07-23 13:18:01 +0200807 mutex_lock(&local->iflist_mtx);
808 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b662009-12-23 13:15:31 +0100809 if (!ieee80211_sdata_running(sdata))
Helmut Schaa142b9f52009-07-23 13:18:01 +0200810 continue;
811
812 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
813 if (sdata->u.mgd.associated) {
814 associated = true;
Helmut Schaadf13cce2010-02-24 14:19:21 +0100815
Helmut Schaadf13cce2010-02-24 14:19:21 +0100816 if (!qdisc_all_tx_empty(sdata->dev)) {
817 tx_empty = false;
818 break;
819 }
Helmut Schaa142b9f52009-07-23 13:18:01 +0200820 }
821 }
822 }
823 mutex_unlock(&local->iflist_mtx);
824
Johannes Berg6ea0a692014-11-19 11:55:49 +0100825 scan_req = rcu_dereference_protected(local->scan_req,
826 lockdep_is_held(&local->mtx));
827
828 next_chan = scan_req->channels[local->scan_channel_idx];
Ben Greearb23b0252011-02-04 11:54:17 -0800829
Johannes Berg07ef03e2011-11-08 16:21:21 +0100830 /*
831 * we're currently scanning a different channel, let's
832 * see if we can scan another channel without interfering
833 * with the current traffic situation.
834 *
Stanislaw Gruszka3f892b62013-01-23 12:32:45 +0100835 * Keep good latency, do not stay off-channel more than 125 ms.
Johannes Berg07ef03e2011-11-08 16:21:21 +0100836 */
Helmut Schaadf13cce2010-02-24 14:19:21 +0100837
Johannes Berg07ef03e2011-11-08 16:21:21 +0100838 bad_latency = time_after(jiffies +
Stanislaw Gruszka3f892b62013-01-23 12:32:45 +0100839 ieee80211_scan_get_channel_time(next_chan),
840 local->leave_oper_channel_time + HZ / 8);
Helmut Schaadf13cce2010-02-24 14:19:21 +0100841
Sam Lefflercd2bb512012-10-11 21:03:35 -0700842 if (associated && !tx_empty) {
Johannes Berg6ea0a692014-11-19 11:55:49 +0100843 if (scan_req->flags & NL80211_SCAN_FLAG_LOW_PRIORITY)
Sam Lefflercd2bb512012-10-11 21:03:35 -0700844 next_scan_state = SCAN_ABORT;
845 else
846 next_scan_state = SCAN_SUSPEND;
Stanislaw Gruszka3f892b62013-01-23 12:32:45 +0100847 } else if (associated && bad_latency) {
Sam Lefflercd2bb512012-10-11 21:03:35 -0700848 next_scan_state = SCAN_SUSPEND;
849 } else {
850 next_scan_state = SCAN_SET_CHANNEL;
851 }
852
853 local->next_scan_state = next_scan_state;
Helmut Schaa142b9f52009-07-23 13:18:01 +0200854
Helmut Schaa2fb3f022009-07-23 12:13:56 +0200855 *next_delay = 0;
Helmut Schaa2fb3f022009-07-23 12:13:56 +0200856}
857
858static void ieee80211_scan_state_set_channel(struct ieee80211_local *local,
859 unsigned long *next_delay)
860{
861 int skip;
862 struct ieee80211_channel *chan;
Simon Wunderlich7ca15a02013-07-08 16:55:56 +0200863 enum nl80211_bss_scan_width oper_scan_width;
Johannes Berg6ea0a692014-11-19 11:55:49 +0100864 struct cfg80211_scan_request *scan_req;
865
866 scan_req = rcu_dereference_protected(local->scan_req,
867 lockdep_is_held(&local->mtx));
Helmut Schaa2fb3f022009-07-23 12:13:56 +0200868
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200869 skip = 0;
Johannes Berg6ea0a692014-11-19 11:55:49 +0100870 chan = scan_req->channels[local->scan_channel_idx];
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200871
Simon Wunderlich7ca15a02013-07-08 16:55:56 +0200872 local->scan_chandef.chan = chan;
873 local->scan_chandef.center_freq1 = chan->center_freq;
874 local->scan_chandef.center_freq2 = 0;
Johannes Berg6ea0a692014-11-19 11:55:49 +0100875 switch (scan_req->scan_width) {
Simon Wunderlich7ca15a02013-07-08 16:55:56 +0200876 case NL80211_BSS_CHAN_WIDTH_5:
877 local->scan_chandef.width = NL80211_CHAN_WIDTH_5;
878 break;
879 case NL80211_BSS_CHAN_WIDTH_10:
880 local->scan_chandef.width = NL80211_CHAN_WIDTH_10;
881 break;
882 case NL80211_BSS_CHAN_WIDTH_20:
883 /* If scanning on oper channel, use whatever channel-type
884 * is currently in use.
885 */
886 oper_scan_width = cfg80211_chandef_to_scan_width(
887 &local->_oper_chandef);
888 if (chan == local->_oper_chandef.chan &&
Johannes Berg6ea0a692014-11-19 11:55:49 +0100889 oper_scan_width == scan_req->scan_width)
Simon Wunderlich7ca15a02013-07-08 16:55:56 +0200890 local->scan_chandef = local->_oper_chandef;
891 else
892 local->scan_chandef.width = NL80211_CHAN_WIDTH_20_NOHT;
893 break;
894 }
Ben Greearb23b0252011-02-04 11:54:17 -0800895
Johannes Berg07ef03e2011-11-08 16:21:21 +0100896 if (ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL))
897 skip = 1;
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200898
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200899 /* advance state machine to next channel/band */
900 local->scan_channel_idx++;
901
Helmut Schaa0ee9c132009-07-25 17:25:51 +0200902 if (skip) {
903 /* if we skip this channel return to the decision state */
904 local->next_scan_state = SCAN_DECISION;
Helmut Schaa2fb3f022009-07-23 12:13:56 +0200905 return;
Helmut Schaa0ee9c132009-07-25 17:25:51 +0200906 }
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200907
908 /*
909 * Probe delay is used to update the NAV, cf. 11.1.3.2.2
910 * (which unfortunately doesn't say _why_ step a) is done,
911 * but it waits for the probe delay or until a frame is
912 * received - and the received frame would update the NAV).
913 * For now, we do not support waiting until a frame is
914 * received.
915 *
916 * In any case, it is not necessary for a passive scan.
917 */
Antonio Quartulli4e39cca2015-11-21 18:13:40 +0800918 if ((chan->flags & (IEEE80211_CHAN_NO_IR | IEEE80211_CHAN_RADAR)) ||
919 !scan_req->n_ssids) {
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200920 *next_delay = IEEE80211_PASSIVE_CHANNEL_TIME;
Helmut Schaa977923b2009-07-23 12:14:20 +0200921 local->next_scan_state = SCAN_DECISION;
Helmut Schaa2fb3f022009-07-23 12:13:56 +0200922 return;
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200923 }
924
Helmut Schaa2fb3f022009-07-23 12:13:56 +0200925 /* active scan, send probes */
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200926 *next_delay = IEEE80211_PROBE_DELAY;
Helmut Schaa977923b2009-07-23 12:14:20 +0200927 local->next_scan_state = SCAN_SEND_PROBE;
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200928}
929
Johannes Berg07ef03e2011-11-08 16:21:21 +0100930static void ieee80211_scan_state_suspend(struct ieee80211_local *local,
931 unsigned long *next_delay)
932{
933 /* switch back to the operating channel */
Simon Wunderlich7ca15a02013-07-08 16:55:56 +0200934 local->scan_chandef.chan = NULL;
Johannes Berg07ef03e2011-11-08 16:21:21 +0100935 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
936
Stanislaw Gruszkaaacde9e2012-12-20 14:41:18 +0100937 /* disable PS */
938 ieee80211_offchannel_return(local);
Johannes Berg07ef03e2011-11-08 16:21:21 +0100939
940 *next_delay = HZ / 5;
941 /* afterwards, resume scan & go to next channel */
942 local->next_scan_state = SCAN_RESUME;
943}
944
945static void ieee80211_scan_state_resume(struct ieee80211_local *local,
946 unsigned long *next_delay)
947{
Stanislaw Gruszkaaacde9e2012-12-20 14:41:18 +0100948 ieee80211_offchannel_stop_vifs(local);
Johannes Berg07ef03e2011-11-08 16:21:21 +0100949
950 if (local->ops->flush) {
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +0200951 ieee80211_flush_queues(local, NULL, false);
Johannes Berg07ef03e2011-11-08 16:21:21 +0100952 *next_delay = 0;
953 } else
954 *next_delay = HZ / 10;
955
956 /* remember when we left the operating channel */
957 local->leave_oper_channel_time = jiffies;
958
959 /* advance to the next channel to be scanned */
Mohammed Shafi Shajakhande2ee842011-12-24 18:43:28 +0530960 local->next_scan_state = SCAN_SET_CHANNEL;
Johannes Berg07ef03e2011-11-08 16:21:21 +0100961}
962
Johannes Bergc2b13452008-09-11 00:01:55 +0200963void ieee80211_scan_work(struct work_struct *work)
Johannes Berg0a51b272008-09-08 17:44:25 +0200964{
965 struct ieee80211_local *local =
966 container_of(work, struct ieee80211_local, scan_work.work);
Johannes Bergd07bfd82011-03-07 15:48:41 +0100967 struct ieee80211_sub_if_data *sdata;
Johannes Berg6ea0a692014-11-19 11:55:49 +0100968 struct cfg80211_scan_request *scan_req;
Johannes Berg0a51b272008-09-08 17:44:25 +0200969 unsigned long next_delay = 0;
Eliad Peller8bd2a242013-12-05 11:21:27 +0200970 bool aborted;
Johannes Berg8789d452010-08-26 13:30:26 +0200971
Johannes Berga1699b72010-07-30 16:46:07 +0200972 mutex_lock(&local->mtx);
Stanislaw Gruszka259b62e2010-10-06 11:22:08 +0200973
Luciano Coelho332ff7f2015-01-22 23:34:10 +0200974 if (!ieee80211_can_run_worker(local)) {
975 aborted = true;
976 goto out_complete;
977 }
978
Johannes Berge2fd5db2012-07-06 21:39:28 +0200979 sdata = rcu_dereference_protected(local->scan_sdata,
980 lockdep_is_held(&local->mtx));
Johannes Berg6ea0a692014-11-19 11:55:49 +0100981 scan_req = rcu_dereference_protected(local->scan_req,
982 lockdep_is_held(&local->mtx));
Johannes Bergd07bfd82011-03-07 15:48:41 +0100983
Ben Greear8a690672012-04-17 10:54:16 -0700984 /* When scanning on-channel, the first-callback means completed. */
985 if (test_bit(SCAN_ONCHANNEL_SCANNING, &local->scanning)) {
986 aborted = test_and_clear_bit(SCAN_ABORTED, &local->scanning);
987 goto out_complete;
988 }
989
Stanislaw Gruszka259b62e2010-10-06 11:22:08 +0200990 if (test_and_clear_bit(SCAN_COMPLETED, &local->scanning)) {
991 aborted = test_and_clear_bit(SCAN_ABORTED, &local->scanning);
992 goto out_complete;
Johannes Bergf3b85252009-04-23 16:01:47 +0200993 }
994
Johannes Berg6ea0a692014-11-19 11:55:49 +0100995 if (!sdata || !scan_req)
Stanislaw Gruszka259b62e2010-10-06 11:22:08 +0200996 goto out;
997
Eliad Pellerff5db432014-11-12 10:08:29 +0200998 if (!local->scanning) {
Johannes Bergf3b85252009-04-23 16:01:47 +0200999 int rc;
1000
Johannes Berg6ea0a692014-11-19 11:55:49 +01001001 RCU_INIT_POINTER(local->scan_req, NULL);
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301002 RCU_INIT_POINTER(local->scan_sdata, NULL);
Johannes Bergf3b85252009-04-23 16:01:47 +02001003
Johannes Berg6ea0a692014-11-19 11:55:49 +01001004 rc = __ieee80211_start_scan(sdata, scan_req);
Stanislaw Gruszka259b62e2010-10-06 11:22:08 +02001005 if (rc) {
Stanislaw Gruszka3aed49e2010-10-06 11:22:12 +02001006 /* need to complete scan in cfg80211 */
Johannes Berg6ea0a692014-11-19 11:55:49 +01001007 rcu_assign_pointer(local->scan_req, scan_req);
Stanislaw Gruszka259b62e2010-10-06 11:22:08 +02001008 aborted = true;
1009 goto out_complete;
1010 } else
1011 goto out;
Johannes Bergf3b85252009-04-23 16:01:47 +02001012 }
1013
Johannes Berg5bc75722008-09-11 00:01:51 +02001014 /*
Helmut Schaaf502d092009-07-23 12:13:48 +02001015 * as long as no delay is required advance immediately
1016 * without scheduling a new work
1017 */
1018 do {
Rajkumar Manoharanc29acf22011-05-14 09:43:28 +05301019 if (!ieee80211_sdata_running(sdata)) {
1020 aborted = true;
1021 goto out_complete;
1022 }
1023
Helmut Schaa977923b2009-07-23 12:14:20 +02001024 switch (local->next_scan_state) {
Helmut Schaa2fb3f022009-07-23 12:13:56 +02001025 case SCAN_DECISION:
Stanislaw Gruszkae229f842010-10-06 11:22:09 +02001026 /* if no more bands/channels left, complete scan */
Johannes Berg6ea0a692014-11-19 11:55:49 +01001027 if (local->scan_channel_idx >= scan_req->n_channels) {
Stanislaw Gruszkae229f842010-10-06 11:22:09 +02001028 aborted = false;
1029 goto out_complete;
1030 }
1031 ieee80211_scan_state_decision(local, &next_delay);
Helmut Schaaf502d092009-07-23 12:13:48 +02001032 break;
Helmut Schaa2fb3f022009-07-23 12:13:56 +02001033 case SCAN_SET_CHANNEL:
1034 ieee80211_scan_state_set_channel(local, &next_delay);
1035 break;
Helmut Schaaf502d092009-07-23 12:13:48 +02001036 case SCAN_SEND_PROBE:
1037 ieee80211_scan_state_send_probe(local, &next_delay);
1038 break;
Johannes Berg07ef03e2011-11-08 16:21:21 +01001039 case SCAN_SUSPEND:
1040 ieee80211_scan_state_suspend(local, &next_delay);
Helmut Schaa142b9f52009-07-23 13:18:01 +02001041 break;
Johannes Berg07ef03e2011-11-08 16:21:21 +01001042 case SCAN_RESUME:
1043 ieee80211_scan_state_resume(local, &next_delay);
Helmut Schaa142b9f52009-07-23 13:18:01 +02001044 break;
Sam Lefflercd2bb512012-10-11 21:03:35 -07001045 case SCAN_ABORT:
1046 aborted = true;
1047 goto out_complete;
Helmut Schaaf502d092009-07-23 12:13:48 +02001048 }
1049 } while (next_delay == 0);
Johannes Berg0a51b272008-09-08 17:44:25 +02001050
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001051 ieee80211_queue_delayed_work(&local->hw, &local->scan_work, next_delay);
Johannes Bergd07bfd82011-03-07 15:48:41 +01001052 goto out;
Stanislaw Gruszka259b62e2010-10-06 11:22:08 +02001053
1054out_complete:
Eliad Peller8bd2a242013-12-05 11:21:27 +02001055 __ieee80211_scan_completed(&local->hw, aborted);
Stanislaw Gruszka259b62e2010-10-06 11:22:08 +02001056out:
1057 mutex_unlock(&local->mtx);
Johannes Berg0a51b272008-09-08 17:44:25 +02001058}
1059
Johannes Bergc2b13452008-09-11 00:01:55 +02001060int ieee80211_request_scan(struct ieee80211_sub_if_data *sdata,
Johannes Berg2a519312009-02-10 21:25:55 +01001061 struct cfg80211_scan_request *req)
Johannes Berg0a51b272008-09-08 17:44:25 +02001062{
Johannes Bergf3b85252009-04-23 16:01:47 +02001063 int res;
1064
Johannes Berga1699b72010-07-30 16:46:07 +02001065 mutex_lock(&sdata->local->mtx);
Johannes Bergf3b85252009-04-23 16:01:47 +02001066 res = __ieee80211_start_scan(sdata, req);
Johannes Berga1699b72010-07-30 16:46:07 +02001067 mutex_unlock(&sdata->local->mtx);
Johannes Bergf3b85252009-04-23 16:01:47 +02001068
1069 return res;
1070}
1071
Stanislaw Gruszka34bcf712012-12-11 10:48:23 +01001072int ieee80211_request_ibss_scan(struct ieee80211_sub_if_data *sdata,
1073 const u8 *ssid, u8 ssid_len,
Janusz.Dziedzic@tieto.com76bed0f2015-03-20 06:37:00 +01001074 struct ieee80211_channel **channels,
1075 unsigned int n_channels,
Simon Wunderlich7ca15a02013-07-08 16:55:56 +02001076 enum nl80211_bss_scan_width scan_width)
Johannes Bergf3b85252009-04-23 16:01:47 +02001077{
Johannes Berg0a51b272008-09-08 17:44:25 +02001078 struct ieee80211_local *local = sdata->local;
Janusz.Dziedzic@tieto.com76bed0f2015-03-20 06:37:00 +01001079 int ret = -EBUSY, i, n_ch = 0;
Johannes Berg57fbcce2016-04-12 15:56:15 +02001080 enum nl80211_band band;
Johannes Berg0a51b272008-09-08 17:44:25 +02001081
Johannes Berga1699b72010-07-30 16:46:07 +02001082 mutex_lock(&local->mtx);
Johannes Berg2a519312009-02-10 21:25:55 +01001083
Johannes Bergf3b85252009-04-23 16:01:47 +02001084 /* busy scanning */
1085 if (local->scan_req)
1086 goto unlock;
Johannes Berg2a519312009-02-10 21:25:55 +01001087
Johannes Bergbe4a4b62010-05-03 08:49:48 +02001088 /* fill internal scan request */
Janusz.Dziedzic@tieto.com76bed0f2015-03-20 06:37:00 +01001089 if (!channels) {
1090 int max_n;
Johannes Bergbe4a4b62010-05-03 08:49:48 +02001091
Johannes Berg57fbcce2016-04-12 15:56:15 +02001092 for (band = 0; band < NUM_NL80211_BANDS; band++) {
Johannes Bergbe4a4b62010-05-03 08:49:48 +02001093 if (!local->hw.wiphy->bands[band])
1094 continue;
Stanislaw Gruszka34bcf712012-12-11 10:48:23 +01001095
1096 max_n = local->hw.wiphy->bands[band]->n_channels;
1097 for (i = 0; i < max_n; i++) {
1098 struct ieee80211_channel *tmp_ch =
Johannes Bergbe4a4b62010-05-03 08:49:48 +02001099 &local->hw.wiphy->bands[band]->channels[i];
Stanislaw Gruszka34bcf712012-12-11 10:48:23 +01001100
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +02001101 if (tmp_ch->flags & (IEEE80211_CHAN_NO_IR |
Stanislaw Gruszka34bcf712012-12-11 10:48:23 +01001102 IEEE80211_CHAN_DISABLED))
1103 continue;
1104
1105 local->int_scan_req->channels[n_ch] = tmp_ch;
1106 n_ch++;
Johannes Bergbe4a4b62010-05-03 08:49:48 +02001107 }
1108 }
1109
Stanislaw Gruszka34bcf712012-12-11 10:48:23 +01001110 if (WARN_ON_ONCE(n_ch == 0))
1111 goto unlock;
1112
1113 local->int_scan_req->n_channels = n_ch;
Johannes Bergbe4a4b62010-05-03 08:49:48 +02001114 } else {
Janusz.Dziedzic@tieto.com76bed0f2015-03-20 06:37:00 +01001115 for (i = 0; i < n_channels; i++) {
1116 if (channels[i]->flags & (IEEE80211_CHAN_NO_IR |
1117 IEEE80211_CHAN_DISABLED))
1118 continue;
1119
1120 local->int_scan_req->channels[n_ch] = channels[i];
1121 n_ch++;
1122 }
1123
1124 if (WARN_ON_ONCE(n_ch == 0))
Stanislaw Gruszka34bcf712012-12-11 10:48:23 +01001125 goto unlock;
1126
Janusz.Dziedzic@tieto.com76bed0f2015-03-20 06:37:00 +01001127 local->int_scan_req->n_channels = n_ch;
Johannes Bergbe4a4b62010-05-03 08:49:48 +02001128 }
1129
1130 local->int_scan_req->ssids = &local->scan_ssid;
1131 local->int_scan_req->n_ssids = 1;
Simon Wunderlich7ca15a02013-07-08 16:55:56 +02001132 local->int_scan_req->scan_width = scan_width;
Johannes Berg5ba63532009-08-07 17:54:07 +02001133 memcpy(local->int_scan_req->ssids[0].ssid, ssid, IEEE80211_MAX_SSID_LEN);
1134 local->int_scan_req->ssids[0].ssid_len = ssid_len;
Johannes Berg2a519312009-02-10 21:25:55 +01001135
Johannes Berg5ba63532009-08-07 17:54:07 +02001136 ret = __ieee80211_start_scan(sdata, sdata->local->int_scan_req);
Johannes Bergf3b85252009-04-23 16:01:47 +02001137 unlock:
Johannes Berga1699b72010-07-30 16:46:07 +02001138 mutex_unlock(&local->mtx);
Johannes Bergf3b85252009-04-23 16:01:47 +02001139 return ret;
Johannes Berg0a51b272008-09-08 17:44:25 +02001140}
Johannes Berg5bb644a2009-05-17 11:40:42 +02001141
Stanislaw Gruszka4136c422010-10-06 11:22:10 +02001142/*
1143 * Only call this function when a scan can't be queued -- under RTNL.
1144 */
Johannes Berg5bb644a2009-05-17 11:40:42 +02001145void ieee80211_scan_cancel(struct ieee80211_local *local)
1146{
Johannes Berg5bb644a2009-05-17 11:40:42 +02001147 /*
Eliad Pellerb8564392011-06-13 12:47:30 +03001148 * We are canceling software scan, or deferred scan that was not
Stanislaw Gruszka4136c422010-10-06 11:22:10 +02001149 * yet really started (see __ieee80211_start_scan ).
1150 *
1151 * Regarding hardware scan:
1152 * - we can not call __ieee80211_scan_completed() as when
1153 * SCAN_HW_SCANNING bit is set this function change
1154 * local->hw_scan_req to operate on 5G band, what race with
1155 * driver which can use local->hw_scan_req
1156 *
1157 * - we can not cancel scan_work since driver can schedule it
1158 * by ieee80211_scan_completed(..., true) to finish scan
1159 *
Eliad Pellerb8564392011-06-13 12:47:30 +03001160 * Hence we only call the cancel_hw_scan() callback, but the low-level
1161 * driver is still responsible for calling ieee80211_scan_completed()
1162 * after the scan was completed/aborted.
Johannes Berg5bb644a2009-05-17 11:40:42 +02001163 */
Stanislaw Gruszka4136c422010-10-06 11:22:10 +02001164
Johannes Berga1699b72010-07-30 16:46:07 +02001165 mutex_lock(&local->mtx);
Eliad Pellerb8564392011-06-13 12:47:30 +03001166 if (!local->scan_req)
1167 goto out;
1168
Emmanuel Grumbacha7540552013-09-16 11:12:07 +03001169 /*
1170 * We have a scan running and the driver already reported completion,
1171 * but the worker hasn't run yet or is stuck on the mutex - mark it as
1172 * cancelled.
1173 */
1174 if (test_bit(SCAN_HW_SCANNING, &local->scanning) &&
1175 test_bit(SCAN_COMPLETED, &local->scanning)) {
1176 set_bit(SCAN_HW_CANCELLED, &local->scanning);
1177 goto out;
1178 }
1179
Eliad Pellerb8564392011-06-13 12:47:30 +03001180 if (test_bit(SCAN_HW_SCANNING, &local->scanning)) {
Emmanuel Grumbacha7540552013-09-16 11:12:07 +03001181 /*
1182 * Make sure that __ieee80211_scan_completed doesn't trigger a
1183 * scan on another band.
1184 */
1185 set_bit(SCAN_HW_CANCELLED, &local->scanning);
Eliad Pellerb8564392011-06-13 12:47:30 +03001186 if (local->ops->cancel_hw_scan)
Johannes Berge2fd5db2012-07-06 21:39:28 +02001187 drv_cancel_hw_scan(local,
1188 rcu_dereference_protected(local->scan_sdata,
1189 lockdep_is_held(&local->mtx)));
Eliad Pellerb8564392011-06-13 12:47:30 +03001190 goto out;
Stanislaw Gruszka4136c422010-10-06 11:22:10 +02001191 }
Eliad Pellerb8564392011-06-13 12:47:30 +03001192
1193 /*
1194 * If the work is currently running, it must be blocked on
1195 * the mutex, but we'll set scan_sdata = NULL and it'll
1196 * simply exit once it acquires the mutex.
1197 */
1198 cancel_delayed_work(&local->scan_work);
1199 /* and clean up */
Avraham Stern7947d3e2016-07-05 15:23:12 +03001200 memset(&local->scan_info, 0, sizeof(local->scan_info));
Eliad Peller8bd2a242013-12-05 11:21:27 +02001201 __ieee80211_scan_completed(&local->hw, true);
Eliad Pellerb8564392011-06-13 12:47:30 +03001202out:
Johannes Bergd07bfd82011-03-07 15:48:41 +01001203 mutex_unlock(&local->mtx);
Johannes Berg5bb644a2009-05-17 11:40:42 +02001204}
Luciano Coelho79f460c2011-05-11 17:09:36 +03001205
David Spinadeld43c6b62013-12-08 21:48:57 +02001206int __ieee80211_request_sched_scan_start(struct ieee80211_sub_if_data *sdata,
1207 struct cfg80211_sched_scan_request *req)
Luciano Coelho79f460c2011-05-11 17:09:36 +03001208{
1209 struct ieee80211_local *local = sdata->local;
David Spinadel633e2712014-02-06 16:15:23 +02001210 struct ieee80211_scan_ies sched_scan_ies = {};
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001211 struct cfg80211_chan_def chandef;
David Spinadel633e2712014-02-06 16:15:23 +02001212 int ret, i, iebufsz, num_bands = 0;
Johannes Berg57fbcce2016-04-12 15:56:15 +02001213 u32 rate_masks[NUM_NL80211_BANDS] = {};
David Spinadel633e2712014-02-06 16:15:23 +02001214 u8 bands_used = 0;
1215 u8 *ie;
Johannes Bergb9771d42018-05-28 15:47:41 +02001216 u32 flags = 0;
Johannes Bergc604b9f2012-11-29 12:45:18 +01001217
David Spinadele4dcbb32014-02-11 13:45:41 +02001218 iebufsz = local->scan_ies_len + req->ie_len;
Luciano Coelho79f460c2011-05-11 17:09:36 +03001219
David Spinadeld43c6b62013-12-08 21:48:57 +02001220 lockdep_assert_held(&local->mtx);
Luciano Coelho79f460c2011-05-11 17:09:36 +03001221
David Spinadeld43c6b62013-12-08 21:48:57 +02001222 if (!local->ops->sched_scan_start)
1223 return -ENOTSUPP;
Luciano Coelho79f460c2011-05-11 17:09:36 +03001224
Johannes Berg57fbcce2016-04-12 15:56:15 +02001225 for (i = 0; i < NUM_NL80211_BANDS; i++) {
David Spinadel633e2712014-02-06 16:15:23 +02001226 if (local->hw.wiphy->bands[i]) {
1227 bands_used |= BIT(i);
1228 rate_masks[i] = (u32) -1;
1229 num_bands++;
Luciano Coelho79f460c2011-05-11 17:09:36 +03001230 }
Luciano Coelho79f460c2011-05-11 17:09:36 +03001231 }
1232
Johannes Bergb9771d42018-05-28 15:47:41 +02001233 if (req->flags & NL80211_SCAN_FLAG_MIN_PREQ_CONTENT)
1234 flags |= IEEE80211_PROBE_FLAG_MIN_CONTENT;
1235
Kees Cook6396bb22018-06-12 14:03:40 -07001236 ie = kcalloc(iebufsz, num_bands, GFP_KERNEL);
David Spinadel633e2712014-02-06 16:15:23 +02001237 if (!ie) {
1238 ret = -ENOMEM;
1239 goto out;
1240 }
1241
1242 ieee80211_prepare_scan_chandef(&chandef, req->scan_width);
1243
Kirtika Ruchandanicd5861b2016-11-23 20:45:49 -08001244 ieee80211_build_preq_ies(local, ie, num_bands * iebufsz,
1245 &sched_scan_ies, req->ie,
Johannes Berg00387f32018-05-28 15:47:38 +02001246 req->ie_len, bands_used, rate_masks, &chandef,
Johannes Bergb9771d42018-05-28 15:47:41 +02001247 flags);
David Spinadel633e2712014-02-06 16:15:23 +02001248
Johannes Berg30dd3ed2012-09-04 19:15:01 +02001249 ret = drv_sched_scan_start(local, sdata, req, &sched_scan_ies);
David Spinadeld43c6b62013-12-08 21:48:57 +02001250 if (ret == 0) {
Johannes Berg5260a5b2012-07-06 21:55:11 +02001251 rcu_assign_pointer(local->sched_scan_sdata, sdata);
Johannes Berg6ea0a692014-11-19 11:55:49 +01001252 rcu_assign_pointer(local->sched_scan_req, req);
David Spinadeld43c6b62013-12-08 21:48:57 +02001253 }
Luciano Coelho79f460c2011-05-11 17:09:36 +03001254
David Spinadel633e2712014-02-06 16:15:23 +02001255 kfree(ie);
David Spinadeld43c6b62013-12-08 21:48:57 +02001256
David Spinadel633e2712014-02-06 16:15:23 +02001257out:
David Spinadeld43c6b62013-12-08 21:48:57 +02001258 if (ret) {
1259 /* Clean in case of failure after HW restart or upon resume. */
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301260 RCU_INIT_POINTER(local->sched_scan_sdata, NULL);
Johannes Berg6ea0a692014-11-19 11:55:49 +01001261 RCU_INIT_POINTER(local->sched_scan_req, NULL);
David Spinadeld43c6b62013-12-08 21:48:57 +02001262 }
1263
1264 return ret;
1265}
1266
1267int ieee80211_request_sched_scan_start(struct ieee80211_sub_if_data *sdata,
1268 struct cfg80211_sched_scan_request *req)
1269{
1270 struct ieee80211_local *local = sdata->local;
1271 int ret;
1272
1273 mutex_lock(&local->mtx);
1274
1275 if (rcu_access_pointer(local->sched_scan_sdata)) {
1276 mutex_unlock(&local->mtx);
1277 return -EBUSY;
1278 }
1279
1280 ret = __ieee80211_request_sched_scan_start(sdata, req);
1281
Johannes Berg5260a5b2012-07-06 21:55:11 +02001282 mutex_unlock(&local->mtx);
Luciano Coelho79f460c2011-05-11 17:09:36 +03001283 return ret;
1284}
1285
Eliad Peller0d440ea2015-10-25 10:59:33 +02001286int ieee80211_request_sched_scan_stop(struct ieee80211_local *local)
Luciano Coelho79f460c2011-05-11 17:09:36 +03001287{
Eliad Peller0d440ea2015-10-25 10:59:33 +02001288 struct ieee80211_sub_if_data *sched_scan_sdata;
1289 int ret = -ENOENT;
Luciano Coelho79f460c2011-05-11 17:09:36 +03001290
Johannes Berg5260a5b2012-07-06 21:55:11 +02001291 mutex_lock(&local->mtx);
Luciano Coelho79f460c2011-05-11 17:09:36 +03001292
1293 if (!local->ops->sched_scan_stop) {
1294 ret = -ENOTSUPP;
1295 goto out;
1296 }
1297
David Spinadeld43c6b62013-12-08 21:48:57 +02001298 /* We don't want to restart sched scan anymore. */
Johannes Berg6ea0a692014-11-19 11:55:49 +01001299 RCU_INIT_POINTER(local->sched_scan_req, NULL);
David Spinadeld43c6b62013-12-08 21:48:57 +02001300
Eliad Peller0d440ea2015-10-25 10:59:33 +02001301 sched_scan_sdata = rcu_dereference_protected(local->sched_scan_sdata,
1302 lockdep_is_held(&local->mtx));
1303 if (sched_scan_sdata) {
1304 ret = drv_sched_scan_stop(local, sched_scan_sdata);
Alexander Bondar71228a12014-03-16 10:49:54 +02001305 if (!ret)
Andreea-Cristina Bernatad053a92014-08-22 16:14:49 +03001306 RCU_INIT_POINTER(local->sched_scan_sdata, NULL);
Alexander Bondar71228a12014-03-16 10:49:54 +02001307 }
Luciano Coelho79f460c2011-05-11 17:09:36 +03001308out:
Johannes Berg5260a5b2012-07-06 21:55:11 +02001309 mutex_unlock(&local->mtx);
Luciano Coelho79f460c2011-05-11 17:09:36 +03001310
1311 return ret;
1312}
1313
1314void ieee80211_sched_scan_results(struct ieee80211_hw *hw)
1315{
1316 struct ieee80211_local *local = hw_to_local(hw);
1317
1318 trace_api_sched_scan_results(local);
1319
Arend Van Sprielb34939b2017-04-28 13:40:28 +01001320 cfg80211_sched_scan_results(hw->wiphy, 0);
Luciano Coelho79f460c2011-05-11 17:09:36 +03001321}
1322EXPORT_SYMBOL(ieee80211_sched_scan_results);
1323
Johannes Bergf6837ba2014-04-30 14:19:04 +02001324void ieee80211_sched_scan_end(struct ieee80211_local *local)
Luciano Coelho85a99942011-05-12 16:28:29 +03001325{
Luciano Coelho85a99942011-05-12 16:28:29 +03001326 mutex_lock(&local->mtx);
1327
Johannes Berg5260a5b2012-07-06 21:55:11 +02001328 if (!rcu_access_pointer(local->sched_scan_sdata)) {
Luciano Coelho85a99942011-05-12 16:28:29 +03001329 mutex_unlock(&local->mtx);
1330 return;
1331 }
1332
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301333 RCU_INIT_POINTER(local->sched_scan_sdata, NULL);
Luciano Coelho85a99942011-05-12 16:28:29 +03001334
David Spinadeld43c6b62013-12-08 21:48:57 +02001335 /* If sched scan was aborted by the driver. */
Johannes Berg6ea0a692014-11-19 11:55:49 +01001336 RCU_INIT_POINTER(local->sched_scan_req, NULL);
David Spinadeld43c6b62013-12-08 21:48:57 +02001337
Luciano Coelho85a99942011-05-12 16:28:29 +03001338 mutex_unlock(&local->mtx);
1339
Arend Van Sprielb34939b2017-04-28 13:40:28 +01001340 cfg80211_sched_scan_stopped(local->hw.wiphy, 0);
Luciano Coelho85a99942011-05-12 16:28:29 +03001341}
1342
Johannes Bergf6837ba2014-04-30 14:19:04 +02001343void ieee80211_sched_scan_stopped_work(struct work_struct *work)
1344{
1345 struct ieee80211_local *local =
1346 container_of(work, struct ieee80211_local,
1347 sched_scan_stopped_work);
1348
1349 ieee80211_sched_scan_end(local);
1350}
1351
Luciano Coelho79f460c2011-05-11 17:09:36 +03001352void ieee80211_sched_scan_stopped(struct ieee80211_hw *hw)
1353{
1354 struct ieee80211_local *local = hw_to_local(hw);
1355
1356 trace_api_sched_scan_stopped(local);
1357
Eliad Peller2bc533b2016-01-05 16:28:06 +02001358 /*
1359 * this shouldn't really happen, so for simplicity
1360 * simply ignore it, and let mac80211 reconfigure
1361 * the sched scan later on.
1362 */
1363 if (local->in_reconfig)
1364 return;
1365
Johannes Berg18db5942013-11-06 10:34:36 +01001366 schedule_work(&local->sched_scan_stopped_work);
Luciano Coelho79f460c2011-05-11 17:09:36 +03001367}
1368EXPORT_SYMBOL(ieee80211_sched_scan_stopped);