blob: fdac8192a5198886986e0a7e0f6d33e8e5f17156 [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 */
Emmanuel Grumbach7bb106e2020-02-14 23:23:38 +0100204 signal_valid = channel == cbss->channel;
Sara Sharon74d803b2015-06-03 10:44:17 +0300205 if (!signal_valid)
206 rx_status->flag |= RX_FLAG_NO_SIGNAL_VAL;
Johannes Berg00d3f142009-02-10 21:26:00 +0100207
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100208 bss = (void *)cbss->priv;
Sara Sharonfcea7db2019-01-16 20:35:38 +0200209 ieee80211_update_bss_from_elems(local, bss, &elems, rx_status, beacon);
Alexander Bondar817cee72013-05-19 14:23:57 +0300210
Sara Sharon78ac51f2019-01-16 18:22:56 +0200211 list_for_each_entry(non_tx_cbss, &cbss->nontrans_list, nontrans_list) {
212 non_tx_bss = (void *)non_tx_cbss->priv;
213
214 ieee80211_update_bss_from_elems(local, non_tx_bss, &elems,
215 rx_status, beacon);
216 }
217
Johannes Berg5484e232008-09-08 17:44:27 +0200218 return bss;
219}
Johannes Berg0a51b272008-09-08 17:44:25 +0200220
Roee Zamir40b0bd22017-08-06 11:38:23 +0300221static bool ieee80211_scan_accept_presp(struct ieee80211_sub_if_data *sdata,
222 u32 scan_flags, const u8 *da)
223{
224 if (!sdata)
225 return false;
226 /* accept broadcast for OCE */
227 if (scan_flags & NL80211_SCAN_FLAG_ACCEPT_BCAST_PROBE_RESP &&
228 is_broadcast_ether_addr(da))
229 return true;
230 if (scan_flags & NL80211_SCAN_FLAG_RANDOM_ADDR)
231 return true;
232 return ether_addr_equal(da, sdata->vif.addr);
233}
234
Johannes Bergd48b2962012-07-06 22:19:27 +0200235void ieee80211_scan_rx(struct ieee80211_local *local, struct sk_buff *skb)
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200236{
Johannes Bergf1d58c22009-06-17 13:13:00 +0200237 struct ieee80211_rx_status *rx_status = IEEE80211_SKB_RXCB(skb);
Johannes Bergd48b2962012-07-06 22:19:27 +0200238 struct ieee80211_sub_if_data *sdata1, *sdata2;
239 struct ieee80211_mgmt *mgmt = (void *)skb->data;
Johannes Bergc2b13452008-09-11 00:01:55 +0200240 struct ieee80211_bss *bss;
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200241 struct ieee80211_channel *channel;
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200242
Johannes Bergd48b2962012-07-06 22:19:27 +0200243 if (skb->len < 24 ||
244 (!ieee80211_is_probe_resp(mgmt->frame_control) &&
245 !ieee80211_is_beacon(mgmt->frame_control)))
246 return;
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200247
Johannes Bergd48b2962012-07-06 22:19:27 +0200248 sdata1 = rcu_dereference(local->scan_sdata);
249 sdata2 = rcu_dereference(local->sched_scan_sdata);
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200250
Johannes Bergd48b2962012-07-06 22:19:27 +0200251 if (likely(!sdata1 && !sdata2))
252 return;
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200253
Johannes Bergd48b2962012-07-06 22:19:27 +0200254 if (ieee80211_is_probe_resp(mgmt->frame_control)) {
Johannes Berga344d672014-06-12 22:24:31 +0200255 struct cfg80211_scan_request *scan_req;
256 struct cfg80211_sched_scan_request *sched_scan_req;
Roee Zamir40b0bd22017-08-06 11:38:23 +0300257 u32 scan_req_flags = 0, sched_scan_req_flags = 0;
Johannes Berga344d672014-06-12 22:24:31 +0200258
259 scan_req = rcu_dereference(local->scan_req);
260 sched_scan_req = rcu_dereference(local->sched_scan_req);
261
Roee Zamir40b0bd22017-08-06 11:38:23 +0300262 if (scan_req)
263 scan_req_flags = scan_req->flags;
264
265 if (sched_scan_req)
266 sched_scan_req_flags = sched_scan_req->flags;
267
268 /* ignore ProbeResp to foreign address or non-bcast (OCE)
269 * unless scanning with randomised address
Johannes Berga344d672014-06-12 22:24:31 +0200270 */
Roee Zamir40b0bd22017-08-06 11:38:23 +0300271 if (!ieee80211_scan_accept_presp(sdata1, scan_req_flags,
272 mgmt->da) &&
273 !ieee80211_scan_accept_presp(sdata2, sched_scan_req_flags,
274 mgmt->da))
Johannes Bergd48b2962012-07-06 22:19:27 +0200275 return;
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200276 }
277
Johannes Berg0172bb72012-11-23 14:23:30 +0100278 channel = ieee80211_get_channel(local->hw.wiphy, rx_status->freq);
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200279
280 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
Johannes Bergd48b2962012-07-06 22:19:27 +0200281 return;
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200282
Johannes Bergd48b2962012-07-06 22:19:27 +0200283 bss = ieee80211_bss_info_update(local, rx_status,
Sara Sharon4abb52a2019-01-16 12:14:41 +0200284 mgmt, skb->len,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +0200285 channel);
Jouni Malinend048e502008-10-11 03:29:55 +0300286 if (bss)
Johannes Bergd48b2962012-07-06 22:19:27 +0200287 ieee80211_rx_bss_put(local, bss);
Johannes Berg98c8fcc2008-09-08 17:44:26 +0200288}
289
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200290static void
291ieee80211_prepare_scan_chandef(struct cfg80211_chan_def *chandef,
292 enum nl80211_bss_scan_width scan_width)
293{
294 memset(chandef, 0, sizeof(*chandef));
295 switch (scan_width) {
296 case NL80211_BSS_CHAN_WIDTH_5:
297 chandef->width = NL80211_CHAN_WIDTH_5;
298 break;
299 case NL80211_BSS_CHAN_WIDTH_10:
300 chandef->width = NL80211_CHAN_WIDTH_10;
301 break;
302 default:
303 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
304 break;
305 }
306}
307
Johannes Berg4d36ec52009-10-27 20:59:55 +0100308/* return false if no more work */
309static bool ieee80211_prep_hw_scan(struct ieee80211_local *local)
310{
Johannes Berg6ea0a692014-11-19 11:55:49 +0100311 struct cfg80211_scan_request *req;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200312 struct cfg80211_chan_def chandef;
David Spinadelc56ef672014-02-05 15:21:13 +0200313 u8 bands_used = 0;
Johannes Berg4d36ec52009-10-27 20:59:55 +0100314 int i, ielen, n_chans;
Johannes Bergb9771d42018-05-28 15:47:41 +0200315 u32 flags = 0;
Johannes Berg4d36ec52009-10-27 20:59:55 +0100316
Johannes Berg6ea0a692014-11-19 11:55:49 +0100317 req = rcu_dereference_protected(local->scan_req,
318 lockdep_is_held(&local->mtx));
319
Emmanuel Grumbacha7540552013-09-16 11:12:07 +0300320 if (test_bit(SCAN_HW_CANCELLED, &local->scanning))
321 return false;
322
Johannes Berg30686bf2015-06-02 21:39:54 +0200323 if (ieee80211_hw_check(&local->hw, SINGLE_SCAN_ON_ALL_BANDS)) {
Johannes Berg4d36ec52009-10-27 20:59:55 +0100324 for (i = 0; i < req->n_channels; i++) {
David Spinadelc56ef672014-02-05 15:21:13 +0200325 local->hw_scan_req->req.channels[i] = req->channels[i];
326 bands_used |= BIT(req->channels[i]->band);
Johannes Berg4d36ec52009-10-27 20:59:55 +0100327 }
328
David Spinadelc56ef672014-02-05 15:21:13 +0200329 n_chans = req->n_channels;
330 } else {
331 do {
Johannes Berg57fbcce2016-04-12 15:56:15 +0200332 if (local->hw_scan_band == NUM_NL80211_BANDS)
David Spinadelc56ef672014-02-05 15:21:13 +0200333 return false;
Johannes Berg4d36ec52009-10-27 20:59:55 +0100334
David Spinadelc56ef672014-02-05 15:21:13 +0200335 n_chans = 0;
336
337 for (i = 0; i < req->n_channels; i++) {
338 if (req->channels[i]->band !=
339 local->hw_scan_band)
340 continue;
341 local->hw_scan_req->req.channels[n_chans] =
342 req->channels[i];
343 n_chans++;
344 bands_used |= BIT(req->channels[i]->band);
345 }
346
347 local->hw_scan_band++;
348 } while (!n_chans);
349 }
350
351 local->hw_scan_req->req.n_channels = n_chans;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200352 ieee80211_prepare_scan_chandef(&chandef, req->scan_width);
Johannes Berg4d36ec52009-10-27 20:59:55 +0100353
Johannes Bergb9771d42018-05-28 15:47:41 +0200354 if (req->flags & NL80211_SCAN_FLAG_MIN_PREQ_CONTENT)
355 flags |= IEEE80211_PROBE_FLAG_MIN_CONTENT;
356
David Spinadelc56ef672014-02-05 15:21:13 +0200357 ielen = ieee80211_build_preq_ies(local,
358 (u8 *)local->hw_scan_req->req.ie,
Johannes Bergc604b9f2012-11-29 12:45:18 +0100359 local->hw_scan_ies_bufsize,
David Spinadelc56ef672014-02-05 15:21:13 +0200360 &local->hw_scan_req->ies,
361 req->ie, req->ie_len,
Johannes Bergb9771d42018-05-28 15:47:41 +0200362 bands_used, req->rates, &chandef,
363 flags);
David Spinadelc56ef672014-02-05 15:21:13 +0200364 local->hw_scan_req->req.ie_len = ielen;
365 local->hw_scan_req->req.no_cck = req->no_cck;
Johannes Berga344d672014-06-12 22:24:31 +0200366 ether_addr_copy(local->hw_scan_req->req.mac_addr, req->mac_addr);
367 ether_addr_copy(local->hw_scan_req->req.mac_addr_mask,
368 req->mac_addr_mask);
Jouni Malinene345f442016-02-26 22:12:48 +0200369 ether_addr_copy(local->hw_scan_req->req.bssid, req->bssid);
Johannes Berg4d36ec52009-10-27 20:59:55 +0100370
371 return true;
372}
373
Eliad Peller8bd2a242013-12-05 11:21:27 +0200374static void __ieee80211_scan_completed(struct ieee80211_hw *hw, bool aborted)
Johannes Berg0a51b272008-09-08 17:44:25 +0200375{
376 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berge9da68d2018-10-18 10:35:47 +0200377 bool hw_scan = test_bit(SCAN_HW_SCANNING, &local->scanning);
Eliad Pellera2b70e82013-12-05 11:21:28 +0200378 bool was_scanning = local->scanning;
Johannes Berg6ea0a692014-11-19 11:55:49 +0100379 struct cfg80211_scan_request *scan_req;
Johannes Berga344d672014-06-12 22:24:31 +0200380 struct ieee80211_sub_if_data *scan_sdata;
Sachin Kulkarni4fa11ec2016-01-12 14:30:19 +0530381 struct ieee80211_sub_if_data *sdata;
Johannes Berg0a51b272008-09-08 17:44:25 +0200382
Stanislaw Gruszkae229f842010-10-06 11:22:09 +0200383 lockdep_assert_held(&local->mtx);
Johannes Bergf3b85252009-04-23 16:01:47 +0200384
Johannes Berg6d3560d2009-10-31 07:44:08 +0100385 /*
386 * It's ok to abort a not-yet-running scan (that
387 * we have one at all will be verified by checking
388 * local->scan_req next), but not to complete it
389 * successfully.
390 */
391 if (WARN_ON(!local->scanning && !aborted))
392 aborted = true;
Johannes Bergde95a542009-04-01 11:58:36 +0200393
Stanislaw Gruszkae229f842010-10-06 11:22:09 +0200394 if (WARN_ON(!local->scan_req))
Johannes Bergd07bfd82011-03-07 15:48:41 +0100395 return;
Johannes Bergf3b85252009-04-23 16:01:47 +0200396
David Spinadelc56ef672014-02-05 15:21:13 +0200397 if (hw_scan && !aborted &&
Johannes Berg30686bf2015-06-02 21:39:54 +0200398 !ieee80211_hw_check(&local->hw, SINGLE_SCAN_ON_ALL_BANDS) &&
David Spinadelc56ef672014-02-05 15:21:13 +0200399 ieee80211_prep_hw_scan(local)) {
Johannes Berge2fd5db2012-07-06 21:39:28 +0200400 int rc;
401
402 rc = drv_hw_scan(local,
403 rcu_dereference_protected(local->scan_sdata,
404 lockdep_is_held(&local->mtx)),
405 local->hw_scan_req);
406
Stanislaw Gruszka6eb11a92010-10-06 11:22:11 +0200407 if (rc == 0)
Johannes Bergd07bfd82011-03-07 15:48:41 +0100408 return;
Avraham Stern7947d3e2016-07-05 15:23:12 +0300409
Johannes Berg7d10f6b2016-07-05 15:23:13 +0300410 /* HW scan failed and is going to be reported as aborted,
411 * so clear old scan info.
Avraham Stern7947d3e2016-07-05 15:23:12 +0300412 */
413 memset(&local->scan_info, 0, sizeof(local->scan_info));
Johannes Berg7d10f6b2016-07-05 15:23:13 +0300414 aborted = true;
Johannes Berg4d36ec52009-10-27 20:59:55 +0100415 }
416
417 kfree(local->hw_scan_req);
418 local->hw_scan_req = NULL;
Johannes Bergf3b85252009-04-23 16:01:47 +0200419
Johannes Berg6ea0a692014-11-19 11:55:49 +0100420 scan_req = rcu_dereference_protected(local->scan_req,
421 lockdep_is_held(&local->mtx));
422
Avraham Stern1d762502016-07-05 17:10:13 +0300423 if (scan_req != local->int_scan_req) {
Avraham Stern7947d3e2016-07-05 15:23:12 +0300424 local->scan_info.aborted = aborted;
425 cfg80211_scan_done(scan_req, &local->scan_info);
Avraham Stern1d762502016-07-05 17:10:13 +0300426 }
Johannes Berg6ea0a692014-11-19 11:55:49 +0100427 RCU_INIT_POINTER(local->scan_req, NULL);
Johannes Berga344d672014-06-12 22:24:31 +0200428
429 scan_sdata = rcu_dereference_protected(local->scan_sdata,
430 lockdep_is_held(&local->mtx));
Monam Agarwal0c2bef462014-03-24 00:51:43 +0530431 RCU_INIT_POINTER(local->scan_sdata, NULL);
Johannes Berg2a519312009-02-10 21:25:55 +0100432
Helmut Schaafbe9c4292009-07-23 12:14:04 +0200433 local->scanning = 0;
Simon Wunderlich7ca15a02013-07-08 16:55:56 +0200434 local->scan_chandef.chan = NULL;
Johannes Bergf3b85252009-04-23 16:01:47 +0200435
Johannes Berg07ef03e2011-11-08 16:21:21 +0100436 /* Set power back to normal operating levels. */
437 ieee80211_hw_config(local, 0);
Ben Greearb23b0252011-02-04 11:54:17 -0800438
Eliad Peller8bd2a242013-12-05 11:21:27 +0200439 if (!hw_scan) {
Ben Greearb23b0252011-02-04 11:54:17 -0800440 ieee80211_configure_filter(local);
Johannes Berga344d672014-06-12 22:24:31 +0200441 drv_sw_scan_complete(local, scan_sdata);
Stanislaw Gruszkaaacde9e2012-12-20 14:41:18 +0100442 ieee80211_offchannel_return(local);
Ben Greearb23b0252011-02-04 11:54:17 -0800443 }
444
Johannes Berg5cff20e2009-04-29 12:26:17 +0200445 ieee80211_recalc_idle(local);
Stanislaw Gruszkae229f842010-10-06 11:22:09 +0200446
Johannes Berg0a51b272008-09-08 17:44:25 +0200447 ieee80211_mlme_notify_scan_completed(local);
Johannes Berg46900292009-02-15 12:44:28 +0100448 ieee80211_ibss_notify_scan_completed(local);
Sachin Kulkarni4fa11ec2016-01-12 14:30:19 +0530449
450 /* Requeue all the work that might have been ignored while
451 * the scan was in progress; if there was none this will
452 * just be a no-op for the particular interface.
453 */
454 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
455 if (ieee80211_sdata_running(sdata))
456 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
457 }
458
Eliad Pellera2b70e82013-12-05 11:21:28 +0200459 if (was_scanning)
460 ieee80211_start_next_roc(local);
Johannes Berg0a51b272008-09-08 17:44:25 +0200461}
Johannes Berg8789d452010-08-26 13:30:26 +0200462
Avraham Stern7947d3e2016-07-05 15:23:12 +0300463void ieee80211_scan_completed(struct ieee80211_hw *hw,
464 struct cfg80211_scan_info *info)
Johannes Berg8789d452010-08-26 13:30:26 +0200465{
466 struct ieee80211_local *local = hw_to_local(hw);
467
Johannes Berg58bd7f12016-09-14 09:37:54 +0200468 trace_api_scan_completed(local, info->aborted);
Johannes Berg8789d452010-08-26 13:30:26 +0200469
470 set_bit(SCAN_COMPLETED, &local->scanning);
Avraham Stern7947d3e2016-07-05 15:23:12 +0300471 if (info->aborted)
Johannes Berg8789d452010-08-26 13:30:26 +0200472 set_bit(SCAN_ABORTED, &local->scanning);
Avraham Stern7947d3e2016-07-05 15:23:12 +0300473
474 memcpy(&local->scan_info, info, sizeof(*info));
475
Johannes Berg8789d452010-08-26 13:30:26 +0200476 ieee80211_queue_delayed_work(&local->hw, &local->scan_work, 0);
477}
Johannes Berg0a51b272008-09-08 17:44:25 +0200478EXPORT_SYMBOL(ieee80211_scan_completed);
479
Johannes Berga344d672014-06-12 22:24:31 +0200480static int ieee80211_start_sw_scan(struct ieee80211_local *local,
481 struct ieee80211_sub_if_data *sdata)
Johannes Bergf3b85252009-04-23 16:01:47 +0200482{
Johannes Bergfe57d9f2012-07-26 14:55:08 +0200483 /* Software scan is not supported in multi-channel cases */
484 if (local->use_chanctx)
485 return -EOPNOTSUPP;
486
Johannes Bergf3b85252009-04-23 16:01:47 +0200487 /*
488 * Hardware/driver doesn't support hw_scan, so use software
489 * scanning instead. First send a nullfunc frame with power save
490 * bit on so that AP will buffer the frames for us while we are not
491 * listening, then send probe requests to each channel and wait for
492 * the responses. After all channels are scanned, tune back to the
493 * original channel and send a nullfunc frame with power save bit
494 * off to trigger the AP to send us all the buffered frames.
495 *
496 * Note that while local->sw_scanning is true everything else but
497 * nullfunc frames and probe requests will be dropped in
498 * ieee80211_tx_h_check_assoc().
499 */
Johannes Berga344d672014-06-12 22:24:31 +0200500 drv_sw_scan_start(local, sdata, local->scan_addr);
Johannes Bergf3b85252009-04-23 16:01:47 +0200501
Rajkumar Manoharande312db2012-03-27 11:01:06 +0530502 local->leave_oper_channel_time = jiffies;
Helmut Schaa977923b2009-07-23 12:14:20 +0200503 local->next_scan_state = SCAN_DECISION;
Johannes Bergf3b85252009-04-23 16:01:47 +0200504 local->scan_channel_idx = 0;
505
Stanislaw Gruszkaaacde9e2012-12-20 14:41:18 +0100506 ieee80211_offchannel_stop_vifs(local);
Johannes Berga80f7c02009-12-23 13:15:32 +0100507
Seth Forshee9c35d7d2013-02-11 11:21:08 -0600508 /* ensure nullfunc is transmitted before leaving operating channel */
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +0200509 ieee80211_flush_queues(local, NULL, false);
Seth Forshee9c35d7d2013-02-11 11:21:08 -0600510
Johannes Berg3ac64be2009-08-17 16:16:53 +0200511 ieee80211_configure_filter(local);
Johannes Bergf3b85252009-04-23 16:01:47 +0200512
Ben Greear59bdf3b2011-02-07 13:44:38 -0800513 /* We need to set power level at maximum rate for scanning. */
514 ieee80211_hw_config(local, 0);
515
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400516 ieee80211_queue_delayed_work(&local->hw,
Johannes Berg07ef03e2011-11-08 16:21:21 +0100517 &local->scan_work, 0);
Johannes Bergf3b85252009-04-23 16:01:47 +0200518
519 return 0;
520}
521
Aaron Komisardc0c18e2019-10-02 13:59:07 +0000522static bool __ieee80211_can_leave_ch(struct ieee80211_sub_if_data *sdata)
523{
524 struct ieee80211_local *local = sdata->local;
525 struct ieee80211_sub_if_data *sdata_iter;
526
527 if (!ieee80211_is_radar_required(local))
528 return true;
529
530 if (!regulatory_pre_cac_allowed(local->hw.wiphy))
531 return false;
532
533 mutex_lock(&local->iflist_mtx);
534 list_for_each_entry(sdata_iter, &local->interfaces, list) {
535 if (sdata_iter->wdev.cac_started) {
536 mutex_unlock(&local->iflist_mtx);
537 return false;
538 }
539 }
540 mutex_unlock(&local->iflist_mtx);
541
542 return true;
543}
544
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +0200545static bool ieee80211_can_scan(struct ieee80211_local *local,
546 struct ieee80211_sub_if_data *sdata)
547{
Aaron Komisardc0c18e2019-10-02 13:59:07 +0000548 if (!__ieee80211_can_leave_ch(sdata))
Simon Wunderlich164eb022013-02-08 18:16:20 +0100549 return false;
550
Johannes Berg2eb278e2012-06-05 14:28:42 +0200551 if (!list_empty(&local->roc_list))
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +0200552 return false;
553
554 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +0200555 sdata->u.mgd.flags & IEEE80211_STA_CONNECTION_POLL)
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +0200556 return false;
557
558 return true;
559}
560
561void ieee80211_run_deferred_scan(struct ieee80211_local *local)
562{
563 lockdep_assert_held(&local->mtx);
564
565 if (!local->scan_req || local->scanning)
566 return;
567
Johannes Berge2fd5db2012-07-06 21:39:28 +0200568 if (!ieee80211_can_scan(local,
569 rcu_dereference_protected(
570 local->scan_sdata,
571 lockdep_is_held(&local->mtx))))
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +0200572 return;
573
574 ieee80211_queue_delayed_work(&local->hw, &local->scan_work,
575 round_jiffies_relative(0));
576}
Johannes Bergf3b85252009-04-23 16:01:47 +0200577
Johannes Berg45ad6832018-05-28 15:47:39 +0200578static void ieee80211_send_scan_probe_req(struct ieee80211_sub_if_data *sdata,
579 const u8 *src, const u8 *dst,
580 const u8 *ssid, size_t ssid_len,
581 const u8 *ie, size_t ie_len,
582 u32 ratemask, u32 flags, u32 tx_flags,
583 struct ieee80211_channel *channel)
584{
585 struct sk_buff *skb;
Johannes Bergb9771d42018-05-28 15:47:41 +0200586 u32 txdata_flags = 0;
Johannes Berg45ad6832018-05-28 15:47:39 +0200587
588 skb = ieee80211_build_probe_req(sdata, src, dst, ratemask, channel,
589 ssid, ssid_len,
590 ie, ie_len, flags);
Johannes Bergb9771d42018-05-28 15:47:41 +0200591
Johannes Berg45ad6832018-05-28 15:47:39 +0200592 if (skb) {
Johannes Bergb9771d42018-05-28 15:47:41 +0200593 if (flags & IEEE80211_PROBE_FLAG_RANDOM_SN) {
594 struct ieee80211_hdr *hdr = (void *)skb->data;
595 u16 sn = get_random_u32();
596
597 txdata_flags |= IEEE80211_TX_NO_SEQNO;
598 hdr->seq_ctrl =
599 cpu_to_le16(IEEE80211_SN_TO_SEQ(sn));
600 }
Johannes Berg45ad6832018-05-28 15:47:39 +0200601 IEEE80211_SKB_CB(skb)->flags |= tx_flags;
Johannes Bergb9771d42018-05-28 15:47:41 +0200602 ieee80211_tx_skb_tid_band(sdata, skb, 7, channel->band,
603 txdata_flags);
Johannes Berg45ad6832018-05-28 15:47:39 +0200604 }
605}
606
Ben Greear8a690672012-04-17 10:54:16 -0700607static void ieee80211_scan_state_send_probe(struct ieee80211_local *local,
608 unsigned long *next_delay)
609{
610 int i;
Johannes Berge2fd5db2012-07-06 21:39:28 +0200611 struct ieee80211_sub_if_data *sdata;
Johannes Berg6ea0a692014-11-19 11:55:49 +0100612 struct cfg80211_scan_request *scan_req;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200613 enum nl80211_band band = local->hw.conf.chandef.chan->band;
Johannes Bergb9771d42018-05-28 15:47:41 +0200614 u32 flags = 0, tx_flags;
Seth Forshee6c17b772013-02-11 11:21:07 -0600615
Johannes Berg6ea0a692014-11-19 11:55:49 +0100616 scan_req = rcu_dereference_protected(local->scan_req,
617 lockdep_is_held(&local->mtx));
618
Seth Forshee6c17b772013-02-11 11:21:07 -0600619 tx_flags = IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Johannes Berg6ea0a692014-11-19 11:55:49 +0100620 if (scan_req->no_cck)
Seth Forshee6c17b772013-02-11 11:21:07 -0600621 tx_flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
Johannes Bergb9771d42018-05-28 15:47:41 +0200622 if (scan_req->flags & NL80211_SCAN_FLAG_MIN_PREQ_CONTENT)
623 flags |= IEEE80211_PROBE_FLAG_MIN_CONTENT;
624 if (scan_req->flags & NL80211_SCAN_FLAG_RANDOM_SN)
625 flags |= IEEE80211_PROBE_FLAG_RANDOM_SN;
Ben Greear8a690672012-04-17 10:54:16 -0700626
Johannes Berge2fd5db2012-07-06 21:39:28 +0200627 sdata = rcu_dereference_protected(local->scan_sdata,
Peter Senna Tschudin316b6b52012-09-06 18:09:16 +0200628 lockdep_is_held(&local->mtx));
Johannes Berge2fd5db2012-07-06 21:39:28 +0200629
Johannes Berg6ea0a692014-11-19 11:55:49 +0100630 for (i = 0; i < scan_req->n_ssids; i++)
Johannes Berg45ad6832018-05-28 15:47:39 +0200631 ieee80211_send_scan_probe_req(
Jouni Malinene345f442016-02-26 22:12:48 +0200632 sdata, local->scan_addr, scan_req->bssid,
Johannes Berg6ea0a692014-11-19 11:55:49 +0100633 scan_req->ssids[i].ssid, scan_req->ssids[i].ssid_len,
634 scan_req->ie, scan_req->ie_len,
Johannes Bergb9771d42018-05-28 15:47:41 +0200635 scan_req->rates[band], flags,
Johannes Berg45ad6832018-05-28 15:47:39 +0200636 tx_flags, local->hw.conf.chandef.chan);
Ben Greear8a690672012-04-17 10:54:16 -0700637
638 /*
639 * After sending probe requests, wait for probe responses
640 * on the channel.
641 */
642 *next_delay = IEEE80211_CHANNEL_TIME;
643 local->next_scan_state = SCAN_DECISION;
644}
645
Johannes Bergf3b85252009-04-23 16:01:47 +0200646static int __ieee80211_start_scan(struct ieee80211_sub_if_data *sdata,
647 struct cfg80211_scan_request *req)
648{
649 struct ieee80211_local *local = sdata->local;
Johannes Berge9da68d2018-10-18 10:35:47 +0200650 bool hw_scan = local->ops->hw_scan;
Johannes Bergf3b85252009-04-23 16:01:47 +0200651 int rc;
652
Stanislaw Gruszkae229f842010-10-06 11:22:09 +0200653 lockdep_assert_held(&local->mtx);
654
Aaron Komisardc0c18e2019-10-02 13:59:07 +0000655 if (local->scan_req)
656 return -EBUSY;
657
658 if (!__ieee80211_can_leave_ch(sdata))
Johannes Bergf3b85252009-04-23 16:01:47 +0200659 return -EBUSY;
660
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +0200661 if (!ieee80211_can_scan(local, sdata)) {
John W. Linville6e7e6212010-02-08 16:38:38 -0500662 /* wait for the work to finish/time out */
Johannes Berg6ea0a692014-11-19 11:55:49 +0100663 rcu_assign_pointer(local->scan_req, req);
Johannes Berge2fd5db2012-07-06 21:39:28 +0200664 rcu_assign_pointer(local->scan_sdata, sdata);
Johannes Bergc0ce77b2010-02-03 10:22:31 +0100665 return 0;
666 }
667
Johannes Berge9da68d2018-10-18 10:35:47 +0200668 again:
669 if (hw_scan) {
Johannes Bergf3b85252009-04-23 16:01:47 +0200670 u8 *ies;
Johannes Bergf3b85252009-04-23 16:01:47 +0200671
David Spinadele4dcbb32014-02-11 13:45:41 +0200672 local->hw_scan_ies_bufsize = local->scan_ies_len + req->ie_len;
David Spinadelc56ef672014-02-05 15:21:13 +0200673
Johannes Berg30686bf2015-06-02 21:39:54 +0200674 if (ieee80211_hw_check(&local->hw, SINGLE_SCAN_ON_ALL_BANDS)) {
David Spinadelc56ef672014-02-05 15:21:13 +0200675 int i, n_bands = 0;
676 u8 bands_counted = 0;
677
678 for (i = 0; i < req->n_channels; i++) {
679 if (bands_counted & BIT(req->channels[i]->band))
680 continue;
681 bands_counted |= BIT(req->channels[i]->band);
682 n_bands++;
683 }
684
685 local->hw_scan_ies_bufsize *= n_bands;
686 }
687
Johannes Berg4d36ec52009-10-27 20:59:55 +0100688 local->hw_scan_req = kmalloc(
689 sizeof(*local->hw_scan_req) +
690 req->n_channels * sizeof(req->channels[0]) +
Johannes Bergc604b9f2012-11-29 12:45:18 +0100691 local->hw_scan_ies_bufsize, GFP_KERNEL);
Johannes Berg4d36ec52009-10-27 20:59:55 +0100692 if (!local->hw_scan_req)
Johannes Bergf3b85252009-04-23 16:01:47 +0200693 return -ENOMEM;
694
David Spinadelc56ef672014-02-05 15:21:13 +0200695 local->hw_scan_req->req.ssids = req->ssids;
696 local->hw_scan_req->req.n_ssids = req->n_ssids;
Johannes Berg4d36ec52009-10-27 20:59:55 +0100697 ies = (u8 *)local->hw_scan_req +
698 sizeof(*local->hw_scan_req) +
699 req->n_channels * sizeof(req->channels[0]);
David Spinadelc56ef672014-02-05 15:21:13 +0200700 local->hw_scan_req->req.ie = ies;
701 local->hw_scan_req->req.flags = req->flags;
Jouni Malinene345f442016-02-26 22:12:48 +0200702 eth_broadcast_addr(local->hw_scan_req->req.bssid);
Avraham Stern7947d3e2016-07-05 15:23:12 +0300703 local->hw_scan_req->req.duration = req->duration;
704 local->hw_scan_req->req.duration_mandatory =
705 req->duration_mandatory;
Johannes Berg4d36ec52009-10-27 20:59:55 +0100706
707 local->hw_scan_band = 0;
John W. Linville6e7e6212010-02-08 16:38:38 -0500708
709 /*
710 * After allocating local->hw_scan_req, we must
711 * go through until ieee80211_prep_hw_scan(), so
712 * anything that might be changed here and leave
713 * this function early must not go after this
714 * allocation.
715 */
Johannes Bergf3b85252009-04-23 16:01:47 +0200716 }
717
Johannes Berg6ea0a692014-11-19 11:55:49 +0100718 rcu_assign_pointer(local->scan_req, req);
Johannes Berge2fd5db2012-07-06 21:39:28 +0200719 rcu_assign_pointer(local->scan_sdata, sdata);
Johannes Bergf3b85252009-04-23 16:01:47 +0200720
Johannes Berga344d672014-06-12 22:24:31 +0200721 if (req->flags & NL80211_SCAN_FLAG_RANDOM_ADDR)
722 get_random_mask_addr(local->scan_addr,
723 req->mac_addr,
724 req->mac_addr_mask);
725 else
726 memcpy(local->scan_addr, sdata->vif.addr, ETH_ALEN);
727
Johannes Berge9da68d2018-10-18 10:35:47 +0200728 if (hw_scan) {
Helmut Schaafbe9c4292009-07-23 12:14:04 +0200729 __set_bit(SCAN_HW_SCANNING, &local->scanning);
Ben Greear8a690672012-04-17 10:54:16 -0700730 } else if ((req->n_channels == 1) &&
Karl Beldan675a0b02013-03-25 16:26:57 +0100731 (req->channels[0] == local->_oper_chandef.chan)) {
Johannes Berg9b864872012-07-26 14:38:32 +0200732 /*
733 * If we are scanning only on the operating channel
734 * then we do not need to stop normal activities
Ben Greear8a690672012-04-17 10:54:16 -0700735 */
736 unsigned long next_delay;
737
738 __set_bit(SCAN_ONCHANNEL_SCANNING, &local->scanning);
739
740 ieee80211_recalc_idle(local);
741
742 /* Notify driver scan is starting, keep order of operations
743 * same as normal software scan, in case that matters. */
Johannes Berga344d672014-06-12 22:24:31 +0200744 drv_sw_scan_start(local, sdata, local->scan_addr);
Ben Greear8a690672012-04-17 10:54:16 -0700745
746 ieee80211_configure_filter(local); /* accept probe-responses */
747
748 /* We need to ensure power level is at max for scanning. */
749 ieee80211_hw_config(local, 0);
750
Antonio Quartulli4e39cca2015-11-21 18:13:40 +0800751 if ((req->channels[0]->flags & (IEEE80211_CHAN_NO_IR |
752 IEEE80211_CHAN_RADAR)) ||
Johannes Berg6ea0a692014-11-19 11:55:49 +0100753 !req->n_ssids) {
Ben Greear8a690672012-04-17 10:54:16 -0700754 next_delay = IEEE80211_PASSIVE_CHANNEL_TIME;
755 } else {
756 ieee80211_scan_state_send_probe(local, &next_delay);
757 next_delay = IEEE80211_CHANNEL_TIME;
758 }
759
760 /* Now, just wait a bit and we are all done! */
761 ieee80211_queue_delayed_work(&local->hw, &local->scan_work,
762 next_delay);
763 return 0;
764 } else {
765 /* Do normal software scan */
Helmut Schaafbe9c4292009-07-23 12:14:04 +0200766 __set_bit(SCAN_SW_SCANNING, &local->scanning);
Ben Greear8a690672012-04-17 10:54:16 -0700767 }
John W. Linville6e7e6212010-02-08 16:38:38 -0500768
Johannes Berg5cff20e2009-04-29 12:26:17 +0200769 ieee80211_recalc_idle(local);
Johannes Bergf3b85252009-04-23 16:01:47 +0200770
Johannes Berge9da68d2018-10-18 10:35:47 +0200771 if (hw_scan) {
Johannes Berg4d36ec52009-10-27 20:59:55 +0100772 WARN_ON(!ieee80211_prep_hw_scan(local));
Johannes Berga060bbf2010-04-27 11:59:34 +0200773 rc = drv_hw_scan(local, sdata, local->hw_scan_req);
Johannes Berga344d672014-06-12 22:24:31 +0200774 } else {
775 rc = ieee80211_start_sw_scan(local, sdata);
776 }
Johannes Bergf3b85252009-04-23 16:01:47 +0200777
Johannes Bergf3b85252009-04-23 16:01:47 +0200778 if (rc) {
Johannes Berg4d36ec52009-10-27 20:59:55 +0100779 kfree(local->hw_scan_req);
780 local->hw_scan_req = NULL;
Helmut Schaafbe9c4292009-07-23 12:14:04 +0200781 local->scanning = 0;
Johannes Bergf3b85252009-04-23 16:01:47 +0200782
Johannes Berg5cff20e2009-04-29 12:26:17 +0200783 ieee80211_recalc_idle(local);
784
Johannes Bergf3b85252009-04-23 16:01:47 +0200785 local->scan_req = NULL;
Monam Agarwal0c2bef462014-03-24 00:51:43 +0530786 RCU_INIT_POINTER(local->scan_sdata, NULL);
Johannes Bergf3b85252009-04-23 16:01:47 +0200787 }
788
Johannes Berge9da68d2018-10-18 10:35:47 +0200789 if (hw_scan && rc == 1) {
790 /*
791 * we can't fall back to software for P2P-GO
792 * as it must update NoA etc.
793 */
794 if (ieee80211_vif_type_p2p(&sdata->vif) ==
795 NL80211_IFTYPE_P2P_GO)
796 return -EOPNOTSUPP;
797 hw_scan = false;
798 goto again;
799 }
800
Johannes Bergf3b85252009-04-23 16:01:47 +0200801 return rc;
802}
803
Helmut Schaadf13cce2010-02-24 14:19:21 +0100804static unsigned long
805ieee80211_scan_get_channel_time(struct ieee80211_channel *chan)
806{
807 /*
808 * TODO: channel switching also consumes quite some time,
809 * add that delay as well to get a better estimation
810 */
Antonio Quartulli4e39cca2015-11-21 18:13:40 +0800811 if (chan->flags & (IEEE80211_CHAN_NO_IR | IEEE80211_CHAN_RADAR))
Helmut Schaadf13cce2010-02-24 14:19:21 +0100812 return IEEE80211_PASSIVE_CHANNEL_TIME;
813 return IEEE80211_PROBE_DELAY + IEEE80211_CHANNEL_TIME;
814}
815
Stanislaw Gruszkae229f842010-10-06 11:22:09 +0200816static void ieee80211_scan_state_decision(struct ieee80211_local *local,
817 unsigned long *next_delay)
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200818{
Helmut Schaa142b9f52009-07-23 13:18:01 +0200819 bool associated = false;
Helmut Schaadf13cce2010-02-24 14:19:21 +0100820 bool tx_empty = true;
821 bool bad_latency;
Helmut Schaa142b9f52009-07-23 13:18:01 +0200822 struct ieee80211_sub_if_data *sdata;
Helmut Schaadf13cce2010-02-24 14:19:21 +0100823 struct ieee80211_channel *next_chan;
Sam Lefflercd2bb512012-10-11 21:03:35 -0700824 enum mac80211_scan_state next_scan_state;
Johannes Berg6ea0a692014-11-19 11:55:49 +0100825 struct cfg80211_scan_request *scan_req;
Helmut Schaa142b9f52009-07-23 13:18:01 +0200826
Helmut Schaadf13cce2010-02-24 14:19:21 +0100827 /*
828 * check if at least one STA interface is associated,
829 * check if at least one STA interface has pending tx frames
830 * and grab the lowest used beacon interval
831 */
Helmut Schaa142b9f52009-07-23 13:18:01 +0200832 mutex_lock(&local->iflist_mtx);
833 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b662009-12-23 13:15:31 +0100834 if (!ieee80211_sdata_running(sdata))
Helmut Schaa142b9f52009-07-23 13:18:01 +0200835 continue;
836
837 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
838 if (sdata->u.mgd.associated) {
839 associated = true;
Helmut Schaadf13cce2010-02-24 14:19:21 +0100840
Helmut Schaadf13cce2010-02-24 14:19:21 +0100841 if (!qdisc_all_tx_empty(sdata->dev)) {
842 tx_empty = false;
843 break;
844 }
Helmut Schaa142b9f52009-07-23 13:18:01 +0200845 }
846 }
847 }
848 mutex_unlock(&local->iflist_mtx);
849
Johannes Berg6ea0a692014-11-19 11:55:49 +0100850 scan_req = rcu_dereference_protected(local->scan_req,
851 lockdep_is_held(&local->mtx));
852
853 next_chan = scan_req->channels[local->scan_channel_idx];
Ben Greearb23b0252011-02-04 11:54:17 -0800854
Johannes Berg07ef03e2011-11-08 16:21:21 +0100855 /*
856 * we're currently scanning a different channel, let's
857 * see if we can scan another channel without interfering
858 * with the current traffic situation.
859 *
Stanislaw Gruszka3f892b62013-01-23 12:32:45 +0100860 * Keep good latency, do not stay off-channel more than 125 ms.
Johannes Berg07ef03e2011-11-08 16:21:21 +0100861 */
Helmut Schaadf13cce2010-02-24 14:19:21 +0100862
Johannes Berg07ef03e2011-11-08 16:21:21 +0100863 bad_latency = time_after(jiffies +
Stanislaw Gruszka3f892b62013-01-23 12:32:45 +0100864 ieee80211_scan_get_channel_time(next_chan),
865 local->leave_oper_channel_time + HZ / 8);
Helmut Schaadf13cce2010-02-24 14:19:21 +0100866
Sam Lefflercd2bb512012-10-11 21:03:35 -0700867 if (associated && !tx_empty) {
Johannes Berg6ea0a692014-11-19 11:55:49 +0100868 if (scan_req->flags & NL80211_SCAN_FLAG_LOW_PRIORITY)
Sam Lefflercd2bb512012-10-11 21:03:35 -0700869 next_scan_state = SCAN_ABORT;
870 else
871 next_scan_state = SCAN_SUSPEND;
Stanislaw Gruszka3f892b62013-01-23 12:32:45 +0100872 } else if (associated && bad_latency) {
Sam Lefflercd2bb512012-10-11 21:03:35 -0700873 next_scan_state = SCAN_SUSPEND;
874 } else {
875 next_scan_state = SCAN_SET_CHANNEL;
876 }
877
878 local->next_scan_state = next_scan_state;
Helmut Schaa142b9f52009-07-23 13:18:01 +0200879
Helmut Schaa2fb3f022009-07-23 12:13:56 +0200880 *next_delay = 0;
Helmut Schaa2fb3f022009-07-23 12:13:56 +0200881}
882
883static void ieee80211_scan_state_set_channel(struct ieee80211_local *local,
884 unsigned long *next_delay)
885{
886 int skip;
887 struct ieee80211_channel *chan;
Simon Wunderlich7ca15a02013-07-08 16:55:56 +0200888 enum nl80211_bss_scan_width oper_scan_width;
Johannes Berg6ea0a692014-11-19 11:55:49 +0100889 struct cfg80211_scan_request *scan_req;
890
891 scan_req = rcu_dereference_protected(local->scan_req,
892 lockdep_is_held(&local->mtx));
Helmut Schaa2fb3f022009-07-23 12:13:56 +0200893
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200894 skip = 0;
Johannes Berg6ea0a692014-11-19 11:55:49 +0100895 chan = scan_req->channels[local->scan_channel_idx];
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200896
Simon Wunderlich7ca15a02013-07-08 16:55:56 +0200897 local->scan_chandef.chan = chan;
898 local->scan_chandef.center_freq1 = chan->center_freq;
899 local->scan_chandef.center_freq2 = 0;
Johannes Berg6ea0a692014-11-19 11:55:49 +0100900 switch (scan_req->scan_width) {
Simon Wunderlich7ca15a02013-07-08 16:55:56 +0200901 case NL80211_BSS_CHAN_WIDTH_5:
902 local->scan_chandef.width = NL80211_CHAN_WIDTH_5;
903 break;
904 case NL80211_BSS_CHAN_WIDTH_10:
905 local->scan_chandef.width = NL80211_CHAN_WIDTH_10;
906 break;
907 case NL80211_BSS_CHAN_WIDTH_20:
908 /* If scanning on oper channel, use whatever channel-type
909 * is currently in use.
910 */
911 oper_scan_width = cfg80211_chandef_to_scan_width(
912 &local->_oper_chandef);
913 if (chan == local->_oper_chandef.chan &&
Johannes Berg6ea0a692014-11-19 11:55:49 +0100914 oper_scan_width == scan_req->scan_width)
Simon Wunderlich7ca15a02013-07-08 16:55:56 +0200915 local->scan_chandef = local->_oper_chandef;
916 else
917 local->scan_chandef.width = NL80211_CHAN_WIDTH_20_NOHT;
918 break;
919 }
Ben Greearb23b0252011-02-04 11:54:17 -0800920
Johannes Berg07ef03e2011-11-08 16:21:21 +0100921 if (ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL))
922 skip = 1;
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200923
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200924 /* advance state machine to next channel/band */
925 local->scan_channel_idx++;
926
Helmut Schaa0ee9c132009-07-25 17:25:51 +0200927 if (skip) {
928 /* if we skip this channel return to the decision state */
929 local->next_scan_state = SCAN_DECISION;
Helmut Schaa2fb3f022009-07-23 12:13:56 +0200930 return;
Helmut Schaa0ee9c132009-07-25 17:25:51 +0200931 }
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200932
933 /*
934 * Probe delay is used to update the NAV, cf. 11.1.3.2.2
935 * (which unfortunately doesn't say _why_ step a) is done,
936 * but it waits for the probe delay or until a frame is
937 * received - and the received frame would update the NAV).
938 * For now, we do not support waiting until a frame is
939 * received.
940 *
941 * In any case, it is not necessary for a passive scan.
942 */
Antonio Quartulli4e39cca2015-11-21 18:13:40 +0800943 if ((chan->flags & (IEEE80211_CHAN_NO_IR | IEEE80211_CHAN_RADAR)) ||
944 !scan_req->n_ssids) {
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200945 *next_delay = IEEE80211_PASSIVE_CHANNEL_TIME;
Helmut Schaa977923b2009-07-23 12:14:20 +0200946 local->next_scan_state = SCAN_DECISION;
Helmut Schaa2fb3f022009-07-23 12:13:56 +0200947 return;
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200948 }
949
Helmut Schaa2fb3f022009-07-23 12:13:56 +0200950 /* active scan, send probes */
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200951 *next_delay = IEEE80211_PROBE_DELAY;
Helmut Schaa977923b2009-07-23 12:14:20 +0200952 local->next_scan_state = SCAN_SEND_PROBE;
Helmut Schaa7d3be3c2009-07-23 12:13:41 +0200953}
954
Johannes Berg07ef03e2011-11-08 16:21:21 +0100955static void ieee80211_scan_state_suspend(struct ieee80211_local *local,
956 unsigned long *next_delay)
957{
958 /* switch back to the operating channel */
Simon Wunderlich7ca15a02013-07-08 16:55:56 +0200959 local->scan_chandef.chan = NULL;
Johannes Berg07ef03e2011-11-08 16:21:21 +0100960 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
961
Stanislaw Gruszkaaacde9e2012-12-20 14:41:18 +0100962 /* disable PS */
963 ieee80211_offchannel_return(local);
Johannes Berg07ef03e2011-11-08 16:21:21 +0100964
965 *next_delay = HZ / 5;
966 /* afterwards, resume scan & go to next channel */
967 local->next_scan_state = SCAN_RESUME;
968}
969
970static void ieee80211_scan_state_resume(struct ieee80211_local *local,
971 unsigned long *next_delay)
972{
Stanislaw Gruszkaaacde9e2012-12-20 14:41:18 +0100973 ieee80211_offchannel_stop_vifs(local);
Johannes Berg07ef03e2011-11-08 16:21:21 +0100974
975 if (local->ops->flush) {
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +0200976 ieee80211_flush_queues(local, NULL, false);
Johannes Berg07ef03e2011-11-08 16:21:21 +0100977 *next_delay = 0;
978 } else
979 *next_delay = HZ / 10;
980
981 /* remember when we left the operating channel */
982 local->leave_oper_channel_time = jiffies;
983
984 /* advance to the next channel to be scanned */
Mohammed Shafi Shajakhande2ee842011-12-24 18:43:28 +0530985 local->next_scan_state = SCAN_SET_CHANNEL;
Johannes Berg07ef03e2011-11-08 16:21:21 +0100986}
987
Johannes Bergc2b13452008-09-11 00:01:55 +0200988void ieee80211_scan_work(struct work_struct *work)
Johannes Berg0a51b272008-09-08 17:44:25 +0200989{
990 struct ieee80211_local *local =
991 container_of(work, struct ieee80211_local, scan_work.work);
Johannes Bergd07bfd82011-03-07 15:48:41 +0100992 struct ieee80211_sub_if_data *sdata;
Johannes Berg6ea0a692014-11-19 11:55:49 +0100993 struct cfg80211_scan_request *scan_req;
Johannes Berg0a51b272008-09-08 17:44:25 +0200994 unsigned long next_delay = 0;
Eliad Peller8bd2a242013-12-05 11:21:27 +0200995 bool aborted;
Johannes Berg8789d452010-08-26 13:30:26 +0200996
Johannes Berga1699b72010-07-30 16:46:07 +0200997 mutex_lock(&local->mtx);
Stanislaw Gruszka259b62e2010-10-06 11:22:08 +0200998
Luciano Coelho332ff7f2015-01-22 23:34:10 +0200999 if (!ieee80211_can_run_worker(local)) {
1000 aborted = true;
1001 goto out_complete;
1002 }
1003
Johannes Berge2fd5db2012-07-06 21:39:28 +02001004 sdata = rcu_dereference_protected(local->scan_sdata,
1005 lockdep_is_held(&local->mtx));
Johannes Berg6ea0a692014-11-19 11:55:49 +01001006 scan_req = rcu_dereference_protected(local->scan_req,
1007 lockdep_is_held(&local->mtx));
Johannes Bergd07bfd82011-03-07 15:48:41 +01001008
Ben Greear8a690672012-04-17 10:54:16 -07001009 /* When scanning on-channel, the first-callback means completed. */
1010 if (test_bit(SCAN_ONCHANNEL_SCANNING, &local->scanning)) {
1011 aborted = test_and_clear_bit(SCAN_ABORTED, &local->scanning);
1012 goto out_complete;
1013 }
1014
Stanislaw Gruszka259b62e2010-10-06 11:22:08 +02001015 if (test_and_clear_bit(SCAN_COMPLETED, &local->scanning)) {
1016 aborted = test_and_clear_bit(SCAN_ABORTED, &local->scanning);
1017 goto out_complete;
Johannes Bergf3b85252009-04-23 16:01:47 +02001018 }
1019
Johannes Berg6ea0a692014-11-19 11:55:49 +01001020 if (!sdata || !scan_req)
Stanislaw Gruszka259b62e2010-10-06 11:22:08 +02001021 goto out;
1022
Eliad Pellerff5db432014-11-12 10:08:29 +02001023 if (!local->scanning) {
Johannes Bergf3b85252009-04-23 16:01:47 +02001024 int rc;
1025
Johannes Berg6ea0a692014-11-19 11:55:49 +01001026 RCU_INIT_POINTER(local->scan_req, NULL);
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301027 RCU_INIT_POINTER(local->scan_sdata, NULL);
Johannes Bergf3b85252009-04-23 16:01:47 +02001028
Johannes Berg6ea0a692014-11-19 11:55:49 +01001029 rc = __ieee80211_start_scan(sdata, scan_req);
Stanislaw Gruszka259b62e2010-10-06 11:22:08 +02001030 if (rc) {
Stanislaw Gruszka3aed49e2010-10-06 11:22:12 +02001031 /* need to complete scan in cfg80211 */
Johannes Berg6ea0a692014-11-19 11:55:49 +01001032 rcu_assign_pointer(local->scan_req, scan_req);
Stanislaw Gruszka259b62e2010-10-06 11:22:08 +02001033 aborted = true;
1034 goto out_complete;
1035 } else
1036 goto out;
Johannes Bergf3b85252009-04-23 16:01:47 +02001037 }
1038
Johannes Berg5bc75722008-09-11 00:01:51 +02001039 /*
Helmut Schaaf502d092009-07-23 12:13:48 +02001040 * as long as no delay is required advance immediately
1041 * without scheduling a new work
1042 */
1043 do {
Rajkumar Manoharanc29acf22011-05-14 09:43:28 +05301044 if (!ieee80211_sdata_running(sdata)) {
1045 aborted = true;
1046 goto out_complete;
1047 }
1048
Helmut Schaa977923b2009-07-23 12:14:20 +02001049 switch (local->next_scan_state) {
Helmut Schaa2fb3f022009-07-23 12:13:56 +02001050 case SCAN_DECISION:
Stanislaw Gruszkae229f842010-10-06 11:22:09 +02001051 /* if no more bands/channels left, complete scan */
Johannes Berg6ea0a692014-11-19 11:55:49 +01001052 if (local->scan_channel_idx >= scan_req->n_channels) {
Stanislaw Gruszkae229f842010-10-06 11:22:09 +02001053 aborted = false;
1054 goto out_complete;
1055 }
1056 ieee80211_scan_state_decision(local, &next_delay);
Helmut Schaaf502d092009-07-23 12:13:48 +02001057 break;
Helmut Schaa2fb3f022009-07-23 12:13:56 +02001058 case SCAN_SET_CHANNEL:
1059 ieee80211_scan_state_set_channel(local, &next_delay);
1060 break;
Helmut Schaaf502d092009-07-23 12:13:48 +02001061 case SCAN_SEND_PROBE:
1062 ieee80211_scan_state_send_probe(local, &next_delay);
1063 break;
Johannes Berg07ef03e2011-11-08 16:21:21 +01001064 case SCAN_SUSPEND:
1065 ieee80211_scan_state_suspend(local, &next_delay);
Helmut Schaa142b9f52009-07-23 13:18:01 +02001066 break;
Johannes Berg07ef03e2011-11-08 16:21:21 +01001067 case SCAN_RESUME:
1068 ieee80211_scan_state_resume(local, &next_delay);
Helmut Schaa142b9f52009-07-23 13:18:01 +02001069 break;
Sam Lefflercd2bb512012-10-11 21:03:35 -07001070 case SCAN_ABORT:
1071 aborted = true;
1072 goto out_complete;
Helmut Schaaf502d092009-07-23 12:13:48 +02001073 }
1074 } while (next_delay == 0);
Johannes Berg0a51b272008-09-08 17:44:25 +02001075
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001076 ieee80211_queue_delayed_work(&local->hw, &local->scan_work, next_delay);
Johannes Bergd07bfd82011-03-07 15:48:41 +01001077 goto out;
Stanislaw Gruszka259b62e2010-10-06 11:22:08 +02001078
1079out_complete:
Eliad Peller8bd2a242013-12-05 11:21:27 +02001080 __ieee80211_scan_completed(&local->hw, aborted);
Stanislaw Gruszka259b62e2010-10-06 11:22:08 +02001081out:
1082 mutex_unlock(&local->mtx);
Johannes Berg0a51b272008-09-08 17:44:25 +02001083}
1084
Johannes Bergc2b13452008-09-11 00:01:55 +02001085int ieee80211_request_scan(struct ieee80211_sub_if_data *sdata,
Johannes Berg2a519312009-02-10 21:25:55 +01001086 struct cfg80211_scan_request *req)
Johannes Berg0a51b272008-09-08 17:44:25 +02001087{
Johannes Bergf3b85252009-04-23 16:01:47 +02001088 int res;
1089
Johannes Berga1699b72010-07-30 16:46:07 +02001090 mutex_lock(&sdata->local->mtx);
Johannes Bergf3b85252009-04-23 16:01:47 +02001091 res = __ieee80211_start_scan(sdata, req);
Johannes Berga1699b72010-07-30 16:46:07 +02001092 mutex_unlock(&sdata->local->mtx);
Johannes Bergf3b85252009-04-23 16:01:47 +02001093
1094 return res;
1095}
1096
Stanislaw Gruszka34bcf712012-12-11 10:48:23 +01001097int ieee80211_request_ibss_scan(struct ieee80211_sub_if_data *sdata,
1098 const u8 *ssid, u8 ssid_len,
Janusz.Dziedzic@tieto.com76bed0f2015-03-20 06:37:00 +01001099 struct ieee80211_channel **channels,
1100 unsigned int n_channels,
Simon Wunderlich7ca15a02013-07-08 16:55:56 +02001101 enum nl80211_bss_scan_width scan_width)
Johannes Bergf3b85252009-04-23 16:01:47 +02001102{
Johannes Berg0a51b272008-09-08 17:44:25 +02001103 struct ieee80211_local *local = sdata->local;
Janusz.Dziedzic@tieto.com76bed0f2015-03-20 06:37:00 +01001104 int ret = -EBUSY, i, n_ch = 0;
Johannes Berg57fbcce2016-04-12 15:56:15 +02001105 enum nl80211_band band;
Johannes Berg0a51b272008-09-08 17:44:25 +02001106
Johannes Berga1699b72010-07-30 16:46:07 +02001107 mutex_lock(&local->mtx);
Johannes Berg2a519312009-02-10 21:25:55 +01001108
Johannes Bergf3b85252009-04-23 16:01:47 +02001109 /* busy scanning */
1110 if (local->scan_req)
1111 goto unlock;
Johannes Berg2a519312009-02-10 21:25:55 +01001112
Johannes Bergbe4a4b62010-05-03 08:49:48 +02001113 /* fill internal scan request */
Janusz.Dziedzic@tieto.com76bed0f2015-03-20 06:37:00 +01001114 if (!channels) {
1115 int max_n;
Johannes Bergbe4a4b62010-05-03 08:49:48 +02001116
Johannes Berg57fbcce2016-04-12 15:56:15 +02001117 for (band = 0; band < NUM_NL80211_BANDS; band++) {
Johannes Bergbe4a4b62010-05-03 08:49:48 +02001118 if (!local->hw.wiphy->bands[band])
1119 continue;
Stanislaw Gruszka34bcf712012-12-11 10:48:23 +01001120
1121 max_n = local->hw.wiphy->bands[band]->n_channels;
1122 for (i = 0; i < max_n; i++) {
1123 struct ieee80211_channel *tmp_ch =
Johannes Bergbe4a4b62010-05-03 08:49:48 +02001124 &local->hw.wiphy->bands[band]->channels[i];
Stanislaw Gruszka34bcf712012-12-11 10:48:23 +01001125
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +02001126 if (tmp_ch->flags & (IEEE80211_CHAN_NO_IR |
Stanislaw Gruszka34bcf712012-12-11 10:48:23 +01001127 IEEE80211_CHAN_DISABLED))
1128 continue;
1129
1130 local->int_scan_req->channels[n_ch] = tmp_ch;
1131 n_ch++;
Johannes Bergbe4a4b62010-05-03 08:49:48 +02001132 }
1133 }
1134
Stanislaw Gruszka34bcf712012-12-11 10:48:23 +01001135 if (WARN_ON_ONCE(n_ch == 0))
1136 goto unlock;
1137
1138 local->int_scan_req->n_channels = n_ch;
Johannes Bergbe4a4b62010-05-03 08:49:48 +02001139 } else {
Janusz.Dziedzic@tieto.com76bed0f2015-03-20 06:37:00 +01001140 for (i = 0; i < n_channels; i++) {
1141 if (channels[i]->flags & (IEEE80211_CHAN_NO_IR |
1142 IEEE80211_CHAN_DISABLED))
1143 continue;
1144
1145 local->int_scan_req->channels[n_ch] = channels[i];
1146 n_ch++;
1147 }
1148
1149 if (WARN_ON_ONCE(n_ch == 0))
Stanislaw Gruszka34bcf712012-12-11 10:48:23 +01001150 goto unlock;
1151
Janusz.Dziedzic@tieto.com76bed0f2015-03-20 06:37:00 +01001152 local->int_scan_req->n_channels = n_ch;
Johannes Bergbe4a4b62010-05-03 08:49:48 +02001153 }
1154
1155 local->int_scan_req->ssids = &local->scan_ssid;
1156 local->int_scan_req->n_ssids = 1;
Simon Wunderlich7ca15a02013-07-08 16:55:56 +02001157 local->int_scan_req->scan_width = scan_width;
Johannes Berg5ba63532009-08-07 17:54:07 +02001158 memcpy(local->int_scan_req->ssids[0].ssid, ssid, IEEE80211_MAX_SSID_LEN);
1159 local->int_scan_req->ssids[0].ssid_len = ssid_len;
Johannes Berg2a519312009-02-10 21:25:55 +01001160
Johannes Berg5ba63532009-08-07 17:54:07 +02001161 ret = __ieee80211_start_scan(sdata, sdata->local->int_scan_req);
Johannes Bergf3b85252009-04-23 16:01:47 +02001162 unlock:
Johannes Berga1699b72010-07-30 16:46:07 +02001163 mutex_unlock(&local->mtx);
Johannes Bergf3b85252009-04-23 16:01:47 +02001164 return ret;
Johannes Berg0a51b272008-09-08 17:44:25 +02001165}
Johannes Berg5bb644a2009-05-17 11:40:42 +02001166
Stanislaw Gruszka4136c422010-10-06 11:22:10 +02001167/*
1168 * Only call this function when a scan can't be queued -- under RTNL.
1169 */
Johannes Berg5bb644a2009-05-17 11:40:42 +02001170void ieee80211_scan_cancel(struct ieee80211_local *local)
1171{
Johannes Berg5bb644a2009-05-17 11:40:42 +02001172 /*
Eliad Pellerb8564392011-06-13 12:47:30 +03001173 * We are canceling software scan, or deferred scan that was not
Stanislaw Gruszka4136c422010-10-06 11:22:10 +02001174 * yet really started (see __ieee80211_start_scan ).
1175 *
1176 * Regarding hardware scan:
1177 * - we can not call __ieee80211_scan_completed() as when
1178 * SCAN_HW_SCANNING bit is set this function change
1179 * local->hw_scan_req to operate on 5G band, what race with
1180 * driver which can use local->hw_scan_req
1181 *
1182 * - we can not cancel scan_work since driver can schedule it
1183 * by ieee80211_scan_completed(..., true) to finish scan
1184 *
Eliad Pellerb8564392011-06-13 12:47:30 +03001185 * Hence we only call the cancel_hw_scan() callback, but the low-level
1186 * driver is still responsible for calling ieee80211_scan_completed()
1187 * after the scan was completed/aborted.
Johannes Berg5bb644a2009-05-17 11:40:42 +02001188 */
Stanislaw Gruszka4136c422010-10-06 11:22:10 +02001189
Johannes Berga1699b72010-07-30 16:46:07 +02001190 mutex_lock(&local->mtx);
Eliad Pellerb8564392011-06-13 12:47:30 +03001191 if (!local->scan_req)
1192 goto out;
1193
Emmanuel Grumbacha7540552013-09-16 11:12:07 +03001194 /*
1195 * We have a scan running and the driver already reported completion,
1196 * but the worker hasn't run yet or is stuck on the mutex - mark it as
1197 * cancelled.
1198 */
1199 if (test_bit(SCAN_HW_SCANNING, &local->scanning) &&
1200 test_bit(SCAN_COMPLETED, &local->scanning)) {
1201 set_bit(SCAN_HW_CANCELLED, &local->scanning);
1202 goto out;
1203 }
1204
Eliad Pellerb8564392011-06-13 12:47:30 +03001205 if (test_bit(SCAN_HW_SCANNING, &local->scanning)) {
Emmanuel Grumbacha7540552013-09-16 11:12:07 +03001206 /*
1207 * Make sure that __ieee80211_scan_completed doesn't trigger a
1208 * scan on another band.
1209 */
1210 set_bit(SCAN_HW_CANCELLED, &local->scanning);
Eliad Pellerb8564392011-06-13 12:47:30 +03001211 if (local->ops->cancel_hw_scan)
Johannes Berge2fd5db2012-07-06 21:39:28 +02001212 drv_cancel_hw_scan(local,
1213 rcu_dereference_protected(local->scan_sdata,
1214 lockdep_is_held(&local->mtx)));
Eliad Pellerb8564392011-06-13 12:47:30 +03001215 goto out;
Stanislaw Gruszka4136c422010-10-06 11:22:10 +02001216 }
Eliad Pellerb8564392011-06-13 12:47:30 +03001217
1218 /*
1219 * If the work is currently running, it must be blocked on
1220 * the mutex, but we'll set scan_sdata = NULL and it'll
1221 * simply exit once it acquires the mutex.
1222 */
1223 cancel_delayed_work(&local->scan_work);
1224 /* and clean up */
Avraham Stern7947d3e2016-07-05 15:23:12 +03001225 memset(&local->scan_info, 0, sizeof(local->scan_info));
Eliad Peller8bd2a242013-12-05 11:21:27 +02001226 __ieee80211_scan_completed(&local->hw, true);
Eliad Pellerb8564392011-06-13 12:47:30 +03001227out:
Johannes Bergd07bfd82011-03-07 15:48:41 +01001228 mutex_unlock(&local->mtx);
Johannes Berg5bb644a2009-05-17 11:40:42 +02001229}
Luciano Coelho79f460c2011-05-11 17:09:36 +03001230
David Spinadeld43c6b62013-12-08 21:48:57 +02001231int __ieee80211_request_sched_scan_start(struct ieee80211_sub_if_data *sdata,
1232 struct cfg80211_sched_scan_request *req)
Luciano Coelho79f460c2011-05-11 17:09:36 +03001233{
1234 struct ieee80211_local *local = sdata->local;
David Spinadel633e2712014-02-06 16:15:23 +02001235 struct ieee80211_scan_ies sched_scan_ies = {};
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001236 struct cfg80211_chan_def chandef;
David Spinadel633e2712014-02-06 16:15:23 +02001237 int ret, i, iebufsz, num_bands = 0;
Johannes Berg57fbcce2016-04-12 15:56:15 +02001238 u32 rate_masks[NUM_NL80211_BANDS] = {};
David Spinadel633e2712014-02-06 16:15:23 +02001239 u8 bands_used = 0;
1240 u8 *ie;
Johannes Bergb9771d42018-05-28 15:47:41 +02001241 u32 flags = 0;
Johannes Bergc604b9f2012-11-29 12:45:18 +01001242
David Spinadele4dcbb32014-02-11 13:45:41 +02001243 iebufsz = local->scan_ies_len + req->ie_len;
Luciano Coelho79f460c2011-05-11 17:09:36 +03001244
David Spinadeld43c6b62013-12-08 21:48:57 +02001245 lockdep_assert_held(&local->mtx);
Luciano Coelho79f460c2011-05-11 17:09:36 +03001246
David Spinadeld43c6b62013-12-08 21:48:57 +02001247 if (!local->ops->sched_scan_start)
1248 return -ENOTSUPP;
Luciano Coelho79f460c2011-05-11 17:09:36 +03001249
Johannes Berg57fbcce2016-04-12 15:56:15 +02001250 for (i = 0; i < NUM_NL80211_BANDS; i++) {
David Spinadel633e2712014-02-06 16:15:23 +02001251 if (local->hw.wiphy->bands[i]) {
1252 bands_used |= BIT(i);
1253 rate_masks[i] = (u32) -1;
1254 num_bands++;
Luciano Coelho79f460c2011-05-11 17:09:36 +03001255 }
Luciano Coelho79f460c2011-05-11 17:09:36 +03001256 }
1257
Johannes Bergb9771d42018-05-28 15:47:41 +02001258 if (req->flags & NL80211_SCAN_FLAG_MIN_PREQ_CONTENT)
1259 flags |= IEEE80211_PROBE_FLAG_MIN_CONTENT;
1260
Kees Cook6396bb22018-06-12 14:03:40 -07001261 ie = kcalloc(iebufsz, num_bands, GFP_KERNEL);
David Spinadel633e2712014-02-06 16:15:23 +02001262 if (!ie) {
1263 ret = -ENOMEM;
1264 goto out;
1265 }
1266
1267 ieee80211_prepare_scan_chandef(&chandef, req->scan_width);
1268
Kirtika Ruchandanicd5861b2016-11-23 20:45:49 -08001269 ieee80211_build_preq_ies(local, ie, num_bands * iebufsz,
1270 &sched_scan_ies, req->ie,
Johannes Berg00387f32018-05-28 15:47:38 +02001271 req->ie_len, bands_used, rate_masks, &chandef,
Johannes Bergb9771d42018-05-28 15:47:41 +02001272 flags);
David Spinadel633e2712014-02-06 16:15:23 +02001273
Johannes Berg30dd3ed2012-09-04 19:15:01 +02001274 ret = drv_sched_scan_start(local, sdata, req, &sched_scan_ies);
David Spinadeld43c6b62013-12-08 21:48:57 +02001275 if (ret == 0) {
Johannes Berg5260a5b2012-07-06 21:55:11 +02001276 rcu_assign_pointer(local->sched_scan_sdata, sdata);
Johannes Berg6ea0a692014-11-19 11:55:49 +01001277 rcu_assign_pointer(local->sched_scan_req, req);
David Spinadeld43c6b62013-12-08 21:48:57 +02001278 }
Luciano Coelho79f460c2011-05-11 17:09:36 +03001279
David Spinadel633e2712014-02-06 16:15:23 +02001280 kfree(ie);
David Spinadeld43c6b62013-12-08 21:48:57 +02001281
David Spinadel633e2712014-02-06 16:15:23 +02001282out:
David Spinadeld43c6b62013-12-08 21:48:57 +02001283 if (ret) {
1284 /* Clean in case of failure after HW restart or upon resume. */
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301285 RCU_INIT_POINTER(local->sched_scan_sdata, NULL);
Johannes Berg6ea0a692014-11-19 11:55:49 +01001286 RCU_INIT_POINTER(local->sched_scan_req, NULL);
David Spinadeld43c6b62013-12-08 21:48:57 +02001287 }
1288
1289 return ret;
1290}
1291
1292int ieee80211_request_sched_scan_start(struct ieee80211_sub_if_data *sdata,
1293 struct cfg80211_sched_scan_request *req)
1294{
1295 struct ieee80211_local *local = sdata->local;
1296 int ret;
1297
1298 mutex_lock(&local->mtx);
1299
1300 if (rcu_access_pointer(local->sched_scan_sdata)) {
1301 mutex_unlock(&local->mtx);
1302 return -EBUSY;
1303 }
1304
1305 ret = __ieee80211_request_sched_scan_start(sdata, req);
1306
Johannes Berg5260a5b2012-07-06 21:55:11 +02001307 mutex_unlock(&local->mtx);
Luciano Coelho79f460c2011-05-11 17:09:36 +03001308 return ret;
1309}
1310
Eliad Peller0d440ea2015-10-25 10:59:33 +02001311int ieee80211_request_sched_scan_stop(struct ieee80211_local *local)
Luciano Coelho79f460c2011-05-11 17:09:36 +03001312{
Eliad Peller0d440ea2015-10-25 10:59:33 +02001313 struct ieee80211_sub_if_data *sched_scan_sdata;
1314 int ret = -ENOENT;
Luciano Coelho79f460c2011-05-11 17:09:36 +03001315
Johannes Berg5260a5b2012-07-06 21:55:11 +02001316 mutex_lock(&local->mtx);
Luciano Coelho79f460c2011-05-11 17:09:36 +03001317
1318 if (!local->ops->sched_scan_stop) {
1319 ret = -ENOTSUPP;
1320 goto out;
1321 }
1322
David Spinadeld43c6b62013-12-08 21:48:57 +02001323 /* We don't want to restart sched scan anymore. */
Johannes Berg6ea0a692014-11-19 11:55:49 +01001324 RCU_INIT_POINTER(local->sched_scan_req, NULL);
David Spinadeld43c6b62013-12-08 21:48:57 +02001325
Eliad Peller0d440ea2015-10-25 10:59:33 +02001326 sched_scan_sdata = rcu_dereference_protected(local->sched_scan_sdata,
1327 lockdep_is_held(&local->mtx));
1328 if (sched_scan_sdata) {
1329 ret = drv_sched_scan_stop(local, sched_scan_sdata);
Alexander Bondar71228a12014-03-16 10:49:54 +02001330 if (!ret)
Andreea-Cristina Bernatad053a92014-08-22 16:14:49 +03001331 RCU_INIT_POINTER(local->sched_scan_sdata, NULL);
Alexander Bondar71228a12014-03-16 10:49:54 +02001332 }
Luciano Coelho79f460c2011-05-11 17:09:36 +03001333out:
Johannes Berg5260a5b2012-07-06 21:55:11 +02001334 mutex_unlock(&local->mtx);
Luciano Coelho79f460c2011-05-11 17:09:36 +03001335
1336 return ret;
1337}
1338
1339void ieee80211_sched_scan_results(struct ieee80211_hw *hw)
1340{
1341 struct ieee80211_local *local = hw_to_local(hw);
1342
1343 trace_api_sched_scan_results(local);
1344
Arend Van Sprielb34939b2017-04-28 13:40:28 +01001345 cfg80211_sched_scan_results(hw->wiphy, 0);
Luciano Coelho79f460c2011-05-11 17:09:36 +03001346}
1347EXPORT_SYMBOL(ieee80211_sched_scan_results);
1348
Johannes Bergf6837ba2014-04-30 14:19:04 +02001349void ieee80211_sched_scan_end(struct ieee80211_local *local)
Luciano Coelho85a99942011-05-12 16:28:29 +03001350{
Luciano Coelho85a99942011-05-12 16:28:29 +03001351 mutex_lock(&local->mtx);
1352
Johannes Berg5260a5b2012-07-06 21:55:11 +02001353 if (!rcu_access_pointer(local->sched_scan_sdata)) {
Luciano Coelho85a99942011-05-12 16:28:29 +03001354 mutex_unlock(&local->mtx);
1355 return;
1356 }
1357
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301358 RCU_INIT_POINTER(local->sched_scan_sdata, NULL);
Luciano Coelho85a99942011-05-12 16:28:29 +03001359
David Spinadeld43c6b62013-12-08 21:48:57 +02001360 /* If sched scan was aborted by the driver. */
Johannes Berg6ea0a692014-11-19 11:55:49 +01001361 RCU_INIT_POINTER(local->sched_scan_req, NULL);
David Spinadeld43c6b62013-12-08 21:48:57 +02001362
Luciano Coelho85a99942011-05-12 16:28:29 +03001363 mutex_unlock(&local->mtx);
1364
Arend Van Sprielb34939b2017-04-28 13:40:28 +01001365 cfg80211_sched_scan_stopped(local->hw.wiphy, 0);
Luciano Coelho85a99942011-05-12 16:28:29 +03001366}
1367
Johannes Bergf6837ba2014-04-30 14:19:04 +02001368void ieee80211_sched_scan_stopped_work(struct work_struct *work)
1369{
1370 struct ieee80211_local *local =
1371 container_of(work, struct ieee80211_local,
1372 sched_scan_stopped_work);
1373
1374 ieee80211_sched_scan_end(local);
1375}
1376
Luciano Coelho79f460c2011-05-11 17:09:36 +03001377void ieee80211_sched_scan_stopped(struct ieee80211_hw *hw)
1378{
1379 struct ieee80211_local *local = hw_to_local(hw);
1380
1381 trace_api_sched_scan_stopped(local);
1382
Eliad Peller2bc533b2016-01-05 16:28:06 +02001383 /*
1384 * this shouldn't really happen, so for simplicity
1385 * simply ignore it, and let mac80211 reconfigure
1386 * the sched scan later on.
1387 */
1388 if (local->in_reconfig)
1389 return;
1390
Johannes Berg18db5942013-11-06 10:34:36 +01001391 schedule_work(&local->sched_scan_stopped_work);
Luciano Coelho79f460c2011-05-11 17:09:36 +03001392}
1393EXPORT_SYMBOL(ieee80211_sched_scan_stopped);