blob: 14d5f0c8c45ff07224f2dc8e6310c2edc440874e [file] [log] [blame]
Johannes Berg2a519312009-02-10 21:25:55 +01001/*
2 * cfg80211 scan result handling
3 *
4 * Copyright 2008 Johannes Berg <johannes@sipsolutions.net>
Johannes Berg2740f0c2014-09-03 15:24:58 +03005 * Copyright 2013-2014 Intel Mobile Communications GmbH
Avraham Stern1d762502016-07-05 17:10:13 +03006 * Copyright 2016 Intel Deutschland GmbH
Johannes Berg2a519312009-02-10 21:25:55 +01007 */
8#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Johannes Berg2a519312009-02-10 21:25:55 +010010#include <linux/module.h>
11#include <linux/netdevice.h>
12#include <linux/wireless.h>
13#include <linux/nl80211.h>
14#include <linux/etherdevice.h>
15#include <net/arp.h>
16#include <net/cfg80211.h>
Johannes Berg262eb9b22011-07-13 10:39:09 +020017#include <net/cfg80211-wext.h>
Johannes Berg2a519312009-02-10 21:25:55 +010018#include <net/iw_handler.h>
19#include "core.h"
20#include "nl80211.h"
Johannes Berga9a11622009-07-27 12:01:53 +020021#include "wext-compat.h"
Hila Gonene35e4d22012-06-27 17:19:42 +030022#include "rdev-ops.h"
Johannes Berg2a519312009-02-10 21:25:55 +010023
Johannes Berg776b3582013-02-01 02:06:18 +010024/**
25 * DOC: BSS tree/list structure
26 *
27 * At the top level, the BSS list is kept in both a list in each
28 * registered device (@bss_list) as well as an RB-tree for faster
29 * lookup. In the RB-tree, entries can be looked up using their
30 * channel, MESHID, MESHCONF (for MBSSes) or channel, BSSID, SSID
31 * for other BSSes.
32 *
33 * Due to the possibility of hidden SSIDs, there's a second level
34 * structure, the "hidden_list" and "hidden_beacon_bss" pointer.
35 * The hidden_list connects all BSSes belonging to a single AP
36 * that has a hidden SSID, and connects beacon and probe response
37 * entries. For a probe response entry for a hidden SSID, the
38 * hidden_beacon_bss pointer points to the BSS struct holding the
39 * beacon's information.
40 *
41 * Reference counting is done for all these references except for
42 * the hidden_list, so that a beacon BSS struct that is otherwise
43 * not referenced has one reference for being on the bss_list and
44 * one for each probe response entry that points to it using the
45 * hidden_beacon_bss pointer. When a BSS struct that has such a
46 * pointer is get/put, the refcount update is also propagated to
47 * the referenced struct, this ensure that it cannot get removed
48 * while somebody is using the probe response version.
49 *
50 * Note that the hidden_beacon_bss pointer never changes, due to
51 * the reference counting. Therefore, no locking is needed for
52 * it.
53 *
54 * Also note that the hidden_beacon_bss pointer is only relevant
55 * if the driver uses something other than the IEs, e.g. private
56 * data stored stored in the BSS struct, since the beacon IEs are
57 * also linked into the probe response struct.
58 */
59
Johannes Berg9853a552016-11-15 12:05:11 +010060/*
61 * Limit the number of BSS entries stored in mac80211. Each one is
62 * a bit over 4k at most, so this limits to roughly 4-5M of memory.
63 * If somebody wants to really attack this though, they'd likely
64 * use small beacons, and only one type of frame, limiting each of
65 * the entries to a much smaller size (in order to generate more
66 * entries in total, so overhead is bigger.)
67 */
68static int bss_entries_limit = 1000;
69module_param(bss_entries_limit, int, 0644);
70MODULE_PARM_DESC(bss_entries_limit,
71 "limit to number of scan BSS entries (per wiphy, default 1000)");
72
Rajkumar Manoharanf9616e02012-04-13 16:38:40 +053073#define IEEE80211_SCAN_RESULT_EXPIRE (30 * HZ)
Johannes Berg2a519312009-02-10 21:25:55 +010074
Johannes Berg776b3582013-02-01 02:06:18 +010075static void bss_free(struct cfg80211_internal_bss *bss)
Amitkumar Karware8e27c62012-10-11 21:03:33 -070076{
Johannes Berg9caf0362012-11-29 01:25:20 +010077 struct cfg80211_bss_ies *ies;
Johannes Bergb629ea32012-11-28 22:14:56 +010078
79 if (WARN_ON(atomic_read(&bss->hold)))
80 return;
81
Johannes Berg9caf0362012-11-29 01:25:20 +010082 ies = (void *)rcu_access_pointer(bss->pub.beacon_ies);
Johannes Berg776b3582013-02-01 02:06:18 +010083 if (ies && !bss->pub.hidden_beacon_bss)
Johannes Berg9caf0362012-11-29 01:25:20 +010084 kfree_rcu(ies, rcu_head);
85 ies = (void *)rcu_access_pointer(bss->pub.proberesp_ies);
86 if (ies)
87 kfree_rcu(ies, rcu_head);
Amitkumar Karware8e27c62012-10-11 21:03:33 -070088
Johannes Berg776b3582013-02-01 02:06:18 +010089 /*
90 * This happens when the module is removed, it doesn't
91 * really matter any more save for completeness
92 */
93 if (!list_empty(&bss->hidden_list))
94 list_del(&bss->hidden_list);
95
Amitkumar Karware8e27c62012-10-11 21:03:33 -070096 kfree(bss);
97}
98
Zhao, Gang1b8ec872014-04-21 12:53:02 +080099static inline void bss_ref_get(struct cfg80211_registered_device *rdev,
Johannes Berg776b3582013-02-01 02:06:18 +0100100 struct cfg80211_internal_bss *bss)
Johannes Berg0532d4f2013-02-01 01:34:36 +0100101{
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800102 lockdep_assert_held(&rdev->bss_lock);
Johannes Berg776b3582013-02-01 02:06:18 +0100103
104 bss->refcount++;
105 if (bss->pub.hidden_beacon_bss) {
106 bss = container_of(bss->pub.hidden_beacon_bss,
107 struct cfg80211_internal_bss,
108 pub);
109 bss->refcount++;
110 }
Johannes Berg0532d4f2013-02-01 01:34:36 +0100111}
112
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800113static inline void bss_ref_put(struct cfg80211_registered_device *rdev,
Johannes Berg776b3582013-02-01 02:06:18 +0100114 struct cfg80211_internal_bss *bss)
Johannes Berg0532d4f2013-02-01 01:34:36 +0100115{
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800116 lockdep_assert_held(&rdev->bss_lock);
Johannes Berg776b3582013-02-01 02:06:18 +0100117
118 if (bss->pub.hidden_beacon_bss) {
119 struct cfg80211_internal_bss *hbss;
120 hbss = container_of(bss->pub.hidden_beacon_bss,
121 struct cfg80211_internal_bss,
122 pub);
123 hbss->refcount--;
124 if (hbss->refcount == 0)
125 bss_free(hbss);
126 }
127 bss->refcount--;
128 if (bss->refcount == 0)
129 bss_free(bss);
Johannes Berg0532d4f2013-02-01 01:34:36 +0100130}
131
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800132static bool __cfg80211_unlink_bss(struct cfg80211_registered_device *rdev,
Amitkumar Karware8e27c62012-10-11 21:03:33 -0700133 struct cfg80211_internal_bss *bss)
134{
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800135 lockdep_assert_held(&rdev->bss_lock);
Johannes Berg4b1af472013-02-01 01:05:43 +0100136
Johannes Berg776b3582013-02-01 02:06:18 +0100137 if (!list_empty(&bss->hidden_list)) {
138 /*
139 * don't remove the beacon entry if it has
140 * probe responses associated with it
141 */
142 if (!bss->pub.hidden_beacon_bss)
143 return false;
144 /*
145 * if it's a probe response entry break its
146 * link to the other entries in the group
147 */
148 list_del_init(&bss->hidden_list);
149 }
150
Amitkumar Karware8e27c62012-10-11 21:03:33 -0700151 list_del_init(&bss->list);
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800152 rb_erase(&bss->rbn, &rdev->bss_tree);
Johannes Berg9853a552016-11-15 12:05:11 +0100153 rdev->bss_entries--;
154 WARN_ONCE((rdev->bss_entries == 0) ^ list_empty(&rdev->bss_list),
155 "rdev bss entries[%d]/list[empty:%d] corruption\n",
156 rdev->bss_entries, list_empty(&rdev->bss_list));
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800157 bss_ref_put(rdev, bss);
Johannes Berg776b3582013-02-01 02:06:18 +0100158 return true;
Amitkumar Karware8e27c62012-10-11 21:03:33 -0700159}
160
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800161static void __cfg80211_bss_expire(struct cfg80211_registered_device *rdev,
Sam Leffler15d60302012-10-11 21:03:34 -0700162 unsigned long expire_time)
163{
164 struct cfg80211_internal_bss *bss, *tmp;
165 bool expired = false;
166
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800167 lockdep_assert_held(&rdev->bss_lock);
Johannes Berg4b1af472013-02-01 01:05:43 +0100168
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800169 list_for_each_entry_safe(bss, tmp, &rdev->bss_list, list) {
Sam Leffler15d60302012-10-11 21:03:34 -0700170 if (atomic_read(&bss->hold))
171 continue;
172 if (!time_after(expire_time, bss->ts))
173 continue;
174
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800175 if (__cfg80211_unlink_bss(rdev, bss))
Johannes Berg776b3582013-02-01 02:06:18 +0100176 expired = true;
Sam Leffler15d60302012-10-11 21:03:34 -0700177 }
178
179 if (expired)
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800180 rdev->bss_generation++;
Sam Leffler15d60302012-10-11 21:03:34 -0700181}
182
Johannes Berg9853a552016-11-15 12:05:11 +0100183static bool cfg80211_bss_expire_oldest(struct cfg80211_registered_device *rdev)
184{
185 struct cfg80211_internal_bss *bss, *oldest = NULL;
186 bool ret;
187
188 lockdep_assert_held(&rdev->bss_lock);
189
190 list_for_each_entry(bss, &rdev->bss_list, list) {
191 if (atomic_read(&bss->hold))
192 continue;
193
194 if (!list_empty(&bss->hidden_list) &&
195 !bss->pub.hidden_beacon_bss)
196 continue;
197
198 if (oldest && time_before(oldest->ts, bss->ts))
199 continue;
200 oldest = bss;
201 }
202
203 if (WARN_ON(!oldest))
204 return false;
205
206 /*
207 * The callers make sure to increase rdev->bss_generation if anything
208 * gets removed (and a new entry added), so there's no need to also do
209 * it here.
210 */
211
212 ret = __cfg80211_unlink_bss(rdev, oldest);
213 WARN_ON(!ret);
214 return ret;
215}
216
Johannes Bergf9d15d12014-01-22 11:14:19 +0200217void ___cfg80211_scan_done(struct cfg80211_registered_device *rdev,
218 bool send_message)
Johannes Berg2a519312009-02-10 21:25:55 +0100219{
Johannes Berg667503d2009-07-07 03:56:11 +0200220 struct cfg80211_scan_request *request;
Johannes Bergfd014282012-06-18 19:17:03 +0200221 struct wireless_dev *wdev;
Johannes Bergf9d15d12014-01-22 11:14:19 +0200222 struct sk_buff *msg;
Johannes Berg3d23e342009-09-29 23:27:28 +0200223#ifdef CONFIG_CFG80211_WEXT
Johannes Berg2a519312009-02-10 21:25:55 +0100224 union iwreq_data wrqu;
225#endif
226
Johannes Berg5fe231e2013-05-08 21:45:15 +0200227 ASSERT_RTNL();
Johannes Berg01a0ac42009-08-20 21:36:16 +0200228
Johannes Bergf9d15d12014-01-22 11:14:19 +0200229 if (rdev->scan_msg) {
Arend Van Spriel505a2e82016-12-16 11:21:54 +0000230 nl80211_send_scan_msg(rdev, rdev->scan_msg);
Johannes Bergf9d15d12014-01-22 11:14:19 +0200231 rdev->scan_msg = NULL;
232 return;
233 }
Johannes Berg667503d2009-07-07 03:56:11 +0200234
Johannes Bergf9d15d12014-01-22 11:14:19 +0200235 request = rdev->scan_req;
Johannes Berg01a0ac42009-08-20 21:36:16 +0200236 if (!request)
237 return;
238
Johannes Bergfd014282012-06-18 19:17:03 +0200239 wdev = request->wdev;
Johannes Berg2a519312009-02-10 21:25:55 +0100240
Johannes Berg6829c8782009-07-02 09:13:27 +0200241 /*
242 * This must be before sending the other events!
243 * Otherwise, wpa_supplicant gets completely confused with
244 * wext events.
245 */
Johannes Bergfd014282012-06-18 19:17:03 +0200246 if (wdev->netdev)
247 cfg80211_sme_scan_done(wdev->netdev);
Johannes Berg6829c8782009-07-02 09:13:27 +0200248
Avraham Stern1d762502016-07-05 17:10:13 +0300249 if (!request->info.aborted &&
Johannes Bergf9d15d12014-01-22 11:14:19 +0200250 request->flags & NL80211_SCAN_FLAG_FLUSH) {
251 /* flush entries from previous scans */
252 spin_lock_bh(&rdev->bss_lock);
253 __cfg80211_bss_expire(rdev, request->scan_start);
254 spin_unlock_bh(&rdev->bss_lock);
Sam Leffler15d60302012-10-11 21:03:34 -0700255 }
Johannes Berg2a519312009-02-10 21:25:55 +0100256
Avraham Stern1d762502016-07-05 17:10:13 +0300257 msg = nl80211_build_scan_msg(rdev, wdev, request->info.aborted);
Johannes Bergf9d15d12014-01-22 11:14:19 +0200258
Johannes Berg3d23e342009-09-29 23:27:28 +0200259#ifdef CONFIG_CFG80211_WEXT
Avraham Stern1d762502016-07-05 17:10:13 +0300260 if (wdev->netdev && !request->info.aborted) {
Johannes Berg2a519312009-02-10 21:25:55 +0100261 memset(&wrqu, 0, sizeof(wrqu));
262
Johannes Bergfd014282012-06-18 19:17:03 +0200263 wireless_send_event(wdev->netdev, SIOCGIWSCAN, &wrqu, NULL);
Johannes Berg2a519312009-02-10 21:25:55 +0100264 }
265#endif
266
Johannes Bergfd014282012-06-18 19:17:03 +0200267 if (wdev->netdev)
268 dev_put(wdev->netdev);
Johannes Berg2a519312009-02-10 21:25:55 +0100269
Johannes Berg36e6fea2009-08-12 22:21:21 +0200270 rdev->scan_req = NULL;
Eliad Peller4a58e7c2013-12-05 18:30:17 +0200271 kfree(request);
Johannes Bergf9d15d12014-01-22 11:14:19 +0200272
273 if (!send_message)
274 rdev->scan_msg = msg;
275 else
Arend Van Spriel505a2e82016-12-16 11:21:54 +0000276 nl80211_send_scan_msg(rdev, msg);
Johannes Berg2a519312009-02-10 21:25:55 +0100277}
Johannes Berg667503d2009-07-07 03:56:11 +0200278
Johannes Berg36e6fea2009-08-12 22:21:21 +0200279void __cfg80211_scan_done(struct work_struct *wk)
280{
281 struct cfg80211_registered_device *rdev;
282
283 rdev = container_of(wk, struct cfg80211_registered_device,
284 scan_done_wk);
285
Johannes Berg5fe231e2013-05-08 21:45:15 +0200286 rtnl_lock();
Johannes Bergf9d15d12014-01-22 11:14:19 +0200287 ___cfg80211_scan_done(rdev, true);
Johannes Berg5fe231e2013-05-08 21:45:15 +0200288 rtnl_unlock();
Johannes Berg36e6fea2009-08-12 22:21:21 +0200289}
290
Avraham Stern1d762502016-07-05 17:10:13 +0300291void cfg80211_scan_done(struct cfg80211_scan_request *request,
292 struct cfg80211_scan_info *info)
Johannes Berg667503d2009-07-07 03:56:11 +0200293{
Avraham Stern1d762502016-07-05 17:10:13 +0300294 trace_cfg80211_scan_done(request, info);
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800295 WARN_ON(request != wiphy_to_rdev(request->wiphy)->scan_req);
Johannes Berg667503d2009-07-07 03:56:11 +0200296
Avraham Stern1d762502016-07-05 17:10:13 +0300297 request->info = *info;
Johannes Berg5fe231e2013-05-08 21:45:15 +0200298 request->notified = true;
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800299 queue_work(cfg80211_wq, &wiphy_to_rdev(request->wiphy)->scan_done_wk);
Johannes Berg667503d2009-07-07 03:56:11 +0200300}
Johannes Berg2a519312009-02-10 21:25:55 +0100301EXPORT_SYMBOL(cfg80211_scan_done);
302
Arend Van Sprielca986ad2017-04-21 13:05:00 +0100303void cfg80211_add_sched_scan_req(struct cfg80211_registered_device *rdev,
304 struct cfg80211_sched_scan_request *req)
305{
306 ASSERT_RTNL();
307
308 list_add_rcu(&req->list, &rdev->sched_scan_req_list);
309}
310
311static void cfg80211_del_sched_scan_req(struct cfg80211_registered_device *rdev,
312 struct cfg80211_sched_scan_request *req)
313{
314 ASSERT_RTNL();
315
316 list_del_rcu(&req->list);
317 kfree_rcu(req, rcu_head);
318}
319
320static struct cfg80211_sched_scan_request *
321cfg80211_find_sched_scan_req(struct cfg80211_registered_device *rdev, u64 reqid)
322{
323 struct cfg80211_sched_scan_request *pos;
324
325 ASSERT_RTNL();
326
327 list_for_each_entry(pos, &rdev->sched_scan_req_list, list) {
328 if (pos->reqid == reqid)
329 return pos;
330 }
Arend Van Sprielb34939b2017-04-28 13:40:28 +0100331 return NULL;
Arend Van Sprielca986ad2017-04-21 13:05:00 +0100332}
333
334/*
335 * Determines if a scheduled scan request can be handled. When a legacy
336 * scheduled scan is running no other scheduled scan is allowed regardless
337 * whether the request is for legacy or multi-support scan. When a multi-support
338 * scheduled scan is running a request for legacy scan is not allowed. In this
339 * case a request for multi-support scan can be handled if resources are
340 * available, ie. struct wiphy::max_sched_scan_reqs limit is not yet reached.
341 */
342int cfg80211_sched_scan_req_possible(struct cfg80211_registered_device *rdev,
343 bool want_multi)
344{
345 struct cfg80211_sched_scan_request *pos;
346 int i = 0;
347
348 list_for_each_entry(pos, &rdev->sched_scan_req_list, list) {
349 /* request id zero means legacy in progress */
350 if (!i && !pos->reqid)
351 return -EINPROGRESS;
352 i++;
353 }
354
355 if (i) {
356 /* no legacy allowed when multi request(s) are active */
357 if (!want_multi)
358 return -EINPROGRESS;
359
360 /* resource limit reached */
361 if (i == rdev->wiphy.max_sched_scan_reqs)
362 return -ENOSPC;
363 }
364 return 0;
365}
366
Arend Van Sprielb34939b2017-04-28 13:40:28 +0100367void cfg80211_sched_scan_results_wk(struct work_struct *work)
Luciano Coelho807f8a82011-05-11 17:09:35 +0300368{
369 struct cfg80211_registered_device *rdev;
Arend Van Sprielb34939b2017-04-28 13:40:28 +0100370 struct cfg80211_sched_scan_request *req, *tmp;
Luciano Coelho807f8a82011-05-11 17:09:35 +0300371
Arend Van Sprielb34939b2017-04-28 13:40:28 +0100372 rdev = container_of(work, struct cfg80211_registered_device,
373 sched_scan_res_wk);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300374
Johannes Berg5fe231e2013-05-08 21:45:15 +0200375 rtnl_lock();
Arend Van Sprielb34939b2017-04-28 13:40:28 +0100376 list_for_each_entry_safe(req, tmp, &rdev->sched_scan_req_list, list) {
377 if (req->report_results) {
378 req->report_results = false;
379 if (req->flags & NL80211_SCAN_FLAG_FLUSH) {
380 /* flush entries from previous scans */
381 spin_lock_bh(&rdev->bss_lock);
382 __cfg80211_bss_expire(rdev, req->scan_start);
383 spin_unlock_bh(&rdev->bss_lock);
384 req->scan_start = jiffies;
385 }
386 nl80211_send_sched_scan(req,
387 NL80211_CMD_SCHED_SCAN_RESULTS);
Sam Leffler15d60302012-10-11 21:03:34 -0700388 }
Sam Leffler15d60302012-10-11 21:03:34 -0700389 }
Johannes Berg5fe231e2013-05-08 21:45:15 +0200390 rtnl_unlock();
Luciano Coelho807f8a82011-05-11 17:09:35 +0300391}
392
Arend Van Sprielb34939b2017-04-28 13:40:28 +0100393void cfg80211_sched_scan_results(struct wiphy *wiphy, u64 reqid)
Luciano Coelho807f8a82011-05-11 17:09:35 +0300394{
Arend Van Sprielca986ad2017-04-21 13:05:00 +0100395 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
396 struct cfg80211_sched_scan_request *request;
397
Arend Van Sprielb34939b2017-04-28 13:40:28 +0100398 trace_cfg80211_sched_scan_results(wiphy, reqid);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300399 /* ignore if we're not scanning */
Jukka Rissanen31a60ed2014-12-15 13:25:38 +0200400
Arend Van Sprielca986ad2017-04-21 13:05:00 +0100401 rtnl_lock();
Arend Van Sprielb34939b2017-04-28 13:40:28 +0100402 request = cfg80211_find_sched_scan_req(rdev, reqid);
403 if (request) {
404 request->report_results = true;
405 queue_work(cfg80211_wq, &rdev->sched_scan_res_wk);
406 }
Arend Van Sprielca986ad2017-04-21 13:05:00 +0100407 rtnl_unlock();
Luciano Coelho807f8a82011-05-11 17:09:35 +0300408}
409EXPORT_SYMBOL(cfg80211_sched_scan_results);
410
Arend Van Sprielb34939b2017-04-28 13:40:28 +0100411void cfg80211_sched_scan_stopped_rtnl(struct wiphy *wiphy, u64 reqid)
Luciano Coelho807f8a82011-05-11 17:09:35 +0300412{
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800413 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300414
Eliad Peller792e6aa2014-04-30 16:14:23 +0300415 ASSERT_RTNL();
416
Arend Van Sprielb34939b2017-04-28 13:40:28 +0100417 trace_cfg80211_sched_scan_stopped(wiphy, reqid);
Beni Lev4ee3e062012-08-27 12:49:39 +0300418
Arend Van Sprielb34939b2017-04-28 13:40:28 +0100419 __cfg80211_stop_sched_scan(rdev, reqid, true);
Eliad Peller792e6aa2014-04-30 16:14:23 +0300420}
421EXPORT_SYMBOL(cfg80211_sched_scan_stopped_rtnl);
422
Arend Van Sprielb34939b2017-04-28 13:40:28 +0100423void cfg80211_sched_scan_stopped(struct wiphy *wiphy, u64 reqid)
Eliad Peller792e6aa2014-04-30 16:14:23 +0300424{
425 rtnl_lock();
Arend Van Sprielb34939b2017-04-28 13:40:28 +0100426 cfg80211_sched_scan_stopped_rtnl(wiphy, reqid);
Johannes Berg5fe231e2013-05-08 21:45:15 +0200427 rtnl_unlock();
Luciano Coelho807f8a82011-05-11 17:09:35 +0300428}
Luciano Coelho807f8a82011-05-11 17:09:35 +0300429EXPORT_SYMBOL(cfg80211_sched_scan_stopped);
430
Arend Van Sprielca986ad2017-04-21 13:05:00 +0100431int cfg80211_stop_sched_scan_req(struct cfg80211_registered_device *rdev,
432 struct cfg80211_sched_scan_request *req,
433 bool driver_initiated)
Luciano Coelho807f8a82011-05-11 17:09:35 +0300434{
Johannes Berg5fe231e2013-05-08 21:45:15 +0200435 ASSERT_RTNL();
Luciano Coelho807f8a82011-05-11 17:09:35 +0300436
Luciano Coelho85a99942011-05-12 16:28:29 +0300437 if (!driver_initiated) {
Arend Van Spriel3a3ecf12017-04-21 13:05:02 +0100438 int err = rdev_sched_scan_stop(rdev, req->dev, req->reqid);
Luciano Coelho85a99942011-05-12 16:28:29 +0300439 if (err)
440 return err;
441 }
Luciano Coelho807f8a82011-05-11 17:09:35 +0300442
Arend Van Sprielca986ad2017-04-21 13:05:00 +0100443 nl80211_send_sched_scan(req, NL80211_CMD_SCHED_SCAN_STOPPED);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300444
Arend Van Sprielca986ad2017-04-21 13:05:00 +0100445 cfg80211_del_sched_scan_req(rdev, req);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300446
Jesper Juhl3b4670f2011-06-29 22:49:33 +0200447 return 0;
Luciano Coelho807f8a82011-05-11 17:09:35 +0300448}
449
Arend Van Sprielca986ad2017-04-21 13:05:00 +0100450int __cfg80211_stop_sched_scan(struct cfg80211_registered_device *rdev,
451 u64 reqid, bool driver_initiated)
452{
453 struct cfg80211_sched_scan_request *sched_scan_req;
454
455 ASSERT_RTNL();
456
457 sched_scan_req = cfg80211_find_sched_scan_req(rdev, reqid);
Arend Van Sprielb34939b2017-04-28 13:40:28 +0100458 if (!sched_scan_req)
459 return -ENOENT;
Arend Van Sprielca986ad2017-04-21 13:05:00 +0100460
461 return cfg80211_stop_sched_scan_req(rdev, sched_scan_req,
462 driver_initiated);
463}
464
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800465void cfg80211_bss_age(struct cfg80211_registered_device *rdev,
Dan Williamscb3a8ee2009-02-11 17:14:43 -0500466 unsigned long age_secs)
467{
468 struct cfg80211_internal_bss *bss;
469 unsigned long age_jiffies = msecs_to_jiffies(age_secs * MSEC_PER_SEC);
470
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800471 spin_lock_bh(&rdev->bss_lock);
472 list_for_each_entry(bss, &rdev->bss_list, list)
Dan Williamscb3a8ee2009-02-11 17:14:43 -0500473 bss->ts -= age_jiffies;
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800474 spin_unlock_bh(&rdev->bss_lock);
Dan Williamscb3a8ee2009-02-11 17:14:43 -0500475}
476
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800477void cfg80211_bss_expire(struct cfg80211_registered_device *rdev)
Johannes Berg2a519312009-02-10 21:25:55 +0100478{
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800479 __cfg80211_bss_expire(rdev, jiffies - IEEE80211_SCAN_RESULT_EXPIRE);
Johannes Berg2a519312009-02-10 21:25:55 +0100480}
481
Luca Coelhofbd05e42016-09-15 18:15:09 +0300482const u8 *cfg80211_find_ie_match(u8 eid, const u8 *ies, int len,
483 const u8 *match, int match_len,
484 int match_offset)
Johannes Berg2a519312009-02-10 21:25:55 +0100485{
Luca Coelhofbd05e42016-09-15 18:15:09 +0300486 /* match_offset can't be smaller than 2, unless match_len is
487 * zero, in which case match_offset must be zero as well.
488 */
489 if (WARN_ON((match_len && match_offset < 2) ||
490 (!match_len && match_offset)))
491 return NULL;
492
493 while (len >= 2 && len >= ies[1] + 2) {
494 if ((ies[0] == eid) &&
495 (ies[1] + 2 >= match_offset + match_len) &&
496 !memcmp(ies + match_offset, match, match_len))
497 return ies;
498
Johannes Berg2a519312009-02-10 21:25:55 +0100499 len -= ies[1] + 2;
500 ies += ies[1] + 2;
501 }
Luca Coelhofbd05e42016-09-15 18:15:09 +0300502
503 return NULL;
Johannes Berg2a519312009-02-10 21:25:55 +0100504}
Luca Coelhofbd05e42016-09-15 18:15:09 +0300505EXPORT_SYMBOL(cfg80211_find_ie_match);
Johannes Berg2a519312009-02-10 21:25:55 +0100506
Emmanuel Grumbach9e9ea432016-05-03 16:08:07 +0300507const u8 *cfg80211_find_vendor_ie(unsigned int oui, int oui_type,
Eliad Peller0c28ec52011-09-15 11:53:01 +0300508 const u8 *ies, int len)
509{
Luca Coelhofbd05e42016-09-15 18:15:09 +0300510 const u8 *ie;
511 u8 match[] = { oui >> 16, oui >> 8, oui, oui_type };
512 int match_len = (oui_type < 0) ? 3 : sizeof(match);
Eliad Peller0c28ec52011-09-15 11:53:01 +0300513
Emmanuel Grumbach9e9ea432016-05-03 16:08:07 +0300514 if (WARN_ON(oui_type > 0xff))
515 return NULL;
516
Luca Coelhofbd05e42016-09-15 18:15:09 +0300517 ie = cfg80211_find_ie_match(WLAN_EID_VENDOR_SPECIFIC, ies, len,
518 match, match_len, 2);
Eliad Peller0c28ec52011-09-15 11:53:01 +0300519
Luca Coelhofbd05e42016-09-15 18:15:09 +0300520 if (ie && (ie[1] < 4))
521 return NULL;
Luciano Coelho67194292013-02-12 20:11:38 +0200522
Luca Coelhofbd05e42016-09-15 18:15:09 +0300523 return ie;
Eliad Peller0c28ec52011-09-15 11:53:01 +0300524}
525EXPORT_SYMBOL(cfg80211_find_vendor_ie);
526
Johannes Berg915de2f2012-11-28 22:39:37 +0100527static bool is_bss(struct cfg80211_bss *a, const u8 *bssid,
Johannes Berg2a519312009-02-10 21:25:55 +0100528 const u8 *ssid, size_t ssid_len)
529{
Johannes Berg9caf0362012-11-29 01:25:20 +0100530 const struct cfg80211_bss_ies *ies;
Johannes Berg2a519312009-02-10 21:25:55 +0100531 const u8 *ssidie;
532
Joe Perchesac422d32012-05-08 18:56:55 +0000533 if (bssid && !ether_addr_equal(a->bssid, bssid))
Johannes Berg2a519312009-02-10 21:25:55 +0100534 return false;
535
Johannes Berg79420f02009-02-10 21:25:59 +0100536 if (!ssid)
537 return true;
538
Johannes Berg9caf0362012-11-29 01:25:20 +0100539 ies = rcu_access_pointer(a->ies);
540 if (!ies)
541 return false;
542 ssidie = cfg80211_find_ie(WLAN_EID_SSID, ies->data, ies->len);
Johannes Berg2a519312009-02-10 21:25:55 +0100543 if (!ssidie)
544 return false;
545 if (ssidie[1] != ssid_len)
546 return false;
547 return memcmp(ssidie + 2, ssid, ssid_len) == 0;
548}
549
Johannes Berg4593c4c2013-02-01 19:20:03 +0100550/**
551 * enum bss_compare_mode - BSS compare mode
552 * @BSS_CMP_REGULAR: regular compare mode (for insertion and normal find)
553 * @BSS_CMP_HIDE_ZLEN: find hidden SSID with zero-length mode
554 * @BSS_CMP_HIDE_NUL: find hidden SSID with NUL-ed out mode
555 */
556enum bss_compare_mode {
557 BSS_CMP_REGULAR,
558 BSS_CMP_HIDE_ZLEN,
559 BSS_CMP_HIDE_NUL,
560};
561
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100562static int cmp_bss(struct cfg80211_bss *a,
Johannes Berg5622f5b2013-01-30 00:26:45 +0100563 struct cfg80211_bss *b,
Johannes Berg4593c4c2013-02-01 19:20:03 +0100564 enum bss_compare_mode mode)
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100565{
Johannes Berg9caf0362012-11-29 01:25:20 +0100566 const struct cfg80211_bss_ies *a_ies, *b_ies;
Johannes Berg3af63412013-01-30 00:40:20 +0100567 const u8 *ie1 = NULL;
568 const u8 *ie2 = NULL;
Johannes Berg5622f5b2013-01-30 00:26:45 +0100569 int i, r;
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100570
Johannes Berg3af63412013-01-30 00:40:20 +0100571 if (a->channel != b->channel)
572 return b->channel->center_freq - a->channel->center_freq;
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100573
Johannes Berg9caf0362012-11-29 01:25:20 +0100574 a_ies = rcu_access_pointer(a->ies);
575 if (!a_ies)
576 return -1;
577 b_ies = rcu_access_pointer(b->ies);
578 if (!b_ies)
579 return 1;
580
Johannes Berg3af63412013-01-30 00:40:20 +0100581 if (WLAN_CAPABILITY_IS_STA_BSS(a->capability))
582 ie1 = cfg80211_find_ie(WLAN_EID_MESH_ID,
583 a_ies->data, a_ies->len);
584 if (WLAN_CAPABILITY_IS_STA_BSS(b->capability))
585 ie2 = cfg80211_find_ie(WLAN_EID_MESH_ID,
586 b_ies->data, b_ies->len);
587 if (ie1 && ie2) {
588 int mesh_id_cmp;
589
590 if (ie1[1] == ie2[1])
591 mesh_id_cmp = memcmp(ie1 + 2, ie2 + 2, ie1[1]);
592 else
593 mesh_id_cmp = ie2[1] - ie1[1];
594
595 ie1 = cfg80211_find_ie(WLAN_EID_MESH_CONFIG,
596 a_ies->data, a_ies->len);
597 ie2 = cfg80211_find_ie(WLAN_EID_MESH_CONFIG,
598 b_ies->data, b_ies->len);
599 if (ie1 && ie2) {
600 if (mesh_id_cmp)
601 return mesh_id_cmp;
602 if (ie1[1] != ie2[1])
603 return ie2[1] - ie1[1];
604 return memcmp(ie1 + 2, ie2 + 2, ie1[1]);
605 }
606 }
607
Johannes Berg3af63412013-01-30 00:40:20 +0100608 r = memcmp(a->bssid, b->bssid, sizeof(a->bssid));
609 if (r)
610 return r;
611
Johannes Berg9caf0362012-11-29 01:25:20 +0100612 ie1 = cfg80211_find_ie(WLAN_EID_SSID, a_ies->data, a_ies->len);
613 ie2 = cfg80211_find_ie(WLAN_EID_SSID, b_ies->data, b_ies->len);
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100614
Johannes Berg5622f5b2013-01-30 00:26:45 +0100615 if (!ie1 && !ie2)
616 return 0;
617
Johannes Bergf94f8b12012-11-28 22:42:34 +0100618 /*
Johannes Berg5622f5b2013-01-30 00:26:45 +0100619 * Note that with "hide_ssid", the function returns a match if
620 * the already-present BSS ("b") is a hidden SSID beacon for
621 * the new BSS ("a").
Johannes Bergf94f8b12012-11-28 22:42:34 +0100622 */
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100623
624 /* sort missing IE before (left of) present IE */
625 if (!ie1)
626 return -1;
627 if (!ie2)
628 return 1;
629
Johannes Berg4593c4c2013-02-01 19:20:03 +0100630 switch (mode) {
631 case BSS_CMP_HIDE_ZLEN:
632 /*
633 * In ZLEN mode we assume the BSS entry we're
634 * looking for has a zero-length SSID. So if
635 * the one we're looking at right now has that,
636 * return 0. Otherwise, return the difference
637 * in length, but since we're looking for the
638 * 0-length it's really equivalent to returning
639 * the length of the one we're looking at.
640 *
641 * No content comparison is needed as we assume
642 * the content length is zero.
643 */
644 return ie2[1];
645 case BSS_CMP_REGULAR:
646 default:
647 /* sort by length first, then by contents */
648 if (ie1[1] != ie2[1])
649 return ie2[1] - ie1[1];
Johannes Berg5622f5b2013-01-30 00:26:45 +0100650 return memcmp(ie1 + 2, ie2 + 2, ie1[1]);
Johannes Berg4593c4c2013-02-01 19:20:03 +0100651 case BSS_CMP_HIDE_NUL:
652 if (ie1[1] != ie2[1])
653 return ie2[1] - ie1[1];
654 /* this is equivalent to memcmp(zeroes, ie2 + 2, len) */
655 for (i = 0; i < ie2[1]; i++)
656 if (ie2[i + 2])
657 return -1;
658 return 0;
659 }
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100660}
661
Dedy Lansky6eb18132015-02-08 15:52:03 +0200662static bool cfg80211_bss_type_match(u16 capability,
Johannes Berg57fbcce2016-04-12 15:56:15 +0200663 enum nl80211_band band,
Dedy Lansky6eb18132015-02-08 15:52:03 +0200664 enum ieee80211_bss_type bss_type)
665{
666 bool ret = true;
667 u16 mask, val;
668
669 if (bss_type == IEEE80211_BSS_TYPE_ANY)
670 return ret;
671
Johannes Berg57fbcce2016-04-12 15:56:15 +0200672 if (band == NL80211_BAND_60GHZ) {
Dedy Lansky6eb18132015-02-08 15:52:03 +0200673 mask = WLAN_CAPABILITY_DMG_TYPE_MASK;
674 switch (bss_type) {
675 case IEEE80211_BSS_TYPE_ESS:
676 val = WLAN_CAPABILITY_DMG_TYPE_AP;
677 break;
678 case IEEE80211_BSS_TYPE_PBSS:
679 val = WLAN_CAPABILITY_DMG_TYPE_PBSS;
680 break;
681 case IEEE80211_BSS_TYPE_IBSS:
682 val = WLAN_CAPABILITY_DMG_TYPE_IBSS;
683 break;
684 default:
685 return false;
686 }
687 } else {
688 mask = WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_IBSS;
689 switch (bss_type) {
690 case IEEE80211_BSS_TYPE_ESS:
691 val = WLAN_CAPABILITY_ESS;
692 break;
693 case IEEE80211_BSS_TYPE_IBSS:
694 val = WLAN_CAPABILITY_IBSS;
695 break;
696 case IEEE80211_BSS_TYPE_MBSS:
697 val = 0;
698 break;
699 default:
700 return false;
701 }
702 }
703
704 ret = ((capability & mask) == val);
705 return ret;
706}
707
Ben Greear0e3a39b2013-06-19 14:06:27 -0700708/* Returned bss is reference counted and must be cleaned up appropriately. */
Johannes Berg2a519312009-02-10 21:25:55 +0100709struct cfg80211_bss *cfg80211_get_bss(struct wiphy *wiphy,
710 struct ieee80211_channel *channel,
711 const u8 *bssid,
Johannes Berg79420f02009-02-10 21:25:59 +0100712 const u8 *ssid, size_t ssid_len,
Dedy Lansky6eb18132015-02-08 15:52:03 +0200713 enum ieee80211_bss_type bss_type,
714 enum ieee80211_privacy privacy)
Johannes Berg2a519312009-02-10 21:25:55 +0100715{
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800716 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg2a519312009-02-10 21:25:55 +0100717 struct cfg80211_internal_bss *bss, *res = NULL;
Johannes Bergccb6c132010-07-13 10:55:38 +0200718 unsigned long now = jiffies;
Dedy Lansky6eb18132015-02-08 15:52:03 +0200719 int bss_privacy;
Johannes Berg2a519312009-02-10 21:25:55 +0100720
Dedy Lansky6eb18132015-02-08 15:52:03 +0200721 trace_cfg80211_get_bss(wiphy, channel, bssid, ssid, ssid_len, bss_type,
722 privacy);
Beni Lev4ee3e062012-08-27 12:49:39 +0300723
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800724 spin_lock_bh(&rdev->bss_lock);
Johannes Berg2a519312009-02-10 21:25:55 +0100725
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800726 list_for_each_entry(bss, &rdev->bss_list, list) {
Dedy Lansky6eb18132015-02-08 15:52:03 +0200727 if (!cfg80211_bss_type_match(bss->pub.capability,
728 bss->pub.channel->band, bss_type))
729 continue;
730
731 bss_privacy = (bss->pub.capability & WLAN_CAPABILITY_PRIVACY);
732 if ((privacy == IEEE80211_PRIVACY_ON && !bss_privacy) ||
733 (privacy == IEEE80211_PRIVACY_OFF && bss_privacy))
Johannes Berg79420f02009-02-10 21:25:59 +0100734 continue;
Johannes Berg2a519312009-02-10 21:25:55 +0100735 if (channel && bss->pub.channel != channel)
736 continue;
Johannes Bergc14a7402014-04-09 22:36:50 +0200737 if (!is_valid_ether_addr(bss->pub.bssid))
738 continue;
Johannes Bergccb6c132010-07-13 10:55:38 +0200739 /* Don't get expired BSS structs */
740 if (time_after(now, bss->ts + IEEE80211_SCAN_RESULT_EXPIRE) &&
741 !atomic_read(&bss->hold))
742 continue;
Johannes Berg2a519312009-02-10 21:25:55 +0100743 if (is_bss(&bss->pub, bssid, ssid, ssid_len)) {
744 res = bss;
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800745 bss_ref_get(rdev, res);
Johannes Berg2a519312009-02-10 21:25:55 +0100746 break;
747 }
748 }
749
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800750 spin_unlock_bh(&rdev->bss_lock);
Johannes Berg2a519312009-02-10 21:25:55 +0100751 if (!res)
752 return NULL;
Beni Lev4ee3e062012-08-27 12:49:39 +0300753 trace_cfg80211_return_bss(&res->pub);
Johannes Berg2a519312009-02-10 21:25:55 +0100754 return &res->pub;
755}
756EXPORT_SYMBOL(cfg80211_get_bss);
757
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800758static void rb_insert_bss(struct cfg80211_registered_device *rdev,
Johannes Berg2a519312009-02-10 21:25:55 +0100759 struct cfg80211_internal_bss *bss)
760{
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800761 struct rb_node **p = &rdev->bss_tree.rb_node;
Johannes Berg2a519312009-02-10 21:25:55 +0100762 struct rb_node *parent = NULL;
763 struct cfg80211_internal_bss *tbss;
764 int cmp;
765
766 while (*p) {
767 parent = *p;
768 tbss = rb_entry(parent, struct cfg80211_internal_bss, rbn);
769
Johannes Berg4593c4c2013-02-01 19:20:03 +0100770 cmp = cmp_bss(&bss->pub, &tbss->pub, BSS_CMP_REGULAR);
Johannes Berg2a519312009-02-10 21:25:55 +0100771
772 if (WARN_ON(!cmp)) {
773 /* will sort of leak this BSS */
774 return;
775 }
776
777 if (cmp < 0)
778 p = &(*p)->rb_left;
779 else
780 p = &(*p)->rb_right;
781 }
782
783 rb_link_node(&bss->rbn, parent, p);
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800784 rb_insert_color(&bss->rbn, &rdev->bss_tree);
Johannes Berg2a519312009-02-10 21:25:55 +0100785}
786
787static struct cfg80211_internal_bss *
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800788rb_find_bss(struct cfg80211_registered_device *rdev,
Johannes Berg5622f5b2013-01-30 00:26:45 +0100789 struct cfg80211_internal_bss *res,
Johannes Berg4593c4c2013-02-01 19:20:03 +0100790 enum bss_compare_mode mode)
Johannes Berg2a519312009-02-10 21:25:55 +0100791{
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800792 struct rb_node *n = rdev->bss_tree.rb_node;
Johannes Berg2a519312009-02-10 21:25:55 +0100793 struct cfg80211_internal_bss *bss;
794 int r;
795
796 while (n) {
797 bss = rb_entry(n, struct cfg80211_internal_bss, rbn);
Johannes Berg4593c4c2013-02-01 19:20:03 +0100798 r = cmp_bss(&res->pub, &bss->pub, mode);
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100799
800 if (r == 0)
801 return bss;
802 else if (r < 0)
803 n = n->rb_left;
804 else
805 n = n->rb_right;
806 }
807
808 return NULL;
809}
810
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800811static bool cfg80211_combine_bsses(struct cfg80211_registered_device *rdev,
Johannes Berg776b3582013-02-01 02:06:18 +0100812 struct cfg80211_internal_bss *new)
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100813{
Johannes Berg9caf0362012-11-29 01:25:20 +0100814 const struct cfg80211_bss_ies *ies;
Johannes Berg776b3582013-02-01 02:06:18 +0100815 struct cfg80211_internal_bss *bss;
816 const u8 *ie;
817 int i, ssidlen;
818 u8 fold = 0;
Johannes Berg9853a552016-11-15 12:05:11 +0100819 u32 n_entries = 0;
Johannes Berg9caf0362012-11-29 01:25:20 +0100820
Johannes Berg776b3582013-02-01 02:06:18 +0100821 ies = rcu_access_pointer(new->pub.beacon_ies);
Johannes Berg9caf0362012-11-29 01:25:20 +0100822 if (WARN_ON(!ies))
Johannes Berg776b3582013-02-01 02:06:18 +0100823 return false;
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100824
Johannes Berg776b3582013-02-01 02:06:18 +0100825 ie = cfg80211_find_ie(WLAN_EID_SSID, ies->data, ies->len);
826 if (!ie) {
827 /* nothing to do */
828 return true;
829 }
830
831 ssidlen = ie[1];
832 for (i = 0; i < ssidlen; i++)
833 fold |= ie[2 + i];
834
835 if (fold) {
836 /* not a hidden SSID */
837 return true;
838 }
839
840 /* This is the bad part ... */
841
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800842 list_for_each_entry(bss, &rdev->bss_list, list) {
Johannes Berg9853a552016-11-15 12:05:11 +0100843 /*
844 * we're iterating all the entries anyway, so take the
845 * opportunity to validate the list length accounting
846 */
847 n_entries++;
848
Johannes Berg776b3582013-02-01 02:06:18 +0100849 if (!ether_addr_equal(bss->pub.bssid, new->pub.bssid))
850 continue;
851 if (bss->pub.channel != new->pub.channel)
852 continue;
Simon Wunderlichdcd6eac2013-07-08 16:55:49 +0200853 if (bss->pub.scan_width != new->pub.scan_width)
854 continue;
Johannes Berg776b3582013-02-01 02:06:18 +0100855 if (rcu_access_pointer(bss->pub.beacon_ies))
856 continue;
857 ies = rcu_access_pointer(bss->pub.ies);
858 if (!ies)
859 continue;
860 ie = cfg80211_find_ie(WLAN_EID_SSID, ies->data, ies->len);
861 if (!ie)
862 continue;
863 if (ssidlen && ie[1] != ssidlen)
864 continue;
Johannes Berg776b3582013-02-01 02:06:18 +0100865 if (WARN_ON_ONCE(bss->pub.hidden_beacon_bss))
866 continue;
867 if (WARN_ON_ONCE(!list_empty(&bss->hidden_list)))
868 list_del(&bss->hidden_list);
869 /* combine them */
870 list_add(&bss->hidden_list, &new->hidden_list);
871 bss->pub.hidden_beacon_bss = &new->pub;
872 new->refcount += bss->refcount;
873 rcu_assign_pointer(bss->pub.beacon_ies,
874 new->pub.beacon_ies);
875 }
876
Johannes Berg9853a552016-11-15 12:05:11 +0100877 WARN_ONCE(n_entries != rdev->bss_entries,
878 "rdev bss entries[%d]/list[len:%d] corruption\n",
879 rdev->bss_entries, n_entries);
880
Johannes Berg776b3582013-02-01 02:06:18 +0100881 return true;
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100882}
883
Ben Greear0e3a39b2013-06-19 14:06:27 -0700884/* Returned bss is reference counted and must be cleaned up appropriately. */
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100885static struct cfg80211_internal_bss *
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800886cfg80211_bss_update(struct cfg80211_registered_device *rdev,
Emmanuel Grumbach3afc2162014-03-04 16:50:13 +0200887 struct cfg80211_internal_bss *tmp,
888 bool signal_valid)
Johannes Berg2a519312009-02-10 21:25:55 +0100889{
890 struct cfg80211_internal_bss *found = NULL;
Johannes Berg2a519312009-02-10 21:25:55 +0100891
Johannes Berg9caf0362012-11-29 01:25:20 +0100892 if (WARN_ON(!tmp->pub.channel))
Johannes Berg2a519312009-02-10 21:25:55 +0100893 return NULL;
Johannes Berg2a519312009-02-10 21:25:55 +0100894
Johannes Berg9caf0362012-11-29 01:25:20 +0100895 tmp->ts = jiffies;
Johannes Berg2a519312009-02-10 21:25:55 +0100896
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800897 spin_lock_bh(&rdev->bss_lock);
Johannes Berg2a519312009-02-10 21:25:55 +0100898
Johannes Berg9caf0362012-11-29 01:25:20 +0100899 if (WARN_ON(!rcu_access_pointer(tmp->pub.ies))) {
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800900 spin_unlock_bh(&rdev->bss_lock);
Johannes Berg9caf0362012-11-29 01:25:20 +0100901 return NULL;
902 }
903
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800904 found = rb_find_bss(rdev, tmp, BSS_CMP_REGULAR);
Johannes Berg2a519312009-02-10 21:25:55 +0100905
Johannes Bergcd1658f2009-04-16 15:00:58 +0200906 if (found) {
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200907 /* Update IEs */
Johannes Berg9caf0362012-11-29 01:25:20 +0100908 if (rcu_access_pointer(tmp->pub.proberesp_ies)) {
909 const struct cfg80211_bss_ies *old;
Johannes Bergcd1658f2009-04-16 15:00:58 +0200910
Johannes Berg9caf0362012-11-29 01:25:20 +0100911 old = rcu_access_pointer(found->pub.proberesp_ies);
Johannes Bergcd1658f2009-04-16 15:00:58 +0200912
Johannes Berg9caf0362012-11-29 01:25:20 +0100913 rcu_assign_pointer(found->pub.proberesp_ies,
914 tmp->pub.proberesp_ies);
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200915 /* Override possible earlier Beacon frame IEs */
Johannes Berg9caf0362012-11-29 01:25:20 +0100916 rcu_assign_pointer(found->pub.ies,
917 tmp->pub.proberesp_ies);
918 if (old)
919 kfree_rcu((struct cfg80211_bss_ies *)old,
920 rcu_head);
921 } else if (rcu_access_pointer(tmp->pub.beacon_ies)) {
Johannes Berg9537f222013-02-01 01:19:48 +0100922 const struct cfg80211_bss_ies *old;
Johannes Berg776b3582013-02-01 02:06:18 +0100923 struct cfg80211_internal_bss *bss;
924
925 if (found->pub.hidden_beacon_bss &&
926 !list_empty(&found->hidden_list)) {
Johannes Berg1345ee62013-03-06 10:31:05 +0100927 const struct cfg80211_bss_ies *f;
928
Johannes Berg776b3582013-02-01 02:06:18 +0100929 /*
930 * The found BSS struct is one of the probe
931 * response members of a group, but we're
932 * receiving a beacon (beacon_ies in the tmp
933 * bss is used). This can only mean that the
934 * AP changed its beacon from not having an
935 * SSID to showing it, which is confusing so
936 * drop this information.
937 */
Johannes Berg1345ee62013-03-06 10:31:05 +0100938
939 f = rcu_access_pointer(tmp->pub.beacon_ies);
940 kfree_rcu((struct cfg80211_bss_ies *)f,
941 rcu_head);
Johannes Berg776b3582013-02-01 02:06:18 +0100942 goto drop;
943 }
Johannes Berg915de2f2012-11-28 22:39:37 +0100944
Johannes Berg9caf0362012-11-29 01:25:20 +0100945 old = rcu_access_pointer(found->pub.beacon_ies);
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200946
Johannes Berg9caf0362012-11-29 01:25:20 +0100947 rcu_assign_pointer(found->pub.beacon_ies,
948 tmp->pub.beacon_ies);
Sven Neumann01123e22010-12-09 15:05:24 +0100949
950 /* Override IEs if they were from a beacon before */
Johannes Berg9537f222013-02-01 01:19:48 +0100951 if (old == rcu_access_pointer(found->pub.ies))
Johannes Berg9caf0362012-11-29 01:25:20 +0100952 rcu_assign_pointer(found->pub.ies,
953 tmp->pub.beacon_ies);
Johannes Bergcd1658f2009-04-16 15:00:58 +0200954
Johannes Berg776b3582013-02-01 02:06:18 +0100955 /* Assign beacon IEs to all sub entries */
956 list_for_each_entry(bss, &found->hidden_list,
957 hidden_list) {
958 const struct cfg80211_bss_ies *ies;
959
960 ies = rcu_access_pointer(bss->pub.beacon_ies);
961 WARN_ON(ies != old);
962
963 rcu_assign_pointer(bss->pub.beacon_ies,
964 tmp->pub.beacon_ies);
965 }
966
Johannes Berg9caf0362012-11-29 01:25:20 +0100967 if (old)
968 kfree_rcu((struct cfg80211_bss_ies *)old,
969 rcu_head);
970 }
Johannes Berg1345ee62013-03-06 10:31:05 +0100971
972 found->pub.beacon_interval = tmp->pub.beacon_interval;
Emmanuel Grumbach3afc2162014-03-04 16:50:13 +0200973 /*
974 * don't update the signal if beacon was heard on
975 * adjacent channel.
976 */
977 if (signal_valid)
978 found->pub.signal = tmp->pub.signal;
Johannes Berg1345ee62013-03-06 10:31:05 +0100979 found->pub.capability = tmp->pub.capability;
980 found->ts = tmp->ts;
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +0200981 found->ts_boottime = tmp->ts_boottime;
Avraham Stern1d762502016-07-05 17:10:13 +0300982 found->parent_tsf = tmp->parent_tsf;
983 ether_addr_copy(found->parent_bssid, tmp->parent_bssid);
Johannes Berg2a519312009-02-10 21:25:55 +0100984 } else {
Johannes Berg9caf0362012-11-29 01:25:20 +0100985 struct cfg80211_internal_bss *new;
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100986 struct cfg80211_internal_bss *hidden;
Johannes Berg9caf0362012-11-29 01:25:20 +0100987 struct cfg80211_bss_ies *ies;
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100988
Johannes Berg9caf0362012-11-29 01:25:20 +0100989 /*
990 * create a copy -- the "res" variable that is passed in
991 * is allocated on the stack since it's not needed in the
992 * more common case of an update
993 */
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800994 new = kzalloc(sizeof(*new) + rdev->wiphy.bss_priv_size,
Johannes Berg9caf0362012-11-29 01:25:20 +0100995 GFP_ATOMIC);
996 if (!new) {
997 ies = (void *)rcu_dereference(tmp->pub.beacon_ies);
998 if (ies)
999 kfree_rcu(ies, rcu_head);
1000 ies = (void *)rcu_dereference(tmp->pub.proberesp_ies);
1001 if (ies)
1002 kfree_rcu(ies, rcu_head);
Johannes Berg776b3582013-02-01 02:06:18 +01001003 goto drop;
Johannes Berg9caf0362012-11-29 01:25:20 +01001004 }
1005 memcpy(new, tmp, sizeof(*new));
Johannes Berg776b3582013-02-01 02:06:18 +01001006 new->refcount = 1;
1007 INIT_LIST_HEAD(&new->hidden_list);
1008
1009 if (rcu_access_pointer(tmp->pub.proberesp_ies)) {
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001010 hidden = rb_find_bss(rdev, tmp, BSS_CMP_HIDE_ZLEN);
Johannes Berg776b3582013-02-01 02:06:18 +01001011 if (!hidden)
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001012 hidden = rb_find_bss(rdev, tmp,
Johannes Berg776b3582013-02-01 02:06:18 +01001013 BSS_CMP_HIDE_NUL);
1014 if (hidden) {
1015 new->pub.hidden_beacon_bss = &hidden->pub;
1016 list_add(&new->hidden_list,
1017 &hidden->hidden_list);
1018 hidden->refcount++;
1019 rcu_assign_pointer(new->pub.beacon_ies,
1020 hidden->pub.beacon_ies);
1021 }
1022 } else {
1023 /*
1024 * Ok so we found a beacon, and don't have an entry. If
1025 * it's a beacon with hidden SSID, we might be in for an
1026 * expensive search for any probe responses that should
1027 * be grouped with this beacon for updates ...
1028 */
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001029 if (!cfg80211_combine_bsses(rdev, new)) {
Johannes Berg776b3582013-02-01 02:06:18 +01001030 kfree(new);
1031 goto drop;
1032 }
1033 }
1034
Johannes Berg9853a552016-11-15 12:05:11 +01001035 if (rdev->bss_entries >= bss_entries_limit &&
1036 !cfg80211_bss_expire_oldest(rdev)) {
1037 kfree(new);
1038 goto drop;
1039 }
1040
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001041 list_add_tail(&new->list, &rdev->bss_list);
Johannes Berg9853a552016-11-15 12:05:11 +01001042 rdev->bss_entries++;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001043 rb_insert_bss(rdev, new);
Johannes Berg9caf0362012-11-29 01:25:20 +01001044 found = new;
Johannes Berg2a519312009-02-10 21:25:55 +01001045 }
1046
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001047 rdev->bss_generation++;
1048 bss_ref_get(rdev, found);
1049 spin_unlock_bh(&rdev->bss_lock);
Johannes Berg2a519312009-02-10 21:25:55 +01001050
Johannes Berg2a519312009-02-10 21:25:55 +01001051 return found;
Johannes Berg776b3582013-02-01 02:06:18 +01001052 drop:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001053 spin_unlock_bh(&rdev->bss_lock);
Johannes Berg776b3582013-02-01 02:06:18 +01001054 return NULL;
Johannes Berg2a519312009-02-10 21:25:55 +01001055}
1056
Johannes Berg0172bb72012-11-23 14:23:30 +01001057static struct ieee80211_channel *
1058cfg80211_get_bss_channel(struct wiphy *wiphy, const u8 *ie, size_t ielen,
1059 struct ieee80211_channel *channel)
1060{
1061 const u8 *tmp;
1062 u32 freq;
1063 int channel_number = -1;
1064
1065 tmp = cfg80211_find_ie(WLAN_EID_DS_PARAMS, ie, ielen);
1066 if (tmp && tmp[1] == 1) {
1067 channel_number = tmp[2];
1068 } else {
1069 tmp = cfg80211_find_ie(WLAN_EID_HT_OPERATION, ie, ielen);
1070 if (tmp && tmp[1] >= sizeof(struct ieee80211_ht_operation)) {
1071 struct ieee80211_ht_operation *htop = (void *)(tmp + 2);
1072
1073 channel_number = htop->primary_chan;
1074 }
1075 }
1076
1077 if (channel_number < 0)
1078 return channel;
1079
1080 freq = ieee80211_channel_to_frequency(channel_number, channel->band);
1081 channel = ieee80211_get_channel(wiphy, freq);
1082 if (!channel)
1083 return NULL;
1084 if (channel->flags & IEEE80211_CHAN_DISABLED)
1085 return NULL;
1086 return channel;
1087}
1088
Ben Greear0e3a39b2013-06-19 14:06:27 -07001089/* Returned bss is reference counted and must be cleaned up appropriately. */
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001090struct cfg80211_bss *
1091cfg80211_inform_bss_data(struct wiphy *wiphy,
1092 struct cfg80211_inform_bss *data,
1093 enum cfg80211_bss_frame_type ftype,
1094 const u8 *bssid, u64 tsf, u16 capability,
1095 u16 beacon_interval, const u8 *ie, size_t ielen,
1096 gfp_t gfp)
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +02001097{
Johannes Berg9caf0362012-11-29 01:25:20 +01001098 struct cfg80211_bss_ies *ies;
Emmanuel Grumbach3afc2162014-03-04 16:50:13 +02001099 struct ieee80211_channel *channel;
Johannes Berg9caf0362012-11-29 01:25:20 +01001100 struct cfg80211_internal_bss tmp = {}, *res;
Dedy Lansky6eb18132015-02-08 15:52:03 +02001101 int bss_type;
Emmanuel Grumbach67af9812014-05-18 10:15:24 +03001102 bool signal_valid;
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +02001103
1104 if (WARN_ON(!wiphy))
1105 return NULL;
1106
Sujith22fe88d2010-05-13 10:34:08 +05301107 if (WARN_ON(wiphy->signal_type == CFG80211_SIGNAL_TYPE_UNSPEC &&
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001108 (data->signal < 0 || data->signal > 100)))
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +02001109 return NULL;
1110
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001111 channel = cfg80211_get_bss_channel(wiphy, ie, ielen, data->chan);
Johannes Berg0172bb72012-11-23 14:23:30 +01001112 if (!channel)
1113 return NULL;
1114
Johannes Berg9caf0362012-11-29 01:25:20 +01001115 memcpy(tmp.pub.bssid, bssid, ETH_ALEN);
1116 tmp.pub.channel = channel;
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001117 tmp.pub.scan_width = data->scan_width;
1118 tmp.pub.signal = data->signal;
Johannes Berg9caf0362012-11-29 01:25:20 +01001119 tmp.pub.beacon_interval = beacon_interval;
1120 tmp.pub.capability = capability;
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001121 tmp.ts_boottime = data->boottime_ns;
1122
Jouni Malinen34a6edd2010-01-06 16:19:24 +02001123 /*
Johannes Berg5bc8c1f2014-08-12 21:01:28 +02001124 * If we do not know here whether the IEs are from a Beacon or Probe
Jouni Malinen34a6edd2010-01-06 16:19:24 +02001125 * Response frame, we need to pick one of the options and only use it
1126 * with the driver that does not provide the full Beacon/Probe Response
1127 * frame. Use Beacon frame pointer to avoid indicating that this should
Johannes Berg50521aa2013-01-30 21:33:19 +01001128 * override the IEs pointer should we have received an earlier
Johannes Berg9caf0362012-11-29 01:25:20 +01001129 * indication of Probe Response data.
Jouni Malinen34a6edd2010-01-06 16:19:24 +02001130 */
Johannes Berg0e227082014-08-12 20:34:30 +02001131 ies = kzalloc(sizeof(*ies) + ielen, gfp);
Johannes Berg9caf0362012-11-29 01:25:20 +01001132 if (!ies)
1133 return NULL;
1134 ies->len = ielen;
Johannes Berg8cef2c92013-02-05 16:54:31 +01001135 ies->tsf = tsf;
Johannes Berg0e227082014-08-12 20:34:30 +02001136 ies->from_beacon = false;
Johannes Berg9caf0362012-11-29 01:25:20 +01001137 memcpy(ies->data, ie, ielen);
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +02001138
Johannes Berg5bc8c1f2014-08-12 21:01:28 +02001139 switch (ftype) {
1140 case CFG80211_BSS_FTYPE_BEACON:
1141 ies->from_beacon = true;
1142 /* fall through to assign */
1143 case CFG80211_BSS_FTYPE_UNKNOWN:
1144 rcu_assign_pointer(tmp.pub.beacon_ies, ies);
1145 break;
1146 case CFG80211_BSS_FTYPE_PRESP:
1147 rcu_assign_pointer(tmp.pub.proberesp_ies, ies);
1148 break;
1149 }
Johannes Berg9caf0362012-11-29 01:25:20 +01001150 rcu_assign_pointer(tmp.pub.ies, ies);
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +02001151
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001152 signal_valid = abs(data->chan->center_freq - channel->center_freq) <=
Emmanuel Grumbach67af9812014-05-18 10:15:24 +03001153 wiphy->max_adj_channel_rssi_comp;
1154 res = cfg80211_bss_update(wiphy_to_rdev(wiphy), &tmp, signal_valid);
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +02001155 if (!res)
1156 return NULL;
1157
Johannes Berg57fbcce2016-04-12 15:56:15 +02001158 if (channel->band == NL80211_BAND_60GHZ) {
Dedy Lansky6eb18132015-02-08 15:52:03 +02001159 bss_type = res->pub.capability & WLAN_CAPABILITY_DMG_TYPE_MASK;
1160 if (bss_type == WLAN_CAPABILITY_DMG_TYPE_AP ||
1161 bss_type == WLAN_CAPABILITY_DMG_TYPE_PBSS)
1162 regulatory_hint_found_beacon(wiphy, channel, gfp);
1163 } else {
1164 if (res->pub.capability & WLAN_CAPABILITY_ESS)
1165 regulatory_hint_found_beacon(wiphy, channel, gfp);
1166 }
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +02001167
Beni Lev4ee3e062012-08-27 12:49:39 +03001168 trace_cfg80211_return_bss(&res->pub);
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +02001169 /* cfg80211_bss_update gives us a referenced result */
1170 return &res->pub;
1171}
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001172EXPORT_SYMBOL(cfg80211_inform_bss_data);
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +02001173
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001174/* cfg80211_inform_bss_width_frame helper */
Johannes Berg2a519312009-02-10 21:25:55 +01001175struct cfg80211_bss *
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001176cfg80211_inform_bss_frame_data(struct wiphy *wiphy,
1177 struct cfg80211_inform_bss *data,
1178 struct ieee80211_mgmt *mgmt, size_t len,
1179 gfp_t gfp)
1180
Johannes Berg2a519312009-02-10 21:25:55 +01001181{
Johannes Berg9caf0362012-11-29 01:25:20 +01001182 struct cfg80211_internal_bss tmp = {}, *res;
1183 struct cfg80211_bss_ies *ies;
Emmanuel Grumbach3afc2162014-03-04 16:50:13 +02001184 struct ieee80211_channel *channel;
Emmanuel Grumbach67af9812014-05-18 10:15:24 +03001185 bool signal_valid;
Johannes Berg2a519312009-02-10 21:25:55 +01001186 size_t ielen = len - offsetof(struct ieee80211_mgmt,
1187 u.probe_resp.variable);
Dedy Lansky6eb18132015-02-08 15:52:03 +02001188 int bss_type;
Mariusz Kozlowskibef9bac2011-03-26 19:26:55 +01001189
Johannes Berg0172bb72012-11-23 14:23:30 +01001190 BUILD_BUG_ON(offsetof(struct ieee80211_mgmt, u.probe_resp.variable) !=
1191 offsetof(struct ieee80211_mgmt, u.beacon.variable));
1192
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001193 trace_cfg80211_inform_bss_frame(wiphy, data, mgmt, len);
Beni Lev4ee3e062012-08-27 12:49:39 +03001194
Mariusz Kozlowskibef9bac2011-03-26 19:26:55 +01001195 if (WARN_ON(!mgmt))
1196 return NULL;
1197
1198 if (WARN_ON(!wiphy))
1199 return NULL;
Johannes Berg2a519312009-02-10 21:25:55 +01001200
Sujith22fe88d2010-05-13 10:34:08 +05301201 if (WARN_ON(wiphy->signal_type == CFG80211_SIGNAL_TYPE_UNSPEC &&
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001202 (data->signal < 0 || data->signal > 100)))
Johannes Berg2a519312009-02-10 21:25:55 +01001203 return NULL;
1204
Mariusz Kozlowskibef9bac2011-03-26 19:26:55 +01001205 if (WARN_ON(len < offsetof(struct ieee80211_mgmt, u.probe_resp.variable)))
Johannes Berg2a519312009-02-10 21:25:55 +01001206 return NULL;
1207
Johannes Berg0172bb72012-11-23 14:23:30 +01001208 channel = cfg80211_get_bss_channel(wiphy, mgmt->u.beacon.variable,
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001209 ielen, data->chan);
Johannes Berg0172bb72012-11-23 14:23:30 +01001210 if (!channel)
1211 return NULL;
1212
Johannes Berg0e227082014-08-12 20:34:30 +02001213 ies = kzalloc(sizeof(*ies) + ielen, gfp);
Johannes Berg9caf0362012-11-29 01:25:20 +01001214 if (!ies)
Johannes Berg2a519312009-02-10 21:25:55 +01001215 return NULL;
Johannes Berg9caf0362012-11-29 01:25:20 +01001216 ies->len = ielen;
Johannes Berg8cef2c92013-02-05 16:54:31 +01001217 ies->tsf = le64_to_cpu(mgmt->u.probe_resp.timestamp);
Johannes Berg0e227082014-08-12 20:34:30 +02001218 ies->from_beacon = ieee80211_is_beacon(mgmt->frame_control);
Johannes Berg9caf0362012-11-29 01:25:20 +01001219 memcpy(ies->data, mgmt->u.probe_resp.variable, ielen);
Johannes Berg2a519312009-02-10 21:25:55 +01001220
Johannes Berg9caf0362012-11-29 01:25:20 +01001221 if (ieee80211_is_probe_resp(mgmt->frame_control))
1222 rcu_assign_pointer(tmp.pub.proberesp_ies, ies);
1223 else
1224 rcu_assign_pointer(tmp.pub.beacon_ies, ies);
1225 rcu_assign_pointer(tmp.pub.ies, ies);
Arend Van Spriel505a2e82016-12-16 11:21:54 +00001226
Johannes Berg9caf0362012-11-29 01:25:20 +01001227 memcpy(tmp.pub.bssid, mgmt->bssid, ETH_ALEN);
1228 tmp.pub.channel = channel;
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001229 tmp.pub.scan_width = data->scan_width;
1230 tmp.pub.signal = data->signal;
Johannes Berg9caf0362012-11-29 01:25:20 +01001231 tmp.pub.beacon_interval = le16_to_cpu(mgmt->u.probe_resp.beacon_int);
1232 tmp.pub.capability = le16_to_cpu(mgmt->u.probe_resp.capab_info);
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001233 tmp.ts_boottime = data->boottime_ns;
Avraham Stern1d762502016-07-05 17:10:13 +03001234 tmp.parent_tsf = data->parent_tsf;
1235 ether_addr_copy(tmp.parent_bssid, data->parent_bssid);
Johannes Berg2a519312009-02-10 21:25:55 +01001236
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001237 signal_valid = abs(data->chan->center_freq - channel->center_freq) <=
Emmanuel Grumbach67af9812014-05-18 10:15:24 +03001238 wiphy->max_adj_channel_rssi_comp;
1239 res = cfg80211_bss_update(wiphy_to_rdev(wiphy), &tmp, signal_valid);
Johannes Berg2a519312009-02-10 21:25:55 +01001240 if (!res)
1241 return NULL;
1242
Johannes Berg57fbcce2016-04-12 15:56:15 +02001243 if (channel->band == NL80211_BAND_60GHZ) {
Dedy Lansky6eb18132015-02-08 15:52:03 +02001244 bss_type = res->pub.capability & WLAN_CAPABILITY_DMG_TYPE_MASK;
1245 if (bss_type == WLAN_CAPABILITY_DMG_TYPE_AP ||
1246 bss_type == WLAN_CAPABILITY_DMG_TYPE_PBSS)
1247 regulatory_hint_found_beacon(wiphy, channel, gfp);
1248 } else {
1249 if (res->pub.capability & WLAN_CAPABILITY_ESS)
1250 regulatory_hint_found_beacon(wiphy, channel, gfp);
1251 }
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001252
Beni Lev4ee3e062012-08-27 12:49:39 +03001253 trace_cfg80211_return_bss(&res->pub);
Johannes Berg2a519312009-02-10 21:25:55 +01001254 /* cfg80211_bss_update gives us a referenced result */
1255 return &res->pub;
1256}
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001257EXPORT_SYMBOL(cfg80211_inform_bss_frame_data);
Johannes Berg2a519312009-02-10 21:25:55 +01001258
Johannes Berg5b112d32013-02-01 01:49:58 +01001259void cfg80211_ref_bss(struct wiphy *wiphy, struct cfg80211_bss *pub)
Johannes Berg4c0c0b72012-01-20 13:55:26 +01001260{
Zhao, Gangf26cbf42014-04-21 12:53:03 +08001261 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg4c0c0b72012-01-20 13:55:26 +01001262 struct cfg80211_internal_bss *bss;
1263
1264 if (!pub)
1265 return;
1266
1267 bss = container_of(pub, struct cfg80211_internal_bss, pub);
Johannes Berg776b3582013-02-01 02:06:18 +01001268
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001269 spin_lock_bh(&rdev->bss_lock);
1270 bss_ref_get(rdev, bss);
1271 spin_unlock_bh(&rdev->bss_lock);
Johannes Berg4c0c0b72012-01-20 13:55:26 +01001272}
1273EXPORT_SYMBOL(cfg80211_ref_bss);
1274
Johannes Berg5b112d32013-02-01 01:49:58 +01001275void cfg80211_put_bss(struct wiphy *wiphy, struct cfg80211_bss *pub)
Johannes Berg2a519312009-02-10 21:25:55 +01001276{
Zhao, Gangf26cbf42014-04-21 12:53:03 +08001277 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg2a519312009-02-10 21:25:55 +01001278 struct cfg80211_internal_bss *bss;
1279
1280 if (!pub)
1281 return;
1282
1283 bss = container_of(pub, struct cfg80211_internal_bss, pub);
Johannes Berg776b3582013-02-01 02:06:18 +01001284
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001285 spin_lock_bh(&rdev->bss_lock);
1286 bss_ref_put(rdev, bss);
1287 spin_unlock_bh(&rdev->bss_lock);
Johannes Berg2a519312009-02-10 21:25:55 +01001288}
1289EXPORT_SYMBOL(cfg80211_put_bss);
1290
Johannes Bergd491af12009-02-10 21:25:58 +01001291void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *pub)
1292{
Zhao, Gangf26cbf42014-04-21 12:53:03 +08001293 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Bergd491af12009-02-10 21:25:58 +01001294 struct cfg80211_internal_bss *bss;
1295
1296 if (WARN_ON(!pub))
1297 return;
1298
1299 bss = container_of(pub, struct cfg80211_internal_bss, pub);
1300
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001301 spin_lock_bh(&rdev->bss_lock);
Johannes Berg32073902010-10-06 21:18:04 +02001302 if (!list_empty(&bss->list)) {
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001303 if (__cfg80211_unlink_bss(rdev, bss))
1304 rdev->bss_generation++;
Johannes Berg32073902010-10-06 21:18:04 +02001305 }
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001306 spin_unlock_bh(&rdev->bss_lock);
Johannes Bergd491af12009-02-10 21:25:58 +01001307}
1308EXPORT_SYMBOL(cfg80211_unlink_bss);
1309
Johannes Berg3d23e342009-09-29 23:27:28 +02001310#ifdef CONFIG_CFG80211_WEXT
Johannes Berg9f419f32013-05-08 21:34:22 +02001311static struct cfg80211_registered_device *
1312cfg80211_get_dev_from_ifindex(struct net *net, int ifindex)
1313{
Johannes Berg5fe231e2013-05-08 21:45:15 +02001314 struct cfg80211_registered_device *rdev;
Johannes Berg9f419f32013-05-08 21:34:22 +02001315 struct net_device *dev;
1316
Johannes Berg5fe231e2013-05-08 21:45:15 +02001317 ASSERT_RTNL();
1318
Johannes Berg9f419f32013-05-08 21:34:22 +02001319 dev = dev_get_by_index(net, ifindex);
1320 if (!dev)
Johannes Berg5fe231e2013-05-08 21:45:15 +02001321 return ERR_PTR(-ENODEV);
1322 if (dev->ieee80211_ptr)
Zhao, Gangf26cbf42014-04-21 12:53:03 +08001323 rdev = wiphy_to_rdev(dev->ieee80211_ptr->wiphy);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001324 else
Johannes Berg9f419f32013-05-08 21:34:22 +02001325 rdev = ERR_PTR(-ENODEV);
1326 dev_put(dev);
Johannes Berg9f419f32013-05-08 21:34:22 +02001327 return rdev;
1328}
1329
Johannes Berg2a519312009-02-10 21:25:55 +01001330int cfg80211_wext_siwscan(struct net_device *dev,
1331 struct iw_request_info *info,
1332 union iwreq_data *wrqu, char *extra)
1333{
1334 struct cfg80211_registered_device *rdev;
1335 struct wiphy *wiphy;
1336 struct iw_scan_req *wreq = NULL;
Johannes Berg65486c8b2009-12-23 15:33:35 +01001337 struct cfg80211_scan_request *creq = NULL;
Johannes Berg2a519312009-02-10 21:25:55 +01001338 int i, err, n_channels = 0;
Johannes Berg57fbcce2016-04-12 15:56:15 +02001339 enum nl80211_band band;
Johannes Berg2a519312009-02-10 21:25:55 +01001340
1341 if (!netif_running(dev))
1342 return -ENETDOWN;
1343
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001344 if (wrqu->data.length == sizeof(struct iw_scan_req))
1345 wreq = (struct iw_scan_req *)extra;
1346
Johannes Berg463d0182009-07-14 00:33:35 +02001347 rdev = cfg80211_get_dev_from_ifindex(dev_net(dev), dev->ifindex);
Johannes Berg2a519312009-02-10 21:25:55 +01001348
1349 if (IS_ERR(rdev))
1350 return PTR_ERR(rdev);
1351
Johannes Bergf9d15d12014-01-22 11:14:19 +02001352 if (rdev->scan_req || rdev->scan_msg) {
Johannes Berg2a519312009-02-10 21:25:55 +01001353 err = -EBUSY;
1354 goto out;
1355 }
1356
1357 wiphy = &rdev->wiphy;
1358
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001359 /* Determine number of channels, needed to allocate creq */
1360 if (wreq && wreq->num_channels)
1361 n_channels = wreq->num_channels;
Ilan Peerbdfbec22014-01-09 11:37:23 +02001362 else
1363 n_channels = ieee80211_get_num_supported_channels(wiphy);
Johannes Berg2a519312009-02-10 21:25:55 +01001364
1365 creq = kzalloc(sizeof(*creq) + sizeof(struct cfg80211_ssid) +
1366 n_channels * sizeof(void *),
1367 GFP_ATOMIC);
1368 if (!creq) {
1369 err = -ENOMEM;
1370 goto out;
1371 }
1372
1373 creq->wiphy = wiphy;
Johannes Bergfd014282012-06-18 19:17:03 +02001374 creq->wdev = dev->ieee80211_ptr;
Johannes Berg5ba63532009-08-07 17:54:07 +02001375 /* SSIDs come after channels */
1376 creq->ssids = (void *)&creq->channels[n_channels];
Johannes Berg2a519312009-02-10 21:25:55 +01001377 creq->n_channels = n_channels;
1378 creq->n_ssids = 1;
Sam Leffler15d60302012-10-11 21:03:34 -07001379 creq->scan_start = jiffies;
Johannes Berg2a519312009-02-10 21:25:55 +01001380
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001381 /* translate "Scan on frequencies" request */
Johannes Berg2a519312009-02-10 21:25:55 +01001382 i = 0;
Johannes Berg57fbcce2016-04-12 15:56:15 +02001383 for (band = 0; band < NUM_NL80211_BANDS; band++) {
Johannes Berg2a519312009-02-10 21:25:55 +01001384 int j;
Johannes Berg584991d2009-11-02 13:32:03 +01001385
Johannes Berg2a519312009-02-10 21:25:55 +01001386 if (!wiphy->bands[band])
1387 continue;
Johannes Berg584991d2009-11-02 13:32:03 +01001388
Johannes Berg2a519312009-02-10 21:25:55 +01001389 for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
Johannes Berg584991d2009-11-02 13:32:03 +01001390 /* ignore disabled channels */
1391 if (wiphy->bands[band]->channels[j].flags &
1392 IEEE80211_CHAN_DISABLED)
1393 continue;
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001394
1395 /* If we have a wireless request structure and the
1396 * wireless request specifies frequencies, then search
1397 * for the matching hardware channel.
1398 */
1399 if (wreq && wreq->num_channels) {
1400 int k;
1401 int wiphy_freq = wiphy->bands[band]->channels[j].center_freq;
1402 for (k = 0; k < wreq->num_channels; k++) {
Zhao, Gang96998e32014-04-09 09:28:06 +08001403 struct iw_freq *freq =
1404 &wreq->channel_list[k];
1405 int wext_freq =
1406 cfg80211_wext_freq(freq);
1407
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001408 if (wext_freq == wiphy_freq)
1409 goto wext_freq_found;
1410 }
1411 goto wext_freq_not_found;
1412 }
1413
1414 wext_freq_found:
Johannes Berg2a519312009-02-10 21:25:55 +01001415 creq->channels[i] = &wiphy->bands[band]->channels[j];
1416 i++;
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001417 wext_freq_not_found: ;
Johannes Berg2a519312009-02-10 21:25:55 +01001418 }
1419 }
Holger Schurig8862dc52009-09-11 10:13:55 +02001420 /* No channels found? */
1421 if (!i) {
1422 err = -EINVAL;
1423 goto out;
1424 }
Johannes Berg2a519312009-02-10 21:25:55 +01001425
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001426 /* Set real number of channels specified in creq->channels[] */
1427 creq->n_channels = i;
Johannes Berg2a519312009-02-10 21:25:55 +01001428
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001429 /* translate "Scan for SSID" request */
1430 if (wreq) {
Johannes Berg2a519312009-02-10 21:25:55 +01001431 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
Johannes Berg65486c8b2009-12-23 15:33:35 +01001432 if (wreq->essid_len > IEEE80211_MAX_SSID_LEN) {
1433 err = -EINVAL;
1434 goto out;
1435 }
Johannes Berg2a519312009-02-10 21:25:55 +01001436 memcpy(creq->ssids[0].ssid, wreq->essid, wreq->essid_len);
1437 creq->ssids[0].ssid_len = wreq->essid_len;
1438 }
1439 if (wreq->scan_type == IW_SCAN_TYPE_PASSIVE)
1440 creq->n_ssids = 0;
1441 }
1442
Johannes Berg57fbcce2016-04-12 15:56:15 +02001443 for (i = 0; i < NUM_NL80211_BANDS; i++)
Johannes Berga401d2b2011-07-20 00:52:16 +02001444 if (wiphy->bands[i])
1445 creq->rates[i] = (1 << wiphy->bands[i]->n_bitrates) - 1;
Johannes Berg34850ab2011-07-18 18:08:35 +02001446
Jouni Malinen818965d2016-02-26 22:12:47 +02001447 eth_broadcast_addr(creq->bssid);
1448
Johannes Berg2a519312009-02-10 21:25:55 +01001449 rdev->scan_req = creq;
Hila Gonene35e4d22012-06-27 17:19:42 +03001450 err = rdev_scan(rdev, creq);
Johannes Berg2a519312009-02-10 21:25:55 +01001451 if (err) {
1452 rdev->scan_req = NULL;
Johannes Berg65486c8b2009-12-23 15:33:35 +01001453 /* creq will be freed below */
Johannes Berg463d0182009-07-14 00:33:35 +02001454 } else {
Johannes Bergfd014282012-06-18 19:17:03 +02001455 nl80211_send_scan_start(rdev, dev->ieee80211_ptr);
Johannes Berg65486c8b2009-12-23 15:33:35 +01001456 /* creq now owned by driver */
1457 creq = NULL;
Johannes Berg463d0182009-07-14 00:33:35 +02001458 dev_hold(dev);
1459 }
Johannes Berg2a519312009-02-10 21:25:55 +01001460 out:
Johannes Berg65486c8b2009-12-23 15:33:35 +01001461 kfree(creq);
Johannes Berg2a519312009-02-10 21:25:55 +01001462 return err;
1463}
Johannes Berg2afe38d2015-01-06 14:00:53 +01001464EXPORT_WEXT_HANDLER(cfg80211_wext_siwscan);
Johannes Berg2a519312009-02-10 21:25:55 +01001465
James Minor76a70e92015-02-24 12:58:20 -06001466static char *ieee80211_scan_add_ies(struct iw_request_info *info,
1467 const struct cfg80211_bss_ies *ies,
1468 char *current_ev, char *end_buf)
Johannes Berg2a519312009-02-10 21:25:55 +01001469{
Johannes Berg9caf0362012-11-29 01:25:20 +01001470 const u8 *pos, *end, *next;
Johannes Berg2a519312009-02-10 21:25:55 +01001471 struct iw_event iwe;
1472
Johannes Berg9caf0362012-11-29 01:25:20 +01001473 if (!ies)
James Minor76a70e92015-02-24 12:58:20 -06001474 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001475
1476 /*
1477 * If needed, fragment the IEs buffer (at IE boundaries) into short
1478 * enough fragments to fit into IW_GENERIC_IE_MAX octet messages.
1479 */
Johannes Berg9caf0362012-11-29 01:25:20 +01001480 pos = ies->data;
1481 end = pos + ies->len;
Johannes Berg2a519312009-02-10 21:25:55 +01001482
1483 while (end - pos > IW_GENERIC_IE_MAX) {
1484 next = pos + 2 + pos[1];
1485 while (next + 2 + next[1] - pos < IW_GENERIC_IE_MAX)
1486 next = next + 2 + next[1];
1487
1488 memset(&iwe, 0, sizeof(iwe));
1489 iwe.cmd = IWEVGENIE;
1490 iwe.u.data.length = next - pos;
James Minor76a70e92015-02-24 12:58:20 -06001491 current_ev = iwe_stream_add_point_check(info, current_ev,
1492 end_buf, &iwe,
1493 (void *)pos);
1494 if (IS_ERR(current_ev))
1495 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001496 pos = next;
1497 }
1498
1499 if (end > pos) {
1500 memset(&iwe, 0, sizeof(iwe));
1501 iwe.cmd = IWEVGENIE;
1502 iwe.u.data.length = end - pos;
James Minor76a70e92015-02-24 12:58:20 -06001503 current_ev = iwe_stream_add_point_check(info, current_ev,
1504 end_buf, &iwe,
1505 (void *)pos);
1506 if (IS_ERR(current_ev))
1507 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001508 }
James Minor76a70e92015-02-24 12:58:20 -06001509
1510 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001511}
1512
Johannes Berg2a519312009-02-10 21:25:55 +01001513static char *
Johannes Berg77965c92009-02-18 18:45:06 +01001514ieee80211_bss(struct wiphy *wiphy, struct iw_request_info *info,
1515 struct cfg80211_internal_bss *bss, char *current_ev,
1516 char *end_buf)
Johannes Berg2a519312009-02-10 21:25:55 +01001517{
Johannes Berg9caf0362012-11-29 01:25:20 +01001518 const struct cfg80211_bss_ies *ies;
Johannes Berg2a519312009-02-10 21:25:55 +01001519 struct iw_event iwe;
Johannes Berg9caf0362012-11-29 01:25:20 +01001520 const u8 *ie;
James Minor76a70e92015-02-24 12:58:20 -06001521 u8 buf[50];
1522 u8 *cfg, *p, *tmp;
Johannes Berg9caf0362012-11-29 01:25:20 +01001523 int rem, i, sig;
Johannes Berg2a519312009-02-10 21:25:55 +01001524 bool ismesh = false;
1525
1526 memset(&iwe, 0, sizeof(iwe));
1527 iwe.cmd = SIOCGIWAP;
1528 iwe.u.ap_addr.sa_family = ARPHRD_ETHER;
1529 memcpy(iwe.u.ap_addr.sa_data, bss->pub.bssid, ETH_ALEN);
James Minor76a70e92015-02-24 12:58:20 -06001530 current_ev = iwe_stream_add_event_check(info, current_ev, end_buf, &iwe,
1531 IW_EV_ADDR_LEN);
1532 if (IS_ERR(current_ev))
1533 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001534
1535 memset(&iwe, 0, sizeof(iwe));
1536 iwe.cmd = SIOCGIWFREQ;
1537 iwe.u.freq.m = ieee80211_frequency_to_channel(bss->pub.channel->center_freq);
1538 iwe.u.freq.e = 0;
James Minor76a70e92015-02-24 12:58:20 -06001539 current_ev = iwe_stream_add_event_check(info, current_ev, end_buf, &iwe,
1540 IW_EV_FREQ_LEN);
1541 if (IS_ERR(current_ev))
1542 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001543
1544 memset(&iwe, 0, sizeof(iwe));
1545 iwe.cmd = SIOCGIWFREQ;
1546 iwe.u.freq.m = bss->pub.channel->center_freq;
1547 iwe.u.freq.e = 6;
James Minor76a70e92015-02-24 12:58:20 -06001548 current_ev = iwe_stream_add_event_check(info, current_ev, end_buf, &iwe,
1549 IW_EV_FREQ_LEN);
1550 if (IS_ERR(current_ev))
1551 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001552
Johannes Berg77965c92009-02-18 18:45:06 +01001553 if (wiphy->signal_type != CFG80211_SIGNAL_TYPE_NONE) {
Johannes Berg2a519312009-02-10 21:25:55 +01001554 memset(&iwe, 0, sizeof(iwe));
1555 iwe.cmd = IWEVQUAL;
1556 iwe.u.qual.updated = IW_QUAL_LEVEL_UPDATED |
1557 IW_QUAL_NOISE_INVALID |
Johannes Berga77b8552009-02-18 18:27:22 +01001558 IW_QUAL_QUAL_UPDATED;
Johannes Berg77965c92009-02-18 18:45:06 +01001559 switch (wiphy->signal_type) {
Johannes Berg2a519312009-02-10 21:25:55 +01001560 case CFG80211_SIGNAL_TYPE_MBM:
Johannes Berga77b8552009-02-18 18:27:22 +01001561 sig = bss->pub.signal / 100;
1562 iwe.u.qual.level = sig;
Johannes Berg2a519312009-02-10 21:25:55 +01001563 iwe.u.qual.updated |= IW_QUAL_DBM;
Johannes Berga77b8552009-02-18 18:27:22 +01001564 if (sig < -110) /* rather bad */
1565 sig = -110;
1566 else if (sig > -40) /* perfect */
1567 sig = -40;
1568 /* will give a range of 0 .. 70 */
1569 iwe.u.qual.qual = sig + 110;
Johannes Berg2a519312009-02-10 21:25:55 +01001570 break;
1571 case CFG80211_SIGNAL_TYPE_UNSPEC:
1572 iwe.u.qual.level = bss->pub.signal;
Johannes Berga77b8552009-02-18 18:27:22 +01001573 /* will give range 0 .. 100 */
1574 iwe.u.qual.qual = bss->pub.signal;
Johannes Berg2a519312009-02-10 21:25:55 +01001575 break;
1576 default:
1577 /* not reached */
1578 break;
1579 }
James Minor76a70e92015-02-24 12:58:20 -06001580 current_ev = iwe_stream_add_event_check(info, current_ev,
1581 end_buf, &iwe,
1582 IW_EV_QUAL_LEN);
1583 if (IS_ERR(current_ev))
1584 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001585 }
1586
1587 memset(&iwe, 0, sizeof(iwe));
1588 iwe.cmd = SIOCGIWENCODE;
1589 if (bss->pub.capability & WLAN_CAPABILITY_PRIVACY)
1590 iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY;
1591 else
1592 iwe.u.data.flags = IW_ENCODE_DISABLED;
1593 iwe.u.data.length = 0;
James Minor76a70e92015-02-24 12:58:20 -06001594 current_ev = iwe_stream_add_point_check(info, current_ev, end_buf,
1595 &iwe, "");
1596 if (IS_ERR(current_ev))
1597 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001598
Johannes Berg9caf0362012-11-29 01:25:20 +01001599 rcu_read_lock();
1600 ies = rcu_dereference(bss->pub.ies);
Johannes Berg83c7aa12013-02-05 16:51:29 +01001601 rem = ies->len;
1602 ie = ies->data;
Johannes Berg9caf0362012-11-29 01:25:20 +01001603
Johannes Berg83c7aa12013-02-05 16:51:29 +01001604 while (rem >= 2) {
Johannes Berg2a519312009-02-10 21:25:55 +01001605 /* invalid data */
1606 if (ie[1] > rem - 2)
1607 break;
1608
1609 switch (ie[0]) {
1610 case WLAN_EID_SSID:
1611 memset(&iwe, 0, sizeof(iwe));
1612 iwe.cmd = SIOCGIWESSID;
1613 iwe.u.data.length = ie[1];
1614 iwe.u.data.flags = 1;
James Minor76a70e92015-02-24 12:58:20 -06001615 current_ev = iwe_stream_add_point_check(info,
1616 current_ev,
1617 end_buf, &iwe,
1618 (u8 *)ie + 2);
1619 if (IS_ERR(current_ev))
1620 goto unlock;
Johannes Berg2a519312009-02-10 21:25:55 +01001621 break;
1622 case WLAN_EID_MESH_ID:
1623 memset(&iwe, 0, sizeof(iwe));
1624 iwe.cmd = SIOCGIWESSID;
1625 iwe.u.data.length = ie[1];
1626 iwe.u.data.flags = 1;
James Minor76a70e92015-02-24 12:58:20 -06001627 current_ev = iwe_stream_add_point_check(info,
1628 current_ev,
1629 end_buf, &iwe,
1630 (u8 *)ie + 2);
1631 if (IS_ERR(current_ev))
1632 goto unlock;
Johannes Berg2a519312009-02-10 21:25:55 +01001633 break;
1634 case WLAN_EID_MESH_CONFIG:
1635 ismesh = true;
Rui Paulo136cfa22009-11-18 18:40:00 +00001636 if (ie[1] != sizeof(struct ieee80211_meshconf_ie))
Johannes Berg2a519312009-02-10 21:25:55 +01001637 break;
Johannes Berg9caf0362012-11-29 01:25:20 +01001638 cfg = (u8 *)ie + 2;
Johannes Berg2a519312009-02-10 21:25:55 +01001639 memset(&iwe, 0, sizeof(iwe));
1640 iwe.cmd = IWEVCUSTOM;
Rui Paulo76aa5e72009-11-18 18:22:59 +00001641 sprintf(buf, "Mesh Network Path Selection Protocol ID: "
1642 "0x%02X", cfg[0]);
Johannes Berg2a519312009-02-10 21:25:55 +01001643 iwe.u.data.length = strlen(buf);
James Minor76a70e92015-02-24 12:58:20 -06001644 current_ev = iwe_stream_add_point_check(info,
1645 current_ev,
1646 end_buf,
1647 &iwe, buf);
1648 if (IS_ERR(current_ev))
1649 goto unlock;
Rui Paulo76aa5e72009-11-18 18:22:59 +00001650 sprintf(buf, "Path Selection Metric ID: 0x%02X",
1651 cfg[1]);
Johannes Berg2a519312009-02-10 21:25:55 +01001652 iwe.u.data.length = strlen(buf);
James Minor76a70e92015-02-24 12:58:20 -06001653 current_ev = iwe_stream_add_point_check(info,
1654 current_ev,
1655 end_buf,
1656 &iwe, buf);
1657 if (IS_ERR(current_ev))
1658 goto unlock;
Rui Paulo76aa5e72009-11-18 18:22:59 +00001659 sprintf(buf, "Congestion Control Mode ID: 0x%02X",
1660 cfg[2]);
Johannes Berg2a519312009-02-10 21:25:55 +01001661 iwe.u.data.length = strlen(buf);
James Minor76a70e92015-02-24 12:58:20 -06001662 current_ev = iwe_stream_add_point_check(info,
1663 current_ev,
1664 end_buf,
1665 &iwe, buf);
1666 if (IS_ERR(current_ev))
1667 goto unlock;
Rui Paulo76aa5e72009-11-18 18:22:59 +00001668 sprintf(buf, "Synchronization ID: 0x%02X", cfg[3]);
Johannes Berg2a519312009-02-10 21:25:55 +01001669 iwe.u.data.length = strlen(buf);
James Minor76a70e92015-02-24 12:58:20 -06001670 current_ev = iwe_stream_add_point_check(info,
1671 current_ev,
1672 end_buf,
1673 &iwe, buf);
1674 if (IS_ERR(current_ev))
1675 goto unlock;
Rui Paulo76aa5e72009-11-18 18:22:59 +00001676 sprintf(buf, "Authentication ID: 0x%02X", cfg[4]);
1677 iwe.u.data.length = strlen(buf);
James Minor76a70e92015-02-24 12:58:20 -06001678 current_ev = iwe_stream_add_point_check(info,
1679 current_ev,
1680 end_buf,
1681 &iwe, buf);
1682 if (IS_ERR(current_ev))
1683 goto unlock;
Rui Paulo76aa5e72009-11-18 18:22:59 +00001684 sprintf(buf, "Formation Info: 0x%02X", cfg[5]);
1685 iwe.u.data.length = strlen(buf);
James Minor76a70e92015-02-24 12:58:20 -06001686 current_ev = iwe_stream_add_point_check(info,
1687 current_ev,
1688 end_buf,
1689 &iwe, buf);
1690 if (IS_ERR(current_ev))
1691 goto unlock;
Rui Paulo76aa5e72009-11-18 18:22:59 +00001692 sprintf(buf, "Capabilities: 0x%02X", cfg[6]);
Johannes Berg2a519312009-02-10 21:25:55 +01001693 iwe.u.data.length = strlen(buf);
James Minor76a70e92015-02-24 12:58:20 -06001694 current_ev = iwe_stream_add_point_check(info,
1695 current_ev,
1696 end_buf,
1697 &iwe, buf);
1698 if (IS_ERR(current_ev))
1699 goto unlock;
Johannes Berg2a519312009-02-10 21:25:55 +01001700 break;
1701 case WLAN_EID_SUPP_RATES:
1702 case WLAN_EID_EXT_SUPP_RATES:
1703 /* display all supported rates in readable format */
1704 p = current_ev + iwe_stream_lcp_len(info);
1705
1706 memset(&iwe, 0, sizeof(iwe));
1707 iwe.cmd = SIOCGIWRATE;
1708 /* Those two flags are ignored... */
1709 iwe.u.bitrate.fixed = iwe.u.bitrate.disabled = 0;
1710
1711 for (i = 0; i < ie[1]; i++) {
1712 iwe.u.bitrate.value =
1713 ((ie[i + 2] & 0x7f) * 500000);
James Minor76a70e92015-02-24 12:58:20 -06001714 tmp = p;
Johannes Berg2a519312009-02-10 21:25:55 +01001715 p = iwe_stream_add_value(info, current_ev, p,
James Minor76a70e92015-02-24 12:58:20 -06001716 end_buf, &iwe,
1717 IW_EV_PARAM_LEN);
1718 if (p == tmp) {
1719 current_ev = ERR_PTR(-E2BIG);
1720 goto unlock;
1721 }
Johannes Berg2a519312009-02-10 21:25:55 +01001722 }
1723 current_ev = p;
1724 break;
1725 }
1726 rem -= ie[1] + 2;
1727 ie += ie[1] + 2;
1728 }
1729
Joe Perchesf64f9e72009-11-29 16:55:45 -08001730 if (bss->pub.capability & (WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_IBSS) ||
1731 ismesh) {
Johannes Berg2a519312009-02-10 21:25:55 +01001732 memset(&iwe, 0, sizeof(iwe));
1733 iwe.cmd = SIOCGIWMODE;
1734 if (ismesh)
1735 iwe.u.mode = IW_MODE_MESH;
1736 else if (bss->pub.capability & WLAN_CAPABILITY_ESS)
1737 iwe.u.mode = IW_MODE_MASTER;
1738 else
1739 iwe.u.mode = IW_MODE_ADHOC;
James Minor76a70e92015-02-24 12:58:20 -06001740 current_ev = iwe_stream_add_event_check(info, current_ev,
1741 end_buf, &iwe,
1742 IW_EV_UINT_LEN);
1743 if (IS_ERR(current_ev))
1744 goto unlock;
Johannes Berg2a519312009-02-10 21:25:55 +01001745 }
1746
James Minor76a70e92015-02-24 12:58:20 -06001747 memset(&iwe, 0, sizeof(iwe));
1748 iwe.cmd = IWEVCUSTOM;
1749 sprintf(buf, "tsf=%016llx", (unsigned long long)(ies->tsf));
1750 iwe.u.data.length = strlen(buf);
1751 current_ev = iwe_stream_add_point_check(info, current_ev, end_buf,
1752 &iwe, buf);
1753 if (IS_ERR(current_ev))
1754 goto unlock;
1755 memset(&iwe, 0, sizeof(iwe));
1756 iwe.cmd = IWEVCUSTOM;
1757 sprintf(buf, " Last beacon: %ums ago",
1758 elapsed_jiffies_msecs(bss->ts));
1759 iwe.u.data.length = strlen(buf);
1760 current_ev = iwe_stream_add_point_check(info, current_ev,
1761 end_buf, &iwe, buf);
1762 if (IS_ERR(current_ev))
1763 goto unlock;
Johannes Berg2a519312009-02-10 21:25:55 +01001764
James Minor76a70e92015-02-24 12:58:20 -06001765 current_ev = ieee80211_scan_add_ies(info, ies, current_ev, end_buf);
1766
1767 unlock:
Johannes Berg9caf0362012-11-29 01:25:20 +01001768 rcu_read_unlock();
Johannes Berg2a519312009-02-10 21:25:55 +01001769 return current_ev;
1770}
1771
1772
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001773static int ieee80211_scan_results(struct cfg80211_registered_device *rdev,
Johannes Berg2a519312009-02-10 21:25:55 +01001774 struct iw_request_info *info,
1775 char *buf, size_t len)
1776{
1777 char *current_ev = buf;
1778 char *end_buf = buf + len;
1779 struct cfg80211_internal_bss *bss;
James Minor76a70e92015-02-24 12:58:20 -06001780 int err = 0;
Johannes Berg2a519312009-02-10 21:25:55 +01001781
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001782 spin_lock_bh(&rdev->bss_lock);
1783 cfg80211_bss_expire(rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01001784
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001785 list_for_each_entry(bss, &rdev->bss_list, list) {
Johannes Berg2a519312009-02-10 21:25:55 +01001786 if (buf + len - current_ev <= IW_EV_ADDR_LEN) {
James Minor76a70e92015-02-24 12:58:20 -06001787 err = -E2BIG;
1788 break;
Johannes Berg2a519312009-02-10 21:25:55 +01001789 }
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001790 current_ev = ieee80211_bss(&rdev->wiphy, info, bss,
Johannes Berg77965c92009-02-18 18:45:06 +01001791 current_ev, end_buf);
James Minor76a70e92015-02-24 12:58:20 -06001792 if (IS_ERR(current_ev)) {
1793 err = PTR_ERR(current_ev);
1794 break;
1795 }
Johannes Berg2a519312009-02-10 21:25:55 +01001796 }
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001797 spin_unlock_bh(&rdev->bss_lock);
James Minor76a70e92015-02-24 12:58:20 -06001798
1799 if (err)
1800 return err;
Johannes Berg2a519312009-02-10 21:25:55 +01001801 return current_ev - buf;
1802}
1803
1804
1805int cfg80211_wext_giwscan(struct net_device *dev,
1806 struct iw_request_info *info,
1807 struct iw_point *data, char *extra)
1808{
1809 struct cfg80211_registered_device *rdev;
1810 int res;
1811
1812 if (!netif_running(dev))
1813 return -ENETDOWN;
1814
Johannes Berg463d0182009-07-14 00:33:35 +02001815 rdev = cfg80211_get_dev_from_ifindex(dev_net(dev), dev->ifindex);
Johannes Berg2a519312009-02-10 21:25:55 +01001816
1817 if (IS_ERR(rdev))
1818 return PTR_ERR(rdev);
1819
Johannes Bergf9d15d12014-01-22 11:14:19 +02001820 if (rdev->scan_req || rdev->scan_msg)
Johannes Berg5fe231e2013-05-08 21:45:15 +02001821 return -EAGAIN;
Johannes Berg2a519312009-02-10 21:25:55 +01001822
1823 res = ieee80211_scan_results(rdev, info, extra, data->length);
1824 data->length = 0;
1825 if (res >= 0) {
1826 data->length = res;
1827 res = 0;
1828 }
1829
Johannes Berg2a519312009-02-10 21:25:55 +01001830 return res;
1831}
Johannes Berg2afe38d2015-01-06 14:00:53 +01001832EXPORT_WEXT_HANDLER(cfg80211_wext_giwscan);
Johannes Berg2a519312009-02-10 21:25:55 +01001833#endif