blob: 70faadf16a3265b2ba067160672c1b7a117eecf1 [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 Berg262eb9b2011-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"
Johannes Berg2a519312009-02-10 21:25:55 +010020
Helmut Schaa09f97e02009-07-23 12:14:29 +020021#define IEEE80211_SCAN_RESULT_EXPIRE (15 * HZ)
Johannes Berg2a519312009-02-10 21:25:55 +010022
Johannes Berg01a0ac42009-08-20 21:36:16 +020023void ___cfg80211_scan_done(struct cfg80211_registered_device *rdev, bool leak)
Johannes Berg2a519312009-02-10 21:25:55 +010024{
Johannes Berg667503d2009-07-07 03:56:11 +020025 struct cfg80211_scan_request *request;
Johannes Berg2a519312009-02-10 21:25:55 +010026 struct net_device *dev;
Johannes Berg3d23e342009-09-29 23:27:28 +020027#ifdef CONFIG_CFG80211_WEXT
Johannes Berg2a519312009-02-10 21:25:55 +010028 union iwreq_data wrqu;
29#endif
30
Johannes Berg01a0ac42009-08-20 21:36:16 +020031 ASSERT_RDEV_LOCK(rdev);
32
Johannes Berg667503d2009-07-07 03:56:11 +020033 request = rdev->scan_req;
34
Johannes Berg01a0ac42009-08-20 21:36:16 +020035 if (!request)
36 return;
37
Johannes Berg463d0182009-07-14 00:33:35 +020038 dev = request->dev;
Johannes Berg2a519312009-02-10 21:25:55 +010039
Johannes Berg6829c872009-07-02 09:13:27 +020040 /*
41 * This must be before sending the other events!
42 * Otherwise, wpa_supplicant gets completely confused with
43 * wext events.
44 */
45 cfg80211_sme_scan_done(dev);
46
Johannes Berg667503d2009-07-07 03:56:11 +020047 if (request->aborted)
Johannes Berg36e6fea2009-08-12 22:21:21 +020048 nl80211_send_scan_aborted(rdev, dev);
Johannes Berg2a519312009-02-10 21:25:55 +010049 else
Johannes Berg36e6fea2009-08-12 22:21:21 +020050 nl80211_send_scan_done(rdev, dev);
Johannes Berg2a519312009-02-10 21:25:55 +010051
Johannes Berg3d23e342009-09-29 23:27:28 +020052#ifdef CONFIG_CFG80211_WEXT
Johannes Berg667503d2009-07-07 03:56:11 +020053 if (!request->aborted) {
Johannes Berg2a519312009-02-10 21:25:55 +010054 memset(&wrqu, 0, sizeof(wrqu));
55
56 wireless_send_event(dev, SIOCGIWSCAN, &wrqu, NULL);
57 }
58#endif
59
60 dev_put(dev);
61
Johannes Berg36e6fea2009-08-12 22:21:21 +020062 rdev->scan_req = NULL;
Johannes Berg01a0ac42009-08-20 21:36:16 +020063
64 /*
65 * OK. If this is invoked with "leak" then we can't
66 * free this ... but we've cleaned it up anyway. The
67 * driver failed to call the scan_done callback, so
68 * all bets are off, it might still be trying to use
69 * the scan request or not ... if it accesses the dev
70 * in there (it shouldn't anyway) then it may crash.
71 */
72 if (!leak)
73 kfree(request);
Johannes Berg2a519312009-02-10 21:25:55 +010074}
Johannes Berg667503d2009-07-07 03:56:11 +020075
Johannes Berg36e6fea2009-08-12 22:21:21 +020076void __cfg80211_scan_done(struct work_struct *wk)
77{
78 struct cfg80211_registered_device *rdev;
79
80 rdev = container_of(wk, struct cfg80211_registered_device,
81 scan_done_wk);
82
83 cfg80211_lock_rdev(rdev);
Johannes Berg01a0ac42009-08-20 21:36:16 +020084 ___cfg80211_scan_done(rdev, false);
Johannes Berg36e6fea2009-08-12 22:21:21 +020085 cfg80211_unlock_rdev(rdev);
86}
87
Johannes Berg667503d2009-07-07 03:56:11 +020088void cfg80211_scan_done(struct cfg80211_scan_request *request, bool aborted)
89{
Johannes Berg667503d2009-07-07 03:56:11 +020090 WARN_ON(request != wiphy_to_dev(request->wiphy)->scan_req);
91
92 request->aborted = aborted;
Alban Browaeyse60d7442009-11-25 15:13:00 +010093 queue_work(cfg80211_wq, &wiphy_to_dev(request->wiphy)->scan_done_wk);
Johannes Berg667503d2009-07-07 03:56:11 +020094}
Johannes Berg2a519312009-02-10 21:25:55 +010095EXPORT_SYMBOL(cfg80211_scan_done);
96
Luciano Coelho807f8a82011-05-11 17:09:35 +030097void __cfg80211_sched_scan_results(struct work_struct *wk)
98{
99 struct cfg80211_registered_device *rdev;
100
101 rdev = container_of(wk, struct cfg80211_registered_device,
102 sched_scan_results_wk);
103
Luciano Coelhoc10841c2011-06-30 08:32:41 +0300104 mutex_lock(&rdev->sched_scan_mtx);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300105
106 /* we don't have sched_scan_req anymore if the scan is stopping */
107 if (rdev->sched_scan_req)
108 nl80211_send_sched_scan_results(rdev,
109 rdev->sched_scan_req->dev);
110
Luciano Coelhoc10841c2011-06-30 08:32:41 +0300111 mutex_unlock(&rdev->sched_scan_mtx);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300112}
113
114void cfg80211_sched_scan_results(struct wiphy *wiphy)
115{
116 /* ignore if we're not scanning */
117 if (wiphy_to_dev(wiphy)->sched_scan_req)
118 queue_work(cfg80211_wq,
119 &wiphy_to_dev(wiphy)->sched_scan_results_wk);
120}
121EXPORT_SYMBOL(cfg80211_sched_scan_results);
122
Luciano Coelho85a99942011-05-12 16:28:29 +0300123void cfg80211_sched_scan_stopped(struct wiphy *wiphy)
Luciano Coelho807f8a82011-05-11 17:09:35 +0300124{
Luciano Coelho85a99942011-05-12 16:28:29 +0300125 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300126
Luciano Coelhoc10841c2011-06-30 08:32:41 +0300127 mutex_lock(&rdev->sched_scan_mtx);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300128 __cfg80211_stop_sched_scan(rdev, true);
Luciano Coelhoc10841c2011-06-30 08:32:41 +0300129 mutex_unlock(&rdev->sched_scan_mtx);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300130}
Luciano Coelho807f8a82011-05-11 17:09:35 +0300131EXPORT_SYMBOL(cfg80211_sched_scan_stopped);
132
133int __cfg80211_stop_sched_scan(struct cfg80211_registered_device *rdev,
134 bool driver_initiated)
135{
Luciano Coelho807f8a82011-05-11 17:09:35 +0300136 struct net_device *dev;
137
Luciano Coelhoc10841c2011-06-30 08:32:41 +0300138 lockdep_assert_held(&rdev->sched_scan_mtx);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300139
140 if (!rdev->sched_scan_req)
Luciano Coelho1a84ff72011-07-08 11:16:16 +0300141 return -ENOENT;
Luciano Coelho807f8a82011-05-11 17:09:35 +0300142
143 dev = rdev->sched_scan_req->dev;
144
Luciano Coelho85a99942011-05-12 16:28:29 +0300145 if (!driver_initiated) {
Jesper Juhl3b4670f2011-06-29 22:49:33 +0200146 int err = rdev->ops->sched_scan_stop(&rdev->wiphy, dev);
Luciano Coelho85a99942011-05-12 16:28:29 +0300147 if (err)
148 return err;
149 }
Luciano Coelho807f8a82011-05-11 17:09:35 +0300150
151 nl80211_send_sched_scan(rdev, dev, NL80211_CMD_SCHED_SCAN_STOPPED);
152
153 kfree(rdev->sched_scan_req);
154 rdev->sched_scan_req = NULL;
155
Jesper Juhl3b4670f2011-06-29 22:49:33 +0200156 return 0;
Luciano Coelho807f8a82011-05-11 17:09:35 +0300157}
158
Johannes Berg2a519312009-02-10 21:25:55 +0100159static void bss_release(struct kref *ref)
160{
161 struct cfg80211_internal_bss *bss;
162
163 bss = container_of(ref, struct cfg80211_internal_bss, ref);
Johannes Berg78c1c7e2009-02-10 21:25:57 +0100164 if (bss->pub.free_priv)
165 bss->pub.free_priv(&bss->pub);
Johannes Bergcd1658f2009-04-16 15:00:58 +0200166
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200167 if (bss->beacon_ies_allocated)
168 kfree(bss->pub.beacon_ies);
169 if (bss->proberesp_ies_allocated)
170 kfree(bss->pub.proberesp_ies);
Johannes Bergcd1658f2009-04-16 15:00:58 +0200171
Johannes Berg19957bb2009-07-02 17:20:43 +0200172 BUG_ON(atomic_read(&bss->hold));
173
Johannes Berg2a519312009-02-10 21:25:55 +0100174 kfree(bss);
175}
176
177/* must hold dev->bss_lock! */
Dan Williamscb3a8ee2009-02-11 17:14:43 -0500178void cfg80211_bss_age(struct cfg80211_registered_device *dev,
179 unsigned long age_secs)
180{
181 struct cfg80211_internal_bss *bss;
182 unsigned long age_jiffies = msecs_to_jiffies(age_secs * MSEC_PER_SEC);
183
184 list_for_each_entry(bss, &dev->bss_list, list) {
185 bss->ts -= age_jiffies;
186 }
187}
188
189/* must hold dev->bss_lock! */
Juuso Oikarinen2b78ac92011-03-28 14:32:32 +0300190static void __cfg80211_unlink_bss(struct cfg80211_registered_device *dev,
191 struct cfg80211_internal_bss *bss)
192{
193 list_del_init(&bss->list);
194 rb_erase(&bss->rbn, &dev->bss_tree);
195 kref_put(&bss->ref, bss_release);
196}
197
198/* must hold dev->bss_lock! */
Johannes Berg2a519312009-02-10 21:25:55 +0100199void cfg80211_bss_expire(struct cfg80211_registered_device *dev)
200{
201 struct cfg80211_internal_bss *bss, *tmp;
202 bool expired = false;
203
204 list_for_each_entry_safe(bss, tmp, &dev->bss_list, list) {
Johannes Berg19957bb2009-07-02 17:20:43 +0200205 if (atomic_read(&bss->hold))
206 continue;
207 if (!time_after(jiffies, bss->ts + IEEE80211_SCAN_RESULT_EXPIRE))
Johannes Berg2a519312009-02-10 21:25:55 +0100208 continue;
Juuso Oikarinen2b78ac92011-03-28 14:32:32 +0300209 __cfg80211_unlink_bss(dev, bss);
Johannes Berg2a519312009-02-10 21:25:55 +0100210 expired = true;
211 }
212
213 if (expired)
214 dev->bss_generation++;
215}
216
Johannes Bergc21dbf92010-01-26 14:15:46 +0100217const u8 *cfg80211_find_ie(u8 eid, const u8 *ies, int len)
Johannes Berg2a519312009-02-10 21:25:55 +0100218{
Johannes Bergc21dbf92010-01-26 14:15:46 +0100219 while (len > 2 && ies[0] != eid) {
Johannes Berg2a519312009-02-10 21:25:55 +0100220 len -= ies[1] + 2;
221 ies += ies[1] + 2;
222 }
223 if (len < 2)
224 return NULL;
225 if (len < 2 + ies[1])
226 return NULL;
227 return ies;
228}
Johannes Bergc21dbf92010-01-26 14:15:46 +0100229EXPORT_SYMBOL(cfg80211_find_ie);
Johannes Berg2a519312009-02-10 21:25:55 +0100230
Eliad Peller0c28ec52011-09-15 11:53:01 +0300231const u8 *cfg80211_find_vendor_ie(unsigned int oui, u8 oui_type,
232 const u8 *ies, int len)
233{
234 struct ieee80211_vendor_ie *ie;
235 const u8 *pos = ies, *end = ies + len;
236 int ie_oui;
237
238 while (pos < end) {
239 pos = cfg80211_find_ie(WLAN_EID_VENDOR_SPECIFIC, pos,
240 end - pos);
241 if (!pos)
242 return NULL;
243
244 if (end - pos < sizeof(*ie))
245 return NULL;
246
247 ie = (struct ieee80211_vendor_ie *)pos;
248 ie_oui = ie->oui[0] << 16 | ie->oui[1] << 8 | ie->oui[2];
249 if (ie_oui == oui && ie->oui_type == oui_type)
250 return pos;
251
252 pos += 2 + ie->len;
253 }
254 return NULL;
255}
256EXPORT_SYMBOL(cfg80211_find_vendor_ie);
257
Johannes Berg2a519312009-02-10 21:25:55 +0100258static int cmp_ies(u8 num, u8 *ies1, size_t len1, u8 *ies2, size_t len2)
259{
Johannes Bergc21dbf92010-01-26 14:15:46 +0100260 const u8 *ie1 = cfg80211_find_ie(num, ies1, len1);
261 const u8 *ie2 = cfg80211_find_ie(num, ies2, len2);
Johannes Berg2a519312009-02-10 21:25:55 +0100262
Johannes Berg3b6ef632011-11-04 11:01:46 +0100263 /* equal if both missing */
Johannes Berg2a519312009-02-10 21:25:55 +0100264 if (!ie1 && !ie2)
265 return 0;
Johannes Berg3b6ef632011-11-04 11:01:46 +0100266 /* sort missing IE before (left of) present IE */
267 if (!ie1)
Johannes Berg2a519312009-02-10 21:25:55 +0100268 return -1;
Johannes Berg3b6ef632011-11-04 11:01:46 +0100269 if (!ie2)
270 return 1;
Johannes Berg2a519312009-02-10 21:25:55 +0100271
Johannes Berg3b6ef632011-11-04 11:01:46 +0100272 /* sort by length first, then by contents */
273 if (ie1[1] != ie2[1])
Johannes Berg2a519312009-02-10 21:25:55 +0100274 return ie2[1] - ie1[1];
Johannes Berg3b6ef632011-11-04 11:01:46 +0100275 return memcmp(ie1 + 2, ie2 + 2, ie1[1]);
Johannes Berg2a519312009-02-10 21:25:55 +0100276}
277
278static bool is_bss(struct cfg80211_bss *a,
279 const u8 *bssid,
280 const u8 *ssid, size_t ssid_len)
281{
282 const u8 *ssidie;
283
Johannes Berg79420f02009-02-10 21:25:59 +0100284 if (bssid && compare_ether_addr(a->bssid, bssid))
Johannes Berg2a519312009-02-10 21:25:55 +0100285 return false;
286
Johannes Berg79420f02009-02-10 21:25:59 +0100287 if (!ssid)
288 return true;
289
Johannes Bergc21dbf92010-01-26 14:15:46 +0100290 ssidie = cfg80211_find_ie(WLAN_EID_SSID,
291 a->information_elements,
292 a->len_information_elements);
Johannes Berg2a519312009-02-10 21:25:55 +0100293 if (!ssidie)
294 return false;
295 if (ssidie[1] != ssid_len)
296 return false;
297 return memcmp(ssidie + 2, ssid, ssid_len) == 0;
298}
299
Eliad Peller333ba732011-05-29 15:53:20 +0300300static bool is_mesh_bss(struct cfg80211_bss *a)
301{
302 const u8 *ie;
303
304 if (!WLAN_CAPABILITY_IS_STA_BSS(a->capability))
305 return false;
306
307 ie = cfg80211_find_ie(WLAN_EID_MESH_ID,
308 a->information_elements,
309 a->len_information_elements);
310 if (!ie)
311 return false;
312
313 ie = cfg80211_find_ie(WLAN_EID_MESH_CONFIG,
314 a->information_elements,
315 a->len_information_elements);
316 if (!ie)
317 return false;
318
319 return true;
320}
321
Johannes Berg2a519312009-02-10 21:25:55 +0100322static bool is_mesh(struct cfg80211_bss *a,
323 const u8 *meshid, size_t meshidlen,
324 const u8 *meshcfg)
325{
326 const u8 *ie;
327
Eliad Peller333ba732011-05-29 15:53:20 +0300328 if (!WLAN_CAPABILITY_IS_STA_BSS(a->capability))
Johannes Berg2a519312009-02-10 21:25:55 +0100329 return false;
330
Johannes Bergc21dbf92010-01-26 14:15:46 +0100331 ie = cfg80211_find_ie(WLAN_EID_MESH_ID,
332 a->information_elements,
333 a->len_information_elements);
Johannes Berg2a519312009-02-10 21:25:55 +0100334 if (!ie)
335 return false;
336 if (ie[1] != meshidlen)
337 return false;
338 if (memcmp(ie + 2, meshid, meshidlen))
339 return false;
340
Johannes Bergc21dbf92010-01-26 14:15:46 +0100341 ie = cfg80211_find_ie(WLAN_EID_MESH_CONFIG,
342 a->information_elements,
343 a->len_information_elements);
Johannes Bergcd3468b2009-07-29 22:07:44 +0200344 if (!ie)
345 return false;
Rui Paulo136cfa22009-11-18 18:40:00 +0000346 if (ie[1] != sizeof(struct ieee80211_meshconf_ie))
Johannes Berg2a519312009-02-10 21:25:55 +0100347 return false;
348
349 /*
350 * Ignore mesh capability (last two bytes of the IE) when
351 * comparing since that may differ between stations taking
352 * part in the same mesh.
353 */
Rui Paulo136cfa22009-11-18 18:40:00 +0000354 return memcmp(ie + 2, meshcfg,
355 sizeof(struct ieee80211_meshconf_ie) - 2) == 0;
Johannes Berg2a519312009-02-10 21:25:55 +0100356}
357
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100358static int cmp_bss_core(struct cfg80211_bss *a,
359 struct cfg80211_bss *b)
Johannes Berg2a519312009-02-10 21:25:55 +0100360{
361 int r;
362
363 if (a->channel != b->channel)
364 return b->channel->center_freq - a->channel->center_freq;
365
Eliad Peller333ba732011-05-29 15:53:20 +0300366 if (is_mesh_bss(a) && is_mesh_bss(b)) {
Johannes Berg2a519312009-02-10 21:25:55 +0100367 r = cmp_ies(WLAN_EID_MESH_ID,
368 a->information_elements,
369 a->len_information_elements,
370 b->information_elements,
371 b->len_information_elements);
372 if (r)
373 return r;
374 return cmp_ies(WLAN_EID_MESH_CONFIG,
375 a->information_elements,
376 a->len_information_elements,
377 b->information_elements,
378 b->len_information_elements);
379 }
380
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100381 return memcmp(a->bssid, b->bssid, ETH_ALEN);
382}
383
384static int cmp_bss(struct cfg80211_bss *a,
385 struct cfg80211_bss *b)
386{
387 int r;
388
389 r = cmp_bss_core(a, b);
Javier Cardona0a35d362011-05-04 10:24:56 -0700390 if (r)
391 return r;
392
Johannes Berg2a519312009-02-10 21:25:55 +0100393 return cmp_ies(WLAN_EID_SSID,
394 a->information_elements,
395 a->len_information_elements,
396 b->information_elements,
397 b->len_information_elements);
398}
399
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100400static int cmp_hidden_bss(struct cfg80211_bss *a,
401 struct cfg80211_bss *b)
402{
403 const u8 *ie1;
404 const u8 *ie2;
405 int i;
406 int r;
407
408 r = cmp_bss_core(a, b);
409 if (r)
410 return r;
411
412 ie1 = cfg80211_find_ie(WLAN_EID_SSID,
413 a->information_elements,
414 a->len_information_elements);
415 ie2 = cfg80211_find_ie(WLAN_EID_SSID,
416 b->information_elements,
417 b->len_information_elements);
418
419 /* Key comparator must use same algorithm in any rb-tree
420 * search function (order is important), otherwise ordering
421 * of items in the tree is broken and search gives incorrect
422 * results. This code uses same order as cmp_ies() does. */
423
424 /* sort missing IE before (left of) present IE */
425 if (!ie1)
426 return -1;
427 if (!ie2)
428 return 1;
429
430 /* zero-size SSID is used as an indication of the hidden bss */
431 if (!ie2[1])
432 return 0;
433
434 /* sort by length first, then by contents */
435 if (ie1[1] != ie2[1])
436 return ie2[1] - ie1[1];
437
438 /* zeroed SSID ie is another indication of a hidden bss */
439 for (i = 0; i < ie2[1]; i++)
440 if (ie2[i + 2])
441 return -1;
442
443 return 0;
444}
445
Johannes Berg2a519312009-02-10 21:25:55 +0100446struct cfg80211_bss *cfg80211_get_bss(struct wiphy *wiphy,
447 struct ieee80211_channel *channel,
448 const u8 *bssid,
Johannes Berg79420f02009-02-10 21:25:59 +0100449 const u8 *ssid, size_t ssid_len,
450 u16 capa_mask, u16 capa_val)
Johannes Berg2a519312009-02-10 21:25:55 +0100451{
452 struct cfg80211_registered_device *dev = wiphy_to_dev(wiphy);
453 struct cfg80211_internal_bss *bss, *res = NULL;
Johannes Bergccb6c132010-07-13 10:55:38 +0200454 unsigned long now = jiffies;
Johannes Berg2a519312009-02-10 21:25:55 +0100455
456 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;
469 kref_get(&res->ref);
470 break;
471 }
472 }
473
474 spin_unlock_bh(&dev->bss_lock);
475 if (!res)
476 return NULL;
477 return &res->pub;
478}
479EXPORT_SYMBOL(cfg80211_get_bss);
480
481struct cfg80211_bss *cfg80211_get_mesh(struct wiphy *wiphy,
482 struct ieee80211_channel *channel,
483 const u8 *meshid, size_t meshidlen,
484 const u8 *meshcfg)
485{
486 struct cfg80211_registered_device *dev = wiphy_to_dev(wiphy);
487 struct cfg80211_internal_bss *bss, *res = NULL;
488
489 spin_lock_bh(&dev->bss_lock);
490
491 list_for_each_entry(bss, &dev->bss_list, list) {
492 if (channel && bss->pub.channel != channel)
493 continue;
494 if (is_mesh(&bss->pub, meshid, meshidlen, meshcfg)) {
495 res = bss;
496 kref_get(&res->ref);
497 break;
498 }
499 }
500
501 spin_unlock_bh(&dev->bss_lock);
502 if (!res)
503 return NULL;
504 return &res->pub;
505}
506EXPORT_SYMBOL(cfg80211_get_mesh);
507
508
509static void rb_insert_bss(struct cfg80211_registered_device *dev,
510 struct cfg80211_internal_bss *bss)
511{
512 struct rb_node **p = &dev->bss_tree.rb_node;
513 struct rb_node *parent = NULL;
514 struct cfg80211_internal_bss *tbss;
515 int cmp;
516
517 while (*p) {
518 parent = *p;
519 tbss = rb_entry(parent, struct cfg80211_internal_bss, rbn);
520
521 cmp = cmp_bss(&bss->pub, &tbss->pub);
522
523 if (WARN_ON(!cmp)) {
524 /* will sort of leak this BSS */
525 return;
526 }
527
528 if (cmp < 0)
529 p = &(*p)->rb_left;
530 else
531 p = &(*p)->rb_right;
532 }
533
534 rb_link_node(&bss->rbn, parent, p);
535 rb_insert_color(&bss->rbn, &dev->bss_tree);
536}
537
538static struct cfg80211_internal_bss *
539rb_find_bss(struct cfg80211_registered_device *dev,
540 struct cfg80211_internal_bss *res)
541{
542 struct rb_node *n = dev->bss_tree.rb_node;
543 struct cfg80211_internal_bss *bss;
544 int r;
545
546 while (n) {
547 bss = rb_entry(n, struct cfg80211_internal_bss, rbn);
548 r = cmp_bss(&res->pub, &bss->pub);
549
550 if (r == 0)
551 return bss;
552 else if (r < 0)
553 n = n->rb_left;
554 else
555 n = n->rb_right;
556 }
557
558 return NULL;
559}
560
561static struct cfg80211_internal_bss *
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100562rb_find_hidden_bss(struct cfg80211_registered_device *dev,
563 struct cfg80211_internal_bss *res)
564{
565 struct rb_node *n = dev->bss_tree.rb_node;
566 struct cfg80211_internal_bss *bss;
567 int r;
568
569 while (n) {
570 bss = rb_entry(n, struct cfg80211_internal_bss, rbn);
571 r = cmp_hidden_bss(&res->pub, &bss->pub);
572
573 if (r == 0)
574 return bss;
575 else if (r < 0)
576 n = n->rb_left;
577 else
578 n = n->rb_right;
579 }
580
581 return NULL;
582}
583
584static void
585copy_hidden_ies(struct cfg80211_internal_bss *res,
586 struct cfg80211_internal_bss *hidden)
587{
588 if (unlikely(res->pub.beacon_ies))
589 return;
590 if (WARN_ON(!hidden->pub.beacon_ies))
591 return;
592
593 res->pub.beacon_ies = kmalloc(hidden->pub.len_beacon_ies, GFP_ATOMIC);
594 if (unlikely(!res->pub.beacon_ies))
595 return;
596
597 res->beacon_ies_allocated = true;
598 res->pub.len_beacon_ies = hidden->pub.len_beacon_ies;
599 memcpy(res->pub.beacon_ies, hidden->pub.beacon_ies,
600 res->pub.len_beacon_ies);
601}
602
603static struct cfg80211_internal_bss *
Johannes Berg2a519312009-02-10 21:25:55 +0100604cfg80211_bss_update(struct cfg80211_registered_device *dev,
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200605 struct cfg80211_internal_bss *res)
Johannes Berg2a519312009-02-10 21:25:55 +0100606{
607 struct cfg80211_internal_bss *found = NULL;
Johannes Berg2a519312009-02-10 21:25:55 +0100608
609 /*
610 * The reference to "res" is donated to this function.
611 */
612
613 if (WARN_ON(!res->pub.channel)) {
614 kref_put(&res->ref, bss_release);
615 return NULL;
616 }
617
618 res->ts = jiffies;
619
Johannes Berg2a519312009-02-10 21:25:55 +0100620 spin_lock_bh(&dev->bss_lock);
621
622 found = rb_find_bss(dev, res);
623
Johannes Bergcd1658f2009-04-16 15:00:58 +0200624 if (found) {
Johannes Berg2a519312009-02-10 21:25:55 +0100625 found->pub.beacon_interval = res->pub.beacon_interval;
626 found->pub.tsf = res->pub.tsf;
627 found->pub.signal = res->pub.signal;
Johannes Berg2a519312009-02-10 21:25:55 +0100628 found->pub.capability = res->pub.capability;
629 found->ts = res->ts;
Johannes Bergcd1658f2009-04-16 15:00:58 +0200630
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200631 /* Update IEs */
632 if (res->pub.proberesp_ies) {
Johannes Bergcd1658f2009-04-16 15:00:58 +0200633 size_t used = dev->wiphy.bss_priv_size + sizeof(*res);
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200634 size_t ielen = res->pub.len_proberesp_ies;
Johannes Bergcd1658f2009-04-16 15:00:58 +0200635
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200636 if (found->pub.proberesp_ies &&
637 !found->proberesp_ies_allocated &&
638 ksize(found) >= used + ielen) {
639 memcpy(found->pub.proberesp_ies,
640 res->pub.proberesp_ies, ielen);
641 found->pub.len_proberesp_ies = ielen;
Johannes Bergcd1658f2009-04-16 15:00:58 +0200642 } else {
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200643 u8 *ies = found->pub.proberesp_ies;
Johannes Bergcd1658f2009-04-16 15:00:58 +0200644
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200645 if (found->proberesp_ies_allocated)
Michael Buesch273de922009-04-25 22:28:55 +0200646 ies = krealloc(ies, ielen, GFP_ATOMIC);
647 else
Johannes Bergcd1658f2009-04-16 15:00:58 +0200648 ies = kmalloc(ielen, GFP_ATOMIC);
649
650 if (ies) {
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200651 memcpy(ies, res->pub.proberesp_ies,
652 ielen);
653 found->proberesp_ies_allocated = true;
654 found->pub.proberesp_ies = ies;
655 found->pub.len_proberesp_ies = ielen;
656 }
657 }
658
659 /* Override possible earlier Beacon frame IEs */
660 found->pub.information_elements =
661 found->pub.proberesp_ies;
662 found->pub.len_information_elements =
663 found->pub.len_proberesp_ies;
664 }
665 if (res->pub.beacon_ies) {
666 size_t used = dev->wiphy.bss_priv_size + sizeof(*res);
667 size_t ielen = res->pub.len_beacon_ies;
Sven Neumann01123e22010-12-09 15:05:24 +0100668 bool information_elements_is_beacon_ies =
669 (found->pub.information_elements ==
670 found->pub.beacon_ies);
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200671
672 if (found->pub.beacon_ies &&
673 !found->beacon_ies_allocated &&
674 ksize(found) >= used + ielen) {
675 memcpy(found->pub.beacon_ies,
676 res->pub.beacon_ies, ielen);
677 found->pub.len_beacon_ies = ielen;
678 } else {
679 u8 *ies = found->pub.beacon_ies;
680
681 if (found->beacon_ies_allocated)
682 ies = krealloc(ies, ielen, GFP_ATOMIC);
683 else
684 ies = kmalloc(ielen, GFP_ATOMIC);
685
686 if (ies) {
687 memcpy(ies, res->pub.beacon_ies,
688 ielen);
689 found->beacon_ies_allocated = true;
690 found->pub.beacon_ies = ies;
691 found->pub.len_beacon_ies = ielen;
Johannes Bergcd1658f2009-04-16 15:00:58 +0200692 }
693 }
Sven Neumann01123e22010-12-09 15:05:24 +0100694
695 /* Override IEs if they were from a beacon before */
696 if (information_elements_is_beacon_ies) {
697 found->pub.information_elements =
698 found->pub.beacon_ies;
699 found->pub.len_information_elements =
700 found->pub.len_beacon_ies;
701 }
Johannes Bergcd1658f2009-04-16 15:00:58 +0200702 }
703
Johannes Berg2a519312009-02-10 21:25:55 +0100704 kref_put(&res->ref, bss_release);
705 } else {
Dmitry Tarnyagindd9dfb92011-11-04 17:12:07 +0100706 struct cfg80211_internal_bss *hidden;
707
708 /* First check if the beacon is a probe response from
709 * a hidden bss. If so, copy beacon ies (with nullified
710 * ssid) into the probe response bss entry (with real ssid).
711 * It is required basically for PSM implementation
712 * (probe responses do not contain tim ie) */
713
714 /* TODO: The code is not trying to update existing probe
715 * response bss entries when beacon ies are
716 * getting changed. */
717 hidden = rb_find_hidden_bss(dev, res);
718 if (hidden)
719 copy_hidden_ies(res, hidden);
720
Johannes Berg2a519312009-02-10 21:25:55 +0100721 /* this "consumes" the reference */
722 list_add_tail(&res->list, &dev->bss_list);
723 rb_insert_bss(dev, res);
724 found = res;
725 }
726
727 dev->bss_generation++;
728 spin_unlock_bh(&dev->bss_lock);
729
730 kref_get(&found->ref);
731 return found;
732}
733
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200734struct cfg80211_bss*
735cfg80211_inform_bss(struct wiphy *wiphy,
736 struct ieee80211_channel *channel,
Johannes Berg7b8bcff2012-03-13 13:57:04 +0100737 const u8 *bssid, u64 tsf, u16 capability,
738 u16 beacon_interval, const u8 *ie, size_t ielen,
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200739 s32 signal, gfp_t gfp)
740{
741 struct cfg80211_internal_bss *res;
742 size_t privsz;
743
744 if (WARN_ON(!wiphy))
745 return NULL;
746
747 privsz = wiphy->bss_priv_size;
748
Sujith22fe88d2010-05-13 10:34:08 +0530749 if (WARN_ON(wiphy->signal_type == CFG80211_SIGNAL_TYPE_UNSPEC &&
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200750 (signal < 0 || signal > 100)))
751 return NULL;
752
753 res = kzalloc(sizeof(*res) + privsz + ielen, gfp);
754 if (!res)
755 return NULL;
756
757 memcpy(res->pub.bssid, bssid, ETH_ALEN);
758 res->pub.channel = channel;
759 res->pub.signal = signal;
Johannes Berg7b8bcff2012-03-13 13:57:04 +0100760 res->pub.tsf = tsf;
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200761 res->pub.beacon_interval = beacon_interval;
762 res->pub.capability = capability;
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200763 /*
764 * Since we do not know here whether the IEs are from a Beacon or Probe
765 * Response frame, we need to pick one of the options and only use it
766 * with the driver that does not provide the full Beacon/Probe Response
767 * frame. Use Beacon frame pointer to avoid indicating that this should
768 * override the information_elements pointer should we have received an
769 * earlier indication of Probe Response data.
770 *
771 * The initial buffer for the IEs is allocated with the BSS entry and
772 * is located after the private area.
773 */
774 res->pub.beacon_ies = (u8 *)res + sizeof(*res) + privsz;
775 memcpy(res->pub.beacon_ies, ie, ielen);
776 res->pub.len_beacon_ies = ielen;
777 res->pub.information_elements = res->pub.beacon_ies;
778 res->pub.len_information_elements = res->pub.len_beacon_ies;
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200779
780 kref_init(&res->ref);
781
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200782 res = cfg80211_bss_update(wiphy_to_dev(wiphy), res);
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +0200783 if (!res)
784 return NULL;
785
786 if (res->pub.capability & WLAN_CAPABILITY_ESS)
787 regulatory_hint_found_beacon(wiphy, channel, gfp);
788
789 /* cfg80211_bss_update gives us a referenced result */
790 return &res->pub;
791}
792EXPORT_SYMBOL(cfg80211_inform_bss);
793
Johannes Berg2a519312009-02-10 21:25:55 +0100794struct cfg80211_bss *
795cfg80211_inform_bss_frame(struct wiphy *wiphy,
796 struct ieee80211_channel *channel,
797 struct ieee80211_mgmt *mgmt, size_t len,
Johannes Berg77965c92009-02-18 18:45:06 +0100798 s32 signal, gfp_t gfp)
Johannes Berg2a519312009-02-10 21:25:55 +0100799{
800 struct cfg80211_internal_bss *res;
801 size_t ielen = len - offsetof(struct ieee80211_mgmt,
802 u.probe_resp.variable);
Mariusz Kozlowskibef9bac2011-03-26 19:26:55 +0100803 size_t privsz;
804
805 if (WARN_ON(!mgmt))
806 return NULL;
807
808 if (WARN_ON(!wiphy))
809 return NULL;
Johannes Berg2a519312009-02-10 21:25:55 +0100810
Sujith22fe88d2010-05-13 10:34:08 +0530811 if (WARN_ON(wiphy->signal_type == CFG80211_SIGNAL_TYPE_UNSPEC &&
Johannes Berg2a519312009-02-10 21:25:55 +0100812 (signal < 0 || signal > 100)))
813 return NULL;
814
Mariusz Kozlowskibef9bac2011-03-26 19:26:55 +0100815 if (WARN_ON(len < offsetof(struct ieee80211_mgmt, u.probe_resp.variable)))
Johannes Berg2a519312009-02-10 21:25:55 +0100816 return NULL;
817
Mariusz Kozlowskibef9bac2011-03-26 19:26:55 +0100818 privsz = wiphy->bss_priv_size;
819
Johannes Berg2a519312009-02-10 21:25:55 +0100820 res = kzalloc(sizeof(*res) + privsz + ielen, gfp);
821 if (!res)
822 return NULL;
823
824 memcpy(res->pub.bssid, mgmt->bssid, ETH_ALEN);
825 res->pub.channel = channel;
Johannes Berg2a519312009-02-10 21:25:55 +0100826 res->pub.signal = signal;
827 res->pub.tsf = le64_to_cpu(mgmt->u.probe_resp.timestamp);
828 res->pub.beacon_interval = le16_to_cpu(mgmt->u.probe_resp.beacon_int);
829 res->pub.capability = le16_to_cpu(mgmt->u.probe_resp.capab_info);
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200830 /*
831 * The initial buffer for the IEs is allocated with the BSS entry and
832 * is located after the private area.
833 */
834 if (ieee80211_is_probe_resp(mgmt->frame_control)) {
835 res->pub.proberesp_ies = (u8 *) res + sizeof(*res) + privsz;
836 memcpy(res->pub.proberesp_ies, mgmt->u.probe_resp.variable,
837 ielen);
838 res->pub.len_proberesp_ies = ielen;
839 res->pub.information_elements = res->pub.proberesp_ies;
840 res->pub.len_information_elements = res->pub.len_proberesp_ies;
841 } else {
842 res->pub.beacon_ies = (u8 *) res + sizeof(*res) + privsz;
843 memcpy(res->pub.beacon_ies, mgmt->u.beacon.variable, ielen);
844 res->pub.len_beacon_ies = ielen;
845 res->pub.information_elements = res->pub.beacon_ies;
846 res->pub.len_information_elements = res->pub.len_beacon_ies;
847 }
Johannes Berg2a519312009-02-10 21:25:55 +0100848
849 kref_init(&res->ref);
850
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200851 res = cfg80211_bss_update(wiphy_to_dev(wiphy), res);
Johannes Berg2a519312009-02-10 21:25:55 +0100852 if (!res)
853 return NULL;
854
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500855 if (res->pub.capability & WLAN_CAPABILITY_ESS)
856 regulatory_hint_found_beacon(wiphy, channel, gfp);
857
Johannes Berg2a519312009-02-10 21:25:55 +0100858 /* cfg80211_bss_update gives us a referenced result */
859 return &res->pub;
860}
861EXPORT_SYMBOL(cfg80211_inform_bss_frame);
862
Johannes Berg4c0c0b72012-01-20 13:55:26 +0100863void cfg80211_ref_bss(struct cfg80211_bss *pub)
864{
865 struct cfg80211_internal_bss *bss;
866
867 if (!pub)
868 return;
869
870 bss = container_of(pub, struct cfg80211_internal_bss, pub);
871 kref_get(&bss->ref);
872}
873EXPORT_SYMBOL(cfg80211_ref_bss);
874
Johannes Berg2a519312009-02-10 21:25:55 +0100875void cfg80211_put_bss(struct cfg80211_bss *pub)
876{
877 struct cfg80211_internal_bss *bss;
878
879 if (!pub)
880 return;
881
882 bss = container_of(pub, struct cfg80211_internal_bss, pub);
883 kref_put(&bss->ref, bss_release);
884}
885EXPORT_SYMBOL(cfg80211_put_bss);
886
Johannes Bergd491af12009-02-10 21:25:58 +0100887void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *pub)
888{
889 struct cfg80211_registered_device *dev = wiphy_to_dev(wiphy);
890 struct cfg80211_internal_bss *bss;
891
892 if (WARN_ON(!pub))
893 return;
894
895 bss = container_of(pub, struct cfg80211_internal_bss, pub);
896
897 spin_lock_bh(&dev->bss_lock);
Johannes Berg32073902010-10-06 21:18:04 +0200898 if (!list_empty(&bss->list)) {
Juuso Oikarinen2b78ac92011-03-28 14:32:32 +0300899 __cfg80211_unlink_bss(dev, bss);
Johannes Berg32073902010-10-06 21:18:04 +0200900 dev->bss_generation++;
Johannes Berg32073902010-10-06 21:18:04 +0200901 }
Johannes Bergd491af12009-02-10 21:25:58 +0100902 spin_unlock_bh(&dev->bss_lock);
Johannes Bergd491af12009-02-10 21:25:58 +0100903}
904EXPORT_SYMBOL(cfg80211_unlink_bss);
905
Johannes Berg3d23e342009-09-29 23:27:28 +0200906#ifdef CONFIG_CFG80211_WEXT
Johannes Berg2a519312009-02-10 21:25:55 +0100907int cfg80211_wext_siwscan(struct net_device *dev,
908 struct iw_request_info *info,
909 union iwreq_data *wrqu, char *extra)
910{
911 struct cfg80211_registered_device *rdev;
912 struct wiphy *wiphy;
913 struct iw_scan_req *wreq = NULL;
Johannes Berg65486c82009-12-23 15:33:35 +0100914 struct cfg80211_scan_request *creq = NULL;
Johannes Berg2a519312009-02-10 21:25:55 +0100915 int i, err, n_channels = 0;
916 enum ieee80211_band band;
917
918 if (!netif_running(dev))
919 return -ENETDOWN;
920
Holger Schurigb2e3abd2009-09-09 13:09:54 +0200921 if (wrqu->data.length == sizeof(struct iw_scan_req))
922 wreq = (struct iw_scan_req *)extra;
923
Johannes Berg463d0182009-07-14 00:33:35 +0200924 rdev = cfg80211_get_dev_from_ifindex(dev_net(dev), dev->ifindex);
Johannes Berg2a519312009-02-10 21:25:55 +0100925
926 if (IS_ERR(rdev))
927 return PTR_ERR(rdev);
928
929 if (rdev->scan_req) {
930 err = -EBUSY;
931 goto out;
932 }
933
934 wiphy = &rdev->wiphy;
935
Holger Schurigb2e3abd2009-09-09 13:09:54 +0200936 /* Determine number of channels, needed to allocate creq */
937 if (wreq && wreq->num_channels)
938 n_channels = wreq->num_channels;
939 else {
940 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
941 if (wiphy->bands[band])
942 n_channels += wiphy->bands[band]->n_channels;
943 }
Johannes Berg2a519312009-02-10 21:25:55 +0100944
945 creq = kzalloc(sizeof(*creq) + sizeof(struct cfg80211_ssid) +
946 n_channels * sizeof(void *),
947 GFP_ATOMIC);
948 if (!creq) {
949 err = -ENOMEM;
950 goto out;
951 }
952
953 creq->wiphy = wiphy;
Johannes Berg463d0182009-07-14 00:33:35 +0200954 creq->dev = dev;
Johannes Berg5ba63532009-08-07 17:54:07 +0200955 /* SSIDs come after channels */
956 creq->ssids = (void *)&creq->channels[n_channels];
Johannes Berg2a519312009-02-10 21:25:55 +0100957 creq->n_channels = n_channels;
958 creq->n_ssids = 1;
959
Holger Schurigb2e3abd2009-09-09 13:09:54 +0200960 /* translate "Scan on frequencies" request */
Johannes Berg2a519312009-02-10 21:25:55 +0100961 i = 0;
962 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
963 int j;
Johannes Berg584991d2009-11-02 13:32:03 +0100964
Johannes Berg2a519312009-02-10 21:25:55 +0100965 if (!wiphy->bands[band])
966 continue;
Johannes Berg584991d2009-11-02 13:32:03 +0100967
Johannes Berg2a519312009-02-10 21:25:55 +0100968 for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
Johannes Berg584991d2009-11-02 13:32:03 +0100969 /* ignore disabled channels */
970 if (wiphy->bands[band]->channels[j].flags &
971 IEEE80211_CHAN_DISABLED)
972 continue;
Holger Schurigb2e3abd2009-09-09 13:09:54 +0200973
974 /* If we have a wireless request structure and the
975 * wireless request specifies frequencies, then search
976 * for the matching hardware channel.
977 */
978 if (wreq && wreq->num_channels) {
979 int k;
980 int wiphy_freq = wiphy->bands[band]->channels[j].center_freq;
981 for (k = 0; k < wreq->num_channels; k++) {
Holger Schuriga4e7b732009-09-11 10:13:53 +0200982 int wext_freq = cfg80211_wext_freq(wiphy, &wreq->channel_list[k]);
Holger Schurigb2e3abd2009-09-09 13:09:54 +0200983 if (wext_freq == wiphy_freq)
984 goto wext_freq_found;
985 }
986 goto wext_freq_not_found;
987 }
988
989 wext_freq_found:
Johannes Berg2a519312009-02-10 21:25:55 +0100990 creq->channels[i] = &wiphy->bands[band]->channels[j];
991 i++;
Holger Schurigb2e3abd2009-09-09 13:09:54 +0200992 wext_freq_not_found: ;
Johannes Berg2a519312009-02-10 21:25:55 +0100993 }
994 }
Holger Schurig8862dc52009-09-11 10:13:55 +0200995 /* No channels found? */
996 if (!i) {
997 err = -EINVAL;
998 goto out;
999 }
Johannes Berg2a519312009-02-10 21:25:55 +01001000
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001001 /* Set real number of channels specified in creq->channels[] */
1002 creq->n_channels = i;
Johannes Berg2a519312009-02-10 21:25:55 +01001003
Holger Schurigb2e3abd2009-09-09 13:09:54 +02001004 /* translate "Scan for SSID" request */
1005 if (wreq) {
Johannes Berg2a519312009-02-10 21:25:55 +01001006 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
Johannes Berg65486c82009-12-23 15:33:35 +01001007 if (wreq->essid_len > IEEE80211_MAX_SSID_LEN) {
1008 err = -EINVAL;
1009 goto out;
1010 }
Johannes Berg2a519312009-02-10 21:25:55 +01001011 memcpy(creq->ssids[0].ssid, wreq->essid, wreq->essid_len);
1012 creq->ssids[0].ssid_len = wreq->essid_len;
1013 }
1014 if (wreq->scan_type == IW_SCAN_TYPE_PASSIVE)
1015 creq->n_ssids = 0;
1016 }
1017
Johannes Berg34850ab2011-07-18 18:08:35 +02001018 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
Johannes Berga401d2b2011-07-20 00:52:16 +02001019 if (wiphy->bands[i])
1020 creq->rates[i] = (1 << wiphy->bands[i]->n_bitrates) - 1;
Johannes Berg34850ab2011-07-18 18:08:35 +02001021
Johannes Berg2a519312009-02-10 21:25:55 +01001022 rdev->scan_req = creq;
1023 err = rdev->ops->scan(wiphy, dev, creq);
1024 if (err) {
1025 rdev->scan_req = NULL;
Johannes Berg65486c82009-12-23 15:33:35 +01001026 /* creq will be freed below */
Johannes Berg463d0182009-07-14 00:33:35 +02001027 } else {
Johannes Berga538e2d2009-06-16 19:56:42 +02001028 nl80211_send_scan_start(rdev, dev);
Johannes Berg65486c82009-12-23 15:33:35 +01001029 /* creq now owned by driver */
1030 creq = NULL;
Johannes Berg463d0182009-07-14 00:33:35 +02001031 dev_hold(dev);
1032 }
Johannes Berg2a519312009-02-10 21:25:55 +01001033 out:
Johannes Berg65486c82009-12-23 15:33:35 +01001034 kfree(creq);
Johannes Berg4d0c8ae2009-07-07 03:56:09 +02001035 cfg80211_unlock_rdev(rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01001036 return err;
1037}
Johannes Bergba44cb72009-04-20 18:49:39 +02001038EXPORT_SYMBOL_GPL(cfg80211_wext_siwscan);
Johannes Berg2a519312009-02-10 21:25:55 +01001039
1040static void ieee80211_scan_add_ies(struct iw_request_info *info,
1041 struct cfg80211_bss *bss,
1042 char **current_ev, char *end_buf)
1043{
1044 u8 *pos, *end, *next;
1045 struct iw_event iwe;
1046
1047 if (!bss->information_elements ||
1048 !bss->len_information_elements)
1049 return;
1050
1051 /*
1052 * If needed, fragment the IEs buffer (at IE boundaries) into short
1053 * enough fragments to fit into IW_GENERIC_IE_MAX octet messages.
1054 */
1055 pos = bss->information_elements;
1056 end = pos + bss->len_information_elements;
1057
1058 while (end - pos > IW_GENERIC_IE_MAX) {
1059 next = pos + 2 + pos[1];
1060 while (next + 2 + next[1] - pos < IW_GENERIC_IE_MAX)
1061 next = next + 2 + next[1];
1062
1063 memset(&iwe, 0, sizeof(iwe));
1064 iwe.cmd = IWEVGENIE;
1065 iwe.u.data.length = next - pos;
1066 *current_ev = iwe_stream_add_point(info, *current_ev,
1067 end_buf, &iwe, pos);
1068
1069 pos = next;
1070 }
1071
1072 if (end > pos) {
1073 memset(&iwe, 0, sizeof(iwe));
1074 iwe.cmd = IWEVGENIE;
1075 iwe.u.data.length = end - pos;
1076 *current_ev = iwe_stream_add_point(info, *current_ev,
1077 end_buf, &iwe, pos);
1078 }
1079}
1080
Dan Williamscb3a8ee2009-02-11 17:14:43 -05001081static inline unsigned int elapsed_jiffies_msecs(unsigned long start)
1082{
1083 unsigned long end = jiffies;
1084
1085 if (end >= start)
1086 return jiffies_to_msecs(end - start);
1087
1088 return jiffies_to_msecs(end + (MAX_JIFFY_OFFSET - start) + 1);
1089}
Johannes Berg2a519312009-02-10 21:25:55 +01001090
1091static char *
Johannes Berg77965c92009-02-18 18:45:06 +01001092ieee80211_bss(struct wiphy *wiphy, struct iw_request_info *info,
1093 struct cfg80211_internal_bss *bss, char *current_ev,
1094 char *end_buf)
Johannes Berg2a519312009-02-10 21:25:55 +01001095{
1096 struct iw_event iwe;
1097 u8 *buf, *cfg, *p;
1098 u8 *ie = bss->pub.information_elements;
Johannes Berga77b8552009-02-18 18:27:22 +01001099 int rem = bss->pub.len_information_elements, i, sig;
Johannes Berg2a519312009-02-10 21:25:55 +01001100 bool ismesh = false;
1101
1102 memset(&iwe, 0, sizeof(iwe));
1103 iwe.cmd = SIOCGIWAP;
1104 iwe.u.ap_addr.sa_family = ARPHRD_ETHER;
1105 memcpy(iwe.u.ap_addr.sa_data, bss->pub.bssid, ETH_ALEN);
1106 current_ev = iwe_stream_add_event(info, current_ev, end_buf, &iwe,
1107 IW_EV_ADDR_LEN);
1108
1109 memset(&iwe, 0, sizeof(iwe));
1110 iwe.cmd = SIOCGIWFREQ;
1111 iwe.u.freq.m = ieee80211_frequency_to_channel(bss->pub.channel->center_freq);
1112 iwe.u.freq.e = 0;
1113 current_ev = iwe_stream_add_event(info, current_ev, end_buf, &iwe,
1114 IW_EV_FREQ_LEN);
1115
1116 memset(&iwe, 0, sizeof(iwe));
1117 iwe.cmd = SIOCGIWFREQ;
1118 iwe.u.freq.m = bss->pub.channel->center_freq;
1119 iwe.u.freq.e = 6;
1120 current_ev = iwe_stream_add_event(info, current_ev, end_buf, &iwe,
1121 IW_EV_FREQ_LEN);
1122
Johannes Berg77965c92009-02-18 18:45:06 +01001123 if (wiphy->signal_type != CFG80211_SIGNAL_TYPE_NONE) {
Johannes Berg2a519312009-02-10 21:25:55 +01001124 memset(&iwe, 0, sizeof(iwe));
1125 iwe.cmd = IWEVQUAL;
1126 iwe.u.qual.updated = IW_QUAL_LEVEL_UPDATED |
1127 IW_QUAL_NOISE_INVALID |
Johannes Berga77b8552009-02-18 18:27:22 +01001128 IW_QUAL_QUAL_UPDATED;
Johannes Berg77965c92009-02-18 18:45:06 +01001129 switch (wiphy->signal_type) {
Johannes Berg2a519312009-02-10 21:25:55 +01001130 case CFG80211_SIGNAL_TYPE_MBM:
Johannes Berga77b8552009-02-18 18:27:22 +01001131 sig = bss->pub.signal / 100;
1132 iwe.u.qual.level = sig;
Johannes Berg2a519312009-02-10 21:25:55 +01001133 iwe.u.qual.updated |= IW_QUAL_DBM;
Johannes Berga77b8552009-02-18 18:27:22 +01001134 if (sig < -110) /* rather bad */
1135 sig = -110;
1136 else if (sig > -40) /* perfect */
1137 sig = -40;
1138 /* will give a range of 0 .. 70 */
1139 iwe.u.qual.qual = sig + 110;
Johannes Berg2a519312009-02-10 21:25:55 +01001140 break;
1141 case CFG80211_SIGNAL_TYPE_UNSPEC:
1142 iwe.u.qual.level = bss->pub.signal;
Johannes Berga77b8552009-02-18 18:27:22 +01001143 /* will give range 0 .. 100 */
1144 iwe.u.qual.qual = bss->pub.signal;
Johannes Berg2a519312009-02-10 21:25:55 +01001145 break;
1146 default:
1147 /* not reached */
1148 break;
1149 }
1150 current_ev = iwe_stream_add_event(info, current_ev, end_buf,
1151 &iwe, IW_EV_QUAL_LEN);
1152 }
1153
1154 memset(&iwe, 0, sizeof(iwe));
1155 iwe.cmd = SIOCGIWENCODE;
1156 if (bss->pub.capability & WLAN_CAPABILITY_PRIVACY)
1157 iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY;
1158 else
1159 iwe.u.data.flags = IW_ENCODE_DISABLED;
1160 iwe.u.data.length = 0;
1161 current_ev = iwe_stream_add_point(info, current_ev, end_buf,
1162 &iwe, "");
1163
1164 while (rem >= 2) {
1165 /* invalid data */
1166 if (ie[1] > rem - 2)
1167 break;
1168
1169 switch (ie[0]) {
1170 case WLAN_EID_SSID:
1171 memset(&iwe, 0, sizeof(iwe));
1172 iwe.cmd = SIOCGIWESSID;
1173 iwe.u.data.length = ie[1];
1174 iwe.u.data.flags = 1;
1175 current_ev = iwe_stream_add_point(info, current_ev, end_buf,
1176 &iwe, ie + 2);
1177 break;
1178 case WLAN_EID_MESH_ID:
1179 memset(&iwe, 0, sizeof(iwe));
1180 iwe.cmd = SIOCGIWESSID;
1181 iwe.u.data.length = ie[1];
1182 iwe.u.data.flags = 1;
1183 current_ev = iwe_stream_add_point(info, current_ev, end_buf,
1184 &iwe, ie + 2);
1185 break;
1186 case WLAN_EID_MESH_CONFIG:
1187 ismesh = true;
Rui Paulo136cfa22009-11-18 18:40:00 +00001188 if (ie[1] != sizeof(struct ieee80211_meshconf_ie))
Johannes Berg2a519312009-02-10 21:25:55 +01001189 break;
1190 buf = kmalloc(50, GFP_ATOMIC);
1191 if (!buf)
1192 break;
1193 cfg = ie + 2;
1194 memset(&iwe, 0, sizeof(iwe));
1195 iwe.cmd = IWEVCUSTOM;
Rui Paulo76aa5e72009-11-18 18:22:59 +00001196 sprintf(buf, "Mesh Network Path Selection Protocol ID: "
1197 "0x%02X", cfg[0]);
Johannes Berg2a519312009-02-10 21:25:55 +01001198 iwe.u.data.length = strlen(buf);
1199 current_ev = iwe_stream_add_point(info, current_ev,
1200 end_buf,
1201 &iwe, buf);
Rui Paulo76aa5e72009-11-18 18:22:59 +00001202 sprintf(buf, "Path Selection Metric ID: 0x%02X",
1203 cfg[1]);
Johannes Berg2a519312009-02-10 21:25:55 +01001204 iwe.u.data.length = strlen(buf);
1205 current_ev = iwe_stream_add_point(info, current_ev,
1206 end_buf,
1207 &iwe, buf);
Rui Paulo76aa5e72009-11-18 18:22:59 +00001208 sprintf(buf, "Congestion Control Mode ID: 0x%02X",
1209 cfg[2]);
Johannes Berg2a519312009-02-10 21:25:55 +01001210 iwe.u.data.length = strlen(buf);
1211 current_ev = iwe_stream_add_point(info, current_ev,
1212 end_buf,
1213 &iwe, buf);
Rui Paulo76aa5e72009-11-18 18:22:59 +00001214 sprintf(buf, "Synchronization ID: 0x%02X", cfg[3]);
Johannes Berg2a519312009-02-10 21:25:55 +01001215 iwe.u.data.length = strlen(buf);
1216 current_ev = iwe_stream_add_point(info, current_ev,
1217 end_buf,
1218 &iwe, buf);
Rui Paulo76aa5e72009-11-18 18:22:59 +00001219 sprintf(buf, "Authentication ID: 0x%02X", cfg[4]);
1220 iwe.u.data.length = strlen(buf);
1221 current_ev = iwe_stream_add_point(info, current_ev,
1222 end_buf,
1223 &iwe, buf);
1224 sprintf(buf, "Formation Info: 0x%02X", cfg[5]);
1225 iwe.u.data.length = strlen(buf);
1226 current_ev = iwe_stream_add_point(info, current_ev,
1227 end_buf,
1228 &iwe, buf);
1229 sprintf(buf, "Capabilities: 0x%02X", cfg[6]);
Johannes Berg2a519312009-02-10 21:25:55 +01001230 iwe.u.data.length = strlen(buf);
1231 current_ev = iwe_stream_add_point(info, current_ev,
1232 end_buf,
1233 &iwe, buf);
1234 kfree(buf);
1235 break;
1236 case WLAN_EID_SUPP_RATES:
1237 case WLAN_EID_EXT_SUPP_RATES:
1238 /* display all supported rates in readable format */
1239 p = current_ev + iwe_stream_lcp_len(info);
1240
1241 memset(&iwe, 0, sizeof(iwe));
1242 iwe.cmd = SIOCGIWRATE;
1243 /* Those two flags are ignored... */
1244 iwe.u.bitrate.fixed = iwe.u.bitrate.disabled = 0;
1245
1246 for (i = 0; i < ie[1]; i++) {
1247 iwe.u.bitrate.value =
1248 ((ie[i + 2] & 0x7f) * 500000);
1249 p = iwe_stream_add_value(info, current_ev, p,
1250 end_buf, &iwe, IW_EV_PARAM_LEN);
1251 }
1252 current_ev = p;
1253 break;
1254 }
1255 rem -= ie[1] + 2;
1256 ie += ie[1] + 2;
1257 }
1258
Joe Perchesf64f9e72009-11-29 16:55:45 -08001259 if (bss->pub.capability & (WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_IBSS) ||
1260 ismesh) {
Johannes Berg2a519312009-02-10 21:25:55 +01001261 memset(&iwe, 0, sizeof(iwe));
1262 iwe.cmd = SIOCGIWMODE;
1263 if (ismesh)
1264 iwe.u.mode = IW_MODE_MESH;
1265 else if (bss->pub.capability & WLAN_CAPABILITY_ESS)
1266 iwe.u.mode = IW_MODE_MASTER;
1267 else
1268 iwe.u.mode = IW_MODE_ADHOC;
1269 current_ev = iwe_stream_add_event(info, current_ev, end_buf,
1270 &iwe, IW_EV_UINT_LEN);
1271 }
1272
1273 buf = kmalloc(30, GFP_ATOMIC);
1274 if (buf) {
1275 memset(&iwe, 0, sizeof(iwe));
1276 iwe.cmd = IWEVCUSTOM;
1277 sprintf(buf, "tsf=%016llx", (unsigned long long)(bss->pub.tsf));
1278 iwe.u.data.length = strlen(buf);
1279 current_ev = iwe_stream_add_point(info, current_ev, end_buf,
1280 &iwe, buf);
1281 memset(&iwe, 0, sizeof(iwe));
1282 iwe.cmd = IWEVCUSTOM;
Dan Williamscb3a8ee2009-02-11 17:14:43 -05001283 sprintf(buf, " Last beacon: %ums ago",
1284 elapsed_jiffies_msecs(bss->ts));
Johannes Berg2a519312009-02-10 21:25:55 +01001285 iwe.u.data.length = strlen(buf);
1286 current_ev = iwe_stream_add_point(info, current_ev,
1287 end_buf, &iwe, buf);
1288 kfree(buf);
1289 }
1290
1291 ieee80211_scan_add_ies(info, &bss->pub, &current_ev, end_buf);
1292
1293 return current_ev;
1294}
1295
1296
1297static int ieee80211_scan_results(struct cfg80211_registered_device *dev,
1298 struct iw_request_info *info,
1299 char *buf, size_t len)
1300{
1301 char *current_ev = buf;
1302 char *end_buf = buf + len;
1303 struct cfg80211_internal_bss *bss;
1304
1305 spin_lock_bh(&dev->bss_lock);
1306 cfg80211_bss_expire(dev);
1307
1308 list_for_each_entry(bss, &dev->bss_list, list) {
1309 if (buf + len - current_ev <= IW_EV_ADDR_LEN) {
1310 spin_unlock_bh(&dev->bss_lock);
1311 return -E2BIG;
1312 }
Johannes Berg77965c92009-02-18 18:45:06 +01001313 current_ev = ieee80211_bss(&dev->wiphy, info, bss,
1314 current_ev, end_buf);
Johannes Berg2a519312009-02-10 21:25:55 +01001315 }
1316 spin_unlock_bh(&dev->bss_lock);
1317 return current_ev - buf;
1318}
1319
1320
1321int cfg80211_wext_giwscan(struct net_device *dev,
1322 struct iw_request_info *info,
1323 struct iw_point *data, char *extra)
1324{
1325 struct cfg80211_registered_device *rdev;
1326 int res;
1327
1328 if (!netif_running(dev))
1329 return -ENETDOWN;
1330
Johannes Berg463d0182009-07-14 00:33:35 +02001331 rdev = cfg80211_get_dev_from_ifindex(dev_net(dev), dev->ifindex);
Johannes Berg2a519312009-02-10 21:25:55 +01001332
1333 if (IS_ERR(rdev))
1334 return PTR_ERR(rdev);
1335
1336 if (rdev->scan_req) {
1337 res = -EAGAIN;
1338 goto out;
1339 }
1340
1341 res = ieee80211_scan_results(rdev, info, extra, data->length);
1342 data->length = 0;
1343 if (res >= 0) {
1344 data->length = res;
1345 res = 0;
1346 }
1347
1348 out:
Johannes Berg4d0c8ae2009-07-07 03:56:09 +02001349 cfg80211_unlock_rdev(rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01001350 return res;
1351}
Johannes Bergba44cb72009-04-20 18:49:39 +02001352EXPORT_SYMBOL_GPL(cfg80211_wext_giwscan);
Johannes Berg2a519312009-02-10 21:25:55 +01001353#endif