2 * cfg80211 scan result handling
4 * Copyright 2008 Johannes Berg <johannes@sipsolutions.net>
6 #include <linux/kernel.h>
7 #include <linux/slab.h>
8 #include <linux/module.h>
9 #include <linux/netdevice.h>
10 #include <linux/wireless.h>
11 #include <linux/nl80211.h>
12 #include <linux/etherdevice.h>
14 #include <net/cfg80211.h>
15 #include <net/cfg80211-wext.h>
16 #include <net/iw_handler.h>
19 #include "wext-compat.h"
21 #define IEEE80211_SCAN_RESULT_EXPIRE (15 * HZ)
23 void ___cfg80211_scan_done(struct cfg80211_registered_device
*rdev
, bool leak
)
25 struct cfg80211_scan_request
*request
;
26 struct net_device
*dev
;
27 #ifdef CONFIG_CFG80211_WEXT
28 union iwreq_data wrqu
;
31 ASSERT_RDEV_LOCK(rdev
);
33 request
= rdev
->scan_req
;
41 * This must be before sending the other events!
42 * Otherwise, wpa_supplicant gets completely confused with
45 cfg80211_sme_scan_done(dev
);
48 nl80211_send_scan_aborted(rdev
, dev
);
50 nl80211_send_scan_done(rdev
, dev
);
52 #ifdef CONFIG_CFG80211_WEXT
53 if (!request
->aborted
) {
54 memset(&wrqu
, 0, sizeof(wrqu
));
56 wireless_send_event(dev
, SIOCGIWSCAN
, &wrqu
, NULL
);
62 rdev
->scan_req
= NULL
;
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.
76 void __cfg80211_scan_done(struct work_struct
*wk
)
78 struct cfg80211_registered_device
*rdev
;
80 rdev
= container_of(wk
, struct cfg80211_registered_device
,
83 cfg80211_lock_rdev(rdev
);
84 ___cfg80211_scan_done(rdev
, false);
85 cfg80211_unlock_rdev(rdev
);
88 void cfg80211_scan_done(struct cfg80211_scan_request
*request
, bool aborted
)
90 WARN_ON(request
!= wiphy_to_dev(request
->wiphy
)->scan_req
);
92 request
->aborted
= aborted
;
93 queue_work(cfg80211_wq
, &wiphy_to_dev(request
->wiphy
)->scan_done_wk
);
95 EXPORT_SYMBOL(cfg80211_scan_done
);
97 void __cfg80211_sched_scan_results(struct work_struct
*wk
)
99 struct cfg80211_registered_device
*rdev
;
101 rdev
= container_of(wk
, struct cfg80211_registered_device
,
102 sched_scan_results_wk
);
104 mutex_lock(&rdev
->sched_scan_mtx
);
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
);
111 mutex_unlock(&rdev
->sched_scan_mtx
);
114 void cfg80211_sched_scan_results(struct wiphy
*wiphy
)
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
);
121 EXPORT_SYMBOL(cfg80211_sched_scan_results
);
123 void cfg80211_sched_scan_stopped(struct wiphy
*wiphy
)
125 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wiphy
);
127 mutex_lock(&rdev
->sched_scan_mtx
);
128 __cfg80211_stop_sched_scan(rdev
, true);
129 mutex_unlock(&rdev
->sched_scan_mtx
);
131 EXPORT_SYMBOL(cfg80211_sched_scan_stopped
);
133 int __cfg80211_stop_sched_scan(struct cfg80211_registered_device
*rdev
,
134 bool driver_initiated
)
136 struct net_device
*dev
;
138 lockdep_assert_held(&rdev
->sched_scan_mtx
);
140 if (!rdev
->sched_scan_req
)
143 dev
= rdev
->sched_scan_req
->dev
;
145 if (!driver_initiated
) {
146 int err
= rdev
->ops
->sched_scan_stop(&rdev
->wiphy
, dev
);
151 nl80211_send_sched_scan(rdev
, dev
, NL80211_CMD_SCHED_SCAN_STOPPED
);
153 kfree(rdev
->sched_scan_req
);
154 rdev
->sched_scan_req
= NULL
;
159 static void bss_release(struct kref
*ref
)
161 struct cfg80211_internal_bss
*bss
;
163 bss
= container_of(ref
, struct cfg80211_internal_bss
, ref
);
164 if (bss
->pub
.free_priv
)
165 bss
->pub
.free_priv(&bss
->pub
);
167 if (bss
->beacon_ies_allocated
)
168 kfree(bss
->pub
.beacon_ies
);
169 if (bss
->proberesp_ies_allocated
)
170 kfree(bss
->pub
.proberesp_ies
);
172 BUG_ON(atomic_read(&bss
->hold
));
177 /* must hold dev->bss_lock! */
178 void cfg80211_bss_age(struct cfg80211_registered_device
*dev
,
179 unsigned long age_secs
)
181 struct cfg80211_internal_bss
*bss
;
182 unsigned long age_jiffies
= msecs_to_jiffies(age_secs
* MSEC_PER_SEC
);
184 list_for_each_entry(bss
, &dev
->bss_list
, list
) {
185 bss
->ts
-= age_jiffies
;
189 /* must hold dev->bss_lock! */
190 static void __cfg80211_unlink_bss(struct cfg80211_registered_device
*dev
,
191 struct cfg80211_internal_bss
*bss
)
193 list_del_init(&bss
->list
);
194 rb_erase(&bss
->rbn
, &dev
->bss_tree
);
195 kref_put(&bss
->ref
, bss_release
);
198 /* must hold dev->bss_lock! */
199 void cfg80211_bss_expire(struct cfg80211_registered_device
*dev
)
201 struct cfg80211_internal_bss
*bss
, *tmp
;
202 bool expired
= false;
204 list_for_each_entry_safe(bss
, tmp
, &dev
->bss_list
, list
) {
205 if (atomic_read(&bss
->hold
))
207 if (!time_after(jiffies
, bss
->ts
+ IEEE80211_SCAN_RESULT_EXPIRE
))
209 __cfg80211_unlink_bss(dev
, bss
);
214 dev
->bss_generation
++;
217 const u8
*cfg80211_find_ie(u8 eid
, const u8
*ies
, int len
)
219 while (len
> 2 && ies
[0] != eid
) {
225 if (len
< 2 + ies
[1])
229 EXPORT_SYMBOL(cfg80211_find_ie
);
231 const u8
*cfg80211_find_vendor_ie(unsigned int oui
, u8 oui_type
,
232 const u8
*ies
, int len
)
234 struct ieee80211_vendor_ie
*ie
;
235 const u8
*pos
= ies
, *end
= ies
+ len
;
239 pos
= cfg80211_find_ie(WLAN_EID_VENDOR_SPECIFIC
, pos
,
244 if (end
- pos
< sizeof(*ie
))
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
)
256 EXPORT_SYMBOL(cfg80211_find_vendor_ie
);
258 static int cmp_ies(u8 num
, u8
*ies1
, size_t len1
, u8
*ies2
, size_t len2
)
260 const u8
*ie1
= cfg80211_find_ie(num
, ies1
, len1
);
261 const u8
*ie2
= cfg80211_find_ie(num
, ies2
, len2
);
263 /* equal if both missing */
266 /* sort missing IE before (left of) present IE */
272 /* sort by length first, then by contents */
273 if (ie1
[1] != ie2
[1])
274 return ie2
[1] - ie1
[1];
275 return memcmp(ie1
+ 2, ie2
+ 2, ie1
[1]);
278 static bool is_bss(struct cfg80211_bss
*a
,
280 const u8
*ssid
, size_t ssid_len
)
284 if (bssid
&& compare_ether_addr(a
->bssid
, bssid
))
290 ssidie
= cfg80211_find_ie(WLAN_EID_SSID
,
291 a
->information_elements
,
292 a
->len_information_elements
);
295 if (ssidie
[1] != ssid_len
)
297 return memcmp(ssidie
+ 2, ssid
, ssid_len
) == 0;
300 static bool is_mesh_bss(struct cfg80211_bss
*a
)
304 if (!WLAN_CAPABILITY_IS_STA_BSS(a
->capability
))
307 ie
= cfg80211_find_ie(WLAN_EID_MESH_ID
,
308 a
->information_elements
,
309 a
->len_information_elements
);
313 ie
= cfg80211_find_ie(WLAN_EID_MESH_CONFIG
,
314 a
->information_elements
,
315 a
->len_information_elements
);
322 static bool is_mesh(struct cfg80211_bss
*a
,
323 const u8
*meshid
, size_t meshidlen
,
328 if (!WLAN_CAPABILITY_IS_STA_BSS(a
->capability
))
331 ie
= cfg80211_find_ie(WLAN_EID_MESH_ID
,
332 a
->information_elements
,
333 a
->len_information_elements
);
336 if (ie
[1] != meshidlen
)
338 if (memcmp(ie
+ 2, meshid
, meshidlen
))
341 ie
= cfg80211_find_ie(WLAN_EID_MESH_CONFIG
,
342 a
->information_elements
,
343 a
->len_information_elements
);
346 if (ie
[1] != sizeof(struct ieee80211_meshconf_ie
))
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.
354 return memcmp(ie
+ 2, meshcfg
,
355 sizeof(struct ieee80211_meshconf_ie
) - 2) == 0;
358 static int cmp_bss_core(struct cfg80211_bss
*a
,
359 struct cfg80211_bss
*b
)
363 if (a
->channel
!= b
->channel
)
364 return b
->channel
->center_freq
- a
->channel
->center_freq
;
366 if (is_mesh_bss(a
) && is_mesh_bss(b
)) {
367 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
);
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
);
381 return memcmp(a
->bssid
, b
->bssid
, ETH_ALEN
);
384 static int cmp_bss(struct cfg80211_bss
*a
,
385 struct cfg80211_bss
*b
)
389 r
= cmp_bss_core(a
, b
);
393 return cmp_ies(WLAN_EID_SSID
,
394 a
->information_elements
,
395 a
->len_information_elements
,
396 b
->information_elements
,
397 b
->len_information_elements
);
400 static int cmp_hidden_bss(struct cfg80211_bss
*a
,
401 struct cfg80211_bss
*b
)
408 r
= cmp_bss_core(a
, b
);
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
);
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. */
424 /* sort missing IE before (left of) present IE */
430 /* zero-size SSID is used as an indication of the hidden bss */
434 /* sort by length first, then by contents */
435 if (ie1
[1] != ie2
[1])
436 return ie2
[1] - ie1
[1];
438 /* zeroed SSID ie is another indication of a hidden bss */
439 for (i
= 0; i
< ie2
[1]; i
++)
446 struct cfg80211_bss
*cfg80211_get_bss(struct wiphy
*wiphy
,
447 struct ieee80211_channel
*channel
,
449 const u8
*ssid
, size_t ssid_len
,
450 u16 capa_mask
, u16 capa_val
)
452 struct cfg80211_registered_device
*dev
= wiphy_to_dev(wiphy
);
453 struct cfg80211_internal_bss
*bss
, *res
= NULL
;
454 unsigned long now
= jiffies
;
456 spin_lock_bh(&dev
->bss_lock
);
458 list_for_each_entry(bss
, &dev
->bss_list
, list
) {
459 if ((bss
->pub
.capability
& capa_mask
) != capa_val
)
461 if (channel
&& bss
->pub
.channel
!= channel
)
463 /* Don't get expired BSS structs */
464 if (time_after(now
, bss
->ts
+ IEEE80211_SCAN_RESULT_EXPIRE
) &&
465 !atomic_read(&bss
->hold
))
467 if (is_bss(&bss
->pub
, bssid
, ssid
, ssid_len
)) {
474 spin_unlock_bh(&dev
->bss_lock
);
479 EXPORT_SYMBOL(cfg80211_get_bss
);
481 struct cfg80211_bss
*cfg80211_get_mesh(struct wiphy
*wiphy
,
482 struct ieee80211_channel
*channel
,
483 const u8
*meshid
, size_t meshidlen
,
486 struct cfg80211_registered_device
*dev
= wiphy_to_dev(wiphy
);
487 struct cfg80211_internal_bss
*bss
, *res
= NULL
;
489 spin_lock_bh(&dev
->bss_lock
);
491 list_for_each_entry(bss
, &dev
->bss_list
, list
) {
492 if (channel
&& bss
->pub
.channel
!= channel
)
494 if (is_mesh(&bss
->pub
, meshid
, meshidlen
, meshcfg
)) {
501 spin_unlock_bh(&dev
->bss_lock
);
506 EXPORT_SYMBOL(cfg80211_get_mesh
);
509 static void rb_insert_bss(struct cfg80211_registered_device
*dev
,
510 struct cfg80211_internal_bss
*bss
)
512 struct rb_node
**p
= &dev
->bss_tree
.rb_node
;
513 struct rb_node
*parent
= NULL
;
514 struct cfg80211_internal_bss
*tbss
;
519 tbss
= rb_entry(parent
, struct cfg80211_internal_bss
, rbn
);
521 cmp
= cmp_bss(&bss
->pub
, &tbss
->pub
);
524 /* will sort of leak this BSS */
534 rb_link_node(&bss
->rbn
, parent
, p
);
535 rb_insert_color(&bss
->rbn
, &dev
->bss_tree
);
538 static struct cfg80211_internal_bss
*
539 rb_find_bss(struct cfg80211_registered_device
*dev
,
540 struct cfg80211_internal_bss
*res
)
542 struct rb_node
*n
= dev
->bss_tree
.rb_node
;
543 struct cfg80211_internal_bss
*bss
;
547 bss
= rb_entry(n
, struct cfg80211_internal_bss
, rbn
);
548 r
= cmp_bss(&res
->pub
, &bss
->pub
);
561 static struct cfg80211_internal_bss
*
562 rb_find_hidden_bss(struct cfg80211_registered_device
*dev
,
563 struct cfg80211_internal_bss
*res
)
565 struct rb_node
*n
= dev
->bss_tree
.rb_node
;
566 struct cfg80211_internal_bss
*bss
;
570 bss
= rb_entry(n
, struct cfg80211_internal_bss
, rbn
);
571 r
= cmp_hidden_bss(&res
->pub
, &bss
->pub
);
585 copy_hidden_ies(struct cfg80211_internal_bss
*res
,
586 struct cfg80211_internal_bss
*hidden
)
588 if (unlikely(res
->pub
.beacon_ies
))
590 if (WARN_ON(!hidden
->pub
.beacon_ies
))
593 res
->pub
.beacon_ies
= kmalloc(hidden
->pub
.len_beacon_ies
, GFP_ATOMIC
);
594 if (unlikely(!res
->pub
.beacon_ies
))
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
);
603 static struct cfg80211_internal_bss
*
604 cfg80211_bss_update(struct cfg80211_registered_device
*dev
,
605 struct cfg80211_internal_bss
*res
)
607 struct cfg80211_internal_bss
*found
= NULL
;
610 * The reference to "res" is donated to this function.
613 if (WARN_ON(!res
->pub
.channel
)) {
614 kref_put(&res
->ref
, bss_release
);
620 spin_lock_bh(&dev
->bss_lock
);
622 found
= rb_find_bss(dev
, res
);
625 found
->pub
.beacon_interval
= res
->pub
.beacon_interval
;
626 found
->pub
.tsf
= res
->pub
.tsf
;
627 found
->pub
.signal
= res
->pub
.signal
;
628 found
->pub
.capability
= res
->pub
.capability
;
632 if (res
->pub
.proberesp_ies
) {
633 size_t used
= dev
->wiphy
.bss_priv_size
+ sizeof(*res
);
634 size_t ielen
= res
->pub
.len_proberesp_ies
;
636 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
;
643 u8
*ies
= found
->pub
.proberesp_ies
;
645 if (found
->proberesp_ies_allocated
)
646 ies
= krealloc(ies
, ielen
, GFP_ATOMIC
);
648 ies
= kmalloc(ielen
, GFP_ATOMIC
);
651 memcpy(ies
, res
->pub
.proberesp_ies
,
653 found
->proberesp_ies_allocated
= true;
654 found
->pub
.proberesp_ies
= ies
;
655 found
->pub
.len_proberesp_ies
= ielen
;
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
;
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
;
668 bool information_elements_is_beacon_ies
=
669 (found
->pub
.information_elements
==
670 found
->pub
.beacon_ies
);
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
;
679 u8
*ies
= found
->pub
.beacon_ies
;
681 if (found
->beacon_ies_allocated
)
682 ies
= krealloc(ies
, ielen
, GFP_ATOMIC
);
684 ies
= kmalloc(ielen
, GFP_ATOMIC
);
687 memcpy(ies
, res
->pub
.beacon_ies
,
689 found
->beacon_ies_allocated
= true;
690 found
->pub
.beacon_ies
= ies
;
691 found
->pub
.len_beacon_ies
= ielen
;
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
;
704 kref_put(&res
->ref
, bss_release
);
706 struct cfg80211_internal_bss
*hidden
;
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) */
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
);
719 copy_hidden_ies(res
, hidden
);
721 /* this "consumes" the reference */
722 list_add_tail(&res
->list
, &dev
->bss_list
);
723 rb_insert_bss(dev
, res
);
727 dev
->bss_generation
++;
728 spin_unlock_bh(&dev
->bss_lock
);
730 kref_get(&found
->ref
);
735 cfg80211_inform_bss(struct wiphy
*wiphy
,
736 struct ieee80211_channel
*channel
,
738 u64 timestamp
, u16 capability
, u16 beacon_interval
,
739 const u8
*ie
, size_t ielen
,
740 s32 signal
, gfp_t gfp
)
742 struct cfg80211_internal_bss
*res
;
748 privsz
= wiphy
->bss_priv_size
;
750 if (WARN_ON(wiphy
->signal_type
== CFG80211_SIGNAL_TYPE_UNSPEC
&&
751 (signal
< 0 || signal
> 100)))
754 res
= kzalloc(sizeof(*res
) + privsz
+ ielen
, gfp
);
758 memcpy(res
->pub
.bssid
, bssid
, ETH_ALEN
);
759 res
->pub
.channel
= channel
;
760 res
->pub
.signal
= signal
;
761 res
->pub
.tsf
= timestamp
;
762 res
->pub
.beacon_interval
= beacon_interval
;
763 res
->pub
.capability
= capability
;
765 * Since we do not know here whether the IEs are from a Beacon or Probe
766 * Response frame, we need to pick one of the options and only use it
767 * with the driver that does not provide the full Beacon/Probe Response
768 * frame. Use Beacon frame pointer to avoid indicating that this should
769 * override the information_elements pointer should we have received an
770 * earlier indication of Probe Response data.
772 * The initial buffer for the IEs is allocated with the BSS entry and
773 * is located after the private area.
775 res
->pub
.beacon_ies
= (u8
*)res
+ sizeof(*res
) + privsz
;
776 memcpy(res
->pub
.beacon_ies
, ie
, ielen
);
777 res
->pub
.len_beacon_ies
= ielen
;
778 res
->pub
.information_elements
= res
->pub
.beacon_ies
;
779 res
->pub
.len_information_elements
= res
->pub
.len_beacon_ies
;
781 kref_init(&res
->ref
);
783 res
= cfg80211_bss_update(wiphy_to_dev(wiphy
), res
);
787 if (res
->pub
.capability
& WLAN_CAPABILITY_ESS
)
788 regulatory_hint_found_beacon(wiphy
, channel
, gfp
);
790 /* cfg80211_bss_update gives us a referenced result */
793 EXPORT_SYMBOL(cfg80211_inform_bss
);
795 struct cfg80211_bss
*
796 cfg80211_inform_bss_frame(struct wiphy
*wiphy
,
797 struct ieee80211_channel
*channel
,
798 struct ieee80211_mgmt
*mgmt
, size_t len
,
799 s32 signal
, gfp_t gfp
)
801 struct cfg80211_internal_bss
*res
;
802 size_t ielen
= len
- offsetof(struct ieee80211_mgmt
,
803 u
.probe_resp
.variable
);
812 if (WARN_ON(wiphy
->signal_type
== CFG80211_SIGNAL_TYPE_UNSPEC
&&
813 (signal
< 0 || signal
> 100)))
816 if (WARN_ON(len
< offsetof(struct ieee80211_mgmt
, u
.probe_resp
.variable
)))
819 privsz
= wiphy
->bss_priv_size
;
821 res
= kzalloc(sizeof(*res
) + privsz
+ ielen
, gfp
);
825 memcpy(res
->pub
.bssid
, mgmt
->bssid
, ETH_ALEN
);
826 res
->pub
.channel
= channel
;
827 res
->pub
.signal
= signal
;
828 res
->pub
.tsf
= le64_to_cpu(mgmt
->u
.probe_resp
.timestamp
);
829 res
->pub
.beacon_interval
= le16_to_cpu(mgmt
->u
.probe_resp
.beacon_int
);
830 res
->pub
.capability
= le16_to_cpu(mgmt
->u
.probe_resp
.capab_info
);
832 * The initial buffer for the IEs is allocated with the BSS entry and
833 * is located after the private area.
835 if (ieee80211_is_probe_resp(mgmt
->frame_control
)) {
836 res
->pub
.proberesp_ies
= (u8
*) res
+ sizeof(*res
) + privsz
;
837 memcpy(res
->pub
.proberesp_ies
, mgmt
->u
.probe_resp
.variable
,
839 res
->pub
.len_proberesp_ies
= ielen
;
840 res
->pub
.information_elements
= res
->pub
.proberesp_ies
;
841 res
->pub
.len_information_elements
= res
->pub
.len_proberesp_ies
;
843 res
->pub
.beacon_ies
= (u8
*) res
+ sizeof(*res
) + privsz
;
844 memcpy(res
->pub
.beacon_ies
, mgmt
->u
.beacon
.variable
, ielen
);
845 res
->pub
.len_beacon_ies
= ielen
;
846 res
->pub
.information_elements
= res
->pub
.beacon_ies
;
847 res
->pub
.len_information_elements
= res
->pub
.len_beacon_ies
;
850 kref_init(&res
->ref
);
852 res
= cfg80211_bss_update(wiphy_to_dev(wiphy
), res
);
856 if (res
->pub
.capability
& WLAN_CAPABILITY_ESS
)
857 regulatory_hint_found_beacon(wiphy
, channel
, gfp
);
859 /* cfg80211_bss_update gives us a referenced result */
862 EXPORT_SYMBOL(cfg80211_inform_bss_frame
);
864 void cfg80211_put_bss(struct cfg80211_bss
*pub
)
866 struct cfg80211_internal_bss
*bss
;
871 bss
= container_of(pub
, struct cfg80211_internal_bss
, pub
);
872 kref_put(&bss
->ref
, bss_release
);
874 EXPORT_SYMBOL(cfg80211_put_bss
);
876 void cfg80211_unlink_bss(struct wiphy
*wiphy
, struct cfg80211_bss
*pub
)
878 struct cfg80211_registered_device
*dev
= wiphy_to_dev(wiphy
);
879 struct cfg80211_internal_bss
*bss
;
884 bss
= container_of(pub
, struct cfg80211_internal_bss
, pub
);
886 spin_lock_bh(&dev
->bss_lock
);
887 if (!list_empty(&bss
->list
)) {
888 __cfg80211_unlink_bss(dev
, bss
);
889 dev
->bss_generation
++;
891 spin_unlock_bh(&dev
->bss_lock
);
893 EXPORT_SYMBOL(cfg80211_unlink_bss
);
895 #ifdef CONFIG_CFG80211_WEXT
896 int cfg80211_wext_siwscan(struct net_device
*dev
,
897 struct iw_request_info
*info
,
898 union iwreq_data
*wrqu
, char *extra
)
900 struct cfg80211_registered_device
*rdev
;
902 struct iw_scan_req
*wreq
= NULL
;
903 struct cfg80211_scan_request
*creq
= NULL
;
904 int i
, err
, n_channels
= 0;
905 enum ieee80211_band band
;
907 if (!netif_running(dev
))
910 if (wrqu
->data
.length
== sizeof(struct iw_scan_req
))
911 wreq
= (struct iw_scan_req
*)extra
;
913 rdev
= cfg80211_get_dev_from_ifindex(dev_net(dev
), dev
->ifindex
);
916 return PTR_ERR(rdev
);
918 if (rdev
->scan_req
) {
923 wiphy
= &rdev
->wiphy
;
925 /* Determine number of channels, needed to allocate creq */
926 if (wreq
&& wreq
->num_channels
)
927 n_channels
= wreq
->num_channels
;
929 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++)
930 if (wiphy
->bands
[band
])
931 n_channels
+= wiphy
->bands
[band
]->n_channels
;
934 creq
= kzalloc(sizeof(*creq
) + sizeof(struct cfg80211_ssid
) +
935 n_channels
* sizeof(void *),
944 /* SSIDs come after channels */
945 creq
->ssids
= (void *)&creq
->channels
[n_channels
];
946 creq
->n_channels
= n_channels
;
949 /* translate "Scan on frequencies" request */
951 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
954 if (!wiphy
->bands
[band
])
957 for (j
= 0; j
< wiphy
->bands
[band
]->n_channels
; j
++) {
958 /* ignore disabled channels */
959 if (wiphy
->bands
[band
]->channels
[j
].flags
&
960 IEEE80211_CHAN_DISABLED
)
963 /* If we have a wireless request structure and the
964 * wireless request specifies frequencies, then search
965 * for the matching hardware channel.
967 if (wreq
&& wreq
->num_channels
) {
969 int wiphy_freq
= wiphy
->bands
[band
]->channels
[j
].center_freq
;
970 for (k
= 0; k
< wreq
->num_channels
; k
++) {
971 int wext_freq
= cfg80211_wext_freq(wiphy
, &wreq
->channel_list
[k
]);
972 if (wext_freq
== wiphy_freq
)
973 goto wext_freq_found
;
975 goto wext_freq_not_found
;
979 creq
->channels
[i
] = &wiphy
->bands
[band
]->channels
[j
];
981 wext_freq_not_found
: ;
984 /* No channels found? */
990 /* Set real number of channels specified in creq->channels[] */
991 creq
->n_channels
= i
;
993 /* translate "Scan for SSID" request */
995 if (wrqu
->data
.flags
& IW_SCAN_THIS_ESSID
) {
996 if (wreq
->essid_len
> IEEE80211_MAX_SSID_LEN
) {
1000 memcpy(creq
->ssids
[0].ssid
, wreq
->essid
, wreq
->essid_len
);
1001 creq
->ssids
[0].ssid_len
= wreq
->essid_len
;
1003 if (wreq
->scan_type
== IW_SCAN_TYPE_PASSIVE
)
1007 for (i
= 0; i
< IEEE80211_NUM_BANDS
; i
++)
1008 if (wiphy
->bands
[i
])
1009 creq
->rates
[i
] = (1 << wiphy
->bands
[i
]->n_bitrates
) - 1;
1011 rdev
->scan_req
= creq
;
1012 err
= rdev
->ops
->scan(wiphy
, dev
, creq
);
1014 rdev
->scan_req
= NULL
;
1015 /* creq will be freed below */
1017 nl80211_send_scan_start(rdev
, dev
);
1018 /* creq now owned by driver */
1024 cfg80211_unlock_rdev(rdev
);
1027 EXPORT_SYMBOL_GPL(cfg80211_wext_siwscan
);
1029 static void ieee80211_scan_add_ies(struct iw_request_info
*info
,
1030 struct cfg80211_bss
*bss
,
1031 char **current_ev
, char *end_buf
)
1033 u8
*pos
, *end
, *next
;
1034 struct iw_event iwe
;
1036 if (!bss
->information_elements
||
1037 !bss
->len_information_elements
)
1041 * If needed, fragment the IEs buffer (at IE boundaries) into short
1042 * enough fragments to fit into IW_GENERIC_IE_MAX octet messages.
1044 pos
= bss
->information_elements
;
1045 end
= pos
+ bss
->len_information_elements
;
1047 while (end
- pos
> IW_GENERIC_IE_MAX
) {
1048 next
= pos
+ 2 + pos
[1];
1049 while (next
+ 2 + next
[1] - pos
< IW_GENERIC_IE_MAX
)
1050 next
= next
+ 2 + next
[1];
1052 memset(&iwe
, 0, sizeof(iwe
));
1053 iwe
.cmd
= IWEVGENIE
;
1054 iwe
.u
.data
.length
= next
- pos
;
1055 *current_ev
= iwe_stream_add_point(info
, *current_ev
,
1056 end_buf
, &iwe
, pos
);
1062 memset(&iwe
, 0, sizeof(iwe
));
1063 iwe
.cmd
= IWEVGENIE
;
1064 iwe
.u
.data
.length
= end
- pos
;
1065 *current_ev
= iwe_stream_add_point(info
, *current_ev
,
1066 end_buf
, &iwe
, pos
);
1070 static inline unsigned int elapsed_jiffies_msecs(unsigned long start
)
1072 unsigned long end
= jiffies
;
1075 return jiffies_to_msecs(end
- start
);
1077 return jiffies_to_msecs(end
+ (MAX_JIFFY_OFFSET
- start
) + 1);
1081 ieee80211_bss(struct wiphy
*wiphy
, struct iw_request_info
*info
,
1082 struct cfg80211_internal_bss
*bss
, char *current_ev
,
1085 struct iw_event iwe
;
1087 u8
*ie
= bss
->pub
.information_elements
;
1088 int rem
= bss
->pub
.len_information_elements
, i
, sig
;
1089 bool ismesh
= false;
1091 memset(&iwe
, 0, sizeof(iwe
));
1092 iwe
.cmd
= SIOCGIWAP
;
1093 iwe
.u
.ap_addr
.sa_family
= ARPHRD_ETHER
;
1094 memcpy(iwe
.u
.ap_addr
.sa_data
, bss
->pub
.bssid
, ETH_ALEN
);
1095 current_ev
= iwe_stream_add_event(info
, current_ev
, end_buf
, &iwe
,
1098 memset(&iwe
, 0, sizeof(iwe
));
1099 iwe
.cmd
= SIOCGIWFREQ
;
1100 iwe
.u
.freq
.m
= ieee80211_frequency_to_channel(bss
->pub
.channel
->center_freq
);
1102 current_ev
= iwe_stream_add_event(info
, current_ev
, end_buf
, &iwe
,
1105 memset(&iwe
, 0, sizeof(iwe
));
1106 iwe
.cmd
= SIOCGIWFREQ
;
1107 iwe
.u
.freq
.m
= bss
->pub
.channel
->center_freq
;
1109 current_ev
= iwe_stream_add_event(info
, current_ev
, end_buf
, &iwe
,
1112 if (wiphy
->signal_type
!= CFG80211_SIGNAL_TYPE_NONE
) {
1113 memset(&iwe
, 0, sizeof(iwe
));
1115 iwe
.u
.qual
.updated
= IW_QUAL_LEVEL_UPDATED
|
1116 IW_QUAL_NOISE_INVALID
|
1117 IW_QUAL_QUAL_UPDATED
;
1118 switch (wiphy
->signal_type
) {
1119 case CFG80211_SIGNAL_TYPE_MBM
:
1120 sig
= bss
->pub
.signal
/ 100;
1121 iwe
.u
.qual
.level
= sig
;
1122 iwe
.u
.qual
.updated
|= IW_QUAL_DBM
;
1123 if (sig
< -110) /* rather bad */
1125 else if (sig
> -40) /* perfect */
1127 /* will give a range of 0 .. 70 */
1128 iwe
.u
.qual
.qual
= sig
+ 110;
1130 case CFG80211_SIGNAL_TYPE_UNSPEC
:
1131 iwe
.u
.qual
.level
= bss
->pub
.signal
;
1132 /* will give range 0 .. 100 */
1133 iwe
.u
.qual
.qual
= bss
->pub
.signal
;
1139 current_ev
= iwe_stream_add_event(info
, current_ev
, end_buf
,
1140 &iwe
, IW_EV_QUAL_LEN
);
1143 memset(&iwe
, 0, sizeof(iwe
));
1144 iwe
.cmd
= SIOCGIWENCODE
;
1145 if (bss
->pub
.capability
& WLAN_CAPABILITY_PRIVACY
)
1146 iwe
.u
.data
.flags
= IW_ENCODE_ENABLED
| IW_ENCODE_NOKEY
;
1148 iwe
.u
.data
.flags
= IW_ENCODE_DISABLED
;
1149 iwe
.u
.data
.length
= 0;
1150 current_ev
= iwe_stream_add_point(info
, current_ev
, end_buf
,
1155 if (ie
[1] > rem
- 2)
1160 memset(&iwe
, 0, sizeof(iwe
));
1161 iwe
.cmd
= SIOCGIWESSID
;
1162 iwe
.u
.data
.length
= ie
[1];
1163 iwe
.u
.data
.flags
= 1;
1164 current_ev
= iwe_stream_add_point(info
, current_ev
, end_buf
,
1167 case WLAN_EID_MESH_ID
:
1168 memset(&iwe
, 0, sizeof(iwe
));
1169 iwe
.cmd
= SIOCGIWESSID
;
1170 iwe
.u
.data
.length
= ie
[1];
1171 iwe
.u
.data
.flags
= 1;
1172 current_ev
= iwe_stream_add_point(info
, current_ev
, end_buf
,
1175 case WLAN_EID_MESH_CONFIG
:
1177 if (ie
[1] != sizeof(struct ieee80211_meshconf_ie
))
1179 buf
= kmalloc(50, GFP_ATOMIC
);
1183 memset(&iwe
, 0, sizeof(iwe
));
1184 iwe
.cmd
= IWEVCUSTOM
;
1185 sprintf(buf
, "Mesh Network Path Selection Protocol ID: "
1187 iwe
.u
.data
.length
= strlen(buf
);
1188 current_ev
= iwe_stream_add_point(info
, current_ev
,
1191 sprintf(buf
, "Path Selection Metric ID: 0x%02X",
1193 iwe
.u
.data
.length
= strlen(buf
);
1194 current_ev
= iwe_stream_add_point(info
, current_ev
,
1197 sprintf(buf
, "Congestion Control Mode ID: 0x%02X",
1199 iwe
.u
.data
.length
= strlen(buf
);
1200 current_ev
= iwe_stream_add_point(info
, current_ev
,
1203 sprintf(buf
, "Synchronization ID: 0x%02X", cfg
[3]);
1204 iwe
.u
.data
.length
= strlen(buf
);
1205 current_ev
= iwe_stream_add_point(info
, current_ev
,
1208 sprintf(buf
, "Authentication ID: 0x%02X", cfg
[4]);
1209 iwe
.u
.data
.length
= strlen(buf
);
1210 current_ev
= iwe_stream_add_point(info
, current_ev
,
1213 sprintf(buf
, "Formation Info: 0x%02X", cfg
[5]);
1214 iwe
.u
.data
.length
= strlen(buf
);
1215 current_ev
= iwe_stream_add_point(info
, current_ev
,
1218 sprintf(buf
, "Capabilities: 0x%02X", cfg
[6]);
1219 iwe
.u
.data
.length
= strlen(buf
);
1220 current_ev
= iwe_stream_add_point(info
, current_ev
,
1225 case WLAN_EID_SUPP_RATES
:
1226 case WLAN_EID_EXT_SUPP_RATES
:
1227 /* display all supported rates in readable format */
1228 p
= current_ev
+ iwe_stream_lcp_len(info
);
1230 memset(&iwe
, 0, sizeof(iwe
));
1231 iwe
.cmd
= SIOCGIWRATE
;
1232 /* Those two flags are ignored... */
1233 iwe
.u
.bitrate
.fixed
= iwe
.u
.bitrate
.disabled
= 0;
1235 for (i
= 0; i
< ie
[1]; i
++) {
1236 iwe
.u
.bitrate
.value
=
1237 ((ie
[i
+ 2] & 0x7f) * 500000);
1238 p
= iwe_stream_add_value(info
, current_ev
, p
,
1239 end_buf
, &iwe
, IW_EV_PARAM_LEN
);
1248 if (bss
->pub
.capability
& (WLAN_CAPABILITY_ESS
| WLAN_CAPABILITY_IBSS
) ||
1250 memset(&iwe
, 0, sizeof(iwe
));
1251 iwe
.cmd
= SIOCGIWMODE
;
1253 iwe
.u
.mode
= IW_MODE_MESH
;
1254 else if (bss
->pub
.capability
& WLAN_CAPABILITY_ESS
)
1255 iwe
.u
.mode
= IW_MODE_MASTER
;
1257 iwe
.u
.mode
= IW_MODE_ADHOC
;
1258 current_ev
= iwe_stream_add_event(info
, current_ev
, end_buf
,
1259 &iwe
, IW_EV_UINT_LEN
);
1262 buf
= kmalloc(30, GFP_ATOMIC
);
1264 memset(&iwe
, 0, sizeof(iwe
));
1265 iwe
.cmd
= IWEVCUSTOM
;
1266 sprintf(buf
, "tsf=%016llx", (unsigned long long)(bss
->pub
.tsf
));
1267 iwe
.u
.data
.length
= strlen(buf
);
1268 current_ev
= iwe_stream_add_point(info
, current_ev
, end_buf
,
1270 memset(&iwe
, 0, sizeof(iwe
));
1271 iwe
.cmd
= IWEVCUSTOM
;
1272 sprintf(buf
, " Last beacon: %ums ago",
1273 elapsed_jiffies_msecs(bss
->ts
));
1274 iwe
.u
.data
.length
= strlen(buf
);
1275 current_ev
= iwe_stream_add_point(info
, current_ev
,
1276 end_buf
, &iwe
, buf
);
1280 ieee80211_scan_add_ies(info
, &bss
->pub
, ¤t_ev
, end_buf
);
1286 static int ieee80211_scan_results(struct cfg80211_registered_device
*dev
,
1287 struct iw_request_info
*info
,
1288 char *buf
, size_t len
)
1290 char *current_ev
= buf
;
1291 char *end_buf
= buf
+ len
;
1292 struct cfg80211_internal_bss
*bss
;
1294 spin_lock_bh(&dev
->bss_lock
);
1295 cfg80211_bss_expire(dev
);
1297 list_for_each_entry(bss
, &dev
->bss_list
, list
) {
1298 if (buf
+ len
- current_ev
<= IW_EV_ADDR_LEN
) {
1299 spin_unlock_bh(&dev
->bss_lock
);
1302 current_ev
= ieee80211_bss(&dev
->wiphy
, info
, bss
,
1303 current_ev
, end_buf
);
1305 spin_unlock_bh(&dev
->bss_lock
);
1306 return current_ev
- buf
;
1310 int cfg80211_wext_giwscan(struct net_device
*dev
,
1311 struct iw_request_info
*info
,
1312 struct iw_point
*data
, char *extra
)
1314 struct cfg80211_registered_device
*rdev
;
1317 if (!netif_running(dev
))
1320 rdev
= cfg80211_get_dev_from_ifindex(dev_net(dev
), dev
->ifindex
);
1323 return PTR_ERR(rdev
);
1325 if (rdev
->scan_req
) {
1330 res
= ieee80211_scan_results(rdev
, info
, extra
, data
->length
);
1338 cfg80211_unlock_rdev(rdev
);
1341 EXPORT_SYMBOL_GPL(cfg80211_wext_giwscan
);