blob: 50ea8e3fcbeb022dd4062d04d7f562c0cf750b52 [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
Johannes Berg2a519312009-02-10 21:25:55 +01006 */
7#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Johannes Berg2a519312009-02-10 21:25:55 +01009#include <linux/module.h>
10#include <linux/netdevice.h>
11#include <linux/wireless.h>
12#include <linux/nl80211.h>
13#include <linux/etherdevice.h>
14#include <net/arp.h>
15#include <net/cfg80211.h>
Johannes Berg262eb9b22011-07-13 10:39:09 +020016#include <net/cfg80211-wext.h>
Johannes Berg2a519312009-02-10 21:25:55 +010017#include <net/iw_handler.h>
18#include "core.h"
19#include "nl80211.h"
Johannes Berga9a11622009-07-27 12:01:53 +020020#include "wext-compat.h"
Hila Gonene35e4d22012-06-27 17:19:42 +030021#include "rdev-ops.h"
Johannes Berg2a519312009-02-10 21:25:55 +010022
Johannes Berg776b3582013-02-01 02:06:18 +010023/**
24 * DOC: BSS tree/list structure
25 *
26 * At the top level, the BSS list is kept in both a list in each
27 * registered device (@bss_list) as well as an RB-tree for faster
28 * lookup. In the RB-tree, entries can be looked up using their
29 * channel, MESHID, MESHCONF (for MBSSes) or channel, BSSID, SSID
30 * for other BSSes.
31 *
32 * Due to the possibility of hidden SSIDs, there's a second level
33 * structure, the "hidden_list" and "hidden_beacon_bss" pointer.
34 * The hidden_list connects all BSSes belonging to a single AP
35 * that has a hidden SSID, and connects beacon and probe response
36 * entries. For a probe response entry for a hidden SSID, the
37 * hidden_beacon_bss pointer points to the BSS struct holding the
38 * beacon's information.
39 *
40 * Reference counting is done for all these references except for
41 * the hidden_list, so that a beacon BSS struct that is otherwise
42 * not referenced has one reference for being on the bss_list and
43 * one for each probe response entry that points to it using the
44 * hidden_beacon_bss pointer. When a BSS struct that has such a
45 * pointer is get/put, the refcount update is also propagated to
46 * the referenced struct, this ensure that it cannot get removed
47 * while somebody is using the probe response version.
48 *
49 * Note that the hidden_beacon_bss pointer never changes, due to
50 * the reference counting. Therefore, no locking is needed for
51 * it.
52 *
53 * Also note that the hidden_beacon_bss pointer is only relevant
54 * if the driver uses something other than the IEs, e.g. private
55 * data stored stored in the BSS struct, since the beacon IEs are
56 * also linked into the probe response struct.
57 */
58
Rajkumar Manoharanf9616e02012-04-13 16:38:40 +053059#define IEEE80211_SCAN_RESULT_EXPIRE (30 * HZ)
Johannes Berg2a519312009-02-10 21:25:55 +010060
Johannes Berg776b3582013-02-01 02:06:18 +010061static void bss_free(struct cfg80211_internal_bss *bss)
Amitkumar Karware8e27c62012-10-11 21:03:33 -070062{
Johannes Berg9caf0362012-11-29 01:25:20 +010063 struct cfg80211_bss_ies *ies;
Johannes Bergb629ea32012-11-28 22:14:56 +010064
65 if (WARN_ON(atomic_read(&bss->hold)))
66 return;
67
Johannes Berg9caf0362012-11-29 01:25:20 +010068 ies = (void *)rcu_access_pointer(bss->pub.beacon_ies);
Johannes Berg776b3582013-02-01 02:06:18 +010069 if (ies && !bss->pub.hidden_beacon_bss)
Johannes Berg9caf0362012-11-29 01:25:20 +010070 kfree_rcu(ies, rcu_head);
71 ies = (void *)rcu_access_pointer(bss->pub.proberesp_ies);
72 if (ies)
73 kfree_rcu(ies, rcu_head);
Amitkumar Karware8e27c62012-10-11 21:03:33 -070074
Johannes Berg776b3582013-02-01 02:06:18 +010075 /*
76 * This happens when the module is removed, it doesn't
77 * really matter any more save for completeness
78 */
79 if (!list_empty(&bss->hidden_list))
80 list_del(&bss->hidden_list);
81
Amitkumar Karware8e27c62012-10-11 21:03:33 -070082 kfree(bss);
83}
84
Zhao, Gang1b8ec872014-04-21 12:53:02 +080085static inline void bss_ref_get(struct cfg80211_registered_device *rdev,
Johannes Berg776b3582013-02-01 02:06:18 +010086 struct cfg80211_internal_bss *bss)
Johannes Berg0532d4f2013-02-01 01:34:36 +010087{
Zhao, Gang1b8ec872014-04-21 12:53:02 +080088 lockdep_assert_held(&rdev->bss_lock);
Johannes Berg776b3582013-02-01 02:06:18 +010089
90 bss->refcount++;
91 if (bss->pub.hidden_beacon_bss) {
92 bss = container_of(bss->pub.hidden_beacon_bss,
93 struct cfg80211_internal_bss,
94 pub);
95 bss->refcount++;
96 }
Johannes Berg0532d4f2013-02-01 01:34:36 +010097}
98
Zhao, Gang1b8ec872014-04-21 12:53:02 +080099static inline void bss_ref_put(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 if (bss->pub.hidden_beacon_bss) {
105 struct cfg80211_internal_bss *hbss;
106 hbss = container_of(bss->pub.hidden_beacon_bss,
107 struct cfg80211_internal_bss,
108 pub);
109 hbss->refcount--;
110 if (hbss->refcount == 0)
111 bss_free(hbss);
112 }
113 bss->refcount--;
114 if (bss->refcount == 0)
115 bss_free(bss);
Johannes Berg0532d4f2013-02-01 01:34:36 +0100116}
117
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800118static bool __cfg80211_unlink_bss(struct cfg80211_registered_device *rdev,
Amitkumar Karware8e27c62012-10-11 21:03:33 -0700119 struct cfg80211_internal_bss *bss)
120{
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800121 lockdep_assert_held(&rdev->bss_lock);
Johannes Berg4b1af472013-02-01 01:05:43 +0100122
Johannes Berg776b3582013-02-01 02:06:18 +0100123 if (!list_empty(&bss->hidden_list)) {
124 /*
125 * don't remove the beacon entry if it has
126 * probe responses associated with it
127 */
128 if (!bss->pub.hidden_beacon_bss)
129 return false;
130 /*
131 * if it's a probe response entry break its
132 * link to the other entries in the group
133 */
134 list_del_init(&bss->hidden_list);
135 }
136
Amitkumar Karware8e27c62012-10-11 21:03:33 -0700137 list_del_init(&bss->list);
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800138 rb_erase(&bss->rbn, &rdev->bss_tree);
139 bss_ref_put(rdev, bss);
Johannes Berg776b3582013-02-01 02:06:18 +0100140 return true;
Amitkumar Karware8e27c62012-10-11 21:03:33 -0700141}
142
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800143static void __cfg80211_bss_expire(struct cfg80211_registered_device *rdev,
Sam Leffler15d60302012-10-11 21:03:34 -0700144 unsigned long expire_time)
145{
146 struct cfg80211_internal_bss *bss, *tmp;
147 bool expired = false;
148
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800149 lockdep_assert_held(&rdev->bss_lock);
Johannes Berg4b1af472013-02-01 01:05:43 +0100150
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800151 list_for_each_entry_safe(bss, tmp, &rdev->bss_list, list) {
Sam Leffler15d60302012-10-11 21:03:34 -0700152 if (atomic_read(&bss->hold))
153 continue;
154 if (!time_after(expire_time, bss->ts))
155 continue;
156
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800157 if (__cfg80211_unlink_bss(rdev, bss))
Johannes Berg776b3582013-02-01 02:06:18 +0100158 expired = true;
Sam Leffler15d60302012-10-11 21:03:34 -0700159 }
160
161 if (expired)
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800162 rdev->bss_generation++;
Sam Leffler15d60302012-10-11 21:03:34 -0700163}
164
Johannes Bergf9d15d12014-01-22 11:14:19 +0200165void ___cfg80211_scan_done(struct cfg80211_registered_device *rdev,
166 bool send_message)
Johannes Berg2a519312009-02-10 21:25:55 +0100167{
Johannes Berg667503d2009-07-07 03:56:11 +0200168 struct cfg80211_scan_request *request;
Johannes Bergfd014282012-06-18 19:17:03 +0200169 struct wireless_dev *wdev;
Johannes Bergf9d15d12014-01-22 11:14:19 +0200170 struct sk_buff *msg;
Johannes Berg3d23e342009-09-29 23:27:28 +0200171#ifdef CONFIG_CFG80211_WEXT
Johannes Berg2a519312009-02-10 21:25:55 +0100172 union iwreq_data wrqu;
173#endif
174
Johannes Berg5fe231e2013-05-08 21:45:15 +0200175 ASSERT_RTNL();
Johannes Berg01a0ac42009-08-20 21:36:16 +0200176
Johannes Bergf9d15d12014-01-22 11:14:19 +0200177 if (rdev->scan_msg) {
178 nl80211_send_scan_result(rdev, rdev->scan_msg);
179 rdev->scan_msg = NULL;
180 return;
181 }
Johannes Berg667503d2009-07-07 03:56:11 +0200182
Johannes Bergf9d15d12014-01-22 11:14:19 +0200183 request = rdev->scan_req;
Johannes Berg01a0ac42009-08-20 21:36:16 +0200184 if (!request)
185 return;
186
Johannes Bergfd014282012-06-18 19:17:03 +0200187 wdev = request->wdev;
Johannes Berg2a519312009-02-10 21:25:55 +0100188
Johannes Berg6829c8782009-07-02 09:13:27 +0200189 /*
190 * This must be before sending the other events!
191 * Otherwise, wpa_supplicant gets completely confused with
192 * wext events.
193 */
Johannes Bergfd014282012-06-18 19:17:03 +0200194 if (wdev->netdev)
195 cfg80211_sme_scan_done(wdev->netdev);
Johannes Berg6829c8782009-07-02 09:13:27 +0200196
Johannes Bergf9d15d12014-01-22 11:14:19 +0200197 if (!request->aborted &&
198 request->flags & NL80211_SCAN_FLAG_FLUSH) {
199 /* flush entries from previous scans */
200 spin_lock_bh(&rdev->bss_lock);
201 __cfg80211_bss_expire(rdev, request->scan_start);
202 spin_unlock_bh(&rdev->bss_lock);
Sam Leffler15d60302012-10-11 21:03:34 -0700203 }
Johannes Berg2a519312009-02-10 21:25:55 +0100204
Johannes Bergf9d15d12014-01-22 11:14:19 +0200205 msg = nl80211_build_scan_msg(rdev, wdev, request->aborted);
206
Johannes Berg3d23e342009-09-29 23:27:28 +0200207#ifdef CONFIG_CFG80211_WEXT
Johannes Bergfd014282012-06-18 19:17:03 +0200208 if (wdev->netdev && !request->aborted) {
Johannes Berg2a519312009-02-10 21:25:55 +0100209 memset(&wrqu, 0, sizeof(wrqu));
210
Johannes Bergfd014282012-06-18 19:17:03 +0200211 wireless_send_event(wdev->netdev, SIOCGIWSCAN, &wrqu, NULL);
Johannes Berg2a519312009-02-10 21:25:55 +0100212 }
213#endif
214
Johannes Bergfd014282012-06-18 19:17:03 +0200215 if (wdev->netdev)
216 dev_put(wdev->netdev);
Johannes Berg2a519312009-02-10 21:25:55 +0100217
Johannes Berg36e6fea2009-08-12 22:21:21 +0200218 rdev->scan_req = NULL;
Eliad Peller4a58e7c2013-12-05 18:30:17 +0200219 kfree(request);
Johannes Bergf9d15d12014-01-22 11:14:19 +0200220
221 if (!send_message)
222 rdev->scan_msg = msg;
223 else
224 nl80211_send_scan_result(rdev, msg);
Johannes Berg2a519312009-02-10 21:25:55 +0100225}
Johannes Berg667503d2009-07-07 03:56:11 +0200226
Johannes Berg36e6fea2009-08-12 22:21:21 +0200227void __cfg80211_scan_done(struct work_struct *wk)
228{
229 struct cfg80211_registered_device *rdev;
230
231 rdev = container_of(wk, struct cfg80211_registered_device,
232 scan_done_wk);
233
Johannes Berg5fe231e2013-05-08 21:45:15 +0200234 rtnl_lock();
Johannes Bergf9d15d12014-01-22 11:14:19 +0200235 ___cfg80211_scan_done(rdev, true);
Johannes Berg5fe231e2013-05-08 21:45:15 +0200236 rtnl_unlock();
Johannes Berg36e6fea2009-08-12 22:21:21 +0200237}
238
Johannes Berg667503d2009-07-07 03:56:11 +0200239void cfg80211_scan_done(struct cfg80211_scan_request *request, bool aborted)
240{
Beni Lev4ee3e062012-08-27 12:49:39 +0300241 trace_cfg80211_scan_done(request, aborted);
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800242 WARN_ON(request != wiphy_to_rdev(request->wiphy)->scan_req);
Johannes Berg667503d2009-07-07 03:56:11 +0200243
244 request->aborted = aborted;
Johannes Berg5fe231e2013-05-08 21:45:15 +0200245 request->notified = true;
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800246 queue_work(cfg80211_wq, &wiphy_to_rdev(request->wiphy)->scan_done_wk);
Johannes Berg667503d2009-07-07 03:56:11 +0200247}
Johannes Berg2a519312009-02-10 21:25:55 +0100248EXPORT_SYMBOL(cfg80211_scan_done);
249
Luciano Coelho807f8a82011-05-11 17:09:35 +0300250void __cfg80211_sched_scan_results(struct work_struct *wk)
251{
252 struct cfg80211_registered_device *rdev;
Sam Leffler15d60302012-10-11 21:03:34 -0700253 struct cfg80211_sched_scan_request *request;
Luciano Coelho807f8a82011-05-11 17:09:35 +0300254
255 rdev = container_of(wk, struct cfg80211_registered_device,
256 sched_scan_results_wk);
257
Johannes Berg5fe231e2013-05-08 21:45:15 +0200258 rtnl_lock();
Luciano Coelho807f8a82011-05-11 17:09:35 +0300259
Jukka Rissanen31a60ed2014-12-15 13:25:38 +0200260 request = rtnl_dereference(rdev->sched_scan_req);
Johannes Berg79845c62013-10-21 11:33:35 +0200261
Luciano Coelho807f8a82011-05-11 17:09:35 +0300262 /* we don't have sched_scan_req anymore if the scan is stopping */
Sam Leffler15d60302012-10-11 21:03:34 -0700263 if (request) {
264 if (request->flags & NL80211_SCAN_FLAG_FLUSH) {
265 /* flush entries from previous scans */
266 spin_lock_bh(&rdev->bss_lock);
267 __cfg80211_bss_expire(rdev, request->scan_start);
268 spin_unlock_bh(&rdev->bss_lock);
Avraham Stern3b06d272015-10-12 09:51:34 +0300269 request->scan_start = jiffies;
Sam Leffler15d60302012-10-11 21:03:34 -0700270 }
271 nl80211_send_sched_scan_results(rdev, request->dev);
272 }
Luciano Coelho807f8a82011-05-11 17:09:35 +0300273
Johannes Berg5fe231e2013-05-08 21:45:15 +0200274 rtnl_unlock();
Luciano Coelho807f8a82011-05-11 17:09:35 +0300275}
276
277void cfg80211_sched_scan_results(struct wiphy *wiphy)
278{
Beni Lev4ee3e062012-08-27 12:49:39 +0300279 trace_cfg80211_sched_scan_results(wiphy);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300280 /* ignore if we're not scanning */
Jukka Rissanen31a60ed2014-12-15 13:25:38 +0200281
282 if (rcu_access_pointer(wiphy_to_rdev(wiphy)->sched_scan_req))
Luciano Coelho807f8a82011-05-11 17:09:35 +0300283 queue_work(cfg80211_wq,
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800284 &wiphy_to_rdev(wiphy)->sched_scan_results_wk);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300285}
286EXPORT_SYMBOL(cfg80211_sched_scan_results);
287
Eliad Peller792e6aa2014-04-30 16:14:23 +0300288void cfg80211_sched_scan_stopped_rtnl(struct wiphy *wiphy)
Luciano Coelho807f8a82011-05-11 17:09:35 +0300289{
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800290 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300291
Eliad Peller792e6aa2014-04-30 16:14:23 +0300292 ASSERT_RTNL();
293
Beni Lev4ee3e062012-08-27 12:49:39 +0300294 trace_cfg80211_sched_scan_stopped(wiphy);
295
Luciano Coelho807f8a82011-05-11 17:09:35 +0300296 __cfg80211_stop_sched_scan(rdev, true);
Eliad Peller792e6aa2014-04-30 16:14:23 +0300297}
298EXPORT_SYMBOL(cfg80211_sched_scan_stopped_rtnl);
299
300void cfg80211_sched_scan_stopped(struct wiphy *wiphy)
301{
302 rtnl_lock();
303 cfg80211_sched_scan_stopped_rtnl(wiphy);
Johannes Berg5fe231e2013-05-08 21:45:15 +0200304 rtnl_unlock();
Luciano Coelho807f8a82011-05-11 17:09:35 +0300305}
Luciano Coelho807f8a82011-05-11 17:09:35 +0300306EXPORT_SYMBOL(cfg80211_sched_scan_stopped);
307
308int __cfg80211_stop_sched_scan(struct cfg80211_registered_device *rdev,
309 bool driver_initiated)
310{
Jukka Rissanen31a60ed2014-12-15 13:25:38 +0200311 struct cfg80211_sched_scan_request *sched_scan_req;
Luciano Coelho807f8a82011-05-11 17:09:35 +0300312 struct net_device *dev;
313
Johannes Berg5fe231e2013-05-08 21:45:15 +0200314 ASSERT_RTNL();
Luciano Coelho807f8a82011-05-11 17:09:35 +0300315
316 if (!rdev->sched_scan_req)
Luciano Coelho1a84ff72011-07-08 11:16:16 +0300317 return -ENOENT;
Luciano Coelho807f8a82011-05-11 17:09:35 +0300318
Jukka Rissanen31a60ed2014-12-15 13:25:38 +0200319 sched_scan_req = rtnl_dereference(rdev->sched_scan_req);
320 dev = sched_scan_req->dev;
Luciano Coelho807f8a82011-05-11 17:09:35 +0300321
Luciano Coelho85a99942011-05-12 16:28:29 +0300322 if (!driver_initiated) {
Hila Gonene35e4d22012-06-27 17:19:42 +0300323 int err = rdev_sched_scan_stop(rdev, dev);
Luciano Coelho85a99942011-05-12 16:28:29 +0300324 if (err)
325 return err;
326 }
Luciano Coelho807f8a82011-05-11 17:09:35 +0300327
328 nl80211_send_sched_scan(rdev, dev, NL80211_CMD_SCHED_SCAN_STOPPED);
329
Jukka Rissanen31a60ed2014-12-15 13:25:38 +0200330 RCU_INIT_POINTER(rdev->sched_scan_req, NULL);
331 kfree_rcu(sched_scan_req, rcu_head);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300332
Jesper Juhl3b4670f2011-06-29 22:49:33 +0200333 return 0;
Luciano Coelho807f8a82011-05-11 17:09:35 +0300334}
335
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800336void cfg80211_bss_age(struct cfg80211_registered_device *rdev,
Dan Williamscb3a8ee2009-02-11 17:14:43 -0500337 unsigned long age_secs)
338{
339 struct cfg80211_internal_bss *bss;
340 unsigned long age_jiffies = msecs_to_jiffies(age_secs * MSEC_PER_SEC);
341
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800342 spin_lock_bh(&rdev->bss_lock);
343 list_for_each_entry(bss, &rdev->bss_list, list)
Dan Williamscb3a8ee2009-02-11 17:14:43 -0500344 bss->ts -= age_jiffies;
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800345 spin_unlock_bh(&rdev->bss_lock);
Dan Williamscb3a8ee2009-02-11 17:14:43 -0500346}
347
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800348void cfg80211_bss_expire(struct cfg80211_registered_device *rdev)
Johannes Berg2a519312009-02-10 21:25:55 +0100349{
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800350 __cfg80211_bss_expire(rdev, jiffies - IEEE80211_SCAN_RESULT_EXPIRE);
Johannes Berg2a519312009-02-10 21:25:55 +0100351}
352
Johannes Bergc21dbf92010-01-26 14:15:46 +0100353const u8 *cfg80211_find_ie(u8 eid, const u8 *ies, int len)
Johannes Berg2a519312009-02-10 21:25:55 +0100354{
Johannes Bergc21dbf92010-01-26 14:15:46 +0100355 while (len > 2 && ies[0] != eid) {
Johannes Berg2a519312009-02-10 21:25:55 +0100356 len -= ies[1] + 2;
357 ies += ies[1] + 2;
358 }
359 if (len < 2)
360 return NULL;
361 if (len < 2 + ies[1])
362 return NULL;
363 return ies;
364}
Johannes Bergc21dbf92010-01-26 14:15:46 +0100365EXPORT_SYMBOL(cfg80211_find_ie);
Johannes Berg2a519312009-02-10 21:25:55 +0100366
Eliad Peller0c28ec52011-09-15 11:53:01 +0300367const u8 *cfg80211_find_vendor_ie(unsigned int oui, u8 oui_type,
368 const u8 *ies, int len)
369{
370 struct ieee80211_vendor_ie *ie;
371 const u8 *pos = ies, *end = ies + len;
372 int ie_oui;
373
374 while (pos < end) {
375 pos = cfg80211_find_ie(WLAN_EID_VENDOR_SPECIFIC, pos,
376 end - pos);
377 if (!pos)
378 return NULL;
379
Eliad Peller0c28ec52011-09-15 11:53:01 +0300380 ie = (struct ieee80211_vendor_ie *)pos;
Luciano Coelho67194292013-02-12 20:11:38 +0200381
382 /* make sure we can access ie->len */
383 BUILD_BUG_ON(offsetof(struct ieee80211_vendor_ie, len) != 1);
384
385 if (ie->len < sizeof(*ie))
386 goto cont;
387
Eliad Peller0c28ec52011-09-15 11:53:01 +0300388 ie_oui = ie->oui[0] << 16 | ie->oui[1] << 8 | ie->oui[2];
389 if (ie_oui == oui && ie->oui_type == oui_type)
390 return pos;
Luciano Coelho67194292013-02-12 20:11:38 +0200391cont:
Eliad Peller0c28ec52011-09-15 11:53:01 +0300392 pos += 2 + ie->len;
393 }
394 return NULL;
395}
396EXPORT_SYMBOL(cfg80211_find_vendor_ie);
397
Johannes Berg915de2f2012-11-28 22:39:37 +0100398static bool is_bss(struct cfg80211_bss *a, const u8 *bssid,
Johannes Berg2a519312009-02-10 21:25:55 +0100399 const u8 *ssid, size_t ssid_len)
400{
Johannes Berg9caf0362012-11-29 01:25:20 +0100401 const struct cfg80211_bss_ies *ies;
Johannes Berg2a519312009-02-10 21:25:55 +0100402 const u8 *ssidie;
403
Joe Perchesac422d32012-05-08 18:56:55 +0000404 if (bssid && !ether_addr_equal(a->bssid, bssid))
Johannes Berg2a519312009-02-10 21:25:55 +0100405 return false;
406
Johannes Berg79420f02009-02-10 21:25:59 +0100407 if (!ssid)
408 return true;
409
Johannes Berg9caf0362012-11-29 01:25:20 +0100410 ies = rcu_access_pointer(a->ies);
411 if (!ies)
412 return false;
413 ssidie = cfg80211_find_ie(WLAN_EID_SSID, ies->data, ies->len);
Johannes Berg2a519312009-02-10 21:25:55 +0100414 if (!ssidie)
415 return false;
416 if (ssidie[1] != ssid_len)
417 return false;
418 return memcmp(ssidie + 2, ssid, ssid_len) == 0;
419}
420
Johannes Berg4593c4c2013-02-01 19:20:03 +0100421/**
422 * enum bss_compare_mode - BSS compare mode
423 * @BSS_CMP_REGULAR: regular compare mode (for insertion and normal find)
424 * @BSS_CMP_HIDE_ZLEN: find hidden SSID with zero-length mode
425 * @BSS_CMP_HIDE_NUL: find hidden SSID with NUL-ed out mode
426 */
427enum bss_compare_mode {
428 BSS_CMP_REGULAR,
429 BSS_CMP_HIDE_ZLEN,
430 BSS_CMP_HIDE_NUL,
431};
432
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100433static int cmp_bss(struct cfg80211_bss *a,
Johannes Berg5622f5b2013-01-30 00:26:45 +0100434 struct cfg80211_bss *b,
Johannes Berg4593c4c2013-02-01 19:20:03 +0100435 enum bss_compare_mode mode)
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100436{
Johannes Berg9caf0362012-11-29 01:25:20 +0100437 const struct cfg80211_bss_ies *a_ies, *b_ies;
Johannes Berg3af63412013-01-30 00:40:20 +0100438 const u8 *ie1 = NULL;
439 const u8 *ie2 = NULL;
Johannes Berg5622f5b2013-01-30 00:26:45 +0100440 int i, r;
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100441
Johannes Berg3af63412013-01-30 00:40:20 +0100442 if (a->channel != b->channel)
443 return b->channel->center_freq - a->channel->center_freq;
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100444
Johannes Berg9caf0362012-11-29 01:25:20 +0100445 a_ies = rcu_access_pointer(a->ies);
446 if (!a_ies)
447 return -1;
448 b_ies = rcu_access_pointer(b->ies);
449 if (!b_ies)
450 return 1;
451
Johannes Berg3af63412013-01-30 00:40:20 +0100452 if (WLAN_CAPABILITY_IS_STA_BSS(a->capability))
453 ie1 = cfg80211_find_ie(WLAN_EID_MESH_ID,
454 a_ies->data, a_ies->len);
455 if (WLAN_CAPABILITY_IS_STA_BSS(b->capability))
456 ie2 = cfg80211_find_ie(WLAN_EID_MESH_ID,
457 b_ies->data, b_ies->len);
458 if (ie1 && ie2) {
459 int mesh_id_cmp;
460
461 if (ie1[1] == ie2[1])
462 mesh_id_cmp = memcmp(ie1 + 2, ie2 + 2, ie1[1]);
463 else
464 mesh_id_cmp = ie2[1] - ie1[1];
465
466 ie1 = cfg80211_find_ie(WLAN_EID_MESH_CONFIG,
467 a_ies->data, a_ies->len);
468 ie2 = cfg80211_find_ie(WLAN_EID_MESH_CONFIG,
469 b_ies->data, b_ies->len);
470 if (ie1 && ie2) {
471 if (mesh_id_cmp)
472 return mesh_id_cmp;
473 if (ie1[1] != ie2[1])
474 return ie2[1] - ie1[1];
475 return memcmp(ie1 + 2, ie2 + 2, ie1[1]);
476 }
477 }
478
Johannes Berg3af63412013-01-30 00:40:20 +0100479 r = memcmp(a->bssid, b->bssid, sizeof(a->bssid));
480 if (r)
481 return r;
482
Johannes Berg9caf0362012-11-29 01:25:20 +0100483 ie1 = cfg80211_find_ie(WLAN_EID_SSID, a_ies->data, a_ies->len);
484 ie2 = cfg80211_find_ie(WLAN_EID_SSID, b_ies->data, b_ies->len);
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100485
Johannes Berg5622f5b2013-01-30 00:26:45 +0100486 if (!ie1 && !ie2)
487 return 0;
488
Johannes Bergf94f8b12012-11-28 22:42:34 +0100489 /*
Johannes Berg5622f5b2013-01-30 00:26:45 +0100490 * Note that with "hide_ssid", the function returns a match if
491 * the already-present BSS ("b") is a hidden SSID beacon for
492 * the new BSS ("a").
Johannes Bergf94f8b12012-11-28 22:42:34 +0100493 */
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100494
495 /* sort missing IE before (left of) present IE */
496 if (!ie1)
497 return -1;
498 if (!ie2)
499 return 1;
500
Johannes Berg4593c4c2013-02-01 19:20:03 +0100501 switch (mode) {
502 case BSS_CMP_HIDE_ZLEN:
503 /*
504 * In ZLEN mode we assume the BSS entry we're
505 * looking for has a zero-length SSID. So if
506 * the one we're looking at right now has that,
507 * return 0. Otherwise, return the difference
508 * in length, but since we're looking for the
509 * 0-length it's really equivalent to returning
510 * the length of the one we're looking at.
511 *
512 * No content comparison is needed as we assume
513 * the content length is zero.
514 */
515 return ie2[1];
516 case BSS_CMP_REGULAR:
517 default:
518 /* sort by length first, then by contents */
519 if (ie1[1] != ie2[1])
520 return ie2[1] - ie1[1];
Johannes Berg5622f5b2013-01-30 00:26:45 +0100521 return memcmp(ie1 + 2, ie2 + 2, ie1[1]);
Johannes Berg4593c4c2013-02-01 19:20:03 +0100522 case BSS_CMP_HIDE_NUL:
523 if (ie1[1] != ie2[1])
524 return ie2[1] - ie1[1];
525 /* this is equivalent to memcmp(zeroes, ie2 + 2, len) */
526 for (i = 0; i < ie2[1]; i++)
527 if (ie2[i + 2])
528 return -1;
529 return 0;
530 }
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100531}
532
Dedy Lansky6eb18132015-02-08 15:52:03 +0200533static bool cfg80211_bss_type_match(u16 capability,
534 enum ieee80211_band band,
535 enum ieee80211_bss_type bss_type)
536{
537 bool ret = true;
538 u16 mask, val;
539
540 if (bss_type == IEEE80211_BSS_TYPE_ANY)
541 return ret;
542
543 if (band == IEEE80211_BAND_60GHZ) {
544 mask = WLAN_CAPABILITY_DMG_TYPE_MASK;
545 switch (bss_type) {
546 case IEEE80211_BSS_TYPE_ESS:
547 val = WLAN_CAPABILITY_DMG_TYPE_AP;
548 break;
549 case IEEE80211_BSS_TYPE_PBSS:
550 val = WLAN_CAPABILITY_DMG_TYPE_PBSS;
551 break;
552 case IEEE80211_BSS_TYPE_IBSS:
553 val = WLAN_CAPABILITY_DMG_TYPE_IBSS;
554 break;
555 default:
556 return false;
557 }
558 } else {
559 mask = WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_IBSS;
560 switch (bss_type) {
561 case IEEE80211_BSS_TYPE_ESS:
562 val = WLAN_CAPABILITY_ESS;
563 break;
564 case IEEE80211_BSS_TYPE_IBSS:
565 val = WLAN_CAPABILITY_IBSS;
566 break;
567 case IEEE80211_BSS_TYPE_MBSS:
568 val = 0;
569 break;
570 default:
571 return false;
572 }
573 }
574
575 ret = ((capability & mask) == val);
576 return ret;
577}
578
Ben Greear0e3a39b2013-06-19 14:06:27 -0700579/* Returned bss is reference counted and must be cleaned up appropriately. */
Johannes Berg2a519312009-02-10 21:25:55 +0100580struct cfg80211_bss *cfg80211_get_bss(struct wiphy *wiphy,
581 struct ieee80211_channel *channel,
582 const u8 *bssid,
Johannes Berg79420f02009-02-10 21:25:59 +0100583 const u8 *ssid, size_t ssid_len,
Dedy Lansky6eb18132015-02-08 15:52:03 +0200584 enum ieee80211_bss_type bss_type,
585 enum ieee80211_privacy privacy)
Johannes Berg2a519312009-02-10 21:25:55 +0100586{
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800587 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg2a519312009-02-10 21:25:55 +0100588 struct cfg80211_internal_bss *bss, *res = NULL;
Johannes Bergccb6c132010-07-13 10:55:38 +0200589 unsigned long now = jiffies;
Dedy Lansky6eb18132015-02-08 15:52:03 +0200590 int bss_privacy;
Johannes Berg2a519312009-02-10 21:25:55 +0100591
Dedy Lansky6eb18132015-02-08 15:52:03 +0200592 trace_cfg80211_get_bss(wiphy, channel, bssid, ssid, ssid_len, bss_type,
593 privacy);
Beni Lev4ee3e062012-08-27 12:49:39 +0300594
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800595 spin_lock_bh(&rdev->bss_lock);
Johannes Berg2a519312009-02-10 21:25:55 +0100596
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800597 list_for_each_entry(bss, &rdev->bss_list, list) {
Dedy Lansky6eb18132015-02-08 15:52:03 +0200598 if (!cfg80211_bss_type_match(bss->pub.capability,
599 bss->pub.channel->band, bss_type))
600 continue;
601
602 bss_privacy = (bss->pub.capability & WLAN_CAPABILITY_PRIVACY);
603 if ((privacy == IEEE80211_PRIVACY_ON && !bss_privacy) ||
604 (privacy == IEEE80211_PRIVACY_OFF && bss_privacy))
Johannes Berg79420f02009-02-10 21:25:59 +0100605 continue;
Johannes Berg2a519312009-02-10 21:25:55 +0100606 if (channel && bss->pub.channel != channel)
607 continue;
Johannes Bergc14a7402014-04-09 22:36:50 +0200608 if (!is_valid_ether_addr(bss->pub.bssid))
609 continue;
Johannes Bergccb6c132010-07-13 10:55:38 +0200610 /* Don't get expired BSS structs */
611 if (time_after(now, bss->ts + IEEE80211_SCAN_RESULT_EXPIRE) &&
612 !atomic_read(&bss->hold))
613 continue;
Johannes Berg2a519312009-02-10 21:25:55 +0100614 if (is_bss(&bss->pub, bssid, ssid, ssid_len)) {
615 res = bss;
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800616 bss_ref_get(rdev, res);
Johannes Berg2a519312009-02-10 21:25:55 +0100617 break;
618 }
619 }
620
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800621 spin_unlock_bh(&rdev->bss_lock);
Johannes Berg2a519312009-02-10 21:25:55 +0100622 if (!res)
623 return NULL;
Beni Lev4ee3e062012-08-27 12:49:39 +0300624 trace_cfg80211_return_bss(&res->pub);
Johannes Berg2a519312009-02-10 21:25:55 +0100625 return &res->pub;
626}
627EXPORT_SYMBOL(cfg80211_get_bss);
628
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800629static void rb_insert_bss(struct cfg80211_registered_device *rdev,
Johannes Berg2a519312009-02-10 21:25:55 +0100630 struct cfg80211_internal_bss *bss)
631{
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800632 struct rb_node **p = &rdev->bss_tree.rb_node;
Johannes Berg2a519312009-02-10 21:25:55 +0100633 struct rb_node *parent = NULL;
634 struct cfg80211_internal_bss *tbss;
635 int cmp;
636
637 while (*p) {
638 parent = *p;
639 tbss = rb_entry(parent, struct cfg80211_internal_bss, rbn);
640
Johannes Berg4593c4c2013-02-01 19:20:03 +0100641 cmp = cmp_bss(&bss->pub, &tbss->pub, BSS_CMP_REGULAR);
Johannes Berg2a519312009-02-10 21:25:55 +0100642
643 if (WARN_ON(!cmp)) {
644 /* will sort of leak this BSS */
645 return;
646 }
647
648 if (cmp < 0)
649 p = &(*p)->rb_left;
650 else
651 p = &(*p)->rb_right;
652 }
653
654 rb_link_node(&bss->rbn, parent, p);
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800655 rb_insert_color(&bss->rbn, &rdev->bss_tree);
Johannes Berg2a519312009-02-10 21:25:55 +0100656}
657
658static struct cfg80211_internal_bss *
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800659rb_find_bss(struct cfg80211_registered_device *rdev,
Johannes Berg5622f5b2013-01-30 00:26:45 +0100660 struct cfg80211_internal_bss *res,
Johannes Berg4593c4c2013-02-01 19:20:03 +0100661 enum bss_compare_mode mode)
Johannes Berg2a519312009-02-10 21:25:55 +0100662{
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800663 struct rb_node *n = rdev->bss_tree.rb_node;
Johannes Berg2a519312009-02-10 21:25:55 +0100664 struct cfg80211_internal_bss *bss;
665 int r;
666
667 while (n) {
668 bss = rb_entry(n, struct cfg80211_internal_bss, rbn);
Johannes Berg4593c4c2013-02-01 19:20:03 +0100669 r = cmp_bss(&res->pub, &bss->pub, mode);
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100670
671 if (r == 0)
672 return bss;
673 else if (r < 0)
674 n = n->rb_left;
675 else
676 n = n->rb_right;
677 }
678
679 return NULL;
680}
681
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800682static bool cfg80211_combine_bsses(struct cfg80211_registered_device *rdev,
Johannes Berg776b3582013-02-01 02:06:18 +0100683 struct cfg80211_internal_bss *new)
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100684{
Johannes Berg9caf0362012-11-29 01:25:20 +0100685 const struct cfg80211_bss_ies *ies;
Johannes Berg776b3582013-02-01 02:06:18 +0100686 struct cfg80211_internal_bss *bss;
687 const u8 *ie;
688 int i, ssidlen;
689 u8 fold = 0;
Johannes Berg9caf0362012-11-29 01:25:20 +0100690
Johannes Berg776b3582013-02-01 02:06:18 +0100691 ies = rcu_access_pointer(new->pub.beacon_ies);
Johannes Berg9caf0362012-11-29 01:25:20 +0100692 if (WARN_ON(!ies))
Johannes Berg776b3582013-02-01 02:06:18 +0100693 return false;
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100694
Johannes Berg776b3582013-02-01 02:06:18 +0100695 ie = cfg80211_find_ie(WLAN_EID_SSID, ies->data, ies->len);
696 if (!ie) {
697 /* nothing to do */
698 return true;
699 }
700
701 ssidlen = ie[1];
702 for (i = 0; i < ssidlen; i++)
703 fold |= ie[2 + i];
704
705 if (fold) {
706 /* not a hidden SSID */
707 return true;
708 }
709
710 /* This is the bad part ... */
711
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800712 list_for_each_entry(bss, &rdev->bss_list, list) {
Johannes Berg776b3582013-02-01 02:06:18 +0100713 if (!ether_addr_equal(bss->pub.bssid, new->pub.bssid))
714 continue;
715 if (bss->pub.channel != new->pub.channel)
716 continue;
Simon Wunderlichdcd6eac2013-07-08 16:55:49 +0200717 if (bss->pub.scan_width != new->pub.scan_width)
718 continue;
Johannes Berg776b3582013-02-01 02:06:18 +0100719 if (rcu_access_pointer(bss->pub.beacon_ies))
720 continue;
721 ies = rcu_access_pointer(bss->pub.ies);
722 if (!ies)
723 continue;
724 ie = cfg80211_find_ie(WLAN_EID_SSID, ies->data, ies->len);
725 if (!ie)
726 continue;
727 if (ssidlen && ie[1] != ssidlen)
728 continue;
Johannes Berg776b3582013-02-01 02:06:18 +0100729 if (WARN_ON_ONCE(bss->pub.hidden_beacon_bss))
730 continue;
731 if (WARN_ON_ONCE(!list_empty(&bss->hidden_list)))
732 list_del(&bss->hidden_list);
733 /* combine them */
734 list_add(&bss->hidden_list, &new->hidden_list);
735 bss->pub.hidden_beacon_bss = &new->pub;
736 new->refcount += bss->refcount;
737 rcu_assign_pointer(bss->pub.beacon_ies,
738 new->pub.beacon_ies);
739 }
740
741 return true;
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100742}
743
Ben Greear0e3a39b2013-06-19 14:06:27 -0700744/* Returned bss is reference counted and must be cleaned up appropriately. */
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100745static struct cfg80211_internal_bss *
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800746cfg80211_bss_update(struct cfg80211_registered_device *rdev,
Emmanuel Grumbach3afc2162014-03-04 16:50:13 +0200747 struct cfg80211_internal_bss *tmp,
748 bool signal_valid)
Johannes Berg2a519312009-02-10 21:25:55 +0100749{
750 struct cfg80211_internal_bss *found = NULL;
Johannes Berg2a519312009-02-10 21:25:55 +0100751
Johannes Berg9caf0362012-11-29 01:25:20 +0100752 if (WARN_ON(!tmp->pub.channel))
Johannes Berg2a519312009-02-10 21:25:55 +0100753 return NULL;
Johannes Berg2a519312009-02-10 21:25:55 +0100754
Johannes Berg9caf0362012-11-29 01:25:20 +0100755 tmp->ts = jiffies;
Johannes Berg2a519312009-02-10 21:25:55 +0100756
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800757 spin_lock_bh(&rdev->bss_lock);
Johannes Berg2a519312009-02-10 21:25:55 +0100758
Johannes Berg9caf0362012-11-29 01:25:20 +0100759 if (WARN_ON(!rcu_access_pointer(tmp->pub.ies))) {
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800760 spin_unlock_bh(&rdev->bss_lock);
Johannes Berg9caf0362012-11-29 01:25:20 +0100761 return NULL;
762 }
763
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800764 found = rb_find_bss(rdev, tmp, BSS_CMP_REGULAR);
Johannes Berg2a519312009-02-10 21:25:55 +0100765
Johannes Bergcd1658f2009-04-16 15:00:58 +0200766 if (found) {
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200767 /* Update IEs */
Johannes Berg9caf0362012-11-29 01:25:20 +0100768 if (rcu_access_pointer(tmp->pub.proberesp_ies)) {
769 const struct cfg80211_bss_ies *old;
Johannes Bergcd1658f2009-04-16 15:00:58 +0200770
Johannes Berg9caf0362012-11-29 01:25:20 +0100771 old = rcu_access_pointer(found->pub.proberesp_ies);
Johannes Bergcd1658f2009-04-16 15:00:58 +0200772
Johannes Berg9caf0362012-11-29 01:25:20 +0100773 rcu_assign_pointer(found->pub.proberesp_ies,
774 tmp->pub.proberesp_ies);
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200775 /* Override possible earlier Beacon frame IEs */
Johannes Berg9caf0362012-11-29 01:25:20 +0100776 rcu_assign_pointer(found->pub.ies,
777 tmp->pub.proberesp_ies);
778 if (old)
779 kfree_rcu((struct cfg80211_bss_ies *)old,
780 rcu_head);
781 } else if (rcu_access_pointer(tmp->pub.beacon_ies)) {
Johannes Berg9537f222013-02-01 01:19:48 +0100782 const struct cfg80211_bss_ies *old;
Johannes Berg776b3582013-02-01 02:06:18 +0100783 struct cfg80211_internal_bss *bss;
784
785 if (found->pub.hidden_beacon_bss &&
786 !list_empty(&found->hidden_list)) {
Johannes Berg1345ee62013-03-06 10:31:05 +0100787 const struct cfg80211_bss_ies *f;
788
Johannes Berg776b3582013-02-01 02:06:18 +0100789 /*
790 * The found BSS struct is one of the probe
791 * response members of a group, but we're
792 * receiving a beacon (beacon_ies in the tmp
793 * bss is used). This can only mean that the
794 * AP changed its beacon from not having an
795 * SSID to showing it, which is confusing so
796 * drop this information.
797 */
Johannes Berg1345ee62013-03-06 10:31:05 +0100798
799 f = rcu_access_pointer(tmp->pub.beacon_ies);
800 kfree_rcu((struct cfg80211_bss_ies *)f,
801 rcu_head);
Johannes Berg776b3582013-02-01 02:06:18 +0100802 goto drop;
803 }
Johannes Berg915de2f2012-11-28 22:39:37 +0100804
Johannes Berg9caf0362012-11-29 01:25:20 +0100805 old = rcu_access_pointer(found->pub.beacon_ies);
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200806
Johannes Berg9caf0362012-11-29 01:25:20 +0100807 rcu_assign_pointer(found->pub.beacon_ies,
808 tmp->pub.beacon_ies);
Sven Neumann01123e22010-12-09 15:05:24 +0100809
810 /* Override IEs if they were from a beacon before */
Johannes Berg9537f222013-02-01 01:19:48 +0100811 if (old == rcu_access_pointer(found->pub.ies))
Johannes Berg9caf0362012-11-29 01:25:20 +0100812 rcu_assign_pointer(found->pub.ies,
813 tmp->pub.beacon_ies);
Johannes Bergcd1658f2009-04-16 15:00:58 +0200814
Johannes Berg776b3582013-02-01 02:06:18 +0100815 /* Assign beacon IEs to all sub entries */
816 list_for_each_entry(bss, &found->hidden_list,
817 hidden_list) {
818 const struct cfg80211_bss_ies *ies;
819
820 ies = rcu_access_pointer(bss->pub.beacon_ies);
821 WARN_ON(ies != old);
822
823 rcu_assign_pointer(bss->pub.beacon_ies,
824 tmp->pub.beacon_ies);
825 }
826
Johannes Berg9caf0362012-11-29 01:25:20 +0100827 if (old)
828 kfree_rcu((struct cfg80211_bss_ies *)old,
829 rcu_head);
830 }
Johannes Berg1345ee62013-03-06 10:31:05 +0100831
832 found->pub.beacon_interval = tmp->pub.beacon_interval;
Emmanuel Grumbach3afc2162014-03-04 16:50:13 +0200833 /*
834 * don't update the signal if beacon was heard on
835 * adjacent channel.
836 */
837 if (signal_valid)
838 found->pub.signal = tmp->pub.signal;
Johannes Berg1345ee62013-03-06 10:31:05 +0100839 found->pub.capability = tmp->pub.capability;
840 found->ts = tmp->ts;
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +0200841 found->ts_boottime = tmp->ts_boottime;
Johannes Berg2a519312009-02-10 21:25:55 +0100842 } else {
Johannes Berg9caf0362012-11-29 01:25:20 +0100843 struct cfg80211_internal_bss *new;
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100844 struct cfg80211_internal_bss *hidden;
Johannes Berg9caf0362012-11-29 01:25:20 +0100845 struct cfg80211_bss_ies *ies;
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100846
Johannes Berg9caf0362012-11-29 01:25:20 +0100847 /*
848 * create a copy -- the "res" variable that is passed in
849 * is allocated on the stack since it's not needed in the
850 * more common case of an update
851 */
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800852 new = kzalloc(sizeof(*new) + rdev->wiphy.bss_priv_size,
Johannes Berg9caf0362012-11-29 01:25:20 +0100853 GFP_ATOMIC);
854 if (!new) {
855 ies = (void *)rcu_dereference(tmp->pub.beacon_ies);
856 if (ies)
857 kfree_rcu(ies, rcu_head);
858 ies = (void *)rcu_dereference(tmp->pub.proberesp_ies);
859 if (ies)
860 kfree_rcu(ies, rcu_head);
Johannes Berg776b3582013-02-01 02:06:18 +0100861 goto drop;
Johannes Berg9caf0362012-11-29 01:25:20 +0100862 }
863 memcpy(new, tmp, sizeof(*new));
Johannes Berg776b3582013-02-01 02:06:18 +0100864 new->refcount = 1;
865 INIT_LIST_HEAD(&new->hidden_list);
866
867 if (rcu_access_pointer(tmp->pub.proberesp_ies)) {
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800868 hidden = rb_find_bss(rdev, tmp, BSS_CMP_HIDE_ZLEN);
Johannes Berg776b3582013-02-01 02:06:18 +0100869 if (!hidden)
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800870 hidden = rb_find_bss(rdev, tmp,
Johannes Berg776b3582013-02-01 02:06:18 +0100871 BSS_CMP_HIDE_NUL);
872 if (hidden) {
873 new->pub.hidden_beacon_bss = &hidden->pub;
874 list_add(&new->hidden_list,
875 &hidden->hidden_list);
876 hidden->refcount++;
877 rcu_assign_pointer(new->pub.beacon_ies,
878 hidden->pub.beacon_ies);
879 }
880 } else {
881 /*
882 * Ok so we found a beacon, and don't have an entry. If
883 * it's a beacon with hidden SSID, we might be in for an
884 * expensive search for any probe responses that should
885 * be grouped with this beacon for updates ...
886 */
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800887 if (!cfg80211_combine_bsses(rdev, new)) {
Johannes Berg776b3582013-02-01 02:06:18 +0100888 kfree(new);
889 goto drop;
890 }
891 }
892
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800893 list_add_tail(&new->list, &rdev->bss_list);
894 rb_insert_bss(rdev, new);
Johannes Berg9caf0362012-11-29 01:25:20 +0100895 found = new;
Johannes Berg2a519312009-02-10 21:25:55 +0100896 }
897
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800898 rdev->bss_generation++;
899 bss_ref_get(rdev, found);
900 spin_unlock_bh(&rdev->bss_lock);
Johannes Berg2a519312009-02-10 21:25:55 +0100901
Johannes Berg2a519312009-02-10 21:25:55 +0100902 return found;
Johannes Berg776b3582013-02-01 02:06:18 +0100903 drop:
Zhao, Gang1b8ec872014-04-21 12:53:02 +0800904 spin_unlock_bh(&rdev->bss_lock);
Johannes Berg776b3582013-02-01 02:06:18 +0100905 return NULL;
Johannes Berg2a519312009-02-10 21:25:55 +0100906}
907
Johannes Berg0172bb72012-11-23 14:23:30 +0100908static struct ieee80211_channel *
909cfg80211_get_bss_channel(struct wiphy *wiphy, const u8 *ie, size_t ielen,
910 struct ieee80211_channel *channel)
911{
912 const u8 *tmp;
913 u32 freq;
914 int channel_number = -1;
915
916 tmp = cfg80211_find_ie(WLAN_EID_DS_PARAMS, ie, ielen);
917 if (tmp && tmp[1] == 1) {
918 channel_number = tmp[2];
919 } else {
920 tmp = cfg80211_find_ie(WLAN_EID_HT_OPERATION, ie, ielen);
921 if (tmp && tmp[1] >= sizeof(struct ieee80211_ht_operation)) {
922 struct ieee80211_ht_operation *htop = (void *)(tmp + 2);
923
924 channel_number = htop->primary_chan;
925 }
926 }
927
928 if (channel_number < 0)
929 return channel;
930
931 freq = ieee80211_channel_to_frequency(channel_number, channel->band);
932 channel = ieee80211_get_channel(wiphy, freq);
933 if (!channel)
934 return NULL;
935 if (channel->flags & IEEE80211_CHAN_DISABLED)
936 return NULL;
937 return channel;
938}
939
Ben Greear0e3a39b2013-06-19 14:06:27 -0700940/* Returned bss is reference counted and must be cleaned up appropriately. */
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +0200941struct cfg80211_bss *
942cfg80211_inform_bss_data(struct wiphy *wiphy,
943 struct cfg80211_inform_bss *data,
944 enum cfg80211_bss_frame_type ftype,
945 const u8 *bssid, u64 tsf, u16 capability,
946 u16 beacon_interval, const u8 *ie, size_t ielen,
947 gfp_t gfp)
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200948{
Johannes Berg9caf0362012-11-29 01:25:20 +0100949 struct cfg80211_bss_ies *ies;
Emmanuel Grumbach3afc2162014-03-04 16:50:13 +0200950 struct ieee80211_channel *channel;
Johannes Berg9caf0362012-11-29 01:25:20 +0100951 struct cfg80211_internal_bss tmp = {}, *res;
Dedy Lansky6eb18132015-02-08 15:52:03 +0200952 int bss_type;
Emmanuel Grumbach67af9812014-05-18 10:15:24 +0300953 bool signal_valid;
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200954
955 if (WARN_ON(!wiphy))
956 return NULL;
957
Sujith22fe88d2010-05-13 10:34:08 +0530958 if (WARN_ON(wiphy->signal_type == CFG80211_SIGNAL_TYPE_UNSPEC &&
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +0200959 (data->signal < 0 || data->signal > 100)))
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200960 return NULL;
961
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +0200962 channel = cfg80211_get_bss_channel(wiphy, ie, ielen, data->chan);
Johannes Berg0172bb72012-11-23 14:23:30 +0100963 if (!channel)
964 return NULL;
965
Johannes Berg9caf0362012-11-29 01:25:20 +0100966 memcpy(tmp.pub.bssid, bssid, ETH_ALEN);
967 tmp.pub.channel = channel;
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +0200968 tmp.pub.scan_width = data->scan_width;
969 tmp.pub.signal = data->signal;
Johannes Berg9caf0362012-11-29 01:25:20 +0100970 tmp.pub.beacon_interval = beacon_interval;
971 tmp.pub.capability = capability;
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +0200972 tmp.ts_boottime = data->boottime_ns;
973
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200974 /*
Johannes Berg5bc8c1f2014-08-12 21:01:28 +0200975 * If we do not know here whether the IEs are from a Beacon or Probe
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200976 * Response frame, we need to pick one of the options and only use it
977 * with the driver that does not provide the full Beacon/Probe Response
978 * frame. Use Beacon frame pointer to avoid indicating that this should
Johannes Berg50521aa2013-01-30 21:33:19 +0100979 * override the IEs pointer should we have received an earlier
Johannes Berg9caf0362012-11-29 01:25:20 +0100980 * indication of Probe Response data.
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200981 */
Johannes Berg0e227082014-08-12 20:34:30 +0200982 ies = kzalloc(sizeof(*ies) + ielen, gfp);
Johannes Berg9caf0362012-11-29 01:25:20 +0100983 if (!ies)
984 return NULL;
985 ies->len = ielen;
Johannes Berg8cef2c92013-02-05 16:54:31 +0100986 ies->tsf = tsf;
Johannes Berg0e227082014-08-12 20:34:30 +0200987 ies->from_beacon = false;
Johannes Berg9caf0362012-11-29 01:25:20 +0100988 memcpy(ies->data, ie, ielen);
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200989
Johannes Berg5bc8c1f2014-08-12 21:01:28 +0200990 switch (ftype) {
991 case CFG80211_BSS_FTYPE_BEACON:
992 ies->from_beacon = true;
993 /* fall through to assign */
994 case CFG80211_BSS_FTYPE_UNKNOWN:
995 rcu_assign_pointer(tmp.pub.beacon_ies, ies);
996 break;
997 case CFG80211_BSS_FTYPE_PRESP:
998 rcu_assign_pointer(tmp.pub.proberesp_ies, ies);
999 break;
1000 }
Johannes Berg9caf0362012-11-29 01:25:20 +01001001 rcu_assign_pointer(tmp.pub.ies, ies);
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +02001002
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001003 signal_valid = abs(data->chan->center_freq - channel->center_freq) <=
Emmanuel Grumbach67af9812014-05-18 10:15:24 +03001004 wiphy->max_adj_channel_rssi_comp;
1005 res = cfg80211_bss_update(wiphy_to_rdev(wiphy), &tmp, signal_valid);
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +02001006 if (!res)
1007 return NULL;
1008
Dedy Lansky6eb18132015-02-08 15:52:03 +02001009 if (channel->band == IEEE80211_BAND_60GHZ) {
1010 bss_type = res->pub.capability & WLAN_CAPABILITY_DMG_TYPE_MASK;
1011 if (bss_type == WLAN_CAPABILITY_DMG_TYPE_AP ||
1012 bss_type == WLAN_CAPABILITY_DMG_TYPE_PBSS)
1013 regulatory_hint_found_beacon(wiphy, channel, gfp);
1014 } else {
1015 if (res->pub.capability & WLAN_CAPABILITY_ESS)
1016 regulatory_hint_found_beacon(wiphy, channel, gfp);
1017 }
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +02001018
Beni Lev4ee3e062012-08-27 12:49:39 +03001019 trace_cfg80211_return_bss(&res->pub);
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +02001020 /* cfg80211_bss_update gives us a referenced result */
1021 return &res->pub;
1022}
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001023EXPORT_SYMBOL(cfg80211_inform_bss_data);
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +02001024
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001025/* cfg80211_inform_bss_width_frame helper */
Johannes Berg2a519312009-02-10 21:25:55 +01001026struct cfg80211_bss *
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001027cfg80211_inform_bss_frame_data(struct wiphy *wiphy,
1028 struct cfg80211_inform_bss *data,
1029 struct ieee80211_mgmt *mgmt, size_t len,
1030 gfp_t gfp)
1031
Johannes Berg2a519312009-02-10 21:25:55 +01001032{
Johannes Berg9caf0362012-11-29 01:25:20 +01001033 struct cfg80211_internal_bss tmp = {}, *res;
1034 struct cfg80211_bss_ies *ies;
Emmanuel Grumbach3afc2162014-03-04 16:50:13 +02001035 struct ieee80211_channel *channel;
Emmanuel Grumbach67af9812014-05-18 10:15:24 +03001036 bool signal_valid;
Johannes Berg2a519312009-02-10 21:25:55 +01001037 size_t ielen = len - offsetof(struct ieee80211_mgmt,
1038 u.probe_resp.variable);
Dedy Lansky6eb18132015-02-08 15:52:03 +02001039 int bss_type;
Mariusz Kozlowskibef9bac2011-03-26 19:26:55 +01001040
Johannes Berg0172bb72012-11-23 14:23:30 +01001041 BUILD_BUG_ON(offsetof(struct ieee80211_mgmt, u.probe_resp.variable) !=
1042 offsetof(struct ieee80211_mgmt, u.beacon.variable));
1043
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001044 trace_cfg80211_inform_bss_frame(wiphy, data, mgmt, len);
Beni Lev4ee3e062012-08-27 12:49:39 +03001045
Mariusz Kozlowskibef9bac2011-03-26 19:26:55 +01001046 if (WARN_ON(!mgmt))
1047 return NULL;
1048
1049 if (WARN_ON(!wiphy))
1050 return NULL;
Johannes Berg2a519312009-02-10 21:25:55 +01001051
Sujith22fe88d2010-05-13 10:34:08 +05301052 if (WARN_ON(wiphy->signal_type == CFG80211_SIGNAL_TYPE_UNSPEC &&
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001053 (data->signal < 0 || data->signal > 100)))
Johannes Berg2a519312009-02-10 21:25:55 +01001054 return NULL;
1055
Mariusz Kozlowskibef9bac2011-03-26 19:26:55 +01001056 if (WARN_ON(len < offsetof(struct ieee80211_mgmt, u.probe_resp.variable)))
Johannes Berg2a519312009-02-10 21:25:55 +01001057 return NULL;
1058
Johannes Berg0172bb72012-11-23 14:23:30 +01001059 channel = cfg80211_get_bss_channel(wiphy, mgmt->u.beacon.variable,
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001060 ielen, data->chan);
Johannes Berg0172bb72012-11-23 14:23:30 +01001061 if (!channel)
1062 return NULL;
1063
Johannes Berg0e227082014-08-12 20:34:30 +02001064 ies = kzalloc(sizeof(*ies) + ielen, gfp);
Johannes Berg9caf0362012-11-29 01:25:20 +01001065 if (!ies)
Johannes Berg2a519312009-02-10 21:25:55 +01001066 return NULL;
Johannes Berg9caf0362012-11-29 01:25:20 +01001067 ies->len = ielen;
Johannes Berg8cef2c92013-02-05 16:54:31 +01001068 ies->tsf = le64_to_cpu(mgmt->u.probe_resp.timestamp);
Johannes Berg0e227082014-08-12 20:34:30 +02001069 ies->from_beacon = ieee80211_is_beacon(mgmt->frame_control);
Johannes Berg9caf0362012-11-29 01:25:20 +01001070 memcpy(ies->data, mgmt->u.probe_resp.variable, ielen);
Johannes Berg2a519312009-02-10 21:25:55 +01001071
Johannes Berg9caf0362012-11-29 01:25:20 +01001072 if (ieee80211_is_probe_resp(mgmt->frame_control))
1073 rcu_assign_pointer(tmp.pub.proberesp_ies, ies);
1074 else
1075 rcu_assign_pointer(tmp.pub.beacon_ies, ies);
1076 rcu_assign_pointer(tmp.pub.ies, ies);
1077
1078 memcpy(tmp.pub.bssid, mgmt->bssid, ETH_ALEN);
1079 tmp.pub.channel = channel;
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001080 tmp.pub.scan_width = data->scan_width;
1081 tmp.pub.signal = data->signal;
Johannes Berg9caf0362012-11-29 01:25:20 +01001082 tmp.pub.beacon_interval = le16_to_cpu(mgmt->u.probe_resp.beacon_int);
1083 tmp.pub.capability = le16_to_cpu(mgmt->u.probe_resp.capab_info);
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001084 tmp.ts_boottime = data->boottime_ns;
Johannes Berg2a519312009-02-10 21:25:55 +01001085
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001086 signal_valid = abs(data->chan->center_freq - channel->center_freq) <=
Emmanuel Grumbach67af9812014-05-18 10:15:24 +03001087 wiphy->max_adj_channel_rssi_comp;
1088 res = cfg80211_bss_update(wiphy_to_rdev(wiphy), &tmp, signal_valid);
Johannes Berg2a519312009-02-10 21:25:55 +01001089 if (!res)
1090 return NULL;
1091
Dedy Lansky6eb18132015-02-08 15:52:03 +02001092 if (channel->band == IEEE80211_BAND_60GHZ) {
1093 bss_type = res->pub.capability & WLAN_CAPABILITY_DMG_TYPE_MASK;
1094 if (bss_type == WLAN_CAPABILITY_DMG_TYPE_AP ||
1095 bss_type == WLAN_CAPABILITY_DMG_TYPE_PBSS)
1096 regulatory_hint_found_beacon(wiphy, channel, gfp);
1097 } else {
1098 if (res->pub.capability & WLAN_CAPABILITY_ESS)
1099 regulatory_hint_found_beacon(wiphy, channel, gfp);
1100 }
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001101
Beni Lev4ee3e062012-08-27 12:49:39 +03001102 trace_cfg80211_return_bss(&res->pub);
Johannes Berg2a519312009-02-10 21:25:55 +01001103 /* cfg80211_bss_update gives us a referenced result */
1104 return &res->pub;
1105}
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02001106EXPORT_SYMBOL(cfg80211_inform_bss_frame_data);
Johannes Berg2a519312009-02-10 21:25:55 +01001107
Johannes Berg5b112d32013-02-01 01:49:58 +01001108void cfg80211_ref_bss(struct wiphy *wiphy, struct cfg80211_bss *pub)
Johannes Berg4c0c0b72012-01-20 13:55:26 +01001109{
Zhao, Gangf26cbf42014-04-21 12:53:03 +08001110 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg4c0c0b72012-01-20 13:55:26 +01001111 struct cfg80211_internal_bss *bss;
1112
1113 if (!pub)
1114 return;
1115
1116 bss = container_of(pub, struct cfg80211_internal_bss, pub);
Johannes Berg776b3582013-02-01 02:06:18 +01001117
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001118 spin_lock_bh(&rdev->bss_lock);
1119 bss_ref_get(rdev, bss);
1120 spin_unlock_bh(&rdev->bss_lock);
Johannes Berg4c0c0b72012-01-20 13:55:26 +01001121}
1122EXPORT_SYMBOL(cfg80211_ref_bss);
1123
Johannes Berg5b112d32013-02-01 01:49:58 +01001124void cfg80211_put_bss(struct wiphy *wiphy, struct cfg80211_bss *pub)
Johannes Berg2a519312009-02-10 21:25:55 +01001125{
Zhao, Gangf26cbf42014-04-21 12:53:03 +08001126 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg2a519312009-02-10 21:25:55 +01001127 struct cfg80211_internal_bss *bss;
1128
1129 if (!pub)
1130 return;
1131
1132 bss = container_of(pub, struct cfg80211_internal_bss, pub);
Johannes Berg776b3582013-02-01 02:06:18 +01001133
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001134 spin_lock_bh(&rdev->bss_lock);
1135 bss_ref_put(rdev, bss);
1136 spin_unlock_bh(&rdev->bss_lock);
Johannes Berg2a519312009-02-10 21:25:55 +01001137}
1138EXPORT_SYMBOL(cfg80211_put_bss);
1139
Johannes Bergd491af12009-02-10 21:25:58 +01001140void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *pub)
1141{
Zhao, Gangf26cbf42014-04-21 12:53:03 +08001142 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Bergd491af12009-02-10 21:25:58 +01001143 struct cfg80211_internal_bss *bss;
1144
1145 if (WARN_ON(!pub))
1146 return;
1147
1148 bss = container_of(pub, struct cfg80211_internal_bss, pub);
1149
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001150 spin_lock_bh(&rdev->bss_lock);
Johannes Berg32073902010-10-06 21:18:04 +02001151 if (!list_empty(&bss->list)) {
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001152 if (__cfg80211_unlink_bss(rdev, bss))
1153 rdev->bss_generation++;
Johannes Berg32073902010-10-06 21:18:04 +02001154 }
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001155 spin_unlock_bh(&rdev->bss_lock);
Johannes Bergd491af12009-02-10 21:25:58 +01001156}
1157EXPORT_SYMBOL(cfg80211_unlink_bss);
1158
Johannes Berg3d23e342009-09-29 23:27:28 +02001159#ifdef CONFIG_CFG80211_WEXT
Johannes Berg9f419f32013-05-08 21:34:22 +02001160static struct cfg80211_registered_device *
1161cfg80211_get_dev_from_ifindex(struct net *net, int ifindex)
1162{
Johannes Berg5fe231e2013-05-08 21:45:15 +02001163 struct cfg80211_registered_device *rdev;
Johannes Berg9f419f32013-05-08 21:34:22 +02001164 struct net_device *dev;
1165
Johannes Berg5fe231e2013-05-08 21:45:15 +02001166 ASSERT_RTNL();
1167
Johannes Berg9f419f32013-05-08 21:34:22 +02001168 dev = dev_get_by_index(net, ifindex);
1169 if (!dev)
Johannes Berg5fe231e2013-05-08 21:45:15 +02001170 return ERR_PTR(-ENODEV);
1171 if (dev->ieee80211_ptr)
Zhao, Gangf26cbf42014-04-21 12:53:03 +08001172 rdev = wiphy_to_rdev(dev->ieee80211_ptr->wiphy);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001173 else
Johannes Berg9f419f32013-05-08 21:34:22 +02001174 rdev = ERR_PTR(-ENODEV);
1175 dev_put(dev);
Johannes Berg9f419f32013-05-08 21:34:22 +02001176 return rdev;
1177}
1178
Johannes Berg2a519312009-02-10 21:25:55 +01001179int cfg80211_wext_siwscan(struct net_device *dev,
1180 struct iw_request_info *info,
1181 union iwreq_data *wrqu, char *extra)
1182{
1183 struct cfg80211_registered_device *rdev;
1184 struct wiphy *wiphy;
1185 struct iw_scan_req *wreq = NULL;
Johannes Berg65486c8b2009-12-23 15:33:35 +01001186 struct cfg80211_scan_request *creq = NULL;
Johannes Berg2a519312009-02-10 21:25:55 +01001187 int i, err, n_channels = 0;
1188 enum ieee80211_band band;
1189
1190 if (!netif_running(dev))
1191 return -ENETDOWN;
1192
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001193 if (wrqu->data.length == sizeof(struct iw_scan_req))
1194 wreq = (struct iw_scan_req *)extra;
1195
Johannes Berg463d0182009-07-14 00:33:35 +02001196 rdev = cfg80211_get_dev_from_ifindex(dev_net(dev), dev->ifindex);
Johannes Berg2a519312009-02-10 21:25:55 +01001197
1198 if (IS_ERR(rdev))
1199 return PTR_ERR(rdev);
1200
Johannes Bergf9d15d12014-01-22 11:14:19 +02001201 if (rdev->scan_req || rdev->scan_msg) {
Johannes Berg2a519312009-02-10 21:25:55 +01001202 err = -EBUSY;
1203 goto out;
1204 }
1205
1206 wiphy = &rdev->wiphy;
1207
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001208 /* Determine number of channels, needed to allocate creq */
1209 if (wreq && wreq->num_channels)
1210 n_channels = wreq->num_channels;
Ilan Peerbdfbec22014-01-09 11:37:23 +02001211 else
1212 n_channels = ieee80211_get_num_supported_channels(wiphy);
Johannes Berg2a519312009-02-10 21:25:55 +01001213
1214 creq = kzalloc(sizeof(*creq) + sizeof(struct cfg80211_ssid) +
1215 n_channels * sizeof(void *),
1216 GFP_ATOMIC);
1217 if (!creq) {
1218 err = -ENOMEM;
1219 goto out;
1220 }
1221
1222 creq->wiphy = wiphy;
Johannes Bergfd014282012-06-18 19:17:03 +02001223 creq->wdev = dev->ieee80211_ptr;
Johannes Berg5ba63532009-08-07 17:54:07 +02001224 /* SSIDs come after channels */
1225 creq->ssids = (void *)&creq->channels[n_channels];
Johannes Berg2a519312009-02-10 21:25:55 +01001226 creq->n_channels = n_channels;
1227 creq->n_ssids = 1;
Sam Leffler15d60302012-10-11 21:03:34 -07001228 creq->scan_start = jiffies;
Johannes Berg2a519312009-02-10 21:25:55 +01001229
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001230 /* translate "Scan on frequencies" request */
Johannes Berg2a519312009-02-10 21:25:55 +01001231 i = 0;
1232 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1233 int j;
Johannes Berg584991d2009-11-02 13:32:03 +01001234
Johannes Berg2a519312009-02-10 21:25:55 +01001235 if (!wiphy->bands[band])
1236 continue;
Johannes Berg584991d2009-11-02 13:32:03 +01001237
Johannes Berg2a519312009-02-10 21:25:55 +01001238 for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
Johannes Berg584991d2009-11-02 13:32:03 +01001239 /* ignore disabled channels */
1240 if (wiphy->bands[band]->channels[j].flags &
1241 IEEE80211_CHAN_DISABLED)
1242 continue;
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001243
1244 /* If we have a wireless request structure and the
1245 * wireless request specifies frequencies, then search
1246 * for the matching hardware channel.
1247 */
1248 if (wreq && wreq->num_channels) {
1249 int k;
1250 int wiphy_freq = wiphy->bands[band]->channels[j].center_freq;
1251 for (k = 0; k < wreq->num_channels; k++) {
Zhao, Gang96998e32014-04-09 09:28:06 +08001252 struct iw_freq *freq =
1253 &wreq->channel_list[k];
1254 int wext_freq =
1255 cfg80211_wext_freq(freq);
1256
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001257 if (wext_freq == wiphy_freq)
1258 goto wext_freq_found;
1259 }
1260 goto wext_freq_not_found;
1261 }
1262
1263 wext_freq_found:
Johannes Berg2a519312009-02-10 21:25:55 +01001264 creq->channels[i] = &wiphy->bands[band]->channels[j];
1265 i++;
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001266 wext_freq_not_found: ;
Johannes Berg2a519312009-02-10 21:25:55 +01001267 }
1268 }
Holger Schurig8862dc52009-09-11 10:13:55 +02001269 /* No channels found? */
1270 if (!i) {
1271 err = -EINVAL;
1272 goto out;
1273 }
Johannes Berg2a519312009-02-10 21:25:55 +01001274
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001275 /* Set real number of channels specified in creq->channels[] */
1276 creq->n_channels = i;
Johannes Berg2a519312009-02-10 21:25:55 +01001277
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001278 /* translate "Scan for SSID" request */
1279 if (wreq) {
Johannes Berg2a519312009-02-10 21:25:55 +01001280 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
Johannes Berg65486c8b2009-12-23 15:33:35 +01001281 if (wreq->essid_len > IEEE80211_MAX_SSID_LEN) {
1282 err = -EINVAL;
1283 goto out;
1284 }
Johannes Berg2a519312009-02-10 21:25:55 +01001285 memcpy(creq->ssids[0].ssid, wreq->essid, wreq->essid_len);
1286 creq->ssids[0].ssid_len = wreq->essid_len;
1287 }
1288 if (wreq->scan_type == IW_SCAN_TYPE_PASSIVE)
1289 creq->n_ssids = 0;
1290 }
1291
Johannes Berg34850ab2011-07-18 18:08:35 +02001292 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
Johannes Berga401d2b2011-07-20 00:52:16 +02001293 if (wiphy->bands[i])
1294 creq->rates[i] = (1 << wiphy->bands[i]->n_bitrates) - 1;
Johannes Berg34850ab2011-07-18 18:08:35 +02001295
Jouni Malinen818965d2016-02-26 22:12:47 +02001296 eth_broadcast_addr(creq->bssid);
1297
Johannes Berg2a519312009-02-10 21:25:55 +01001298 rdev->scan_req = creq;
Hila Gonene35e4d22012-06-27 17:19:42 +03001299 err = rdev_scan(rdev, creq);
Johannes Berg2a519312009-02-10 21:25:55 +01001300 if (err) {
1301 rdev->scan_req = NULL;
Johannes Berg65486c8b2009-12-23 15:33:35 +01001302 /* creq will be freed below */
Johannes Berg463d0182009-07-14 00:33:35 +02001303 } else {
Johannes Bergfd014282012-06-18 19:17:03 +02001304 nl80211_send_scan_start(rdev, dev->ieee80211_ptr);
Johannes Berg65486c8b2009-12-23 15:33:35 +01001305 /* creq now owned by driver */
1306 creq = NULL;
Johannes Berg463d0182009-07-14 00:33:35 +02001307 dev_hold(dev);
1308 }
Johannes Berg2a519312009-02-10 21:25:55 +01001309 out:
Johannes Berg65486c8b2009-12-23 15:33:35 +01001310 kfree(creq);
Johannes Berg2a519312009-02-10 21:25:55 +01001311 return err;
1312}
Johannes Berg2afe38d2015-01-06 14:00:53 +01001313EXPORT_WEXT_HANDLER(cfg80211_wext_siwscan);
Johannes Berg2a519312009-02-10 21:25:55 +01001314
James Minor76a70e92015-02-24 12:58:20 -06001315static char *ieee80211_scan_add_ies(struct iw_request_info *info,
1316 const struct cfg80211_bss_ies *ies,
1317 char *current_ev, char *end_buf)
Johannes Berg2a519312009-02-10 21:25:55 +01001318{
Johannes Berg9caf0362012-11-29 01:25:20 +01001319 const u8 *pos, *end, *next;
Johannes Berg2a519312009-02-10 21:25:55 +01001320 struct iw_event iwe;
1321
Johannes Berg9caf0362012-11-29 01:25:20 +01001322 if (!ies)
James Minor76a70e92015-02-24 12:58:20 -06001323 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001324
1325 /*
1326 * If needed, fragment the IEs buffer (at IE boundaries) into short
1327 * enough fragments to fit into IW_GENERIC_IE_MAX octet messages.
1328 */
Johannes Berg9caf0362012-11-29 01:25:20 +01001329 pos = ies->data;
1330 end = pos + ies->len;
Johannes Berg2a519312009-02-10 21:25:55 +01001331
1332 while (end - pos > IW_GENERIC_IE_MAX) {
1333 next = pos + 2 + pos[1];
1334 while (next + 2 + next[1] - pos < IW_GENERIC_IE_MAX)
1335 next = next + 2 + next[1];
1336
1337 memset(&iwe, 0, sizeof(iwe));
1338 iwe.cmd = IWEVGENIE;
1339 iwe.u.data.length = next - pos;
James Minor76a70e92015-02-24 12:58:20 -06001340 current_ev = iwe_stream_add_point_check(info, current_ev,
1341 end_buf, &iwe,
1342 (void *)pos);
1343 if (IS_ERR(current_ev))
1344 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001345 pos = next;
1346 }
1347
1348 if (end > pos) {
1349 memset(&iwe, 0, sizeof(iwe));
1350 iwe.cmd = IWEVGENIE;
1351 iwe.u.data.length = end - pos;
James Minor76a70e92015-02-24 12:58:20 -06001352 current_ev = iwe_stream_add_point_check(info, current_ev,
1353 end_buf, &iwe,
1354 (void *)pos);
1355 if (IS_ERR(current_ev))
1356 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001357 }
James Minor76a70e92015-02-24 12:58:20 -06001358
1359 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001360}
1361
Johannes Berg2a519312009-02-10 21:25:55 +01001362static char *
Johannes Berg77965c92009-02-18 18:45:06 +01001363ieee80211_bss(struct wiphy *wiphy, struct iw_request_info *info,
1364 struct cfg80211_internal_bss *bss, char *current_ev,
1365 char *end_buf)
Johannes Berg2a519312009-02-10 21:25:55 +01001366{
Johannes Berg9caf0362012-11-29 01:25:20 +01001367 const struct cfg80211_bss_ies *ies;
Johannes Berg2a519312009-02-10 21:25:55 +01001368 struct iw_event iwe;
Johannes Berg9caf0362012-11-29 01:25:20 +01001369 const u8 *ie;
James Minor76a70e92015-02-24 12:58:20 -06001370 u8 buf[50];
1371 u8 *cfg, *p, *tmp;
Johannes Berg9caf0362012-11-29 01:25:20 +01001372 int rem, i, sig;
Johannes Berg2a519312009-02-10 21:25:55 +01001373 bool ismesh = false;
1374
1375 memset(&iwe, 0, sizeof(iwe));
1376 iwe.cmd = SIOCGIWAP;
1377 iwe.u.ap_addr.sa_family = ARPHRD_ETHER;
1378 memcpy(iwe.u.ap_addr.sa_data, bss->pub.bssid, ETH_ALEN);
James Minor76a70e92015-02-24 12:58:20 -06001379 current_ev = iwe_stream_add_event_check(info, current_ev, end_buf, &iwe,
1380 IW_EV_ADDR_LEN);
1381 if (IS_ERR(current_ev))
1382 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001383
1384 memset(&iwe, 0, sizeof(iwe));
1385 iwe.cmd = SIOCGIWFREQ;
1386 iwe.u.freq.m = ieee80211_frequency_to_channel(bss->pub.channel->center_freq);
1387 iwe.u.freq.e = 0;
James Minor76a70e92015-02-24 12:58:20 -06001388 current_ev = iwe_stream_add_event_check(info, current_ev, end_buf, &iwe,
1389 IW_EV_FREQ_LEN);
1390 if (IS_ERR(current_ev))
1391 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001392
1393 memset(&iwe, 0, sizeof(iwe));
1394 iwe.cmd = SIOCGIWFREQ;
1395 iwe.u.freq.m = bss->pub.channel->center_freq;
1396 iwe.u.freq.e = 6;
James Minor76a70e92015-02-24 12:58:20 -06001397 current_ev = iwe_stream_add_event_check(info, current_ev, end_buf, &iwe,
1398 IW_EV_FREQ_LEN);
1399 if (IS_ERR(current_ev))
1400 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001401
Johannes Berg77965c92009-02-18 18:45:06 +01001402 if (wiphy->signal_type != CFG80211_SIGNAL_TYPE_NONE) {
Johannes Berg2a519312009-02-10 21:25:55 +01001403 memset(&iwe, 0, sizeof(iwe));
1404 iwe.cmd = IWEVQUAL;
1405 iwe.u.qual.updated = IW_QUAL_LEVEL_UPDATED |
1406 IW_QUAL_NOISE_INVALID |
Johannes Berga77b8552009-02-18 18:27:22 +01001407 IW_QUAL_QUAL_UPDATED;
Johannes Berg77965c92009-02-18 18:45:06 +01001408 switch (wiphy->signal_type) {
Johannes Berg2a519312009-02-10 21:25:55 +01001409 case CFG80211_SIGNAL_TYPE_MBM:
Johannes Berga77b8552009-02-18 18:27:22 +01001410 sig = bss->pub.signal / 100;
1411 iwe.u.qual.level = sig;
Johannes Berg2a519312009-02-10 21:25:55 +01001412 iwe.u.qual.updated |= IW_QUAL_DBM;
Johannes Berga77b8552009-02-18 18:27:22 +01001413 if (sig < -110) /* rather bad */
1414 sig = -110;
1415 else if (sig > -40) /* perfect */
1416 sig = -40;
1417 /* will give a range of 0 .. 70 */
1418 iwe.u.qual.qual = sig + 110;
Johannes Berg2a519312009-02-10 21:25:55 +01001419 break;
1420 case CFG80211_SIGNAL_TYPE_UNSPEC:
1421 iwe.u.qual.level = bss->pub.signal;
Johannes Berga77b8552009-02-18 18:27:22 +01001422 /* will give range 0 .. 100 */
1423 iwe.u.qual.qual = bss->pub.signal;
Johannes Berg2a519312009-02-10 21:25:55 +01001424 break;
1425 default:
1426 /* not reached */
1427 break;
1428 }
James Minor76a70e92015-02-24 12:58:20 -06001429 current_ev = iwe_stream_add_event_check(info, current_ev,
1430 end_buf, &iwe,
1431 IW_EV_QUAL_LEN);
1432 if (IS_ERR(current_ev))
1433 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001434 }
1435
1436 memset(&iwe, 0, sizeof(iwe));
1437 iwe.cmd = SIOCGIWENCODE;
1438 if (bss->pub.capability & WLAN_CAPABILITY_PRIVACY)
1439 iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY;
1440 else
1441 iwe.u.data.flags = IW_ENCODE_DISABLED;
1442 iwe.u.data.length = 0;
James Minor76a70e92015-02-24 12:58:20 -06001443 current_ev = iwe_stream_add_point_check(info, current_ev, end_buf,
1444 &iwe, "");
1445 if (IS_ERR(current_ev))
1446 return current_ev;
Johannes Berg2a519312009-02-10 21:25:55 +01001447
Johannes Berg9caf0362012-11-29 01:25:20 +01001448 rcu_read_lock();
1449 ies = rcu_dereference(bss->pub.ies);
Johannes Berg83c7aa12013-02-05 16:51:29 +01001450 rem = ies->len;
1451 ie = ies->data;
Johannes Berg9caf0362012-11-29 01:25:20 +01001452
Johannes Berg83c7aa12013-02-05 16:51:29 +01001453 while (rem >= 2) {
Johannes Berg2a519312009-02-10 21:25:55 +01001454 /* invalid data */
1455 if (ie[1] > rem - 2)
1456 break;
1457
1458 switch (ie[0]) {
1459 case WLAN_EID_SSID:
1460 memset(&iwe, 0, sizeof(iwe));
1461 iwe.cmd = SIOCGIWESSID;
1462 iwe.u.data.length = ie[1];
1463 iwe.u.data.flags = 1;
James Minor76a70e92015-02-24 12:58:20 -06001464 current_ev = iwe_stream_add_point_check(info,
1465 current_ev,
1466 end_buf, &iwe,
1467 (u8 *)ie + 2);
1468 if (IS_ERR(current_ev))
1469 goto unlock;
Johannes Berg2a519312009-02-10 21:25:55 +01001470 break;
1471 case WLAN_EID_MESH_ID:
1472 memset(&iwe, 0, sizeof(iwe));
1473 iwe.cmd = SIOCGIWESSID;
1474 iwe.u.data.length = ie[1];
1475 iwe.u.data.flags = 1;
James Minor76a70e92015-02-24 12:58:20 -06001476 current_ev = iwe_stream_add_point_check(info,
1477 current_ev,
1478 end_buf, &iwe,
1479 (u8 *)ie + 2);
1480 if (IS_ERR(current_ev))
1481 goto unlock;
Johannes Berg2a519312009-02-10 21:25:55 +01001482 break;
1483 case WLAN_EID_MESH_CONFIG:
1484 ismesh = true;
Rui Paulo136cfa22009-11-18 18:40:00 +00001485 if (ie[1] != sizeof(struct ieee80211_meshconf_ie))
Johannes Berg2a519312009-02-10 21:25:55 +01001486 break;
Johannes Berg9caf0362012-11-29 01:25:20 +01001487 cfg = (u8 *)ie + 2;
Johannes Berg2a519312009-02-10 21:25:55 +01001488 memset(&iwe, 0, sizeof(iwe));
1489 iwe.cmd = IWEVCUSTOM;
Rui Paulo76aa5e72009-11-18 18:22:59 +00001490 sprintf(buf, "Mesh Network Path Selection Protocol ID: "
1491 "0x%02X", cfg[0]);
Johannes Berg2a519312009-02-10 21:25:55 +01001492 iwe.u.data.length = strlen(buf);
James Minor76a70e92015-02-24 12:58:20 -06001493 current_ev = iwe_stream_add_point_check(info,
1494 current_ev,
1495 end_buf,
1496 &iwe, buf);
1497 if (IS_ERR(current_ev))
1498 goto unlock;
Rui Paulo76aa5e72009-11-18 18:22:59 +00001499 sprintf(buf, "Path Selection Metric ID: 0x%02X",
1500 cfg[1]);
Johannes Berg2a519312009-02-10 21:25:55 +01001501 iwe.u.data.length = strlen(buf);
James Minor76a70e92015-02-24 12:58:20 -06001502 current_ev = iwe_stream_add_point_check(info,
1503 current_ev,
1504 end_buf,
1505 &iwe, buf);
1506 if (IS_ERR(current_ev))
1507 goto unlock;
Rui Paulo76aa5e72009-11-18 18:22:59 +00001508 sprintf(buf, "Congestion Control Mode ID: 0x%02X",
1509 cfg[2]);
Johannes Berg2a519312009-02-10 21:25:55 +01001510 iwe.u.data.length = strlen(buf);
James Minor76a70e92015-02-24 12:58:20 -06001511 current_ev = iwe_stream_add_point_check(info,
1512 current_ev,
1513 end_buf,
1514 &iwe, buf);
1515 if (IS_ERR(current_ev))
1516 goto unlock;
Rui Paulo76aa5e72009-11-18 18:22:59 +00001517 sprintf(buf, "Synchronization ID: 0x%02X", cfg[3]);
Johannes Berg2a519312009-02-10 21:25:55 +01001518 iwe.u.data.length = strlen(buf);
James Minor76a70e92015-02-24 12:58:20 -06001519 current_ev = iwe_stream_add_point_check(info,
1520 current_ev,
1521 end_buf,
1522 &iwe, buf);
1523 if (IS_ERR(current_ev))
1524 goto unlock;
Rui Paulo76aa5e72009-11-18 18:22:59 +00001525 sprintf(buf, "Authentication ID: 0x%02X", cfg[4]);
1526 iwe.u.data.length = strlen(buf);
James Minor76a70e92015-02-24 12:58:20 -06001527 current_ev = iwe_stream_add_point_check(info,
1528 current_ev,
1529 end_buf,
1530 &iwe, buf);
1531 if (IS_ERR(current_ev))
1532 goto unlock;
Rui Paulo76aa5e72009-11-18 18:22:59 +00001533 sprintf(buf, "Formation Info: 0x%02X", cfg[5]);
1534 iwe.u.data.length = strlen(buf);
James Minor76a70e92015-02-24 12:58:20 -06001535 current_ev = iwe_stream_add_point_check(info,
1536 current_ev,
1537 end_buf,
1538 &iwe, buf);
1539 if (IS_ERR(current_ev))
1540 goto unlock;
Rui Paulo76aa5e72009-11-18 18:22:59 +00001541 sprintf(buf, "Capabilities: 0x%02X", cfg[6]);
Johannes Berg2a519312009-02-10 21:25:55 +01001542 iwe.u.data.length = strlen(buf);
James Minor76a70e92015-02-24 12:58:20 -06001543 current_ev = iwe_stream_add_point_check(info,
1544 current_ev,
1545 end_buf,
1546 &iwe, buf);
1547 if (IS_ERR(current_ev))
1548 goto unlock;
Johannes Berg2a519312009-02-10 21:25:55 +01001549 break;
1550 case WLAN_EID_SUPP_RATES:
1551 case WLAN_EID_EXT_SUPP_RATES:
1552 /* display all supported rates in readable format */
1553 p = current_ev + iwe_stream_lcp_len(info);
1554
1555 memset(&iwe, 0, sizeof(iwe));
1556 iwe.cmd = SIOCGIWRATE;
1557 /* Those two flags are ignored... */
1558 iwe.u.bitrate.fixed = iwe.u.bitrate.disabled = 0;
1559
1560 for (i = 0; i < ie[1]; i++) {
1561 iwe.u.bitrate.value =
1562 ((ie[i + 2] & 0x7f) * 500000);
James Minor76a70e92015-02-24 12:58:20 -06001563 tmp = p;
Johannes Berg2a519312009-02-10 21:25:55 +01001564 p = iwe_stream_add_value(info, current_ev, p,
James Minor76a70e92015-02-24 12:58:20 -06001565 end_buf, &iwe,
1566 IW_EV_PARAM_LEN);
1567 if (p == tmp) {
1568 current_ev = ERR_PTR(-E2BIG);
1569 goto unlock;
1570 }
Johannes Berg2a519312009-02-10 21:25:55 +01001571 }
1572 current_ev = p;
1573 break;
1574 }
1575 rem -= ie[1] + 2;
1576 ie += ie[1] + 2;
1577 }
1578
Joe Perchesf64f9e72009-11-29 16:55:45 -08001579 if (bss->pub.capability & (WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_IBSS) ||
1580 ismesh) {
Johannes Berg2a519312009-02-10 21:25:55 +01001581 memset(&iwe, 0, sizeof(iwe));
1582 iwe.cmd = SIOCGIWMODE;
1583 if (ismesh)
1584 iwe.u.mode = IW_MODE_MESH;
1585 else if (bss->pub.capability & WLAN_CAPABILITY_ESS)
1586 iwe.u.mode = IW_MODE_MASTER;
1587 else
1588 iwe.u.mode = IW_MODE_ADHOC;
James Minor76a70e92015-02-24 12:58:20 -06001589 current_ev = iwe_stream_add_event_check(info, current_ev,
1590 end_buf, &iwe,
1591 IW_EV_UINT_LEN);
1592 if (IS_ERR(current_ev))
1593 goto unlock;
Johannes Berg2a519312009-02-10 21:25:55 +01001594 }
1595
James Minor76a70e92015-02-24 12:58:20 -06001596 memset(&iwe, 0, sizeof(iwe));
1597 iwe.cmd = IWEVCUSTOM;
1598 sprintf(buf, "tsf=%016llx", (unsigned long long)(ies->tsf));
1599 iwe.u.data.length = strlen(buf);
1600 current_ev = iwe_stream_add_point_check(info, current_ev, end_buf,
1601 &iwe, buf);
1602 if (IS_ERR(current_ev))
1603 goto unlock;
1604 memset(&iwe, 0, sizeof(iwe));
1605 iwe.cmd = IWEVCUSTOM;
1606 sprintf(buf, " Last beacon: %ums ago",
1607 elapsed_jiffies_msecs(bss->ts));
1608 iwe.u.data.length = strlen(buf);
1609 current_ev = iwe_stream_add_point_check(info, current_ev,
1610 end_buf, &iwe, buf);
1611 if (IS_ERR(current_ev))
1612 goto unlock;
Johannes Berg2a519312009-02-10 21:25:55 +01001613
James Minor76a70e92015-02-24 12:58:20 -06001614 current_ev = ieee80211_scan_add_ies(info, ies, current_ev, end_buf);
1615
1616 unlock:
Johannes Berg9caf0362012-11-29 01:25:20 +01001617 rcu_read_unlock();
Johannes Berg2a519312009-02-10 21:25:55 +01001618 return current_ev;
1619}
1620
1621
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001622static int ieee80211_scan_results(struct cfg80211_registered_device *rdev,
Johannes Berg2a519312009-02-10 21:25:55 +01001623 struct iw_request_info *info,
1624 char *buf, size_t len)
1625{
1626 char *current_ev = buf;
1627 char *end_buf = buf + len;
1628 struct cfg80211_internal_bss *bss;
James Minor76a70e92015-02-24 12:58:20 -06001629 int err = 0;
Johannes Berg2a519312009-02-10 21:25:55 +01001630
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001631 spin_lock_bh(&rdev->bss_lock);
1632 cfg80211_bss_expire(rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01001633
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001634 list_for_each_entry(bss, &rdev->bss_list, list) {
Johannes Berg2a519312009-02-10 21:25:55 +01001635 if (buf + len - current_ev <= IW_EV_ADDR_LEN) {
James Minor76a70e92015-02-24 12:58:20 -06001636 err = -E2BIG;
1637 break;
Johannes Berg2a519312009-02-10 21:25:55 +01001638 }
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001639 current_ev = ieee80211_bss(&rdev->wiphy, info, bss,
Johannes Berg77965c92009-02-18 18:45:06 +01001640 current_ev, end_buf);
James Minor76a70e92015-02-24 12:58:20 -06001641 if (IS_ERR(current_ev)) {
1642 err = PTR_ERR(current_ev);
1643 break;
1644 }
Johannes Berg2a519312009-02-10 21:25:55 +01001645 }
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001646 spin_unlock_bh(&rdev->bss_lock);
James Minor76a70e92015-02-24 12:58:20 -06001647
1648 if (err)
1649 return err;
Johannes Berg2a519312009-02-10 21:25:55 +01001650 return current_ev - buf;
1651}
1652
1653
1654int cfg80211_wext_giwscan(struct net_device *dev,
1655 struct iw_request_info *info,
1656 struct iw_point *data, char *extra)
1657{
1658 struct cfg80211_registered_device *rdev;
1659 int res;
1660
1661 if (!netif_running(dev))
1662 return -ENETDOWN;
1663
Johannes Berg463d0182009-07-14 00:33:35 +02001664 rdev = cfg80211_get_dev_from_ifindex(dev_net(dev), dev->ifindex);
Johannes Berg2a519312009-02-10 21:25:55 +01001665
1666 if (IS_ERR(rdev))
1667 return PTR_ERR(rdev);
1668
Johannes Bergf9d15d12014-01-22 11:14:19 +02001669 if (rdev->scan_req || rdev->scan_msg)
Johannes Berg5fe231e2013-05-08 21:45:15 +02001670 return -EAGAIN;
Johannes Berg2a519312009-02-10 21:25:55 +01001671
1672 res = ieee80211_scan_results(rdev, info, extra, data->length);
1673 data->length = 0;
1674 if (res >= 0) {
1675 data->length = res;
1676 res = 0;
1677 }
1678
Johannes Berg2a519312009-02-10 21:25:55 +01001679 return res;
1680}
Johannes Berg2afe38d2015-01-06 14:00:53 +01001681EXPORT_WEXT_HANDLER(cfg80211_wext_giwscan);
Johannes Berg2a519312009-02-10 21:25:55 +01001682#endif