2 * cfg80211 scan result handling
4 * Copyright 2008 Johannes Berg <johannes@sipsolutions.net>
5 * Copyright 2013-2014 Intel Mobile Communications GmbH
6 * Copyright 2016 Intel Deutschland GmbH
8 #include <linux/kernel.h>
9 #include <linux/slab.h>
10 #include <linux/module.h>
11 #include <linux/netdevice.h>
12 #include <linux/wireless.h>
13 #include <linux/nl80211.h>
14 #include <linux/etherdevice.h>
16 #include <net/cfg80211.h>
17 #include <net/cfg80211-wext.h>
18 #include <net/iw_handler.h>
21 #include "wext-compat.h"
25 * DOC: BSS tree/list structure
27 * At the top level, the BSS list is kept in both a list in each
28 * registered device (@bss_list) as well as an RB-tree for faster
29 * lookup. In the RB-tree, entries can be looked up using their
30 * channel, MESHID, MESHCONF (for MBSSes) or channel, BSSID, SSID
33 * Due to the possibility of hidden SSIDs, there's a second level
34 * structure, the "hidden_list" and "hidden_beacon_bss" pointer.
35 * The hidden_list connects all BSSes belonging to a single AP
36 * that has a hidden SSID, and connects beacon and probe response
37 * entries. For a probe response entry for a hidden SSID, the
38 * hidden_beacon_bss pointer points to the BSS struct holding the
39 * beacon's information.
41 * Reference counting is done for all these references except for
42 * the hidden_list, so that a beacon BSS struct that is otherwise
43 * not referenced has one reference for being on the bss_list and
44 * one for each probe response entry that points to it using the
45 * hidden_beacon_bss pointer. When a BSS struct that has such a
46 * pointer is get/put, the refcount update is also propagated to
47 * the referenced struct, this ensure that it cannot get removed
48 * while somebody is using the probe response version.
50 * Note that the hidden_beacon_bss pointer never changes, due to
51 * the reference counting. Therefore, no locking is needed for
54 * Also note that the hidden_beacon_bss pointer is only relevant
55 * if the driver uses something other than the IEs, e.g. private
56 * data stored stored in the BSS struct, since the beacon IEs are
57 * also linked into the probe response struct.
60 #define IEEE80211_SCAN_RESULT_EXPIRE (30 * HZ)
62 static void bss_free(struct cfg80211_internal_bss
*bss
)
64 struct cfg80211_bss_ies
*ies
;
66 if (WARN_ON(atomic_read(&bss
->hold
)))
69 ies
= (void *)rcu_access_pointer(bss
->pub
.beacon_ies
);
70 if (ies
&& !bss
->pub
.hidden_beacon_bss
)
71 kfree_rcu(ies
, rcu_head
);
72 ies
= (void *)rcu_access_pointer(bss
->pub
.proberesp_ies
);
74 kfree_rcu(ies
, rcu_head
);
77 * This happens when the module is removed, it doesn't
78 * really matter any more save for completeness
80 if (!list_empty(&bss
->hidden_list
))
81 list_del(&bss
->hidden_list
);
86 static inline void bss_ref_get(struct cfg80211_registered_device
*rdev
,
87 struct cfg80211_internal_bss
*bss
)
89 lockdep_assert_held(&rdev
->bss_lock
);
92 if (bss
->pub
.hidden_beacon_bss
) {
93 bss
= container_of(bss
->pub
.hidden_beacon_bss
,
94 struct cfg80211_internal_bss
,
100 static inline void bss_ref_put(struct cfg80211_registered_device
*rdev
,
101 struct cfg80211_internal_bss
*bss
)
103 lockdep_assert_held(&rdev
->bss_lock
);
105 if (bss
->pub
.hidden_beacon_bss
) {
106 struct cfg80211_internal_bss
*hbss
;
107 hbss
= container_of(bss
->pub
.hidden_beacon_bss
,
108 struct cfg80211_internal_bss
,
111 if (hbss
->refcount
== 0)
115 if (bss
->refcount
== 0)
119 static bool __cfg80211_unlink_bss(struct cfg80211_registered_device
*rdev
,
120 struct cfg80211_internal_bss
*bss
)
122 lockdep_assert_held(&rdev
->bss_lock
);
124 if (!list_empty(&bss
->hidden_list
)) {
126 * don't remove the beacon entry if it has
127 * probe responses associated with it
129 if (!bss
->pub
.hidden_beacon_bss
)
132 * if it's a probe response entry break its
133 * link to the other entries in the group
135 list_del_init(&bss
->hidden_list
);
138 list_del_init(&bss
->list
);
139 rb_erase(&bss
->rbn
, &rdev
->bss_tree
);
140 bss_ref_put(rdev
, bss
);
144 static void __cfg80211_bss_expire(struct cfg80211_registered_device
*rdev
,
145 unsigned long expire_time
)
147 struct cfg80211_internal_bss
*bss
, *tmp
;
148 bool expired
= false;
150 lockdep_assert_held(&rdev
->bss_lock
);
152 list_for_each_entry_safe(bss
, tmp
, &rdev
->bss_list
, list
) {
153 if (atomic_read(&bss
->hold
))
155 if (!time_after(expire_time
, bss
->ts
))
158 if (__cfg80211_unlink_bss(rdev
, bss
))
163 rdev
->bss_generation
++;
166 void ___cfg80211_scan_done(struct cfg80211_registered_device
*rdev
,
169 struct cfg80211_scan_request
*request
;
170 struct wireless_dev
*wdev
;
172 #ifdef CONFIG_CFG80211_WEXT
173 union iwreq_data wrqu
;
178 if (rdev
->scan_msg
) {
179 nl80211_send_scan_result(rdev
, rdev
->scan_msg
);
180 rdev
->scan_msg
= NULL
;
184 request
= rdev
->scan_req
;
188 wdev
= request
->wdev
;
191 * This must be before sending the other events!
192 * Otherwise, wpa_supplicant gets completely confused with
196 cfg80211_sme_scan_done(wdev
->netdev
);
198 if (!request
->info
.aborted
&&
199 request
->flags
& NL80211_SCAN_FLAG_FLUSH
) {
200 /* flush entries from previous scans */
201 spin_lock_bh(&rdev
->bss_lock
);
202 __cfg80211_bss_expire(rdev
, request
->scan_start
);
203 spin_unlock_bh(&rdev
->bss_lock
);
206 msg
= nl80211_build_scan_msg(rdev
, wdev
, request
->info
.aborted
);
208 #ifdef CONFIG_CFG80211_WEXT
209 if (wdev
->netdev
&& !request
->info
.aborted
) {
210 memset(&wrqu
, 0, sizeof(wrqu
));
212 wireless_send_event(wdev
->netdev
, SIOCGIWSCAN
, &wrqu
, NULL
);
217 dev_put(wdev
->netdev
);
219 rdev
->scan_req
= NULL
;
223 rdev
->scan_msg
= msg
;
225 nl80211_send_scan_result(rdev
, msg
);
228 void __cfg80211_scan_done(struct work_struct
*wk
)
230 struct cfg80211_registered_device
*rdev
;
232 rdev
= container_of(wk
, struct cfg80211_registered_device
,
236 ___cfg80211_scan_done(rdev
, true);
240 void cfg80211_scan_done(struct cfg80211_scan_request
*request
,
241 struct cfg80211_scan_info
*info
)
243 trace_cfg80211_scan_done(request
, info
);
244 WARN_ON(request
!= wiphy_to_rdev(request
->wiphy
)->scan_req
);
246 request
->info
= *info
;
247 request
->notified
= true;
248 queue_work(cfg80211_wq
, &wiphy_to_rdev(request
->wiphy
)->scan_done_wk
);
250 EXPORT_SYMBOL(cfg80211_scan_done
);
252 void __cfg80211_sched_scan_results(struct work_struct
*wk
)
254 struct cfg80211_registered_device
*rdev
;
255 struct cfg80211_sched_scan_request
*request
;
257 rdev
= container_of(wk
, struct cfg80211_registered_device
,
258 sched_scan_results_wk
);
262 request
= rtnl_dereference(rdev
->sched_scan_req
);
264 /* we don't have sched_scan_req anymore if the scan is stopping */
266 if (request
->flags
& NL80211_SCAN_FLAG_FLUSH
) {
267 /* flush entries from previous scans */
268 spin_lock_bh(&rdev
->bss_lock
);
269 __cfg80211_bss_expire(rdev
, request
->scan_start
);
270 spin_unlock_bh(&rdev
->bss_lock
);
271 request
->scan_start
= jiffies
;
273 nl80211_send_sched_scan_results(rdev
, request
->dev
);
279 void cfg80211_sched_scan_results(struct wiphy
*wiphy
)
281 trace_cfg80211_sched_scan_results(wiphy
);
282 /* ignore if we're not scanning */
284 if (rcu_access_pointer(wiphy_to_rdev(wiphy
)->sched_scan_req
))
285 queue_work(cfg80211_wq
,
286 &wiphy_to_rdev(wiphy
)->sched_scan_results_wk
);
288 EXPORT_SYMBOL(cfg80211_sched_scan_results
);
290 void cfg80211_sched_scan_stopped_rtnl(struct wiphy
*wiphy
)
292 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
296 trace_cfg80211_sched_scan_stopped(wiphy
);
298 __cfg80211_stop_sched_scan(rdev
, true);
300 EXPORT_SYMBOL(cfg80211_sched_scan_stopped_rtnl
);
302 void cfg80211_sched_scan_stopped(struct wiphy
*wiphy
)
305 cfg80211_sched_scan_stopped_rtnl(wiphy
);
308 EXPORT_SYMBOL(cfg80211_sched_scan_stopped
);
310 int __cfg80211_stop_sched_scan(struct cfg80211_registered_device
*rdev
,
311 bool driver_initiated
)
313 struct cfg80211_sched_scan_request
*sched_scan_req
;
314 struct net_device
*dev
;
318 if (!rdev
->sched_scan_req
)
321 sched_scan_req
= rtnl_dereference(rdev
->sched_scan_req
);
322 dev
= sched_scan_req
->dev
;
324 if (!driver_initiated
) {
325 int err
= rdev_sched_scan_stop(rdev
, dev
);
330 nl80211_send_sched_scan(rdev
, dev
, NL80211_CMD_SCHED_SCAN_STOPPED
);
332 RCU_INIT_POINTER(rdev
->sched_scan_req
, NULL
);
333 kfree_rcu(sched_scan_req
, rcu_head
);
338 void cfg80211_bss_age(struct cfg80211_registered_device
*rdev
,
339 unsigned long age_secs
)
341 struct cfg80211_internal_bss
*bss
;
342 unsigned long age_jiffies
= msecs_to_jiffies(age_secs
* MSEC_PER_SEC
);
344 spin_lock_bh(&rdev
->bss_lock
);
345 list_for_each_entry(bss
, &rdev
->bss_list
, list
)
346 bss
->ts
-= age_jiffies
;
347 spin_unlock_bh(&rdev
->bss_lock
);
350 void cfg80211_bss_expire(struct cfg80211_registered_device
*rdev
)
352 __cfg80211_bss_expire(rdev
, jiffies
- IEEE80211_SCAN_RESULT_EXPIRE
);
355 const u8
*cfg80211_find_ie_match(u8 eid
, const u8
*ies
, int len
,
356 const u8
*match
, int match_len
,
359 /* match_offset can't be smaller than 2, unless match_len is
360 * zero, in which case match_offset must be zero as well.
362 if (WARN_ON((match_len
&& match_offset
< 2) ||
363 (!match_len
&& match_offset
)))
366 while (len
>= 2 && len
>= ies
[1] + 2) {
367 if ((ies
[0] == eid
) &&
368 (ies
[1] + 2 >= match_offset
+ match_len
) &&
369 !memcmp(ies
+ match_offset
, match
, match_len
))
378 EXPORT_SYMBOL(cfg80211_find_ie_match
);
380 const u8
*cfg80211_find_vendor_ie(unsigned int oui
, int oui_type
,
381 const u8
*ies
, int len
)
384 u8 match
[] = { oui
>> 16, oui
>> 8, oui
, oui_type
};
385 int match_len
= (oui_type
< 0) ? 3 : sizeof(match
);
387 if (WARN_ON(oui_type
> 0xff))
390 ie
= cfg80211_find_ie_match(WLAN_EID_VENDOR_SPECIFIC
, ies
, len
,
391 match
, match_len
, 2);
393 if (ie
&& (ie
[1] < 4))
398 EXPORT_SYMBOL(cfg80211_find_vendor_ie
);
400 static bool is_bss(struct cfg80211_bss
*a
, const u8
*bssid
,
401 const u8
*ssid
, size_t ssid_len
)
403 const struct cfg80211_bss_ies
*ies
;
406 if (bssid
&& !ether_addr_equal(a
->bssid
, bssid
))
412 ies
= rcu_access_pointer(a
->ies
);
415 ssidie
= cfg80211_find_ie(WLAN_EID_SSID
, ies
->data
, ies
->len
);
418 if (ssidie
[1] != ssid_len
)
420 return memcmp(ssidie
+ 2, ssid
, ssid_len
) == 0;
424 * enum bss_compare_mode - BSS compare mode
425 * @BSS_CMP_REGULAR: regular compare mode (for insertion and normal find)
426 * @BSS_CMP_HIDE_ZLEN: find hidden SSID with zero-length mode
427 * @BSS_CMP_HIDE_NUL: find hidden SSID with NUL-ed out mode
429 enum bss_compare_mode
{
435 static int cmp_bss(struct cfg80211_bss
*a
,
436 struct cfg80211_bss
*b
,
437 enum bss_compare_mode mode
)
439 const struct cfg80211_bss_ies
*a_ies
, *b_ies
;
440 const u8
*ie1
= NULL
;
441 const u8
*ie2
= NULL
;
444 if (a
->channel
!= b
->channel
)
445 return b
->channel
->center_freq
- a
->channel
->center_freq
;
447 a_ies
= rcu_access_pointer(a
->ies
);
450 b_ies
= rcu_access_pointer(b
->ies
);
454 if (WLAN_CAPABILITY_IS_STA_BSS(a
->capability
))
455 ie1
= cfg80211_find_ie(WLAN_EID_MESH_ID
,
456 a_ies
->data
, a_ies
->len
);
457 if (WLAN_CAPABILITY_IS_STA_BSS(b
->capability
))
458 ie2
= cfg80211_find_ie(WLAN_EID_MESH_ID
,
459 b_ies
->data
, b_ies
->len
);
463 if (ie1
[1] == ie2
[1])
464 mesh_id_cmp
= memcmp(ie1
+ 2, ie2
+ 2, ie1
[1]);
466 mesh_id_cmp
= ie2
[1] - ie1
[1];
468 ie1
= cfg80211_find_ie(WLAN_EID_MESH_CONFIG
,
469 a_ies
->data
, a_ies
->len
);
470 ie2
= cfg80211_find_ie(WLAN_EID_MESH_CONFIG
,
471 b_ies
->data
, b_ies
->len
);
475 if (ie1
[1] != ie2
[1])
476 return ie2
[1] - ie1
[1];
477 return memcmp(ie1
+ 2, ie2
+ 2, ie1
[1]);
481 r
= memcmp(a
->bssid
, b
->bssid
, sizeof(a
->bssid
));
485 ie1
= cfg80211_find_ie(WLAN_EID_SSID
, a_ies
->data
, a_ies
->len
);
486 ie2
= cfg80211_find_ie(WLAN_EID_SSID
, b_ies
->data
, b_ies
->len
);
492 * Note that with "hide_ssid", the function returns a match if
493 * the already-present BSS ("b") is a hidden SSID beacon for
497 /* sort missing IE before (left of) present IE */
504 case BSS_CMP_HIDE_ZLEN
:
506 * In ZLEN mode we assume the BSS entry we're
507 * looking for has a zero-length SSID. So if
508 * the one we're looking at right now has that,
509 * return 0. Otherwise, return the difference
510 * in length, but since we're looking for the
511 * 0-length it's really equivalent to returning
512 * the length of the one we're looking at.
514 * No content comparison is needed as we assume
515 * the content length is zero.
518 case BSS_CMP_REGULAR
:
520 /* sort by length first, then by contents */
521 if (ie1
[1] != ie2
[1])
522 return ie2
[1] - ie1
[1];
523 return memcmp(ie1
+ 2, ie2
+ 2, ie1
[1]);
524 case BSS_CMP_HIDE_NUL
:
525 if (ie1
[1] != ie2
[1])
526 return ie2
[1] - ie1
[1];
527 /* this is equivalent to memcmp(zeroes, ie2 + 2, len) */
528 for (i
= 0; i
< ie2
[1]; i
++)
535 static bool cfg80211_bss_type_match(u16 capability
,
536 enum nl80211_band band
,
537 enum ieee80211_bss_type bss_type
)
542 if (bss_type
== IEEE80211_BSS_TYPE_ANY
)
545 if (band
== NL80211_BAND_60GHZ
) {
546 mask
= WLAN_CAPABILITY_DMG_TYPE_MASK
;
548 case IEEE80211_BSS_TYPE_ESS
:
549 val
= WLAN_CAPABILITY_DMG_TYPE_AP
;
551 case IEEE80211_BSS_TYPE_PBSS
:
552 val
= WLAN_CAPABILITY_DMG_TYPE_PBSS
;
554 case IEEE80211_BSS_TYPE_IBSS
:
555 val
= WLAN_CAPABILITY_DMG_TYPE_IBSS
;
561 mask
= WLAN_CAPABILITY_ESS
| WLAN_CAPABILITY_IBSS
;
563 case IEEE80211_BSS_TYPE_ESS
:
564 val
= WLAN_CAPABILITY_ESS
;
566 case IEEE80211_BSS_TYPE_IBSS
:
567 val
= WLAN_CAPABILITY_IBSS
;
569 case IEEE80211_BSS_TYPE_MBSS
:
577 ret
= ((capability
& mask
) == val
);
581 /* Returned bss is reference counted and must be cleaned up appropriately. */
582 struct cfg80211_bss
*cfg80211_get_bss(struct wiphy
*wiphy
,
583 struct ieee80211_channel
*channel
,
585 const u8
*ssid
, size_t ssid_len
,
586 enum ieee80211_bss_type bss_type
,
587 enum ieee80211_privacy privacy
)
589 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
590 struct cfg80211_internal_bss
*bss
, *res
= NULL
;
591 unsigned long now
= jiffies
;
594 trace_cfg80211_get_bss(wiphy
, channel
, bssid
, ssid
, ssid_len
, bss_type
,
597 spin_lock_bh(&rdev
->bss_lock
);
599 list_for_each_entry(bss
, &rdev
->bss_list
, list
) {
600 if (!cfg80211_bss_type_match(bss
->pub
.capability
,
601 bss
->pub
.channel
->band
, bss_type
))
604 bss_privacy
= (bss
->pub
.capability
& WLAN_CAPABILITY_PRIVACY
);
605 if ((privacy
== IEEE80211_PRIVACY_ON
&& !bss_privacy
) ||
606 (privacy
== IEEE80211_PRIVACY_OFF
&& bss_privacy
))
608 if (channel
&& bss
->pub
.channel
!= channel
)
610 if (!is_valid_ether_addr(bss
->pub
.bssid
))
612 /* Don't get expired BSS structs */
613 if (time_after(now
, bss
->ts
+ IEEE80211_SCAN_RESULT_EXPIRE
) &&
614 !atomic_read(&bss
->hold
))
616 if (is_bss(&bss
->pub
, bssid
, ssid
, ssid_len
)) {
618 bss_ref_get(rdev
, res
);
623 spin_unlock_bh(&rdev
->bss_lock
);
626 trace_cfg80211_return_bss(&res
->pub
);
629 EXPORT_SYMBOL(cfg80211_get_bss
);
631 static void rb_insert_bss(struct cfg80211_registered_device
*rdev
,
632 struct cfg80211_internal_bss
*bss
)
634 struct rb_node
**p
= &rdev
->bss_tree
.rb_node
;
635 struct rb_node
*parent
= NULL
;
636 struct cfg80211_internal_bss
*tbss
;
641 tbss
= rb_entry(parent
, struct cfg80211_internal_bss
, rbn
);
643 cmp
= cmp_bss(&bss
->pub
, &tbss
->pub
, BSS_CMP_REGULAR
);
646 /* will sort of leak this BSS */
656 rb_link_node(&bss
->rbn
, parent
, p
);
657 rb_insert_color(&bss
->rbn
, &rdev
->bss_tree
);
660 static struct cfg80211_internal_bss
*
661 rb_find_bss(struct cfg80211_registered_device
*rdev
,
662 struct cfg80211_internal_bss
*res
,
663 enum bss_compare_mode mode
)
665 struct rb_node
*n
= rdev
->bss_tree
.rb_node
;
666 struct cfg80211_internal_bss
*bss
;
670 bss
= rb_entry(n
, struct cfg80211_internal_bss
, rbn
);
671 r
= cmp_bss(&res
->pub
, &bss
->pub
, mode
);
684 static bool cfg80211_combine_bsses(struct cfg80211_registered_device
*rdev
,
685 struct cfg80211_internal_bss
*new)
687 const struct cfg80211_bss_ies
*ies
;
688 struct cfg80211_internal_bss
*bss
;
693 ies
= rcu_access_pointer(new->pub
.beacon_ies
);
697 ie
= cfg80211_find_ie(WLAN_EID_SSID
, ies
->data
, ies
->len
);
704 for (i
= 0; i
< ssidlen
; i
++)
708 /* not a hidden SSID */
712 /* This is the bad part ... */
714 list_for_each_entry(bss
, &rdev
->bss_list
, list
) {
715 if (!ether_addr_equal(bss
->pub
.bssid
, new->pub
.bssid
))
717 if (bss
->pub
.channel
!= new->pub
.channel
)
719 if (bss
->pub
.scan_width
!= new->pub
.scan_width
)
721 if (rcu_access_pointer(bss
->pub
.beacon_ies
))
723 ies
= rcu_access_pointer(bss
->pub
.ies
);
726 ie
= cfg80211_find_ie(WLAN_EID_SSID
, ies
->data
, ies
->len
);
729 if (ssidlen
&& ie
[1] != ssidlen
)
731 if (WARN_ON_ONCE(bss
->pub
.hidden_beacon_bss
))
733 if (WARN_ON_ONCE(!list_empty(&bss
->hidden_list
)))
734 list_del(&bss
->hidden_list
);
736 list_add(&bss
->hidden_list
, &new->hidden_list
);
737 bss
->pub
.hidden_beacon_bss
= &new->pub
;
738 new->refcount
+= bss
->refcount
;
739 rcu_assign_pointer(bss
->pub
.beacon_ies
,
740 new->pub
.beacon_ies
);
746 /* Returned bss is reference counted and must be cleaned up appropriately. */
747 static struct cfg80211_internal_bss
*
748 cfg80211_bss_update(struct cfg80211_registered_device
*rdev
,
749 struct cfg80211_internal_bss
*tmp
,
752 struct cfg80211_internal_bss
*found
= NULL
;
754 if (WARN_ON(!tmp
->pub
.channel
))
759 spin_lock_bh(&rdev
->bss_lock
);
761 if (WARN_ON(!rcu_access_pointer(tmp
->pub
.ies
))) {
762 spin_unlock_bh(&rdev
->bss_lock
);
766 found
= rb_find_bss(rdev
, tmp
, BSS_CMP_REGULAR
);
770 if (rcu_access_pointer(tmp
->pub
.proberesp_ies
)) {
771 const struct cfg80211_bss_ies
*old
;
773 old
= rcu_access_pointer(found
->pub
.proberesp_ies
);
775 rcu_assign_pointer(found
->pub
.proberesp_ies
,
776 tmp
->pub
.proberesp_ies
);
777 /* Override possible earlier Beacon frame IEs */
778 rcu_assign_pointer(found
->pub
.ies
,
779 tmp
->pub
.proberesp_ies
);
781 kfree_rcu((struct cfg80211_bss_ies
*)old
,
783 } else if (rcu_access_pointer(tmp
->pub
.beacon_ies
)) {
784 const struct cfg80211_bss_ies
*old
;
785 struct cfg80211_internal_bss
*bss
;
787 if (found
->pub
.hidden_beacon_bss
&&
788 !list_empty(&found
->hidden_list
)) {
789 const struct cfg80211_bss_ies
*f
;
792 * The found BSS struct is one of the probe
793 * response members of a group, but we're
794 * receiving a beacon (beacon_ies in the tmp
795 * bss is used). This can only mean that the
796 * AP changed its beacon from not having an
797 * SSID to showing it, which is confusing so
798 * drop this information.
801 f
= rcu_access_pointer(tmp
->pub
.beacon_ies
);
802 kfree_rcu((struct cfg80211_bss_ies
*)f
,
807 old
= rcu_access_pointer(found
->pub
.beacon_ies
);
809 rcu_assign_pointer(found
->pub
.beacon_ies
,
810 tmp
->pub
.beacon_ies
);
812 /* Override IEs if they were from a beacon before */
813 if (old
== rcu_access_pointer(found
->pub
.ies
))
814 rcu_assign_pointer(found
->pub
.ies
,
815 tmp
->pub
.beacon_ies
);
817 /* Assign beacon IEs to all sub entries */
818 list_for_each_entry(bss
, &found
->hidden_list
,
820 const struct cfg80211_bss_ies
*ies
;
822 ies
= rcu_access_pointer(bss
->pub
.beacon_ies
);
825 rcu_assign_pointer(bss
->pub
.beacon_ies
,
826 tmp
->pub
.beacon_ies
);
830 kfree_rcu((struct cfg80211_bss_ies
*)old
,
834 found
->pub
.beacon_interval
= tmp
->pub
.beacon_interval
;
836 * don't update the signal if beacon was heard on
840 found
->pub
.signal
= tmp
->pub
.signal
;
841 found
->pub
.capability
= tmp
->pub
.capability
;
843 found
->ts_boottime
= tmp
->ts_boottime
;
844 found
->parent_tsf
= tmp
->parent_tsf
;
845 ether_addr_copy(found
->parent_bssid
, tmp
->parent_bssid
);
847 struct cfg80211_internal_bss
*new;
848 struct cfg80211_internal_bss
*hidden
;
849 struct cfg80211_bss_ies
*ies
;
852 * create a copy -- the "res" variable that is passed in
853 * is allocated on the stack since it's not needed in the
854 * more common case of an update
856 new = kzalloc(sizeof(*new) + rdev
->wiphy
.bss_priv_size
,
859 ies
= (void *)rcu_dereference(tmp
->pub
.beacon_ies
);
861 kfree_rcu(ies
, rcu_head
);
862 ies
= (void *)rcu_dereference(tmp
->pub
.proberesp_ies
);
864 kfree_rcu(ies
, rcu_head
);
867 memcpy(new, tmp
, sizeof(*new));
869 INIT_LIST_HEAD(&new->hidden_list
);
871 if (rcu_access_pointer(tmp
->pub
.proberesp_ies
)) {
872 hidden
= rb_find_bss(rdev
, tmp
, BSS_CMP_HIDE_ZLEN
);
874 hidden
= rb_find_bss(rdev
, tmp
,
877 new->pub
.hidden_beacon_bss
= &hidden
->pub
;
878 list_add(&new->hidden_list
,
879 &hidden
->hidden_list
);
881 rcu_assign_pointer(new->pub
.beacon_ies
,
882 hidden
->pub
.beacon_ies
);
886 * Ok so we found a beacon, and don't have an entry. If
887 * it's a beacon with hidden SSID, we might be in for an
888 * expensive search for any probe responses that should
889 * be grouped with this beacon for updates ...
891 if (!cfg80211_combine_bsses(rdev
, new)) {
897 list_add_tail(&new->list
, &rdev
->bss_list
);
898 rb_insert_bss(rdev
, new);
902 rdev
->bss_generation
++;
903 bss_ref_get(rdev
, found
);
904 spin_unlock_bh(&rdev
->bss_lock
);
908 spin_unlock_bh(&rdev
->bss_lock
);
912 static struct ieee80211_channel
*
913 cfg80211_get_bss_channel(struct wiphy
*wiphy
, const u8
*ie
, size_t ielen
,
914 struct ieee80211_channel
*channel
)
918 int channel_number
= -1;
920 tmp
= cfg80211_find_ie(WLAN_EID_DS_PARAMS
, ie
, ielen
);
921 if (tmp
&& tmp
[1] == 1) {
922 channel_number
= tmp
[2];
924 tmp
= cfg80211_find_ie(WLAN_EID_HT_OPERATION
, ie
, ielen
);
925 if (tmp
&& tmp
[1] >= sizeof(struct ieee80211_ht_operation
)) {
926 struct ieee80211_ht_operation
*htop
= (void *)(tmp
+ 2);
928 channel_number
= htop
->primary_chan
;
932 if (channel_number
< 0)
935 freq
= ieee80211_channel_to_frequency(channel_number
, channel
->band
);
936 channel
= ieee80211_get_channel(wiphy
, freq
);
939 if (channel
->flags
& IEEE80211_CHAN_DISABLED
)
944 /* Returned bss is reference counted and must be cleaned up appropriately. */
945 struct cfg80211_bss
*
946 cfg80211_inform_bss_data(struct wiphy
*wiphy
,
947 struct cfg80211_inform_bss
*data
,
948 enum cfg80211_bss_frame_type ftype
,
949 const u8
*bssid
, u64 tsf
, u16 capability
,
950 u16 beacon_interval
, const u8
*ie
, size_t ielen
,
953 struct cfg80211_bss_ies
*ies
;
954 struct ieee80211_channel
*channel
;
955 struct cfg80211_internal_bss tmp
= {}, *res
;
962 if (WARN_ON(wiphy
->signal_type
== CFG80211_SIGNAL_TYPE_UNSPEC
&&
963 (data
->signal
< 0 || data
->signal
> 100)))
966 channel
= cfg80211_get_bss_channel(wiphy
, ie
, ielen
, data
->chan
);
970 memcpy(tmp
.pub
.bssid
, bssid
, ETH_ALEN
);
971 tmp
.pub
.channel
= channel
;
972 tmp
.pub
.scan_width
= data
->scan_width
;
973 tmp
.pub
.signal
= data
->signal
;
974 tmp
.pub
.beacon_interval
= beacon_interval
;
975 tmp
.pub
.capability
= capability
;
976 tmp
.ts_boottime
= data
->boottime_ns
;
979 * If we do not know here whether the IEs are from a Beacon or Probe
980 * Response frame, we need to pick one of the options and only use it
981 * with the driver that does not provide the full Beacon/Probe Response
982 * frame. Use Beacon frame pointer to avoid indicating that this should
983 * override the IEs pointer should we have received an earlier
984 * indication of Probe Response data.
986 ies
= kzalloc(sizeof(*ies
) + ielen
, gfp
);
991 ies
->from_beacon
= false;
992 memcpy(ies
->data
, ie
, ielen
);
995 case CFG80211_BSS_FTYPE_BEACON
:
996 ies
->from_beacon
= true;
997 /* fall through to assign */
998 case CFG80211_BSS_FTYPE_UNKNOWN
:
999 rcu_assign_pointer(tmp
.pub
.beacon_ies
, ies
);
1001 case CFG80211_BSS_FTYPE_PRESP
:
1002 rcu_assign_pointer(tmp
.pub
.proberesp_ies
, ies
);
1005 rcu_assign_pointer(tmp
.pub
.ies
, ies
);
1007 signal_valid
= abs(data
->chan
->center_freq
- channel
->center_freq
) <=
1008 wiphy
->max_adj_channel_rssi_comp
;
1009 res
= cfg80211_bss_update(wiphy_to_rdev(wiphy
), &tmp
, signal_valid
);
1013 if (channel
->band
== NL80211_BAND_60GHZ
) {
1014 bss_type
= res
->pub
.capability
& WLAN_CAPABILITY_DMG_TYPE_MASK
;
1015 if (bss_type
== WLAN_CAPABILITY_DMG_TYPE_AP
||
1016 bss_type
== WLAN_CAPABILITY_DMG_TYPE_PBSS
)
1017 regulatory_hint_found_beacon(wiphy
, channel
, gfp
);
1019 if (res
->pub
.capability
& WLAN_CAPABILITY_ESS
)
1020 regulatory_hint_found_beacon(wiphy
, channel
, gfp
);
1023 trace_cfg80211_return_bss(&res
->pub
);
1024 /* cfg80211_bss_update gives us a referenced result */
1027 EXPORT_SYMBOL(cfg80211_inform_bss_data
);
1029 /* cfg80211_inform_bss_width_frame helper */
1030 struct cfg80211_bss
*
1031 cfg80211_inform_bss_frame_data(struct wiphy
*wiphy
,
1032 struct cfg80211_inform_bss
*data
,
1033 struct ieee80211_mgmt
*mgmt
, size_t len
,
1037 struct cfg80211_internal_bss tmp
= {}, *res
;
1038 struct cfg80211_bss_ies
*ies
;
1039 struct ieee80211_channel
*channel
;
1041 size_t ielen
= len
- offsetof(struct ieee80211_mgmt
,
1042 u
.probe_resp
.variable
);
1045 BUILD_BUG_ON(offsetof(struct ieee80211_mgmt
, u
.probe_resp
.variable
) !=
1046 offsetof(struct ieee80211_mgmt
, u
.beacon
.variable
));
1048 trace_cfg80211_inform_bss_frame(wiphy
, data
, mgmt
, len
);
1053 if (WARN_ON(!wiphy
))
1056 if (WARN_ON(wiphy
->signal_type
== CFG80211_SIGNAL_TYPE_UNSPEC
&&
1057 (data
->signal
< 0 || data
->signal
> 100)))
1060 if (WARN_ON(len
< offsetof(struct ieee80211_mgmt
, u
.probe_resp
.variable
)))
1063 channel
= cfg80211_get_bss_channel(wiphy
, mgmt
->u
.beacon
.variable
,
1068 ies
= kzalloc(sizeof(*ies
) + ielen
, gfp
);
1072 ies
->tsf
= le64_to_cpu(mgmt
->u
.probe_resp
.timestamp
);
1073 ies
->from_beacon
= ieee80211_is_beacon(mgmt
->frame_control
);
1074 memcpy(ies
->data
, mgmt
->u
.probe_resp
.variable
, ielen
);
1076 if (ieee80211_is_probe_resp(mgmt
->frame_control
))
1077 rcu_assign_pointer(tmp
.pub
.proberesp_ies
, ies
);
1079 rcu_assign_pointer(tmp
.pub
.beacon_ies
, ies
);
1080 rcu_assign_pointer(tmp
.pub
.ies
, ies
);
1082 memcpy(tmp
.pub
.bssid
, mgmt
->bssid
, ETH_ALEN
);
1083 tmp
.pub
.channel
= channel
;
1084 tmp
.pub
.scan_width
= data
->scan_width
;
1085 tmp
.pub
.signal
= data
->signal
;
1086 tmp
.pub
.beacon_interval
= le16_to_cpu(mgmt
->u
.probe_resp
.beacon_int
);
1087 tmp
.pub
.capability
= le16_to_cpu(mgmt
->u
.probe_resp
.capab_info
);
1088 tmp
.ts_boottime
= data
->boottime_ns
;
1089 tmp
.parent_tsf
= data
->parent_tsf
;
1090 ether_addr_copy(tmp
.parent_bssid
, data
->parent_bssid
);
1092 signal_valid
= abs(data
->chan
->center_freq
- channel
->center_freq
) <=
1093 wiphy
->max_adj_channel_rssi_comp
;
1094 res
= cfg80211_bss_update(wiphy_to_rdev(wiphy
), &tmp
, signal_valid
);
1098 if (channel
->band
== NL80211_BAND_60GHZ
) {
1099 bss_type
= res
->pub
.capability
& WLAN_CAPABILITY_DMG_TYPE_MASK
;
1100 if (bss_type
== WLAN_CAPABILITY_DMG_TYPE_AP
||
1101 bss_type
== WLAN_CAPABILITY_DMG_TYPE_PBSS
)
1102 regulatory_hint_found_beacon(wiphy
, channel
, gfp
);
1104 if (res
->pub
.capability
& WLAN_CAPABILITY_ESS
)
1105 regulatory_hint_found_beacon(wiphy
, channel
, gfp
);
1108 trace_cfg80211_return_bss(&res
->pub
);
1109 /* cfg80211_bss_update gives us a referenced result */
1112 EXPORT_SYMBOL(cfg80211_inform_bss_frame_data
);
1114 void cfg80211_ref_bss(struct wiphy
*wiphy
, struct cfg80211_bss
*pub
)
1116 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
1117 struct cfg80211_internal_bss
*bss
;
1122 bss
= container_of(pub
, struct cfg80211_internal_bss
, pub
);
1124 spin_lock_bh(&rdev
->bss_lock
);
1125 bss_ref_get(rdev
, bss
);
1126 spin_unlock_bh(&rdev
->bss_lock
);
1128 EXPORT_SYMBOL(cfg80211_ref_bss
);
1130 void cfg80211_put_bss(struct wiphy
*wiphy
, struct cfg80211_bss
*pub
)
1132 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
1133 struct cfg80211_internal_bss
*bss
;
1138 bss
= container_of(pub
, struct cfg80211_internal_bss
, pub
);
1140 spin_lock_bh(&rdev
->bss_lock
);
1141 bss_ref_put(rdev
, bss
);
1142 spin_unlock_bh(&rdev
->bss_lock
);
1144 EXPORT_SYMBOL(cfg80211_put_bss
);
1146 void cfg80211_unlink_bss(struct wiphy
*wiphy
, struct cfg80211_bss
*pub
)
1148 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
1149 struct cfg80211_internal_bss
*bss
;
1154 bss
= container_of(pub
, struct cfg80211_internal_bss
, pub
);
1156 spin_lock_bh(&rdev
->bss_lock
);
1157 if (!list_empty(&bss
->list
)) {
1158 if (__cfg80211_unlink_bss(rdev
, bss
))
1159 rdev
->bss_generation
++;
1161 spin_unlock_bh(&rdev
->bss_lock
);
1163 EXPORT_SYMBOL(cfg80211_unlink_bss
);
1165 #ifdef CONFIG_CFG80211_WEXT
1166 static struct cfg80211_registered_device
*
1167 cfg80211_get_dev_from_ifindex(struct net
*net
, int ifindex
)
1169 struct cfg80211_registered_device
*rdev
;
1170 struct net_device
*dev
;
1174 dev
= dev_get_by_index(net
, ifindex
);
1176 return ERR_PTR(-ENODEV
);
1177 if (dev
->ieee80211_ptr
)
1178 rdev
= wiphy_to_rdev(dev
->ieee80211_ptr
->wiphy
);
1180 rdev
= ERR_PTR(-ENODEV
);
1185 int cfg80211_wext_siwscan(struct net_device
*dev
,
1186 struct iw_request_info
*info
,
1187 union iwreq_data
*wrqu
, char *extra
)
1189 struct cfg80211_registered_device
*rdev
;
1190 struct wiphy
*wiphy
;
1191 struct iw_scan_req
*wreq
= NULL
;
1192 struct cfg80211_scan_request
*creq
= NULL
;
1193 int i
, err
, n_channels
= 0;
1194 enum nl80211_band band
;
1196 if (!netif_running(dev
))
1199 if (wrqu
->data
.length
== sizeof(struct iw_scan_req
))
1200 wreq
= (struct iw_scan_req
*)extra
;
1202 rdev
= cfg80211_get_dev_from_ifindex(dev_net(dev
), dev
->ifindex
);
1205 return PTR_ERR(rdev
);
1207 if (rdev
->scan_req
|| rdev
->scan_msg
) {
1212 wiphy
= &rdev
->wiphy
;
1214 /* Determine number of channels, needed to allocate creq */
1215 if (wreq
&& wreq
->num_channels
)
1216 n_channels
= wreq
->num_channels
;
1218 n_channels
= ieee80211_get_num_supported_channels(wiphy
);
1220 creq
= kzalloc(sizeof(*creq
) + sizeof(struct cfg80211_ssid
) +
1221 n_channels
* sizeof(void *),
1228 creq
->wiphy
= wiphy
;
1229 creq
->wdev
= dev
->ieee80211_ptr
;
1230 /* SSIDs come after channels */
1231 creq
->ssids
= (void *)&creq
->channels
[n_channels
];
1232 creq
->n_channels
= n_channels
;
1234 creq
->scan_start
= jiffies
;
1236 /* translate "Scan on frequencies" request */
1238 for (band
= 0; band
< NUM_NL80211_BANDS
; band
++) {
1241 if (!wiphy
->bands
[band
])
1244 for (j
= 0; j
< wiphy
->bands
[band
]->n_channels
; j
++) {
1245 /* ignore disabled channels */
1246 if (wiphy
->bands
[band
]->channels
[j
].flags
&
1247 IEEE80211_CHAN_DISABLED
)
1250 /* If we have a wireless request structure and the
1251 * wireless request specifies frequencies, then search
1252 * for the matching hardware channel.
1254 if (wreq
&& wreq
->num_channels
) {
1256 int wiphy_freq
= wiphy
->bands
[band
]->channels
[j
].center_freq
;
1257 for (k
= 0; k
< wreq
->num_channels
; k
++) {
1258 struct iw_freq
*freq
=
1259 &wreq
->channel_list
[k
];
1261 cfg80211_wext_freq(freq
);
1263 if (wext_freq
== wiphy_freq
)
1264 goto wext_freq_found
;
1266 goto wext_freq_not_found
;
1270 creq
->channels
[i
] = &wiphy
->bands
[band
]->channels
[j
];
1272 wext_freq_not_found
: ;
1275 /* No channels found? */
1281 /* Set real number of channels specified in creq->channels[] */
1282 creq
->n_channels
= i
;
1284 /* translate "Scan for SSID" request */
1286 if (wrqu
->data
.flags
& IW_SCAN_THIS_ESSID
) {
1287 if (wreq
->essid_len
> IEEE80211_MAX_SSID_LEN
) {
1291 memcpy(creq
->ssids
[0].ssid
, wreq
->essid
, wreq
->essid_len
);
1292 creq
->ssids
[0].ssid_len
= wreq
->essid_len
;
1294 if (wreq
->scan_type
== IW_SCAN_TYPE_PASSIVE
)
1298 for (i
= 0; i
< NUM_NL80211_BANDS
; i
++)
1299 if (wiphy
->bands
[i
])
1300 creq
->rates
[i
] = (1 << wiphy
->bands
[i
]->n_bitrates
) - 1;
1302 eth_broadcast_addr(creq
->bssid
);
1304 rdev
->scan_req
= creq
;
1305 err
= rdev_scan(rdev
, creq
);
1307 rdev
->scan_req
= NULL
;
1308 /* creq will be freed below */
1310 nl80211_send_scan_start(rdev
, dev
->ieee80211_ptr
);
1311 /* creq now owned by driver */
1319 EXPORT_WEXT_HANDLER(cfg80211_wext_siwscan
);
1321 static char *ieee80211_scan_add_ies(struct iw_request_info
*info
,
1322 const struct cfg80211_bss_ies
*ies
,
1323 char *current_ev
, char *end_buf
)
1325 const u8
*pos
, *end
, *next
;
1326 struct iw_event iwe
;
1332 * If needed, fragment the IEs buffer (at IE boundaries) into short
1333 * enough fragments to fit into IW_GENERIC_IE_MAX octet messages.
1336 end
= pos
+ ies
->len
;
1338 while (end
- pos
> IW_GENERIC_IE_MAX
) {
1339 next
= pos
+ 2 + pos
[1];
1340 while (next
+ 2 + next
[1] - pos
< IW_GENERIC_IE_MAX
)
1341 next
= next
+ 2 + next
[1];
1343 memset(&iwe
, 0, sizeof(iwe
));
1344 iwe
.cmd
= IWEVGENIE
;
1345 iwe
.u
.data
.length
= next
- pos
;
1346 current_ev
= iwe_stream_add_point_check(info
, current_ev
,
1349 if (IS_ERR(current_ev
))
1355 memset(&iwe
, 0, sizeof(iwe
));
1356 iwe
.cmd
= IWEVGENIE
;
1357 iwe
.u
.data
.length
= end
- pos
;
1358 current_ev
= iwe_stream_add_point_check(info
, current_ev
,
1361 if (IS_ERR(current_ev
))
1369 ieee80211_bss(struct wiphy
*wiphy
, struct iw_request_info
*info
,
1370 struct cfg80211_internal_bss
*bss
, char *current_ev
,
1373 const struct cfg80211_bss_ies
*ies
;
1374 struct iw_event iwe
;
1379 bool ismesh
= false;
1381 memset(&iwe
, 0, sizeof(iwe
));
1382 iwe
.cmd
= SIOCGIWAP
;
1383 iwe
.u
.ap_addr
.sa_family
= ARPHRD_ETHER
;
1384 memcpy(iwe
.u
.ap_addr
.sa_data
, bss
->pub
.bssid
, ETH_ALEN
);
1385 current_ev
= iwe_stream_add_event_check(info
, current_ev
, end_buf
, &iwe
,
1387 if (IS_ERR(current_ev
))
1390 memset(&iwe
, 0, sizeof(iwe
));
1391 iwe
.cmd
= SIOCGIWFREQ
;
1392 iwe
.u
.freq
.m
= ieee80211_frequency_to_channel(bss
->pub
.channel
->center_freq
);
1394 current_ev
= iwe_stream_add_event_check(info
, current_ev
, end_buf
, &iwe
,
1396 if (IS_ERR(current_ev
))
1399 memset(&iwe
, 0, sizeof(iwe
));
1400 iwe
.cmd
= SIOCGIWFREQ
;
1401 iwe
.u
.freq
.m
= bss
->pub
.channel
->center_freq
;
1403 current_ev
= iwe_stream_add_event_check(info
, current_ev
, end_buf
, &iwe
,
1405 if (IS_ERR(current_ev
))
1408 if (wiphy
->signal_type
!= CFG80211_SIGNAL_TYPE_NONE
) {
1409 memset(&iwe
, 0, sizeof(iwe
));
1411 iwe
.u
.qual
.updated
= IW_QUAL_LEVEL_UPDATED
|
1412 IW_QUAL_NOISE_INVALID
|
1413 IW_QUAL_QUAL_UPDATED
;
1414 switch (wiphy
->signal_type
) {
1415 case CFG80211_SIGNAL_TYPE_MBM
:
1416 sig
= bss
->pub
.signal
/ 100;
1417 iwe
.u
.qual
.level
= sig
;
1418 iwe
.u
.qual
.updated
|= IW_QUAL_DBM
;
1419 if (sig
< -110) /* rather bad */
1421 else if (sig
> -40) /* perfect */
1423 /* will give a range of 0 .. 70 */
1424 iwe
.u
.qual
.qual
= sig
+ 110;
1426 case CFG80211_SIGNAL_TYPE_UNSPEC
:
1427 iwe
.u
.qual
.level
= bss
->pub
.signal
;
1428 /* will give range 0 .. 100 */
1429 iwe
.u
.qual
.qual
= bss
->pub
.signal
;
1435 current_ev
= iwe_stream_add_event_check(info
, current_ev
,
1438 if (IS_ERR(current_ev
))
1442 memset(&iwe
, 0, sizeof(iwe
));
1443 iwe
.cmd
= SIOCGIWENCODE
;
1444 if (bss
->pub
.capability
& WLAN_CAPABILITY_PRIVACY
)
1445 iwe
.u
.data
.flags
= IW_ENCODE_ENABLED
| IW_ENCODE_NOKEY
;
1447 iwe
.u
.data
.flags
= IW_ENCODE_DISABLED
;
1448 iwe
.u
.data
.length
= 0;
1449 current_ev
= iwe_stream_add_point_check(info
, current_ev
, end_buf
,
1451 if (IS_ERR(current_ev
))
1455 ies
= rcu_dereference(bss
->pub
.ies
);
1461 if (ie
[1] > rem
- 2)
1466 memset(&iwe
, 0, sizeof(iwe
));
1467 iwe
.cmd
= SIOCGIWESSID
;
1468 iwe
.u
.data
.length
= ie
[1];
1469 iwe
.u
.data
.flags
= 1;
1470 current_ev
= iwe_stream_add_point_check(info
,
1474 if (IS_ERR(current_ev
))
1477 case WLAN_EID_MESH_ID
:
1478 memset(&iwe
, 0, sizeof(iwe
));
1479 iwe
.cmd
= SIOCGIWESSID
;
1480 iwe
.u
.data
.length
= ie
[1];
1481 iwe
.u
.data
.flags
= 1;
1482 current_ev
= iwe_stream_add_point_check(info
,
1486 if (IS_ERR(current_ev
))
1489 case WLAN_EID_MESH_CONFIG
:
1491 if (ie
[1] != sizeof(struct ieee80211_meshconf_ie
))
1494 memset(&iwe
, 0, sizeof(iwe
));
1495 iwe
.cmd
= IWEVCUSTOM
;
1496 sprintf(buf
, "Mesh Network Path Selection Protocol ID: "
1498 iwe
.u
.data
.length
= strlen(buf
);
1499 current_ev
= iwe_stream_add_point_check(info
,
1503 if (IS_ERR(current_ev
))
1505 sprintf(buf
, "Path Selection Metric ID: 0x%02X",
1507 iwe
.u
.data
.length
= strlen(buf
);
1508 current_ev
= iwe_stream_add_point_check(info
,
1512 if (IS_ERR(current_ev
))
1514 sprintf(buf
, "Congestion Control Mode ID: 0x%02X",
1516 iwe
.u
.data
.length
= strlen(buf
);
1517 current_ev
= iwe_stream_add_point_check(info
,
1521 if (IS_ERR(current_ev
))
1523 sprintf(buf
, "Synchronization ID: 0x%02X", cfg
[3]);
1524 iwe
.u
.data
.length
= strlen(buf
);
1525 current_ev
= iwe_stream_add_point_check(info
,
1529 if (IS_ERR(current_ev
))
1531 sprintf(buf
, "Authentication ID: 0x%02X", cfg
[4]);
1532 iwe
.u
.data
.length
= strlen(buf
);
1533 current_ev
= iwe_stream_add_point_check(info
,
1537 if (IS_ERR(current_ev
))
1539 sprintf(buf
, "Formation Info: 0x%02X", cfg
[5]);
1540 iwe
.u
.data
.length
= strlen(buf
);
1541 current_ev
= iwe_stream_add_point_check(info
,
1545 if (IS_ERR(current_ev
))
1547 sprintf(buf
, "Capabilities: 0x%02X", cfg
[6]);
1548 iwe
.u
.data
.length
= strlen(buf
);
1549 current_ev
= iwe_stream_add_point_check(info
,
1553 if (IS_ERR(current_ev
))
1556 case WLAN_EID_SUPP_RATES
:
1557 case WLAN_EID_EXT_SUPP_RATES
:
1558 /* display all supported rates in readable format */
1559 p
= current_ev
+ iwe_stream_lcp_len(info
);
1561 memset(&iwe
, 0, sizeof(iwe
));
1562 iwe
.cmd
= SIOCGIWRATE
;
1563 /* Those two flags are ignored... */
1564 iwe
.u
.bitrate
.fixed
= iwe
.u
.bitrate
.disabled
= 0;
1566 for (i
= 0; i
< ie
[1]; i
++) {
1567 iwe
.u
.bitrate
.value
=
1568 ((ie
[i
+ 2] & 0x7f) * 500000);
1570 p
= iwe_stream_add_value(info
, current_ev
, p
,
1574 current_ev
= ERR_PTR(-E2BIG
);
1585 if (bss
->pub
.capability
& (WLAN_CAPABILITY_ESS
| WLAN_CAPABILITY_IBSS
) ||
1587 memset(&iwe
, 0, sizeof(iwe
));
1588 iwe
.cmd
= SIOCGIWMODE
;
1590 iwe
.u
.mode
= IW_MODE_MESH
;
1591 else if (bss
->pub
.capability
& WLAN_CAPABILITY_ESS
)
1592 iwe
.u
.mode
= IW_MODE_MASTER
;
1594 iwe
.u
.mode
= IW_MODE_ADHOC
;
1595 current_ev
= iwe_stream_add_event_check(info
, current_ev
,
1598 if (IS_ERR(current_ev
))
1602 memset(&iwe
, 0, sizeof(iwe
));
1603 iwe
.cmd
= IWEVCUSTOM
;
1604 sprintf(buf
, "tsf=%016llx", (unsigned long long)(ies
->tsf
));
1605 iwe
.u
.data
.length
= strlen(buf
);
1606 current_ev
= iwe_stream_add_point_check(info
, current_ev
, end_buf
,
1608 if (IS_ERR(current_ev
))
1610 memset(&iwe
, 0, sizeof(iwe
));
1611 iwe
.cmd
= IWEVCUSTOM
;
1612 sprintf(buf
, " Last beacon: %ums ago",
1613 elapsed_jiffies_msecs(bss
->ts
));
1614 iwe
.u
.data
.length
= strlen(buf
);
1615 current_ev
= iwe_stream_add_point_check(info
, current_ev
,
1616 end_buf
, &iwe
, buf
);
1617 if (IS_ERR(current_ev
))
1620 current_ev
= ieee80211_scan_add_ies(info
, ies
, current_ev
, end_buf
);
1628 static int ieee80211_scan_results(struct cfg80211_registered_device
*rdev
,
1629 struct iw_request_info
*info
,
1630 char *buf
, size_t len
)
1632 char *current_ev
= buf
;
1633 char *end_buf
= buf
+ len
;
1634 struct cfg80211_internal_bss
*bss
;
1637 spin_lock_bh(&rdev
->bss_lock
);
1638 cfg80211_bss_expire(rdev
);
1640 list_for_each_entry(bss
, &rdev
->bss_list
, list
) {
1641 if (buf
+ len
- current_ev
<= IW_EV_ADDR_LEN
) {
1645 current_ev
= ieee80211_bss(&rdev
->wiphy
, info
, bss
,
1646 current_ev
, end_buf
);
1647 if (IS_ERR(current_ev
)) {
1648 err
= PTR_ERR(current_ev
);
1652 spin_unlock_bh(&rdev
->bss_lock
);
1656 return current_ev
- buf
;
1660 int cfg80211_wext_giwscan(struct net_device
*dev
,
1661 struct iw_request_info
*info
,
1662 struct iw_point
*data
, char *extra
)
1664 struct cfg80211_registered_device
*rdev
;
1667 if (!netif_running(dev
))
1670 rdev
= cfg80211_get_dev_from_ifindex(dev_net(dev
), dev
->ifindex
);
1673 return PTR_ERR(rdev
);
1675 if (rdev
->scan_req
|| rdev
->scan_msg
)
1678 res
= ieee80211_scan_results(rdev
, info
, extra
, data
->length
);
1687 EXPORT_WEXT_HANDLER(cfg80211_wext_giwscan
);