blob: 36daacb31788b6bf35dc9aa1eb35b724b0c128ac [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>
5 */
6#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09007#include <linux/slab.h>
Johannes Berg2a519312009-02-10 21:25:55 +01008#include <linux/module.h>
9#include <linux/netdevice.h>
10#include <linux/wireless.h>
11#include <linux/nl80211.h>
12#include <linux/etherdevice.h>
13#include <net/arp.h>
14#include <net/cfg80211.h>
Johannes Berg262eb9b22011-07-13 10:39:09 +020015#include <net/cfg80211-wext.h>
Johannes Berg2a519312009-02-10 21:25:55 +010016#include <net/iw_handler.h>
17#include "core.h"
18#include "nl80211.h"
Johannes Berga9a11622009-07-27 12:01:53 +020019#include "wext-compat.h"
Hila Gonene35e4d22012-06-27 17:19:42 +030020#include "rdev-ops.h"
Johannes Berg2a519312009-02-10 21:25:55 +010021
Rajkumar Manoharanf9616e02012-04-13 16:38:40 +053022#define IEEE80211_SCAN_RESULT_EXPIRE (30 * HZ)
Johannes Berg2a519312009-02-10 21:25:55 +010023
Amitkumar Karware8e27c62012-10-11 21:03:33 -070024static void bss_release(struct kref *ref)
25{
Johannes Berg9caf0362012-11-29 01:25:20 +010026 struct cfg80211_bss_ies *ies;
Amitkumar Karware8e27c62012-10-11 21:03:33 -070027 struct cfg80211_internal_bss *bss;
28
29 bss = container_of(ref, struct cfg80211_internal_bss, ref);
Johannes Bergb629ea32012-11-28 22:14:56 +010030
31 if (WARN_ON(atomic_read(&bss->hold)))
32 return;
33
Johannes Berg9caf0362012-11-29 01:25:20 +010034 ies = (void *)rcu_access_pointer(bss->pub.beacon_ies);
35 if (ies)
36 kfree_rcu(ies, rcu_head);
37 ies = (void *)rcu_access_pointer(bss->pub.proberesp_ies);
38 if (ies)
39 kfree_rcu(ies, rcu_head);
Amitkumar Karware8e27c62012-10-11 21:03:33 -070040
Amitkumar Karware8e27c62012-10-11 21:03:33 -070041 kfree(bss);
42}
43
Johannes Berg0532d4f2013-02-01 01:34:36 +010044static inline void bss_ref_get(struct cfg80211_internal_bss *bss)
45{
46 kref_get(&bss->ref);
47}
48
49static inline void bss_ref_put(struct cfg80211_internal_bss *bss)
50{
51 kref_put(&bss->ref, bss_release);
52}
53
Amitkumar Karware8e27c62012-10-11 21:03:33 -070054static void __cfg80211_unlink_bss(struct cfg80211_registered_device *dev,
55 struct cfg80211_internal_bss *bss)
56{
Johannes Berg4b1af472013-02-01 01:05:43 +010057 lockdep_assert_held(&dev->bss_lock);
58
Amitkumar Karware8e27c62012-10-11 21:03:33 -070059 list_del_init(&bss->list);
60 rb_erase(&bss->rbn, &dev->bss_tree);
Johannes Berg0532d4f2013-02-01 01:34:36 +010061 bss_ref_put(bss);
Amitkumar Karware8e27c62012-10-11 21:03:33 -070062}
63
Sam Leffler15d60302012-10-11 21:03:34 -070064static void __cfg80211_bss_expire(struct cfg80211_registered_device *dev,
65 unsigned long expire_time)
66{
67 struct cfg80211_internal_bss *bss, *tmp;
68 bool expired = false;
69
Johannes Berg4b1af472013-02-01 01:05:43 +010070 lockdep_assert_held(&dev->bss_lock);
71
Sam Leffler15d60302012-10-11 21:03:34 -070072 list_for_each_entry_safe(bss, tmp, &dev->bss_list, list) {
73 if (atomic_read(&bss->hold))
74 continue;
75 if (!time_after(expire_time, bss->ts))
76 continue;
77
78 __cfg80211_unlink_bss(dev, bss);
79 expired = true;
80 }
81
82 if (expired)
83 dev->bss_generation++;
84}
85
Johannes Berg01a0ac42009-08-20 21:36:16 +020086void ___cfg80211_scan_done(struct cfg80211_registered_device *rdev, bool leak)
Johannes Berg2a519312009-02-10 21:25:55 +010087{
Johannes Berg667503d2009-07-07 03:56:11 +020088 struct cfg80211_scan_request *request;
Johannes Bergfd014282012-06-18 19:17:03 +020089 struct wireless_dev *wdev;
Johannes Berg3d23e342009-09-29 23:27:28 +020090#ifdef CONFIG_CFG80211_WEXT
Johannes Berg2a519312009-02-10 21:25:55 +010091 union iwreq_data wrqu;
92#endif
93
Johannes Berg01a0ac42009-08-20 21:36:16 +020094 ASSERT_RDEV_LOCK(rdev);
95
Johannes Berg667503d2009-07-07 03:56:11 +020096 request = rdev->scan_req;
97
Johannes Berg01a0ac42009-08-20 21:36:16 +020098 if (!request)
99 return;
100
Johannes Bergfd014282012-06-18 19:17:03 +0200101 wdev = request->wdev;
Johannes Berg2a519312009-02-10 21:25:55 +0100102
Johannes Berg6829c8782009-07-02 09:13:27 +0200103 /*
104 * This must be before sending the other events!
105 * Otherwise, wpa_supplicant gets completely confused with
106 * wext events.
107 */
Johannes Bergfd014282012-06-18 19:17:03 +0200108 if (wdev->netdev)
109 cfg80211_sme_scan_done(wdev->netdev);
Johannes Berg6829c8782009-07-02 09:13:27 +0200110
Sam Leffler15d60302012-10-11 21:03:34 -0700111 if (request->aborted) {
Johannes Bergfd014282012-06-18 19:17:03 +0200112 nl80211_send_scan_aborted(rdev, wdev);
Sam Leffler15d60302012-10-11 21:03:34 -0700113 } else {
114 if (request->flags & NL80211_SCAN_FLAG_FLUSH) {
115 /* flush entries from previous scans */
116 spin_lock_bh(&rdev->bss_lock);
117 __cfg80211_bss_expire(rdev, request->scan_start);
118 spin_unlock_bh(&rdev->bss_lock);
119 }
Johannes Bergfd014282012-06-18 19:17:03 +0200120 nl80211_send_scan_done(rdev, wdev);
Sam Leffler15d60302012-10-11 21:03:34 -0700121 }
Johannes Berg2a519312009-02-10 21:25:55 +0100122
Johannes Berg3d23e342009-09-29 23:27:28 +0200123#ifdef CONFIG_CFG80211_WEXT
Johannes Bergfd014282012-06-18 19:17:03 +0200124 if (wdev->netdev && !request->aborted) {
Johannes Berg2a519312009-02-10 21:25:55 +0100125 memset(&wrqu, 0, sizeof(wrqu));
126
Johannes Bergfd014282012-06-18 19:17:03 +0200127 wireless_send_event(wdev->netdev, SIOCGIWSCAN, &wrqu, NULL);
Johannes Berg2a519312009-02-10 21:25:55 +0100128 }
129#endif
130
Johannes Bergfd014282012-06-18 19:17:03 +0200131 if (wdev->netdev)
132 dev_put(wdev->netdev);
Johannes Berg2a519312009-02-10 21:25:55 +0100133
Johannes Berg36e6fea2009-08-12 22:21:21 +0200134 rdev->scan_req = NULL;
Johannes Berg01a0ac42009-08-20 21:36:16 +0200135
136 /*
137 * OK. If this is invoked with "leak" then we can't
138 * free this ... but we've cleaned it up anyway. The
139 * driver failed to call the scan_done callback, so
140 * all bets are off, it might still be trying to use
141 * the scan request or not ... if it accesses the dev
142 * in there (it shouldn't anyway) then it may crash.
143 */
144 if (!leak)
145 kfree(request);
Johannes Berg2a519312009-02-10 21:25:55 +0100146}
Johannes Berg667503d2009-07-07 03:56:11 +0200147
Johannes Berg36e6fea2009-08-12 22:21:21 +0200148void __cfg80211_scan_done(struct work_struct *wk)
149{
150 struct cfg80211_registered_device *rdev;
151
152 rdev = container_of(wk, struct cfg80211_registered_device,
153 scan_done_wk);
154
155 cfg80211_lock_rdev(rdev);
Johannes Berg01a0ac42009-08-20 21:36:16 +0200156 ___cfg80211_scan_done(rdev, false);
Johannes Berg36e6fea2009-08-12 22:21:21 +0200157 cfg80211_unlock_rdev(rdev);
158}
159
Johannes Berg667503d2009-07-07 03:56:11 +0200160void cfg80211_scan_done(struct cfg80211_scan_request *request, bool aborted)
161{
Beni Lev4ee3e062012-08-27 12:49:39 +0300162 trace_cfg80211_scan_done(request, aborted);
Johannes Berg667503d2009-07-07 03:56:11 +0200163 WARN_ON(request != wiphy_to_dev(request->wiphy)->scan_req);
164
165 request->aborted = aborted;
Alban Browaeyse60d7442009-11-25 15:13:00 +0100166 queue_work(cfg80211_wq, &wiphy_to_dev(request->wiphy)->scan_done_wk);
Johannes Berg667503d2009-07-07 03:56:11 +0200167}
Johannes Berg2a519312009-02-10 21:25:55 +0100168EXPORT_SYMBOL(cfg80211_scan_done);
169
Luciano Coelho807f8a82011-05-11 17:09:35 +0300170void __cfg80211_sched_scan_results(struct work_struct *wk)
171{
172 struct cfg80211_registered_device *rdev;
Sam Leffler15d60302012-10-11 21:03:34 -0700173 struct cfg80211_sched_scan_request *request;
Luciano Coelho807f8a82011-05-11 17:09:35 +0300174
175 rdev = container_of(wk, struct cfg80211_registered_device,
176 sched_scan_results_wk);
177
Sam Leffler15d60302012-10-11 21:03:34 -0700178 request = rdev->sched_scan_req;
179
Luciano Coelhoc10841c2011-06-30 08:32:41 +0300180 mutex_lock(&rdev->sched_scan_mtx);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300181
182 /* we don't have sched_scan_req anymore if the scan is stopping */
Sam Leffler15d60302012-10-11 21:03:34 -0700183 if (request) {
184 if (request->flags & NL80211_SCAN_FLAG_FLUSH) {
185 /* flush entries from previous scans */
186 spin_lock_bh(&rdev->bss_lock);
187 __cfg80211_bss_expire(rdev, request->scan_start);
188 spin_unlock_bh(&rdev->bss_lock);
189 request->scan_start =
190 jiffies + msecs_to_jiffies(request->interval);
191 }
192 nl80211_send_sched_scan_results(rdev, request->dev);
193 }
Luciano Coelho807f8a82011-05-11 17:09:35 +0300194
Luciano Coelhoc10841c2011-06-30 08:32:41 +0300195 mutex_unlock(&rdev->sched_scan_mtx);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300196}
197
198void cfg80211_sched_scan_results(struct wiphy *wiphy)
199{
Beni Lev4ee3e062012-08-27 12:49:39 +0300200 trace_cfg80211_sched_scan_results(wiphy);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300201 /* ignore if we're not scanning */
202 if (wiphy_to_dev(wiphy)->sched_scan_req)
203 queue_work(cfg80211_wq,
204 &wiphy_to_dev(wiphy)->sched_scan_results_wk);
205}
206EXPORT_SYMBOL(cfg80211_sched_scan_results);
207
Luciano Coelho85a99942011-05-12 16:28:29 +0300208void cfg80211_sched_scan_stopped(struct wiphy *wiphy)
Luciano Coelho807f8a82011-05-11 17:09:35 +0300209{
Luciano Coelho85a99942011-05-12 16:28:29 +0300210 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300211
Beni Lev4ee3e062012-08-27 12:49:39 +0300212 trace_cfg80211_sched_scan_stopped(wiphy);
213
Luciano Coelhoc10841c2011-06-30 08:32:41 +0300214 mutex_lock(&rdev->sched_scan_mtx);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300215 __cfg80211_stop_sched_scan(rdev, true);
Luciano Coelhoc10841c2011-06-30 08:32:41 +0300216 mutex_unlock(&rdev->sched_scan_mtx);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300217}
Luciano Coelho807f8a82011-05-11 17:09:35 +0300218EXPORT_SYMBOL(cfg80211_sched_scan_stopped);
219
220int __cfg80211_stop_sched_scan(struct cfg80211_registered_device *rdev,
221 bool driver_initiated)
222{
Luciano Coelho807f8a82011-05-11 17:09:35 +0300223 struct net_device *dev;
224
Luciano Coelhoc10841c2011-06-30 08:32:41 +0300225 lockdep_assert_held(&rdev->sched_scan_mtx);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300226
227 if (!rdev->sched_scan_req)
Luciano Coelho1a84ff72011-07-08 11:16:16 +0300228 return -ENOENT;
Luciano Coelho807f8a82011-05-11 17:09:35 +0300229
230 dev = rdev->sched_scan_req->dev;
231
Luciano Coelho85a99942011-05-12 16:28:29 +0300232 if (!driver_initiated) {
Hila Gonene35e4d22012-06-27 17:19:42 +0300233 int err = rdev_sched_scan_stop(rdev, dev);
Luciano Coelho85a99942011-05-12 16:28:29 +0300234 if (err)
235 return err;
236 }
Luciano Coelho807f8a82011-05-11 17:09:35 +0300237
238 nl80211_send_sched_scan(rdev, dev, NL80211_CMD_SCHED_SCAN_STOPPED);
239
240 kfree(rdev->sched_scan_req);
241 rdev->sched_scan_req = NULL;
242
Jesper Juhl3b4670f2011-06-29 22:49:33 +0200243 return 0;
Luciano Coelho807f8a82011-05-11 17:09:35 +0300244}
245
Dan Williamscb3a8ee2009-02-11 17:14:43 -0500246void cfg80211_bss_age(struct cfg80211_registered_device *dev,
247 unsigned long age_secs)
248{
249 struct cfg80211_internal_bss *bss;
250 unsigned long age_jiffies = msecs_to_jiffies(age_secs * MSEC_PER_SEC);
251
Johannes Berg2ca813a2013-02-01 01:04:14 +0100252 spin_lock_bh(&dev->bss_lock);
Johannes Berg915de2f2012-11-28 22:39:37 +0100253 list_for_each_entry(bss, &dev->bss_list, list)
Dan Williamscb3a8ee2009-02-11 17:14:43 -0500254 bss->ts -= age_jiffies;
Johannes Berg2ca813a2013-02-01 01:04:14 +0100255 spin_unlock_bh(&dev->bss_lock);
Dan Williamscb3a8ee2009-02-11 17:14:43 -0500256}
257
Johannes Berg2a519312009-02-10 21:25:55 +0100258void cfg80211_bss_expire(struct cfg80211_registered_device *dev)
259{
Sam Leffler15d60302012-10-11 21:03:34 -0700260 __cfg80211_bss_expire(dev, jiffies - IEEE80211_SCAN_RESULT_EXPIRE);
Johannes Berg2a519312009-02-10 21:25:55 +0100261}
262
Johannes Bergc21dbf92010-01-26 14:15:46 +0100263const u8 *cfg80211_find_ie(u8 eid, const u8 *ies, int len)
Johannes Berg2a519312009-02-10 21:25:55 +0100264{
Johannes Bergc21dbf92010-01-26 14:15:46 +0100265 while (len > 2 && ies[0] != eid) {
Johannes Berg2a519312009-02-10 21:25:55 +0100266 len -= ies[1] + 2;
267 ies += ies[1] + 2;
268 }
269 if (len < 2)
270 return NULL;
271 if (len < 2 + ies[1])
272 return NULL;
273 return ies;
274}
Johannes Bergc21dbf92010-01-26 14:15:46 +0100275EXPORT_SYMBOL(cfg80211_find_ie);
Johannes Berg2a519312009-02-10 21:25:55 +0100276
Eliad Peller0c28ec52011-09-15 11:53:01 +0300277const u8 *cfg80211_find_vendor_ie(unsigned int oui, u8 oui_type,
278 const u8 *ies, int len)
279{
280 struct ieee80211_vendor_ie *ie;
281 const u8 *pos = ies, *end = ies + len;
282 int ie_oui;
283
284 while (pos < end) {
285 pos = cfg80211_find_ie(WLAN_EID_VENDOR_SPECIFIC, pos,
286 end - pos);
287 if (!pos)
288 return NULL;
289
290 if (end - pos < sizeof(*ie))
291 return NULL;
292
293 ie = (struct ieee80211_vendor_ie *)pos;
294 ie_oui = ie->oui[0] << 16 | ie->oui[1] << 8 | ie->oui[2];
295 if (ie_oui == oui && ie->oui_type == oui_type)
296 return pos;
297
298 pos += 2 + ie->len;
299 }
300 return NULL;
301}
302EXPORT_SYMBOL(cfg80211_find_vendor_ie);
303
Johannes Berg915de2f2012-11-28 22:39:37 +0100304static bool is_bss(struct cfg80211_bss *a, const u8 *bssid,
Johannes Berg2a519312009-02-10 21:25:55 +0100305 const u8 *ssid, size_t ssid_len)
306{
Johannes Berg9caf0362012-11-29 01:25:20 +0100307 const struct cfg80211_bss_ies *ies;
Johannes Berg2a519312009-02-10 21:25:55 +0100308 const u8 *ssidie;
309
Joe Perchesac422d32012-05-08 18:56:55 +0000310 if (bssid && !ether_addr_equal(a->bssid, bssid))
Johannes Berg2a519312009-02-10 21:25:55 +0100311 return false;
312
Johannes Berg79420f02009-02-10 21:25:59 +0100313 if (!ssid)
314 return true;
315
Johannes Berg9caf0362012-11-29 01:25:20 +0100316 ies = rcu_access_pointer(a->ies);
317 if (!ies)
318 return false;
319 ssidie = cfg80211_find_ie(WLAN_EID_SSID, ies->data, ies->len);
Johannes Berg2a519312009-02-10 21:25:55 +0100320 if (!ssidie)
321 return false;
322 if (ssidie[1] != ssid_len)
323 return false;
324 return memcmp(ssidie + 2, ssid, ssid_len) == 0;
325}
326
Johannes Berg4593c4c2013-02-01 19:20:03 +0100327/**
328 * enum bss_compare_mode - BSS compare mode
329 * @BSS_CMP_REGULAR: regular compare mode (for insertion and normal find)
330 * @BSS_CMP_HIDE_ZLEN: find hidden SSID with zero-length mode
331 * @BSS_CMP_HIDE_NUL: find hidden SSID with NUL-ed out mode
332 */
333enum bss_compare_mode {
334 BSS_CMP_REGULAR,
335 BSS_CMP_HIDE_ZLEN,
336 BSS_CMP_HIDE_NUL,
337};
338
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100339static int cmp_bss(struct cfg80211_bss *a,
Johannes Berg5622f5b2013-01-30 00:26:45 +0100340 struct cfg80211_bss *b,
Johannes Berg4593c4c2013-02-01 19:20:03 +0100341 enum bss_compare_mode mode)
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100342{
Johannes Berg9caf0362012-11-29 01:25:20 +0100343 const struct cfg80211_bss_ies *a_ies, *b_ies;
Johannes Berg3af63412013-01-30 00:40:20 +0100344 const u8 *ie1 = NULL;
345 const u8 *ie2 = NULL;
Johannes Berg5622f5b2013-01-30 00:26:45 +0100346 int i, r;
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100347
Johannes Berg3af63412013-01-30 00:40:20 +0100348 if (a->channel != b->channel)
349 return b->channel->center_freq - a->channel->center_freq;
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100350
Johannes Berg9caf0362012-11-29 01:25:20 +0100351 a_ies = rcu_access_pointer(a->ies);
352 if (!a_ies)
353 return -1;
354 b_ies = rcu_access_pointer(b->ies);
355 if (!b_ies)
356 return 1;
357
Johannes Berg3af63412013-01-30 00:40:20 +0100358 if (WLAN_CAPABILITY_IS_STA_BSS(a->capability))
359 ie1 = cfg80211_find_ie(WLAN_EID_MESH_ID,
360 a_ies->data, a_ies->len);
361 if (WLAN_CAPABILITY_IS_STA_BSS(b->capability))
362 ie2 = cfg80211_find_ie(WLAN_EID_MESH_ID,
363 b_ies->data, b_ies->len);
364 if (ie1 && ie2) {
365 int mesh_id_cmp;
366
367 if (ie1[1] == ie2[1])
368 mesh_id_cmp = memcmp(ie1 + 2, ie2 + 2, ie1[1]);
369 else
370 mesh_id_cmp = ie2[1] - ie1[1];
371
372 ie1 = cfg80211_find_ie(WLAN_EID_MESH_CONFIG,
373 a_ies->data, a_ies->len);
374 ie2 = cfg80211_find_ie(WLAN_EID_MESH_CONFIG,
375 b_ies->data, b_ies->len);
376 if (ie1 && ie2) {
377 if (mesh_id_cmp)
378 return mesh_id_cmp;
379 if (ie1[1] != ie2[1])
380 return ie2[1] - ie1[1];
381 return memcmp(ie1 + 2, ie2 + 2, ie1[1]);
382 }
383 }
384
385 /*
386 * we can't use compare_ether_addr here since we need a < > operator.
387 * The binary return value of compare_ether_addr isn't enough
388 */
389 r = memcmp(a->bssid, b->bssid, sizeof(a->bssid));
390 if (r)
391 return r;
392
Johannes Berg9caf0362012-11-29 01:25:20 +0100393 ie1 = cfg80211_find_ie(WLAN_EID_SSID, a_ies->data, a_ies->len);
394 ie2 = cfg80211_find_ie(WLAN_EID_SSID, b_ies->data, b_ies->len);
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100395
Johannes Berg5622f5b2013-01-30 00:26:45 +0100396 if (!ie1 && !ie2)
397 return 0;
398
Johannes Bergf94f8b12012-11-28 22:42:34 +0100399 /*
Johannes Berg5622f5b2013-01-30 00:26:45 +0100400 * Note that with "hide_ssid", the function returns a match if
401 * the already-present BSS ("b") is a hidden SSID beacon for
402 * the new BSS ("a").
Johannes Bergf94f8b12012-11-28 22:42:34 +0100403 */
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100404
405 /* sort missing IE before (left of) present IE */
406 if (!ie1)
407 return -1;
408 if (!ie2)
409 return 1;
410
Johannes Berg4593c4c2013-02-01 19:20:03 +0100411 switch (mode) {
412 case BSS_CMP_HIDE_ZLEN:
413 /*
414 * In ZLEN mode we assume the BSS entry we're
415 * looking for has a zero-length SSID. So if
416 * the one we're looking at right now has that,
417 * return 0. Otherwise, return the difference
418 * in length, but since we're looking for the
419 * 0-length it's really equivalent to returning
420 * the length of the one we're looking at.
421 *
422 * No content comparison is needed as we assume
423 * the content length is zero.
424 */
425 return ie2[1];
426 case BSS_CMP_REGULAR:
427 default:
428 /* sort by length first, then by contents */
429 if (ie1[1] != ie2[1])
430 return ie2[1] - ie1[1];
Johannes Berg5622f5b2013-01-30 00:26:45 +0100431 return memcmp(ie1 + 2, ie2 + 2, ie1[1]);
Johannes Berg4593c4c2013-02-01 19:20:03 +0100432 case BSS_CMP_HIDE_NUL:
433 if (ie1[1] != ie2[1])
434 return ie2[1] - ie1[1];
435 /* this is equivalent to memcmp(zeroes, ie2 + 2, len) */
436 for (i = 0; i < ie2[1]; i++)
437 if (ie2[i + 2])
438 return -1;
439 return 0;
440 }
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100441}
442
Johannes Berg2a519312009-02-10 21:25:55 +0100443struct cfg80211_bss *cfg80211_get_bss(struct wiphy *wiphy,
444 struct ieee80211_channel *channel,
445 const u8 *bssid,
Johannes Berg79420f02009-02-10 21:25:59 +0100446 const u8 *ssid, size_t ssid_len,
447 u16 capa_mask, u16 capa_val)
Johannes Berg2a519312009-02-10 21:25:55 +0100448{
449 struct cfg80211_registered_device *dev = wiphy_to_dev(wiphy);
450 struct cfg80211_internal_bss *bss, *res = NULL;
Johannes Bergccb6c132010-07-13 10:55:38 +0200451 unsigned long now = jiffies;
Johannes Berg2a519312009-02-10 21:25:55 +0100452
Beni Lev4ee3e062012-08-27 12:49:39 +0300453 trace_cfg80211_get_bss(wiphy, channel, bssid, ssid, ssid_len, capa_mask,
454 capa_val);
455
Johannes Berg2a519312009-02-10 21:25:55 +0100456 spin_lock_bh(&dev->bss_lock);
457
458 list_for_each_entry(bss, &dev->bss_list, list) {
Johannes Berg79420f02009-02-10 21:25:59 +0100459 if ((bss->pub.capability & capa_mask) != capa_val)
460 continue;
Johannes Berg2a519312009-02-10 21:25:55 +0100461 if (channel && bss->pub.channel != channel)
462 continue;
Johannes Bergccb6c132010-07-13 10:55:38 +0200463 /* Don't get expired BSS structs */
464 if (time_after(now, bss->ts + IEEE80211_SCAN_RESULT_EXPIRE) &&
465 !atomic_read(&bss->hold))
466 continue;
Johannes Berg2a519312009-02-10 21:25:55 +0100467 if (is_bss(&bss->pub, bssid, ssid, ssid_len)) {
468 res = bss;
Johannes Berg0532d4f2013-02-01 01:34:36 +0100469 bss_ref_get(res);
Johannes Berg2a519312009-02-10 21:25:55 +0100470 break;
471 }
472 }
473
474 spin_unlock_bh(&dev->bss_lock);
475 if (!res)
476 return NULL;
Beni Lev4ee3e062012-08-27 12:49:39 +0300477 trace_cfg80211_return_bss(&res->pub);
Johannes Berg2a519312009-02-10 21:25:55 +0100478 return &res->pub;
479}
480EXPORT_SYMBOL(cfg80211_get_bss);
481
Johannes Berg2a519312009-02-10 21:25:55 +0100482static void rb_insert_bss(struct cfg80211_registered_device *dev,
483 struct cfg80211_internal_bss *bss)
484{
485 struct rb_node **p = &dev->bss_tree.rb_node;
486 struct rb_node *parent = NULL;
487 struct cfg80211_internal_bss *tbss;
488 int cmp;
489
490 while (*p) {
491 parent = *p;
492 tbss = rb_entry(parent, struct cfg80211_internal_bss, rbn);
493
Johannes Berg4593c4c2013-02-01 19:20:03 +0100494 cmp = cmp_bss(&bss->pub, &tbss->pub, BSS_CMP_REGULAR);
Johannes Berg2a519312009-02-10 21:25:55 +0100495
496 if (WARN_ON(!cmp)) {
497 /* will sort of leak this BSS */
498 return;
499 }
500
501 if (cmp < 0)
502 p = &(*p)->rb_left;
503 else
504 p = &(*p)->rb_right;
505 }
506
507 rb_link_node(&bss->rbn, parent, p);
508 rb_insert_color(&bss->rbn, &dev->bss_tree);
509}
510
511static struct cfg80211_internal_bss *
512rb_find_bss(struct cfg80211_registered_device *dev,
Johannes Berg5622f5b2013-01-30 00:26:45 +0100513 struct cfg80211_internal_bss *res,
Johannes Berg4593c4c2013-02-01 19:20:03 +0100514 enum bss_compare_mode mode)
Johannes Berg2a519312009-02-10 21:25:55 +0100515{
516 struct rb_node *n = dev->bss_tree.rb_node;
517 struct cfg80211_internal_bss *bss;
518 int r;
519
520 while (n) {
521 bss = rb_entry(n, struct cfg80211_internal_bss, rbn);
Johannes Berg4593c4c2013-02-01 19:20:03 +0100522 r = cmp_bss(&res->pub, &bss->pub, mode);
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100523
524 if (r == 0)
525 return bss;
526 else if (r < 0)
527 n = n->rb_left;
528 else
529 n = n->rb_right;
530 }
531
532 return NULL;
533}
534
535static void
536copy_hidden_ies(struct cfg80211_internal_bss *res,
Johannes Berg915de2f2012-11-28 22:39:37 +0100537 struct cfg80211_internal_bss *hidden)
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100538{
Johannes Berg9caf0362012-11-29 01:25:20 +0100539 const struct cfg80211_bss_ies *ies;
540
541 if (rcu_access_pointer(res->pub.beacon_ies))
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100542 return;
543
Johannes Berg9caf0362012-11-29 01:25:20 +0100544 ies = rcu_access_pointer(hidden->pub.beacon_ies);
545 if (WARN_ON(!ies))
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100546 return;
547
Johannes Berg9caf0362012-11-29 01:25:20 +0100548 ies = kmemdup(ies, sizeof(*ies) + ies->len, GFP_ATOMIC);
549 if (unlikely(!ies))
550 return;
551 rcu_assign_pointer(res->pub.beacon_ies, ies);
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100552}
553
554static struct cfg80211_internal_bss *
Johannes Berg2a519312009-02-10 21:25:55 +0100555cfg80211_bss_update(struct cfg80211_registered_device *dev,
Johannes Berg9caf0362012-11-29 01:25:20 +0100556 struct cfg80211_internal_bss *tmp)
Johannes Berg2a519312009-02-10 21:25:55 +0100557{
558 struct cfg80211_internal_bss *found = NULL;
Johannes Berg2a519312009-02-10 21:25:55 +0100559
Johannes Berg9caf0362012-11-29 01:25:20 +0100560 if (WARN_ON(!tmp->pub.channel))
Johannes Berg2a519312009-02-10 21:25:55 +0100561 return NULL;
Johannes Berg2a519312009-02-10 21:25:55 +0100562
Johannes Berg9caf0362012-11-29 01:25:20 +0100563 tmp->ts = jiffies;
Johannes Berg2a519312009-02-10 21:25:55 +0100564
Johannes Berg2a519312009-02-10 21:25:55 +0100565 spin_lock_bh(&dev->bss_lock);
566
Johannes Berg9caf0362012-11-29 01:25:20 +0100567 if (WARN_ON(!rcu_access_pointer(tmp->pub.ies))) {
568 spin_unlock_bh(&dev->bss_lock);
569 return NULL;
570 }
571
Johannes Berg4593c4c2013-02-01 19:20:03 +0100572 found = rb_find_bss(dev, tmp, BSS_CMP_REGULAR);
Johannes Berg2a519312009-02-10 21:25:55 +0100573
Johannes Bergcd1658f2009-04-16 15:00:58 +0200574 if (found) {
Johannes Berg9caf0362012-11-29 01:25:20 +0100575 found->pub.beacon_interval = tmp->pub.beacon_interval;
576 found->pub.tsf = tmp->pub.tsf;
577 found->pub.signal = tmp->pub.signal;
578 found->pub.capability = tmp->pub.capability;
579 found->ts = tmp->ts;
Johannes Bergcd1658f2009-04-16 15:00:58 +0200580
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200581 /* Update IEs */
Johannes Berg9caf0362012-11-29 01:25:20 +0100582 if (rcu_access_pointer(tmp->pub.proberesp_ies)) {
583 const struct cfg80211_bss_ies *old;
Johannes Bergcd1658f2009-04-16 15:00:58 +0200584
Johannes Berg9caf0362012-11-29 01:25:20 +0100585 old = rcu_access_pointer(found->pub.proberesp_ies);
Johannes Bergcd1658f2009-04-16 15:00:58 +0200586
Johannes Berg9caf0362012-11-29 01:25:20 +0100587 rcu_assign_pointer(found->pub.proberesp_ies,
588 tmp->pub.proberesp_ies);
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200589 /* Override possible earlier Beacon frame IEs */
Johannes Berg9caf0362012-11-29 01:25:20 +0100590 rcu_assign_pointer(found->pub.ies,
591 tmp->pub.proberesp_ies);
592 if (old)
593 kfree_rcu((struct cfg80211_bss_ies *)old,
594 rcu_head);
595 } else if (rcu_access_pointer(tmp->pub.beacon_ies)) {
Johannes Berg9537f222013-02-01 01:19:48 +0100596 const struct cfg80211_bss_ies *old;
Johannes Berg915de2f2012-11-28 22:39:37 +0100597
Johannes Berg9caf0362012-11-29 01:25:20 +0100598 old = rcu_access_pointer(found->pub.beacon_ies);
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200599
Johannes Berg9caf0362012-11-29 01:25:20 +0100600 rcu_assign_pointer(found->pub.beacon_ies,
601 tmp->pub.beacon_ies);
Sven Neumann01123e22010-12-09 15:05:24 +0100602
603 /* Override IEs if they were from a beacon before */
Johannes Berg9537f222013-02-01 01:19:48 +0100604 if (old == rcu_access_pointer(found->pub.ies))
Johannes Berg9caf0362012-11-29 01:25:20 +0100605 rcu_assign_pointer(found->pub.ies,
606 tmp->pub.beacon_ies);
Johannes Bergcd1658f2009-04-16 15:00:58 +0200607
Johannes Berg9caf0362012-11-29 01:25:20 +0100608 if (old)
609 kfree_rcu((struct cfg80211_bss_ies *)old,
610 rcu_head);
611 }
Johannes Berg2a519312009-02-10 21:25:55 +0100612 } else {
Johannes Berg9caf0362012-11-29 01:25:20 +0100613 struct cfg80211_internal_bss *new;
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100614 struct cfg80211_internal_bss *hidden;
Johannes Berg9caf0362012-11-29 01:25:20 +0100615 struct cfg80211_bss_ies *ies;
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100616
617 /* First check if the beacon is a probe response from
618 * a hidden bss. If so, copy beacon ies (with nullified
619 * ssid) into the probe response bss entry (with real ssid).
620 * It is required basically for PSM implementation
621 * (probe responses do not contain tim ie) */
622
623 /* TODO: The code is not trying to update existing probe
624 * response bss entries when beacon ies are
625 * getting changed. */
Johannes Berg4593c4c2013-02-01 19:20:03 +0100626 hidden = rb_find_bss(dev, tmp, BSS_CMP_HIDE_ZLEN);
627 if (hidden) {
Johannes Berg9caf0362012-11-29 01:25:20 +0100628 copy_hidden_ies(tmp, hidden);
Johannes Berg4593c4c2013-02-01 19:20:03 +0100629 } else {
630 hidden = rb_find_bss(dev, tmp, BSS_CMP_HIDE_NUL);
631 if (hidden)
632 copy_hidden_ies(tmp, hidden);
633 }
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100634
Johannes Berg9caf0362012-11-29 01:25:20 +0100635 /*
636 * create a copy -- the "res" variable that is passed in
637 * is allocated on the stack since it's not needed in the
638 * more common case of an update
639 */
640 new = kzalloc(sizeof(*new) + dev->wiphy.bss_priv_size,
641 GFP_ATOMIC);
642 if (!new) {
643 ies = (void *)rcu_dereference(tmp->pub.beacon_ies);
644 if (ies)
645 kfree_rcu(ies, rcu_head);
646 ies = (void *)rcu_dereference(tmp->pub.proberesp_ies);
647 if (ies)
648 kfree_rcu(ies, rcu_head);
649 spin_unlock_bh(&dev->bss_lock);
650 return NULL;
651 }
652 memcpy(new, tmp, sizeof(*new));
653 kref_init(&new->ref);
654 list_add_tail(&new->list, &dev->bss_list);
655 rb_insert_bss(dev, new);
656 found = new;
Johannes Berg2a519312009-02-10 21:25:55 +0100657 }
658
659 dev->bss_generation++;
660 spin_unlock_bh(&dev->bss_lock);
661
Johannes Berg0532d4f2013-02-01 01:34:36 +0100662 bss_ref_get(found);
Johannes Berg2a519312009-02-10 21:25:55 +0100663 return found;
664}
665
Johannes Berg0172bb72012-11-23 14:23:30 +0100666static struct ieee80211_channel *
667cfg80211_get_bss_channel(struct wiphy *wiphy, const u8 *ie, size_t ielen,
668 struct ieee80211_channel *channel)
669{
670 const u8 *tmp;
671 u32 freq;
672 int channel_number = -1;
673
674 tmp = cfg80211_find_ie(WLAN_EID_DS_PARAMS, ie, ielen);
675 if (tmp && tmp[1] == 1) {
676 channel_number = tmp[2];
677 } else {
678 tmp = cfg80211_find_ie(WLAN_EID_HT_OPERATION, ie, ielen);
679 if (tmp && tmp[1] >= sizeof(struct ieee80211_ht_operation)) {
680 struct ieee80211_ht_operation *htop = (void *)(tmp + 2);
681
682 channel_number = htop->primary_chan;
683 }
684 }
685
686 if (channel_number < 0)
687 return channel;
688
689 freq = ieee80211_channel_to_frequency(channel_number, channel->band);
690 channel = ieee80211_get_channel(wiphy, freq);
691 if (!channel)
692 return NULL;
693 if (channel->flags & IEEE80211_CHAN_DISABLED)
694 return NULL;
695 return channel;
696}
697
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200698struct cfg80211_bss*
699cfg80211_inform_bss(struct wiphy *wiphy,
700 struct ieee80211_channel *channel,
Johannes Berg7b8bcff2012-03-13 13:57:04 +0100701 const u8 *bssid, u64 tsf, u16 capability,
702 u16 beacon_interval, const u8 *ie, size_t ielen,
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200703 s32 signal, gfp_t gfp)
704{
Johannes Berg9caf0362012-11-29 01:25:20 +0100705 struct cfg80211_bss_ies *ies;
706 struct cfg80211_internal_bss tmp = {}, *res;
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200707
708 if (WARN_ON(!wiphy))
709 return NULL;
710
Sujith22fe88d2010-05-13 10:34:08 +0530711 if (WARN_ON(wiphy->signal_type == CFG80211_SIGNAL_TYPE_UNSPEC &&
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200712 (signal < 0 || signal > 100)))
713 return NULL;
714
Johannes Berg0172bb72012-11-23 14:23:30 +0100715 channel = cfg80211_get_bss_channel(wiphy, ie, ielen, channel);
716 if (!channel)
717 return NULL;
718
Johannes Berg9caf0362012-11-29 01:25:20 +0100719 memcpy(tmp.pub.bssid, bssid, ETH_ALEN);
720 tmp.pub.channel = channel;
721 tmp.pub.signal = signal;
722 tmp.pub.tsf = tsf;
723 tmp.pub.beacon_interval = beacon_interval;
724 tmp.pub.capability = capability;
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200725 /*
726 * Since we do not know here whether the IEs are from a Beacon or Probe
727 * Response frame, we need to pick one of the options and only use it
728 * with the driver that does not provide the full Beacon/Probe Response
729 * frame. Use Beacon frame pointer to avoid indicating that this should
Johannes Berg50521aa2013-01-30 21:33:19 +0100730 * override the IEs pointer should we have received an earlier
Johannes Berg9caf0362012-11-29 01:25:20 +0100731 * indication of Probe Response data.
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200732 */
Johannes Berg9caf0362012-11-29 01:25:20 +0100733 ies = kmalloc(sizeof(*ies) + ielen, gfp);
734 if (!ies)
735 return NULL;
736 ies->len = ielen;
737 memcpy(ies->data, ie, ielen);
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200738
Johannes Berg9caf0362012-11-29 01:25:20 +0100739 rcu_assign_pointer(tmp.pub.beacon_ies, ies);
740 rcu_assign_pointer(tmp.pub.ies, ies);
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200741
Johannes Berg9caf0362012-11-29 01:25:20 +0100742 res = cfg80211_bss_update(wiphy_to_dev(wiphy), &tmp);
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200743 if (!res)
744 return NULL;
745
746 if (res->pub.capability & WLAN_CAPABILITY_ESS)
747 regulatory_hint_found_beacon(wiphy, channel, gfp);
748
Beni Lev4ee3e062012-08-27 12:49:39 +0300749 trace_cfg80211_return_bss(&res->pub);
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200750 /* cfg80211_bss_update gives us a referenced result */
751 return &res->pub;
752}
753EXPORT_SYMBOL(cfg80211_inform_bss);
754
Johannes Berg2a519312009-02-10 21:25:55 +0100755struct cfg80211_bss *
756cfg80211_inform_bss_frame(struct wiphy *wiphy,
757 struct ieee80211_channel *channel,
758 struct ieee80211_mgmt *mgmt, size_t len,
Johannes Berg77965c92009-02-18 18:45:06 +0100759 s32 signal, gfp_t gfp)
Johannes Berg2a519312009-02-10 21:25:55 +0100760{
Johannes Berg9caf0362012-11-29 01:25:20 +0100761 struct cfg80211_internal_bss tmp = {}, *res;
762 struct cfg80211_bss_ies *ies;
Johannes Berg2a519312009-02-10 21:25:55 +0100763 size_t ielen = len - offsetof(struct ieee80211_mgmt,
764 u.probe_resp.variable);
Mariusz Kozlowskibef9bac2011-03-26 19:26:55 +0100765
Johannes Berg0172bb72012-11-23 14:23:30 +0100766 BUILD_BUG_ON(offsetof(struct ieee80211_mgmt, u.probe_resp.variable) !=
767 offsetof(struct ieee80211_mgmt, u.beacon.variable));
768
Beni Lev4ee3e062012-08-27 12:49:39 +0300769 trace_cfg80211_inform_bss_frame(wiphy, channel, mgmt, len, signal);
770
Mariusz Kozlowskibef9bac2011-03-26 19:26:55 +0100771 if (WARN_ON(!mgmt))
772 return NULL;
773
774 if (WARN_ON(!wiphy))
775 return NULL;
Johannes Berg2a519312009-02-10 21:25:55 +0100776
Sujith22fe88d2010-05-13 10:34:08 +0530777 if (WARN_ON(wiphy->signal_type == CFG80211_SIGNAL_TYPE_UNSPEC &&
Hila Gonen768be592012-08-26 11:00:28 +0300778 (signal < 0 || signal > 100)))
Johannes Berg2a519312009-02-10 21:25:55 +0100779 return NULL;
780
Mariusz Kozlowskibef9bac2011-03-26 19:26:55 +0100781 if (WARN_ON(len < offsetof(struct ieee80211_mgmt, u.probe_resp.variable)))
Johannes Berg2a519312009-02-10 21:25:55 +0100782 return NULL;
783
Johannes Berg0172bb72012-11-23 14:23:30 +0100784 channel = cfg80211_get_bss_channel(wiphy, mgmt->u.beacon.variable,
785 ielen, channel);
786 if (!channel)
787 return NULL;
788
Johannes Berg9caf0362012-11-29 01:25:20 +0100789 ies = kmalloc(sizeof(*ies) + ielen, gfp);
790 if (!ies)
Johannes Berg2a519312009-02-10 21:25:55 +0100791 return NULL;
Johannes Berg9caf0362012-11-29 01:25:20 +0100792 ies->len = ielen;
793 memcpy(ies->data, mgmt->u.probe_resp.variable, ielen);
Johannes Berg2a519312009-02-10 21:25:55 +0100794
Johannes Berg9caf0362012-11-29 01:25:20 +0100795 if (ieee80211_is_probe_resp(mgmt->frame_control))
796 rcu_assign_pointer(tmp.pub.proberesp_ies, ies);
797 else
798 rcu_assign_pointer(tmp.pub.beacon_ies, ies);
799 rcu_assign_pointer(tmp.pub.ies, ies);
800
801 memcpy(tmp.pub.bssid, mgmt->bssid, ETH_ALEN);
802 tmp.pub.channel = channel;
803 tmp.pub.signal = signal;
804 tmp.pub.tsf = le64_to_cpu(mgmt->u.probe_resp.timestamp);
805 tmp.pub.beacon_interval = le16_to_cpu(mgmt->u.probe_resp.beacon_int);
806 tmp.pub.capability = le16_to_cpu(mgmt->u.probe_resp.capab_info);
Johannes Berg2a519312009-02-10 21:25:55 +0100807
Johannes Berg9caf0362012-11-29 01:25:20 +0100808 res = cfg80211_bss_update(wiphy_to_dev(wiphy), &tmp);
Johannes Berg2a519312009-02-10 21:25:55 +0100809 if (!res)
810 return NULL;
811
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500812 if (res->pub.capability & WLAN_CAPABILITY_ESS)
813 regulatory_hint_found_beacon(wiphy, channel, gfp);
814
Beni Lev4ee3e062012-08-27 12:49:39 +0300815 trace_cfg80211_return_bss(&res->pub);
Johannes Berg2a519312009-02-10 21:25:55 +0100816 /* cfg80211_bss_update gives us a referenced result */
817 return &res->pub;
818}
819EXPORT_SYMBOL(cfg80211_inform_bss_frame);
820
Johannes Berg4c0c0b72012-01-20 13:55:26 +0100821void cfg80211_ref_bss(struct cfg80211_bss *pub)
822{
823 struct cfg80211_internal_bss *bss;
824
825 if (!pub)
826 return;
827
828 bss = container_of(pub, struct cfg80211_internal_bss, pub);
Johannes Berg0532d4f2013-02-01 01:34:36 +0100829 bss_ref_get(bss);
Johannes Berg4c0c0b72012-01-20 13:55:26 +0100830}
831EXPORT_SYMBOL(cfg80211_ref_bss);
832
Johannes Berg2a519312009-02-10 21:25:55 +0100833void cfg80211_put_bss(struct cfg80211_bss *pub)
834{
835 struct cfg80211_internal_bss *bss;
836
837 if (!pub)
838 return;
839
840 bss = container_of(pub, struct cfg80211_internal_bss, pub);
Johannes Berg0532d4f2013-02-01 01:34:36 +0100841 bss_ref_put(bss);
Johannes Berg2a519312009-02-10 21:25:55 +0100842}
843EXPORT_SYMBOL(cfg80211_put_bss);
844
Johannes Bergd491af12009-02-10 21:25:58 +0100845void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *pub)
846{
847 struct cfg80211_registered_device *dev = wiphy_to_dev(wiphy);
848 struct cfg80211_internal_bss *bss;
849
850 if (WARN_ON(!pub))
851 return;
852
853 bss = container_of(pub, struct cfg80211_internal_bss, pub);
854
855 spin_lock_bh(&dev->bss_lock);
Johannes Berg32073902010-10-06 21:18:04 +0200856 if (!list_empty(&bss->list)) {
Juuso Oikarinen2b78ac92011-03-28 14:32:32 +0300857 __cfg80211_unlink_bss(dev, bss);
Johannes Berg32073902010-10-06 21:18:04 +0200858 dev->bss_generation++;
Johannes Berg32073902010-10-06 21:18:04 +0200859 }
Johannes Bergd491af12009-02-10 21:25:58 +0100860 spin_unlock_bh(&dev->bss_lock);
Johannes Bergd491af12009-02-10 21:25:58 +0100861}
862EXPORT_SYMBOL(cfg80211_unlink_bss);
863
Johannes Berg3d23e342009-09-29 23:27:28 +0200864#ifdef CONFIG_CFG80211_WEXT
Johannes Berg2a519312009-02-10 21:25:55 +0100865int cfg80211_wext_siwscan(struct net_device *dev,
866 struct iw_request_info *info,
867 union iwreq_data *wrqu, char *extra)
868{
869 struct cfg80211_registered_device *rdev;
870 struct wiphy *wiphy;
871 struct iw_scan_req *wreq = NULL;
Johannes Berg65486c8b2009-12-23 15:33:35 +0100872 struct cfg80211_scan_request *creq = NULL;
Johannes Berg2a519312009-02-10 21:25:55 +0100873 int i, err, n_channels = 0;
874 enum ieee80211_band band;
875
876 if (!netif_running(dev))
877 return -ENETDOWN;
878
Holger Schurigb2e3abd2009-09-09 13:09:54 +0200879 if (wrqu->data.length == sizeof(struct iw_scan_req))
880 wreq = (struct iw_scan_req *)extra;
881
Johannes Berg463d0182009-07-14 00:33:35 +0200882 rdev = cfg80211_get_dev_from_ifindex(dev_net(dev), dev->ifindex);
Johannes Berg2a519312009-02-10 21:25:55 +0100883
884 if (IS_ERR(rdev))
885 return PTR_ERR(rdev);
886
887 if (rdev->scan_req) {
888 err = -EBUSY;
889 goto out;
890 }
891
892 wiphy = &rdev->wiphy;
893
Holger Schurigb2e3abd2009-09-09 13:09:54 +0200894 /* Determine number of channels, needed to allocate creq */
895 if (wreq && wreq->num_channels)
896 n_channels = wreq->num_channels;
897 else {
898 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
899 if (wiphy->bands[band])
900 n_channels += wiphy->bands[band]->n_channels;
901 }
Johannes Berg2a519312009-02-10 21:25:55 +0100902
903 creq = kzalloc(sizeof(*creq) + sizeof(struct cfg80211_ssid) +
904 n_channels * sizeof(void *),
905 GFP_ATOMIC);
906 if (!creq) {
907 err = -ENOMEM;
908 goto out;
909 }
910
911 creq->wiphy = wiphy;
Johannes Bergfd014282012-06-18 19:17:03 +0200912 creq->wdev = dev->ieee80211_ptr;
Johannes Berg5ba63532009-08-07 17:54:07 +0200913 /* SSIDs come after channels */
914 creq->ssids = (void *)&creq->channels[n_channels];
Johannes Berg2a519312009-02-10 21:25:55 +0100915 creq->n_channels = n_channels;
916 creq->n_ssids = 1;
Sam Leffler15d60302012-10-11 21:03:34 -0700917 creq->scan_start = jiffies;
Johannes Berg2a519312009-02-10 21:25:55 +0100918
Holger Schurigb2e3abd2009-09-09 13:09:54 +0200919 /* translate "Scan on frequencies" request */
Johannes Berg2a519312009-02-10 21:25:55 +0100920 i = 0;
921 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
922 int j;
Johannes Berg584991d2009-11-02 13:32:03 +0100923
Johannes Berg2a519312009-02-10 21:25:55 +0100924 if (!wiphy->bands[band])
925 continue;
Johannes Berg584991d2009-11-02 13:32:03 +0100926
Johannes Berg2a519312009-02-10 21:25:55 +0100927 for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
Johannes Berg584991d2009-11-02 13:32:03 +0100928 /* ignore disabled channels */
929 if (wiphy->bands[band]->channels[j].flags &
930 IEEE80211_CHAN_DISABLED)
931 continue;
Holger Schurigb2e3abd2009-09-09 13:09:54 +0200932
933 /* If we have a wireless request structure and the
934 * wireless request specifies frequencies, then search
935 * for the matching hardware channel.
936 */
937 if (wreq && wreq->num_channels) {
938 int k;
939 int wiphy_freq = wiphy->bands[band]->channels[j].center_freq;
940 for (k = 0; k < wreq->num_channels; k++) {
Holger Schuriga4e7b732009-09-11 10:13:53 +0200941 int wext_freq = cfg80211_wext_freq(wiphy, &wreq->channel_list[k]);
Holger Schurigb2e3abd2009-09-09 13:09:54 +0200942 if (wext_freq == wiphy_freq)
943 goto wext_freq_found;
944 }
945 goto wext_freq_not_found;
946 }
947
948 wext_freq_found:
Johannes Berg2a519312009-02-10 21:25:55 +0100949 creq->channels[i] = &wiphy->bands[band]->channels[j];
950 i++;
Holger Schurigb2e3abd2009-09-09 13:09:54 +0200951 wext_freq_not_found: ;
Johannes Berg2a519312009-02-10 21:25:55 +0100952 }
953 }
Holger Schurig8862dc52009-09-11 10:13:55 +0200954 /* No channels found? */
955 if (!i) {
956 err = -EINVAL;
957 goto out;
958 }
Johannes Berg2a519312009-02-10 21:25:55 +0100959
Holger Schurigb2e3abd2009-09-09 13:09:54 +0200960 /* Set real number of channels specified in creq->channels[] */
961 creq->n_channels = i;
Johannes Berg2a519312009-02-10 21:25:55 +0100962
Holger Schurigb2e3abd2009-09-09 13:09:54 +0200963 /* translate "Scan for SSID" request */
964 if (wreq) {
Johannes Berg2a519312009-02-10 21:25:55 +0100965 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
Johannes Berg65486c8b2009-12-23 15:33:35 +0100966 if (wreq->essid_len > IEEE80211_MAX_SSID_LEN) {
967 err = -EINVAL;
968 goto out;
969 }
Johannes Berg2a519312009-02-10 21:25:55 +0100970 memcpy(creq->ssids[0].ssid, wreq->essid, wreq->essid_len);
971 creq->ssids[0].ssid_len = wreq->essid_len;
972 }
973 if (wreq->scan_type == IW_SCAN_TYPE_PASSIVE)
974 creq->n_ssids = 0;
975 }
976
Johannes Berg34850ab2011-07-18 18:08:35 +0200977 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
Johannes Berga401d2b2011-07-20 00:52:16 +0200978 if (wiphy->bands[i])
979 creq->rates[i] = (1 << wiphy->bands[i]->n_bitrates) - 1;
Johannes Berg34850ab2011-07-18 18:08:35 +0200980
Johannes Berg2a519312009-02-10 21:25:55 +0100981 rdev->scan_req = creq;
Hila Gonene35e4d22012-06-27 17:19:42 +0300982 err = rdev_scan(rdev, creq);
Johannes Berg2a519312009-02-10 21:25:55 +0100983 if (err) {
984 rdev->scan_req = NULL;
Johannes Berg65486c8b2009-12-23 15:33:35 +0100985 /* creq will be freed below */
Johannes Berg463d0182009-07-14 00:33:35 +0200986 } else {
Johannes Bergfd014282012-06-18 19:17:03 +0200987 nl80211_send_scan_start(rdev, dev->ieee80211_ptr);
Johannes Berg65486c8b2009-12-23 15:33:35 +0100988 /* creq now owned by driver */
989 creq = NULL;
Johannes Berg463d0182009-07-14 00:33:35 +0200990 dev_hold(dev);
991 }
Johannes Berg2a519312009-02-10 21:25:55 +0100992 out:
Johannes Berg65486c8b2009-12-23 15:33:35 +0100993 kfree(creq);
Johannes Berg4d0c8ae2009-07-07 03:56:09 +0200994 cfg80211_unlock_rdev(rdev);
Johannes Berg2a519312009-02-10 21:25:55 +0100995 return err;
996}
Johannes Bergba44cb72009-04-20 18:49:39 +0200997EXPORT_SYMBOL_GPL(cfg80211_wext_siwscan);
Johannes Berg2a519312009-02-10 21:25:55 +0100998
999static void ieee80211_scan_add_ies(struct iw_request_info *info,
Johannes Berg9caf0362012-11-29 01:25:20 +01001000 const struct cfg80211_bss_ies *ies,
Johannes Berg2a519312009-02-10 21:25:55 +01001001 char **current_ev, char *end_buf)
1002{
Johannes Berg9caf0362012-11-29 01:25:20 +01001003 const u8 *pos, *end, *next;
Johannes Berg2a519312009-02-10 21:25:55 +01001004 struct iw_event iwe;
1005
Johannes Berg9caf0362012-11-29 01:25:20 +01001006 if (!ies)
Johannes Berg2a519312009-02-10 21:25:55 +01001007 return;
1008
1009 /*
1010 * If needed, fragment the IEs buffer (at IE boundaries) into short
1011 * enough fragments to fit into IW_GENERIC_IE_MAX octet messages.
1012 */
Johannes Berg9caf0362012-11-29 01:25:20 +01001013 pos = ies->data;
1014 end = pos + ies->len;
Johannes Berg2a519312009-02-10 21:25:55 +01001015
1016 while (end - pos > IW_GENERIC_IE_MAX) {
1017 next = pos + 2 + pos[1];
1018 while (next + 2 + next[1] - pos < IW_GENERIC_IE_MAX)
1019 next = next + 2 + next[1];
1020
1021 memset(&iwe, 0, sizeof(iwe));
1022 iwe.cmd = IWEVGENIE;
1023 iwe.u.data.length = next - pos;
1024 *current_ev = iwe_stream_add_point(info, *current_ev,
Johannes Berg9caf0362012-11-29 01:25:20 +01001025 end_buf, &iwe,
1026 (void *)pos);
Johannes Berg2a519312009-02-10 21:25:55 +01001027
1028 pos = next;
1029 }
1030
1031 if (end > pos) {
1032 memset(&iwe, 0, sizeof(iwe));
1033 iwe.cmd = IWEVGENIE;
1034 iwe.u.data.length = end - pos;
1035 *current_ev = iwe_stream_add_point(info, *current_ev,
Johannes Berg9caf0362012-11-29 01:25:20 +01001036 end_buf, &iwe,
1037 (void *)pos);
Johannes Berg2a519312009-02-10 21:25:55 +01001038 }
1039}
1040
Dan Williamscb3a8ee2009-02-11 17:14:43 -05001041static inline unsigned int elapsed_jiffies_msecs(unsigned long start)
1042{
1043 unsigned long end = jiffies;
1044
1045 if (end >= start)
1046 return jiffies_to_msecs(end - start);
1047
1048 return jiffies_to_msecs(end + (MAX_JIFFY_OFFSET - start) + 1);
1049}
Johannes Berg2a519312009-02-10 21:25:55 +01001050
1051static char *
Johannes Berg77965c92009-02-18 18:45:06 +01001052ieee80211_bss(struct wiphy *wiphy, struct iw_request_info *info,
1053 struct cfg80211_internal_bss *bss, char *current_ev,
1054 char *end_buf)
Johannes Berg2a519312009-02-10 21:25:55 +01001055{
Johannes Berg9caf0362012-11-29 01:25:20 +01001056 const struct cfg80211_bss_ies *ies;
Johannes Berg2a519312009-02-10 21:25:55 +01001057 struct iw_event iwe;
Johannes Berg9caf0362012-11-29 01:25:20 +01001058 const u8 *ie;
Johannes Berg2a519312009-02-10 21:25:55 +01001059 u8 *buf, *cfg, *p;
Johannes Berg9caf0362012-11-29 01:25:20 +01001060 int rem, i, sig;
Johannes Berg2a519312009-02-10 21:25:55 +01001061 bool ismesh = false;
1062
1063 memset(&iwe, 0, sizeof(iwe));
1064 iwe.cmd = SIOCGIWAP;
1065 iwe.u.ap_addr.sa_family = ARPHRD_ETHER;
1066 memcpy(iwe.u.ap_addr.sa_data, bss->pub.bssid, ETH_ALEN);
1067 current_ev = iwe_stream_add_event(info, current_ev, end_buf, &iwe,
1068 IW_EV_ADDR_LEN);
1069
1070 memset(&iwe, 0, sizeof(iwe));
1071 iwe.cmd = SIOCGIWFREQ;
1072 iwe.u.freq.m = ieee80211_frequency_to_channel(bss->pub.channel->center_freq);
1073 iwe.u.freq.e = 0;
1074 current_ev = iwe_stream_add_event(info, current_ev, end_buf, &iwe,
1075 IW_EV_FREQ_LEN);
1076
1077 memset(&iwe, 0, sizeof(iwe));
1078 iwe.cmd = SIOCGIWFREQ;
1079 iwe.u.freq.m = bss->pub.channel->center_freq;
1080 iwe.u.freq.e = 6;
1081 current_ev = iwe_stream_add_event(info, current_ev, end_buf, &iwe,
1082 IW_EV_FREQ_LEN);
1083
Johannes Berg77965c92009-02-18 18:45:06 +01001084 if (wiphy->signal_type != CFG80211_SIGNAL_TYPE_NONE) {
Johannes Berg2a519312009-02-10 21:25:55 +01001085 memset(&iwe, 0, sizeof(iwe));
1086 iwe.cmd = IWEVQUAL;
1087 iwe.u.qual.updated = IW_QUAL_LEVEL_UPDATED |
1088 IW_QUAL_NOISE_INVALID |
Johannes Berga77b8552009-02-18 18:27:22 +01001089 IW_QUAL_QUAL_UPDATED;
Johannes Berg77965c92009-02-18 18:45:06 +01001090 switch (wiphy->signal_type) {
Johannes Berg2a519312009-02-10 21:25:55 +01001091 case CFG80211_SIGNAL_TYPE_MBM:
Johannes Berga77b8552009-02-18 18:27:22 +01001092 sig = bss->pub.signal / 100;
1093 iwe.u.qual.level = sig;
Johannes Berg2a519312009-02-10 21:25:55 +01001094 iwe.u.qual.updated |= IW_QUAL_DBM;
Johannes Berga77b8552009-02-18 18:27:22 +01001095 if (sig < -110) /* rather bad */
1096 sig = -110;
1097 else if (sig > -40) /* perfect */
1098 sig = -40;
1099 /* will give a range of 0 .. 70 */
1100 iwe.u.qual.qual = sig + 110;
Johannes Berg2a519312009-02-10 21:25:55 +01001101 break;
1102 case CFG80211_SIGNAL_TYPE_UNSPEC:
1103 iwe.u.qual.level = bss->pub.signal;
Johannes Berga77b8552009-02-18 18:27:22 +01001104 /* will give range 0 .. 100 */
1105 iwe.u.qual.qual = bss->pub.signal;
Johannes Berg2a519312009-02-10 21:25:55 +01001106 break;
1107 default:
1108 /* not reached */
1109 break;
1110 }
1111 current_ev = iwe_stream_add_event(info, current_ev, end_buf,
1112 &iwe, IW_EV_QUAL_LEN);
1113 }
1114
1115 memset(&iwe, 0, sizeof(iwe));
1116 iwe.cmd = SIOCGIWENCODE;
1117 if (bss->pub.capability & WLAN_CAPABILITY_PRIVACY)
1118 iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY;
1119 else
1120 iwe.u.data.flags = IW_ENCODE_DISABLED;
1121 iwe.u.data.length = 0;
1122 current_ev = iwe_stream_add_point(info, current_ev, end_buf,
1123 &iwe, "");
1124
Johannes Berg9caf0362012-11-29 01:25:20 +01001125 rcu_read_lock();
1126 ies = rcu_dereference(bss->pub.ies);
1127 if (ies) {
1128 rem = ies->len;
1129 ie = ies->data;
1130 } else {
1131 rem = 0;
1132 ie = NULL;
1133 }
1134
1135 while (ies && rem >= 2) {
Johannes Berg2a519312009-02-10 21:25:55 +01001136 /* invalid data */
1137 if (ie[1] > rem - 2)
1138 break;
1139
1140 switch (ie[0]) {
1141 case WLAN_EID_SSID:
1142 memset(&iwe, 0, sizeof(iwe));
1143 iwe.cmd = SIOCGIWESSID;
1144 iwe.u.data.length = ie[1];
1145 iwe.u.data.flags = 1;
1146 current_ev = iwe_stream_add_point(info, current_ev, end_buf,
Johannes Berg9caf0362012-11-29 01:25:20 +01001147 &iwe, (u8 *)ie + 2);
Johannes Berg2a519312009-02-10 21:25:55 +01001148 break;
1149 case WLAN_EID_MESH_ID:
1150 memset(&iwe, 0, sizeof(iwe));
1151 iwe.cmd = SIOCGIWESSID;
1152 iwe.u.data.length = ie[1];
1153 iwe.u.data.flags = 1;
1154 current_ev = iwe_stream_add_point(info, current_ev, end_buf,
Johannes Berg9caf0362012-11-29 01:25:20 +01001155 &iwe, (u8 *)ie + 2);
Johannes Berg2a519312009-02-10 21:25:55 +01001156 break;
1157 case WLAN_EID_MESH_CONFIG:
1158 ismesh = true;
Rui Paulo136cfa22009-11-18 18:40:00 +00001159 if (ie[1] != sizeof(struct ieee80211_meshconf_ie))
Johannes Berg2a519312009-02-10 21:25:55 +01001160 break;
1161 buf = kmalloc(50, GFP_ATOMIC);
1162 if (!buf)
1163 break;
Johannes Berg9caf0362012-11-29 01:25:20 +01001164 cfg = (u8 *)ie + 2;
Johannes Berg2a519312009-02-10 21:25:55 +01001165 memset(&iwe, 0, sizeof(iwe));
1166 iwe.cmd = IWEVCUSTOM;
Rui Paulo76aa5e72009-11-18 18:22:59 +00001167 sprintf(buf, "Mesh Network Path Selection Protocol ID: "
1168 "0x%02X", cfg[0]);
Johannes Berg2a519312009-02-10 21:25:55 +01001169 iwe.u.data.length = strlen(buf);
1170 current_ev = iwe_stream_add_point(info, current_ev,
1171 end_buf,
1172 &iwe, buf);
Rui Paulo76aa5e72009-11-18 18:22:59 +00001173 sprintf(buf, "Path Selection Metric ID: 0x%02X",
1174 cfg[1]);
Johannes Berg2a519312009-02-10 21:25:55 +01001175 iwe.u.data.length = strlen(buf);
1176 current_ev = iwe_stream_add_point(info, current_ev,
1177 end_buf,
1178 &iwe, buf);
Rui Paulo76aa5e72009-11-18 18:22:59 +00001179 sprintf(buf, "Congestion Control Mode ID: 0x%02X",
1180 cfg[2]);
Johannes Berg2a519312009-02-10 21:25:55 +01001181 iwe.u.data.length = strlen(buf);
1182 current_ev = iwe_stream_add_point(info, current_ev,
1183 end_buf,
1184 &iwe, buf);
Rui Paulo76aa5e72009-11-18 18:22:59 +00001185 sprintf(buf, "Synchronization ID: 0x%02X", cfg[3]);
Johannes Berg2a519312009-02-10 21:25:55 +01001186 iwe.u.data.length = strlen(buf);
1187 current_ev = iwe_stream_add_point(info, current_ev,
1188 end_buf,
1189 &iwe, buf);
Rui Paulo76aa5e72009-11-18 18:22:59 +00001190 sprintf(buf, "Authentication ID: 0x%02X", cfg[4]);
1191 iwe.u.data.length = strlen(buf);
1192 current_ev = iwe_stream_add_point(info, current_ev,
1193 end_buf,
1194 &iwe, buf);
1195 sprintf(buf, "Formation Info: 0x%02X", cfg[5]);
1196 iwe.u.data.length = strlen(buf);
1197 current_ev = iwe_stream_add_point(info, current_ev,
1198 end_buf,
1199 &iwe, buf);
1200 sprintf(buf, "Capabilities: 0x%02X", cfg[6]);
Johannes Berg2a519312009-02-10 21:25:55 +01001201 iwe.u.data.length = strlen(buf);
1202 current_ev = iwe_stream_add_point(info, current_ev,
1203 end_buf,
1204 &iwe, buf);
1205 kfree(buf);
1206 break;
1207 case WLAN_EID_SUPP_RATES:
1208 case WLAN_EID_EXT_SUPP_RATES:
1209 /* display all supported rates in readable format */
1210 p = current_ev + iwe_stream_lcp_len(info);
1211
1212 memset(&iwe, 0, sizeof(iwe));
1213 iwe.cmd = SIOCGIWRATE;
1214 /* Those two flags are ignored... */
1215 iwe.u.bitrate.fixed = iwe.u.bitrate.disabled = 0;
1216
1217 for (i = 0; i < ie[1]; i++) {
1218 iwe.u.bitrate.value =
1219 ((ie[i + 2] & 0x7f) * 500000);
1220 p = iwe_stream_add_value(info, current_ev, p,
1221 end_buf, &iwe, IW_EV_PARAM_LEN);
1222 }
1223 current_ev = p;
1224 break;
1225 }
1226 rem -= ie[1] + 2;
1227 ie += ie[1] + 2;
1228 }
1229
Joe Perchesf64f9e72009-11-29 16:55:45 -08001230 if (bss->pub.capability & (WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_IBSS) ||
1231 ismesh) {
Johannes Berg2a519312009-02-10 21:25:55 +01001232 memset(&iwe, 0, sizeof(iwe));
1233 iwe.cmd = SIOCGIWMODE;
1234 if (ismesh)
1235 iwe.u.mode = IW_MODE_MESH;
1236 else if (bss->pub.capability & WLAN_CAPABILITY_ESS)
1237 iwe.u.mode = IW_MODE_MASTER;
1238 else
1239 iwe.u.mode = IW_MODE_ADHOC;
1240 current_ev = iwe_stream_add_event(info, current_ev, end_buf,
1241 &iwe, IW_EV_UINT_LEN);
1242 }
1243
1244 buf = kmalloc(30, GFP_ATOMIC);
1245 if (buf) {
1246 memset(&iwe, 0, sizeof(iwe));
1247 iwe.cmd = IWEVCUSTOM;
1248 sprintf(buf, "tsf=%016llx", (unsigned long long)(bss->pub.tsf));
1249 iwe.u.data.length = strlen(buf);
1250 current_ev = iwe_stream_add_point(info, current_ev, end_buf,
1251 &iwe, buf);
1252 memset(&iwe, 0, sizeof(iwe));
1253 iwe.cmd = IWEVCUSTOM;
Dan Williamscb3a8ee2009-02-11 17:14:43 -05001254 sprintf(buf, " Last beacon: %ums ago",
1255 elapsed_jiffies_msecs(bss->ts));
Johannes Berg2a519312009-02-10 21:25:55 +01001256 iwe.u.data.length = strlen(buf);
1257 current_ev = iwe_stream_add_point(info, current_ev,
1258 end_buf, &iwe, buf);
1259 kfree(buf);
1260 }
1261
Johannes Berg9caf0362012-11-29 01:25:20 +01001262 ieee80211_scan_add_ies(info, ies, &current_ev, end_buf);
1263 rcu_read_unlock();
Johannes Berg2a519312009-02-10 21:25:55 +01001264
1265 return current_ev;
1266}
1267
1268
1269static int ieee80211_scan_results(struct cfg80211_registered_device *dev,
1270 struct iw_request_info *info,
1271 char *buf, size_t len)
1272{
1273 char *current_ev = buf;
1274 char *end_buf = buf + len;
1275 struct cfg80211_internal_bss *bss;
1276
1277 spin_lock_bh(&dev->bss_lock);
1278 cfg80211_bss_expire(dev);
1279
1280 list_for_each_entry(bss, &dev->bss_list, list) {
1281 if (buf + len - current_ev <= IW_EV_ADDR_LEN) {
1282 spin_unlock_bh(&dev->bss_lock);
1283 return -E2BIG;
1284 }
Johannes Berg77965c92009-02-18 18:45:06 +01001285 current_ev = ieee80211_bss(&dev->wiphy, info, bss,
1286 current_ev, end_buf);
Johannes Berg2a519312009-02-10 21:25:55 +01001287 }
1288 spin_unlock_bh(&dev->bss_lock);
1289 return current_ev - buf;
1290}
1291
1292
1293int cfg80211_wext_giwscan(struct net_device *dev,
1294 struct iw_request_info *info,
1295 struct iw_point *data, char *extra)
1296{
1297 struct cfg80211_registered_device *rdev;
1298 int res;
1299
1300 if (!netif_running(dev))
1301 return -ENETDOWN;
1302
Johannes Berg463d0182009-07-14 00:33:35 +02001303 rdev = cfg80211_get_dev_from_ifindex(dev_net(dev), dev->ifindex);
Johannes Berg2a519312009-02-10 21:25:55 +01001304
1305 if (IS_ERR(rdev))
1306 return PTR_ERR(rdev);
1307
1308 if (rdev->scan_req) {
1309 res = -EAGAIN;
1310 goto out;
1311 }
1312
1313 res = ieee80211_scan_results(rdev, info, extra, data->length);
1314 data->length = 0;
1315 if (res >= 0) {
1316 data->length = res;
1317 res = 0;
1318 }
1319
1320 out:
Johannes Berg4d0c8ae2009-07-07 03:56:09 +02001321 cfg80211_unlock_rdev(rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01001322 return res;
1323}
Johannes Bergba44cb72009-04-20 18:49:39 +02001324EXPORT_SYMBOL_GPL(cfg80211_wext_giwscan);
Johannes Berg2a519312009-02-10 21:25:55 +01001325#endif