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.
61 * Limit the number of BSS entries stored in mac80211. Each one is
62 * a bit over 4k at most, so this limits to roughly 4-5M of memory.
63 * If somebody wants to really attack this though, they'd likely
64 * use small beacons, and only one type of frame, limiting each of
65 * the entries to a much smaller size (in order to generate more
66 * entries in total, so overhead is bigger.)
68 static int bss_entries_limit
= 1000;
69 module_param(bss_entries_limit
, int, 0644);
70 MODULE_PARM_DESC(bss_entries_limit
,
71 "limit to number of scan BSS entries (per wiphy, default 1000)");
73 #define IEEE80211_SCAN_RESULT_EXPIRE (30 * HZ)
75 static void bss_free(struct cfg80211_internal_bss
*bss
)
77 struct cfg80211_bss_ies
*ies
;
79 if (WARN_ON(atomic_read(&bss
->hold
)))
82 ies
= (void *)rcu_access_pointer(bss
->pub
.beacon_ies
);
83 if (ies
&& !bss
->pub
.hidden_beacon_bss
)
84 kfree_rcu(ies
, rcu_head
);
85 ies
= (void *)rcu_access_pointer(bss
->pub
.proberesp_ies
);
87 kfree_rcu(ies
, rcu_head
);
90 * This happens when the module is removed, it doesn't
91 * really matter any more save for completeness
93 if (!list_empty(&bss
->hidden_list
))
94 list_del(&bss
->hidden_list
);
99 static inline void bss_ref_get(struct cfg80211_registered_device
*rdev
,
100 struct cfg80211_internal_bss
*bss
)
102 lockdep_assert_held(&rdev
->bss_lock
);
105 if (bss
->pub
.hidden_beacon_bss
) {
106 bss
= container_of(bss
->pub
.hidden_beacon_bss
,
107 struct cfg80211_internal_bss
,
113 static inline void bss_ref_put(struct cfg80211_registered_device
*rdev
,
114 struct cfg80211_internal_bss
*bss
)
116 lockdep_assert_held(&rdev
->bss_lock
);
118 if (bss
->pub
.hidden_beacon_bss
) {
119 struct cfg80211_internal_bss
*hbss
;
120 hbss
= container_of(bss
->pub
.hidden_beacon_bss
,
121 struct cfg80211_internal_bss
,
124 if (hbss
->refcount
== 0)
128 if (bss
->refcount
== 0)
132 static bool __cfg80211_unlink_bss(struct cfg80211_registered_device
*rdev
,
133 struct cfg80211_internal_bss
*bss
)
135 lockdep_assert_held(&rdev
->bss_lock
);
137 if (!list_empty(&bss
->hidden_list
)) {
139 * don't remove the beacon entry if it has
140 * probe responses associated with it
142 if (!bss
->pub
.hidden_beacon_bss
)
145 * if it's a probe response entry break its
146 * link to the other entries in the group
148 list_del_init(&bss
->hidden_list
);
151 list_del_init(&bss
->list
);
152 rb_erase(&bss
->rbn
, &rdev
->bss_tree
);
154 WARN_ONCE((rdev
->bss_entries
== 0) ^ list_empty(&rdev
->bss_list
),
155 "rdev bss entries[%d]/list[empty:%d] corruption\n",
156 rdev
->bss_entries
, list_empty(&rdev
->bss_list
));
157 bss_ref_put(rdev
, bss
);
161 static void __cfg80211_bss_expire(struct cfg80211_registered_device
*rdev
,
162 unsigned long expire_time
)
164 struct cfg80211_internal_bss
*bss
, *tmp
;
165 bool expired
= false;
167 lockdep_assert_held(&rdev
->bss_lock
);
169 list_for_each_entry_safe(bss
, tmp
, &rdev
->bss_list
, list
) {
170 if (atomic_read(&bss
->hold
))
172 if (!time_after(expire_time
, bss
->ts
))
175 if (__cfg80211_unlink_bss(rdev
, bss
))
180 rdev
->bss_generation
++;
183 static bool cfg80211_bss_expire_oldest(struct cfg80211_registered_device
*rdev
)
185 struct cfg80211_internal_bss
*bss
, *oldest
= NULL
;
188 lockdep_assert_held(&rdev
->bss_lock
);
190 list_for_each_entry(bss
, &rdev
->bss_list
, list
) {
191 if (atomic_read(&bss
->hold
))
194 if (!list_empty(&bss
->hidden_list
) &&
195 !bss
->pub
.hidden_beacon_bss
)
198 if (oldest
&& time_before(oldest
->ts
, bss
->ts
))
203 if (WARN_ON(!oldest
))
207 * The callers make sure to increase rdev->bss_generation if anything
208 * gets removed (and a new entry added), so there's no need to also do
212 ret
= __cfg80211_unlink_bss(rdev
, oldest
);
217 void ___cfg80211_scan_done(struct cfg80211_registered_device
*rdev
,
220 struct cfg80211_scan_request
*request
;
221 struct wireless_dev
*wdev
;
223 #ifdef CONFIG_CFG80211_WEXT
224 union iwreq_data wrqu
;
229 if (rdev
->scan_msg
) {
230 nl80211_send_scan_result(rdev
, rdev
->scan_msg
);
231 rdev
->scan_msg
= NULL
;
235 request
= rdev
->scan_req
;
239 wdev
= request
->wdev
;
242 * This must be before sending the other events!
243 * Otherwise, wpa_supplicant gets completely confused with
247 cfg80211_sme_scan_done(wdev
->netdev
);
249 if (!request
->info
.aborted
&&
250 request
->flags
& NL80211_SCAN_FLAG_FLUSH
) {
251 /* flush entries from previous scans */
252 spin_lock_bh(&rdev
->bss_lock
);
253 __cfg80211_bss_expire(rdev
, request
->scan_start
);
254 spin_unlock_bh(&rdev
->bss_lock
);
257 msg
= nl80211_build_scan_msg(rdev
, wdev
, request
->info
.aborted
);
259 #ifdef CONFIG_CFG80211_WEXT
260 if (wdev
->netdev
&& !request
->info
.aborted
) {
261 memset(&wrqu
, 0, sizeof(wrqu
));
263 wireless_send_event(wdev
->netdev
, SIOCGIWSCAN
, &wrqu
, NULL
);
268 dev_put(wdev
->netdev
);
270 rdev
->scan_req
= NULL
;
274 rdev
->scan_msg
= msg
;
276 nl80211_send_scan_result(rdev
, msg
);
279 void __cfg80211_scan_done(struct work_struct
*wk
)
281 struct cfg80211_registered_device
*rdev
;
283 rdev
= container_of(wk
, struct cfg80211_registered_device
,
287 ___cfg80211_scan_done(rdev
, true);
291 void cfg80211_scan_done(struct cfg80211_scan_request
*request
,
292 struct cfg80211_scan_info
*info
)
294 trace_cfg80211_scan_done(request
, info
);
295 WARN_ON(request
!= wiphy_to_rdev(request
->wiphy
)->scan_req
);
297 request
->info
= *info
;
298 request
->notified
= true;
299 queue_work(cfg80211_wq
, &wiphy_to_rdev(request
->wiphy
)->scan_done_wk
);
301 EXPORT_SYMBOL(cfg80211_scan_done
);
303 void __cfg80211_sched_scan_results(struct work_struct
*wk
)
305 struct cfg80211_registered_device
*rdev
;
306 struct cfg80211_sched_scan_request
*request
;
308 rdev
= container_of(wk
, struct cfg80211_registered_device
,
309 sched_scan_results_wk
);
313 request
= rtnl_dereference(rdev
->sched_scan_req
);
315 /* we don't have sched_scan_req anymore if the scan is stopping */
317 if (request
->flags
& NL80211_SCAN_FLAG_FLUSH
) {
318 /* flush entries from previous scans */
319 spin_lock_bh(&rdev
->bss_lock
);
320 __cfg80211_bss_expire(rdev
, request
->scan_start
);
321 spin_unlock_bh(&rdev
->bss_lock
);
322 request
->scan_start
= jiffies
;
324 nl80211_send_sched_scan_results(rdev
, request
->dev
);
330 void cfg80211_sched_scan_results(struct wiphy
*wiphy
)
332 trace_cfg80211_sched_scan_results(wiphy
);
333 /* ignore if we're not scanning */
335 if (rcu_access_pointer(wiphy_to_rdev(wiphy
)->sched_scan_req
))
336 queue_work(cfg80211_wq
,
337 &wiphy_to_rdev(wiphy
)->sched_scan_results_wk
);
339 EXPORT_SYMBOL(cfg80211_sched_scan_results
);
341 void cfg80211_sched_scan_stopped_rtnl(struct wiphy
*wiphy
)
343 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
347 trace_cfg80211_sched_scan_stopped(wiphy
);
349 __cfg80211_stop_sched_scan(rdev
, true);
351 EXPORT_SYMBOL(cfg80211_sched_scan_stopped_rtnl
);
353 void cfg80211_sched_scan_stopped(struct wiphy
*wiphy
)
356 cfg80211_sched_scan_stopped_rtnl(wiphy
);
359 EXPORT_SYMBOL(cfg80211_sched_scan_stopped
);
361 int __cfg80211_stop_sched_scan(struct cfg80211_registered_device
*rdev
,
362 bool driver_initiated
)
364 struct cfg80211_sched_scan_request
*sched_scan_req
;
365 struct net_device
*dev
;
369 if (!rdev
->sched_scan_req
)
372 sched_scan_req
= rtnl_dereference(rdev
->sched_scan_req
);
373 dev
= sched_scan_req
->dev
;
375 if (!driver_initiated
) {
376 int err
= rdev_sched_scan_stop(rdev
, dev
);
381 nl80211_send_sched_scan(rdev
, dev
, NL80211_CMD_SCHED_SCAN_STOPPED
);
383 RCU_INIT_POINTER(rdev
->sched_scan_req
, NULL
);
384 kfree_rcu(sched_scan_req
, rcu_head
);
389 void cfg80211_bss_age(struct cfg80211_registered_device
*rdev
,
390 unsigned long age_secs
)
392 struct cfg80211_internal_bss
*bss
;
393 unsigned long age_jiffies
= msecs_to_jiffies(age_secs
* MSEC_PER_SEC
);
395 spin_lock_bh(&rdev
->bss_lock
);
396 list_for_each_entry(bss
, &rdev
->bss_list
, list
)
397 bss
->ts
-= age_jiffies
;
398 spin_unlock_bh(&rdev
->bss_lock
);
401 void cfg80211_bss_expire(struct cfg80211_registered_device
*rdev
)
403 __cfg80211_bss_expire(rdev
, jiffies
- IEEE80211_SCAN_RESULT_EXPIRE
);
406 const u8
*cfg80211_find_ie_match(u8 eid
, const u8
*ies
, int len
,
407 const u8
*match
, int match_len
,
410 const struct element
*elem
;
412 /* match_offset can't be smaller than 2, unless match_len is
413 * zero, in which case match_offset must be zero as well.
415 if (WARN_ON((match_len
&& match_offset
< 2) ||
416 (!match_len
&& match_offset
)))
419 for_each_element_id(elem
, eid
, ies
, len
) {
420 if (elem
->datalen
>= match_offset
- 2 + match_len
&&
421 !memcmp(elem
->data
+ match_offset
- 2, match
, match_len
))
427 EXPORT_SYMBOL(cfg80211_find_ie_match
);
429 const u8
*cfg80211_find_vendor_ie(unsigned int oui
, int oui_type
,
430 const u8
*ies
, int len
)
433 u8 match
[] = { oui
>> 16, oui
>> 8, oui
, oui_type
};
434 int match_len
= (oui_type
< 0) ? 3 : sizeof(match
);
436 if (WARN_ON(oui_type
> 0xff))
439 ie
= cfg80211_find_ie_match(WLAN_EID_VENDOR_SPECIFIC
, ies
, len
,
440 match
, match_len
, 2);
442 if (ie
&& (ie
[1] < 4))
447 EXPORT_SYMBOL(cfg80211_find_vendor_ie
);
449 static bool is_bss(struct cfg80211_bss
*a
, const u8
*bssid
,
450 const u8
*ssid
, size_t ssid_len
)
452 const struct cfg80211_bss_ies
*ies
;
455 if (bssid
&& !ether_addr_equal(a
->bssid
, bssid
))
461 ies
= rcu_access_pointer(a
->ies
);
464 ssidie
= cfg80211_find_ie(WLAN_EID_SSID
, ies
->data
, ies
->len
);
467 if (ssidie
[1] != ssid_len
)
469 return memcmp(ssidie
+ 2, ssid
, ssid_len
) == 0;
473 * enum bss_compare_mode - BSS compare mode
474 * @BSS_CMP_REGULAR: regular compare mode (for insertion and normal find)
475 * @BSS_CMP_HIDE_ZLEN: find hidden SSID with zero-length mode
476 * @BSS_CMP_HIDE_NUL: find hidden SSID with NUL-ed out mode
478 enum bss_compare_mode
{
484 static int cmp_bss(struct cfg80211_bss
*a
,
485 struct cfg80211_bss
*b
,
486 enum bss_compare_mode mode
)
488 const struct cfg80211_bss_ies
*a_ies
, *b_ies
;
489 const u8
*ie1
= NULL
;
490 const u8
*ie2
= NULL
;
493 if (a
->channel
!= b
->channel
)
494 return b
->channel
->center_freq
- a
->channel
->center_freq
;
496 a_ies
= rcu_access_pointer(a
->ies
);
499 b_ies
= rcu_access_pointer(b
->ies
);
503 if (WLAN_CAPABILITY_IS_STA_BSS(a
->capability
))
504 ie1
= cfg80211_find_ie(WLAN_EID_MESH_ID
,
505 a_ies
->data
, a_ies
->len
);
506 if (WLAN_CAPABILITY_IS_STA_BSS(b
->capability
))
507 ie2
= cfg80211_find_ie(WLAN_EID_MESH_ID
,
508 b_ies
->data
, b_ies
->len
);
512 if (ie1
[1] == ie2
[1])
513 mesh_id_cmp
= memcmp(ie1
+ 2, ie2
+ 2, ie1
[1]);
515 mesh_id_cmp
= ie2
[1] - ie1
[1];
517 ie1
= cfg80211_find_ie(WLAN_EID_MESH_CONFIG
,
518 a_ies
->data
, a_ies
->len
);
519 ie2
= cfg80211_find_ie(WLAN_EID_MESH_CONFIG
,
520 b_ies
->data
, b_ies
->len
);
524 if (ie1
[1] != ie2
[1])
525 return ie2
[1] - ie1
[1];
526 return memcmp(ie1
+ 2, ie2
+ 2, ie1
[1]);
530 r
= memcmp(a
->bssid
, b
->bssid
, sizeof(a
->bssid
));
534 ie1
= cfg80211_find_ie(WLAN_EID_SSID
, a_ies
->data
, a_ies
->len
);
535 ie2
= cfg80211_find_ie(WLAN_EID_SSID
, b_ies
->data
, b_ies
->len
);
541 * Note that with "hide_ssid", the function returns a match if
542 * the already-present BSS ("b") is a hidden SSID beacon for
546 /* sort missing IE before (left of) present IE */
553 case BSS_CMP_HIDE_ZLEN
:
555 * In ZLEN mode we assume the BSS entry we're
556 * looking for has a zero-length SSID. So if
557 * the one we're looking at right now has that,
558 * return 0. Otherwise, return the difference
559 * in length, but since we're looking for the
560 * 0-length it's really equivalent to returning
561 * the length of the one we're looking at.
563 * No content comparison is needed as we assume
564 * the content length is zero.
567 case BSS_CMP_REGULAR
:
569 /* sort by length first, then by contents */
570 if (ie1
[1] != ie2
[1])
571 return ie2
[1] - ie1
[1];
572 return memcmp(ie1
+ 2, ie2
+ 2, ie1
[1]);
573 case BSS_CMP_HIDE_NUL
:
574 if (ie1
[1] != ie2
[1])
575 return ie2
[1] - ie1
[1];
576 /* this is equivalent to memcmp(zeroes, ie2 + 2, len) */
577 for (i
= 0; i
< ie2
[1]; i
++)
584 static bool cfg80211_bss_type_match(u16 capability
,
585 enum nl80211_band band
,
586 enum ieee80211_bss_type bss_type
)
591 if (bss_type
== IEEE80211_BSS_TYPE_ANY
)
594 if (band
== NL80211_BAND_60GHZ
) {
595 mask
= WLAN_CAPABILITY_DMG_TYPE_MASK
;
597 case IEEE80211_BSS_TYPE_ESS
:
598 val
= WLAN_CAPABILITY_DMG_TYPE_AP
;
600 case IEEE80211_BSS_TYPE_PBSS
:
601 val
= WLAN_CAPABILITY_DMG_TYPE_PBSS
;
603 case IEEE80211_BSS_TYPE_IBSS
:
604 val
= WLAN_CAPABILITY_DMG_TYPE_IBSS
;
610 mask
= WLAN_CAPABILITY_ESS
| WLAN_CAPABILITY_IBSS
;
612 case IEEE80211_BSS_TYPE_ESS
:
613 val
= WLAN_CAPABILITY_ESS
;
615 case IEEE80211_BSS_TYPE_IBSS
:
616 val
= WLAN_CAPABILITY_IBSS
;
618 case IEEE80211_BSS_TYPE_MBSS
:
626 ret
= ((capability
& mask
) == val
);
630 /* Returned bss is reference counted and must be cleaned up appropriately. */
631 struct cfg80211_bss
*cfg80211_get_bss(struct wiphy
*wiphy
,
632 struct ieee80211_channel
*channel
,
634 const u8
*ssid
, size_t ssid_len
,
635 enum ieee80211_bss_type bss_type
,
636 enum ieee80211_privacy privacy
)
638 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
639 struct cfg80211_internal_bss
*bss
, *res
= NULL
;
640 unsigned long now
= jiffies
;
643 trace_cfg80211_get_bss(wiphy
, channel
, bssid
, ssid
, ssid_len
, bss_type
,
646 spin_lock_bh(&rdev
->bss_lock
);
648 list_for_each_entry(bss
, &rdev
->bss_list
, list
) {
649 if (!cfg80211_bss_type_match(bss
->pub
.capability
,
650 bss
->pub
.channel
->band
, bss_type
))
653 bss_privacy
= (bss
->pub
.capability
& WLAN_CAPABILITY_PRIVACY
);
654 if ((privacy
== IEEE80211_PRIVACY_ON
&& !bss_privacy
) ||
655 (privacy
== IEEE80211_PRIVACY_OFF
&& bss_privacy
))
657 if (channel
&& bss
->pub
.channel
!= channel
)
659 if (!is_valid_ether_addr(bss
->pub
.bssid
))
661 /* Don't get expired BSS structs */
662 if (time_after(now
, bss
->ts
+ IEEE80211_SCAN_RESULT_EXPIRE
) &&
663 !atomic_read(&bss
->hold
))
665 if (is_bss(&bss
->pub
, bssid
, ssid
, ssid_len
)) {
667 bss_ref_get(rdev
, res
);
672 spin_unlock_bh(&rdev
->bss_lock
);
675 trace_cfg80211_return_bss(&res
->pub
);
678 EXPORT_SYMBOL(cfg80211_get_bss
);
680 static void rb_insert_bss(struct cfg80211_registered_device
*rdev
,
681 struct cfg80211_internal_bss
*bss
)
683 struct rb_node
**p
= &rdev
->bss_tree
.rb_node
;
684 struct rb_node
*parent
= NULL
;
685 struct cfg80211_internal_bss
*tbss
;
690 tbss
= rb_entry(parent
, struct cfg80211_internal_bss
, rbn
);
692 cmp
= cmp_bss(&bss
->pub
, &tbss
->pub
, BSS_CMP_REGULAR
);
695 /* will sort of leak this BSS */
705 rb_link_node(&bss
->rbn
, parent
, p
);
706 rb_insert_color(&bss
->rbn
, &rdev
->bss_tree
);
709 static struct cfg80211_internal_bss
*
710 rb_find_bss(struct cfg80211_registered_device
*rdev
,
711 struct cfg80211_internal_bss
*res
,
712 enum bss_compare_mode mode
)
714 struct rb_node
*n
= rdev
->bss_tree
.rb_node
;
715 struct cfg80211_internal_bss
*bss
;
719 bss
= rb_entry(n
, struct cfg80211_internal_bss
, rbn
);
720 r
= cmp_bss(&res
->pub
, &bss
->pub
, mode
);
733 static bool cfg80211_combine_bsses(struct cfg80211_registered_device
*rdev
,
734 struct cfg80211_internal_bss
*new)
736 const struct cfg80211_bss_ies
*ies
;
737 struct cfg80211_internal_bss
*bss
;
743 ies
= rcu_access_pointer(new->pub
.beacon_ies
);
747 ie
= cfg80211_find_ie(WLAN_EID_SSID
, ies
->data
, ies
->len
);
754 for (i
= 0; i
< ssidlen
; i
++)
758 /* not a hidden SSID */
762 /* This is the bad part ... */
764 list_for_each_entry(bss
, &rdev
->bss_list
, list
) {
766 * we're iterating all the entries anyway, so take the
767 * opportunity to validate the list length accounting
771 if (!ether_addr_equal(bss
->pub
.bssid
, new->pub
.bssid
))
773 if (bss
->pub
.channel
!= new->pub
.channel
)
775 if (bss
->pub
.scan_width
!= new->pub
.scan_width
)
777 if (rcu_access_pointer(bss
->pub
.beacon_ies
))
779 ies
= rcu_access_pointer(bss
->pub
.ies
);
782 ie
= cfg80211_find_ie(WLAN_EID_SSID
, ies
->data
, ies
->len
);
785 if (ssidlen
&& ie
[1] != ssidlen
)
787 if (WARN_ON_ONCE(bss
->pub
.hidden_beacon_bss
))
789 if (WARN_ON_ONCE(!list_empty(&bss
->hidden_list
)))
790 list_del(&bss
->hidden_list
);
792 list_add(&bss
->hidden_list
, &new->hidden_list
);
793 bss
->pub
.hidden_beacon_bss
= &new->pub
;
794 new->refcount
+= bss
->refcount
;
795 rcu_assign_pointer(bss
->pub
.beacon_ies
,
796 new->pub
.beacon_ies
);
799 WARN_ONCE(n_entries
!= rdev
->bss_entries
,
800 "rdev bss entries[%d]/list[len:%d] corruption\n",
801 rdev
->bss_entries
, n_entries
);
806 /* Returned bss is reference counted and must be cleaned up appropriately. */
807 static struct cfg80211_internal_bss
*
808 cfg80211_bss_update(struct cfg80211_registered_device
*rdev
,
809 struct cfg80211_internal_bss
*tmp
,
812 struct cfg80211_internal_bss
*found
= NULL
;
814 if (WARN_ON(!tmp
->pub
.channel
))
819 spin_lock_bh(&rdev
->bss_lock
);
821 if (WARN_ON(!rcu_access_pointer(tmp
->pub
.ies
))) {
822 spin_unlock_bh(&rdev
->bss_lock
);
826 found
= rb_find_bss(rdev
, tmp
, BSS_CMP_REGULAR
);
830 if (rcu_access_pointer(tmp
->pub
.proberesp_ies
)) {
831 const struct cfg80211_bss_ies
*old
;
833 old
= rcu_access_pointer(found
->pub
.proberesp_ies
);
835 rcu_assign_pointer(found
->pub
.proberesp_ies
,
836 tmp
->pub
.proberesp_ies
);
837 /* Override possible earlier Beacon frame IEs */
838 rcu_assign_pointer(found
->pub
.ies
,
839 tmp
->pub
.proberesp_ies
);
841 kfree_rcu((struct cfg80211_bss_ies
*)old
,
843 } else if (rcu_access_pointer(tmp
->pub
.beacon_ies
)) {
844 const struct cfg80211_bss_ies
*old
;
845 struct cfg80211_internal_bss
*bss
;
847 if (found
->pub
.hidden_beacon_bss
&&
848 !list_empty(&found
->hidden_list
)) {
849 const struct cfg80211_bss_ies
*f
;
852 * The found BSS struct is one of the probe
853 * response members of a group, but we're
854 * receiving a beacon (beacon_ies in the tmp
855 * bss is used). This can only mean that the
856 * AP changed its beacon from not having an
857 * SSID to showing it, which is confusing so
858 * drop this information.
861 f
= rcu_access_pointer(tmp
->pub
.beacon_ies
);
862 kfree_rcu((struct cfg80211_bss_ies
*)f
,
867 old
= rcu_access_pointer(found
->pub
.beacon_ies
);
869 rcu_assign_pointer(found
->pub
.beacon_ies
,
870 tmp
->pub
.beacon_ies
);
872 /* Override IEs if they were from a beacon before */
873 if (old
== rcu_access_pointer(found
->pub
.ies
))
874 rcu_assign_pointer(found
->pub
.ies
,
875 tmp
->pub
.beacon_ies
);
877 /* Assign beacon IEs to all sub entries */
878 list_for_each_entry(bss
, &found
->hidden_list
,
880 const struct cfg80211_bss_ies
*ies
;
882 ies
= rcu_access_pointer(bss
->pub
.beacon_ies
);
885 rcu_assign_pointer(bss
->pub
.beacon_ies
,
886 tmp
->pub
.beacon_ies
);
890 kfree_rcu((struct cfg80211_bss_ies
*)old
,
894 found
->pub
.beacon_interval
= tmp
->pub
.beacon_interval
;
896 * don't update the signal if beacon was heard on
900 found
->pub
.signal
= tmp
->pub
.signal
;
901 found
->pub
.capability
= tmp
->pub
.capability
;
903 found
->ts_boottime
= tmp
->ts_boottime
;
904 found
->parent_tsf
= tmp
->parent_tsf
;
905 ether_addr_copy(found
->parent_bssid
, tmp
->parent_bssid
);
907 struct cfg80211_internal_bss
*new;
908 struct cfg80211_internal_bss
*hidden
;
909 struct cfg80211_bss_ies
*ies
;
912 * create a copy -- the "res" variable that is passed in
913 * is allocated on the stack since it's not needed in the
914 * more common case of an update
916 new = kzalloc(sizeof(*new) + rdev
->wiphy
.bss_priv_size
,
919 ies
= (void *)rcu_dereference(tmp
->pub
.beacon_ies
);
921 kfree_rcu(ies
, rcu_head
);
922 ies
= (void *)rcu_dereference(tmp
->pub
.proberesp_ies
);
924 kfree_rcu(ies
, rcu_head
);
927 memcpy(new, tmp
, sizeof(*new));
929 INIT_LIST_HEAD(&new->hidden_list
);
931 if (rcu_access_pointer(tmp
->pub
.proberesp_ies
)) {
932 hidden
= rb_find_bss(rdev
, tmp
, BSS_CMP_HIDE_ZLEN
);
934 hidden
= rb_find_bss(rdev
, tmp
,
937 new->pub
.hidden_beacon_bss
= &hidden
->pub
;
938 list_add(&new->hidden_list
,
939 &hidden
->hidden_list
);
941 rcu_assign_pointer(new->pub
.beacon_ies
,
942 hidden
->pub
.beacon_ies
);
946 * Ok so we found a beacon, and don't have an entry. If
947 * it's a beacon with hidden SSID, we might be in for an
948 * expensive search for any probe responses that should
949 * be grouped with this beacon for updates ...
951 if (!cfg80211_combine_bsses(rdev
, new)) {
957 if (rdev
->bss_entries
>= bss_entries_limit
&&
958 !cfg80211_bss_expire_oldest(rdev
)) {
963 list_add_tail(&new->list
, &rdev
->bss_list
);
965 rb_insert_bss(rdev
, new);
969 rdev
->bss_generation
++;
970 bss_ref_get(rdev
, found
);
971 spin_unlock_bh(&rdev
->bss_lock
);
975 spin_unlock_bh(&rdev
->bss_lock
);
980 * Update RX channel information based on the available frame payload
981 * information. This is mainly for the 2.4 GHz band where frames can be received
982 * from neighboring channels and the Beacon frames use the DSSS Parameter Set
983 * element to indicate the current (transmitting) channel, but this might also
984 * be needed on other bands if RX frequency does not match with the actual
985 * operating channel of a BSS.
987 static struct ieee80211_channel
*
988 cfg80211_get_bss_channel(struct wiphy
*wiphy
, const u8
*ie
, size_t ielen
,
989 struct ieee80211_channel
*channel
,
990 enum nl80211_bss_scan_width scan_width
)
994 int channel_number
= -1;
995 struct ieee80211_channel
*alt_channel
;
997 tmp
= cfg80211_find_ie(WLAN_EID_DS_PARAMS
, ie
, ielen
);
998 if (tmp
&& tmp
[1] == 1) {
999 channel_number
= tmp
[2];
1001 tmp
= cfg80211_find_ie(WLAN_EID_HT_OPERATION
, ie
, ielen
);
1002 if (tmp
&& tmp
[1] >= sizeof(struct ieee80211_ht_operation
)) {
1003 struct ieee80211_ht_operation
*htop
= (void *)(tmp
+ 2);
1005 channel_number
= htop
->primary_chan
;
1009 if (channel_number
< 0) {
1010 /* No channel information in frame payload */
1014 freq
= ieee80211_channel_to_frequency(channel_number
, channel
->band
);
1015 alt_channel
= ieee80211_get_channel(wiphy
, freq
);
1017 if (channel
->band
== NL80211_BAND_2GHZ
) {
1019 * Better not allow unexpected channels when that could
1020 * be going beyond the 1-11 range (e.g., discovering
1021 * BSS on channel 12 when radio is configured for
1027 /* No match for the payload channel number - ignore it */
1031 if (scan_width
== NL80211_BSS_CHAN_WIDTH_10
||
1032 scan_width
== NL80211_BSS_CHAN_WIDTH_5
) {
1034 * Ignore channel number in 5 and 10 MHz channels where there
1035 * may not be an n:1 or 1:n mapping between frequencies and
1042 * Use the channel determined through the payload channel number
1043 * instead of the RX channel reported by the driver.
1045 if (alt_channel
->flags
& IEEE80211_CHAN_DISABLED
)
1050 /* Returned bss is reference counted and must be cleaned up appropriately. */
1051 struct cfg80211_bss
*
1052 cfg80211_inform_bss_data(struct wiphy
*wiphy
,
1053 struct cfg80211_inform_bss
*data
,
1054 enum cfg80211_bss_frame_type ftype
,
1055 const u8
*bssid
, u64 tsf
, u16 capability
,
1056 u16 beacon_interval
, const u8
*ie
, size_t ielen
,
1059 struct cfg80211_bss_ies
*ies
;
1060 struct ieee80211_channel
*channel
;
1061 struct cfg80211_internal_bss tmp
= {}, *res
;
1065 if (WARN_ON(!wiphy
))
1068 if (WARN_ON(wiphy
->signal_type
== CFG80211_SIGNAL_TYPE_UNSPEC
&&
1069 (data
->signal
< 0 || data
->signal
> 100)))
1072 channel
= cfg80211_get_bss_channel(wiphy
, ie
, ielen
, data
->chan
,
1077 memcpy(tmp
.pub
.bssid
, bssid
, ETH_ALEN
);
1078 tmp
.pub
.channel
= channel
;
1079 tmp
.pub
.scan_width
= data
->scan_width
;
1080 tmp
.pub
.signal
= data
->signal
;
1081 tmp
.pub
.beacon_interval
= beacon_interval
;
1082 tmp
.pub
.capability
= capability
;
1083 tmp
.ts_boottime
= data
->boottime_ns
;
1086 * If we do not know here whether the IEs are from a Beacon or Probe
1087 * Response frame, we need to pick one of the options and only use it
1088 * with the driver that does not provide the full Beacon/Probe Response
1089 * frame. Use Beacon frame pointer to avoid indicating that this should
1090 * override the IEs pointer should we have received an earlier
1091 * indication of Probe Response data.
1093 ies
= kzalloc(sizeof(*ies
) + ielen
, gfp
);
1098 ies
->from_beacon
= false;
1099 memcpy(ies
->data
, ie
, ielen
);
1102 case CFG80211_BSS_FTYPE_BEACON
:
1103 ies
->from_beacon
= true;
1104 /* fall through to assign */
1105 case CFG80211_BSS_FTYPE_UNKNOWN
:
1106 rcu_assign_pointer(tmp
.pub
.beacon_ies
, ies
);
1108 case CFG80211_BSS_FTYPE_PRESP
:
1109 rcu_assign_pointer(tmp
.pub
.proberesp_ies
, ies
);
1112 rcu_assign_pointer(tmp
.pub
.ies
, ies
);
1114 signal_valid
= abs(data
->chan
->center_freq
- channel
->center_freq
) <=
1115 wiphy
->max_adj_channel_rssi_comp
;
1116 res
= cfg80211_bss_update(wiphy_to_rdev(wiphy
), &tmp
, signal_valid
);
1120 if (channel
->band
== NL80211_BAND_60GHZ
) {
1121 bss_type
= res
->pub
.capability
& WLAN_CAPABILITY_DMG_TYPE_MASK
;
1122 if (bss_type
== WLAN_CAPABILITY_DMG_TYPE_AP
||
1123 bss_type
== WLAN_CAPABILITY_DMG_TYPE_PBSS
)
1124 regulatory_hint_found_beacon(wiphy
, channel
, gfp
);
1126 if (res
->pub
.capability
& WLAN_CAPABILITY_ESS
)
1127 regulatory_hint_found_beacon(wiphy
, channel
, gfp
);
1130 trace_cfg80211_return_bss(&res
->pub
);
1131 /* cfg80211_bss_update gives us a referenced result */
1134 EXPORT_SYMBOL(cfg80211_inform_bss_data
);
1136 /* cfg80211_inform_bss_width_frame helper */
1137 struct cfg80211_bss
*
1138 cfg80211_inform_bss_frame_data(struct wiphy
*wiphy
,
1139 struct cfg80211_inform_bss
*data
,
1140 struct ieee80211_mgmt
*mgmt
, size_t len
,
1144 struct cfg80211_internal_bss tmp
= {}, *res
;
1145 struct cfg80211_bss_ies
*ies
;
1146 struct ieee80211_channel
*channel
;
1148 size_t ielen
= len
- offsetof(struct ieee80211_mgmt
,
1149 u
.probe_resp
.variable
);
1152 BUILD_BUG_ON(offsetof(struct ieee80211_mgmt
, u
.probe_resp
.variable
) !=
1153 offsetof(struct ieee80211_mgmt
, u
.beacon
.variable
));
1155 trace_cfg80211_inform_bss_frame(wiphy
, data
, mgmt
, len
);
1160 if (WARN_ON(!wiphy
))
1163 if (WARN_ON(wiphy
->signal_type
== CFG80211_SIGNAL_TYPE_UNSPEC
&&
1164 (data
->signal
< 0 || data
->signal
> 100)))
1167 if (WARN_ON(len
< offsetof(struct ieee80211_mgmt
, u
.probe_resp
.variable
)))
1170 channel
= cfg80211_get_bss_channel(wiphy
, mgmt
->u
.beacon
.variable
,
1171 ielen
, data
->chan
, data
->scan_width
);
1175 ies
= kzalloc(sizeof(*ies
) + ielen
, gfp
);
1179 ies
->tsf
= le64_to_cpu(mgmt
->u
.probe_resp
.timestamp
);
1180 ies
->from_beacon
= ieee80211_is_beacon(mgmt
->frame_control
);
1181 memcpy(ies
->data
, mgmt
->u
.probe_resp
.variable
, ielen
);
1183 if (ieee80211_is_probe_resp(mgmt
->frame_control
))
1184 rcu_assign_pointer(tmp
.pub
.proberesp_ies
, ies
);
1186 rcu_assign_pointer(tmp
.pub
.beacon_ies
, ies
);
1187 rcu_assign_pointer(tmp
.pub
.ies
, ies
);
1189 memcpy(tmp
.pub
.bssid
, mgmt
->bssid
, ETH_ALEN
);
1190 tmp
.pub
.channel
= channel
;
1191 tmp
.pub
.scan_width
= data
->scan_width
;
1192 tmp
.pub
.signal
= data
->signal
;
1193 tmp
.pub
.beacon_interval
= le16_to_cpu(mgmt
->u
.probe_resp
.beacon_int
);
1194 tmp
.pub
.capability
= le16_to_cpu(mgmt
->u
.probe_resp
.capab_info
);
1195 tmp
.ts_boottime
= data
->boottime_ns
;
1196 tmp
.parent_tsf
= data
->parent_tsf
;
1197 ether_addr_copy(tmp
.parent_bssid
, data
->parent_bssid
);
1199 signal_valid
= abs(data
->chan
->center_freq
- channel
->center_freq
) <=
1200 wiphy
->max_adj_channel_rssi_comp
;
1201 res
= cfg80211_bss_update(wiphy_to_rdev(wiphy
), &tmp
, signal_valid
);
1205 if (channel
->band
== NL80211_BAND_60GHZ
) {
1206 bss_type
= res
->pub
.capability
& WLAN_CAPABILITY_DMG_TYPE_MASK
;
1207 if (bss_type
== WLAN_CAPABILITY_DMG_TYPE_AP
||
1208 bss_type
== WLAN_CAPABILITY_DMG_TYPE_PBSS
)
1209 regulatory_hint_found_beacon(wiphy
, channel
, gfp
);
1211 if (res
->pub
.capability
& WLAN_CAPABILITY_ESS
)
1212 regulatory_hint_found_beacon(wiphy
, channel
, gfp
);
1215 trace_cfg80211_return_bss(&res
->pub
);
1216 /* cfg80211_bss_update gives us a referenced result */
1219 EXPORT_SYMBOL(cfg80211_inform_bss_frame_data
);
1221 void cfg80211_ref_bss(struct wiphy
*wiphy
, struct cfg80211_bss
*pub
)
1223 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
1224 struct cfg80211_internal_bss
*bss
;
1229 bss
= container_of(pub
, struct cfg80211_internal_bss
, pub
);
1231 spin_lock_bh(&rdev
->bss_lock
);
1232 bss_ref_get(rdev
, bss
);
1233 spin_unlock_bh(&rdev
->bss_lock
);
1235 EXPORT_SYMBOL(cfg80211_ref_bss
);
1237 void cfg80211_put_bss(struct wiphy
*wiphy
, struct cfg80211_bss
*pub
)
1239 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
1240 struct cfg80211_internal_bss
*bss
;
1245 bss
= container_of(pub
, struct cfg80211_internal_bss
, pub
);
1247 spin_lock_bh(&rdev
->bss_lock
);
1248 bss_ref_put(rdev
, bss
);
1249 spin_unlock_bh(&rdev
->bss_lock
);
1251 EXPORT_SYMBOL(cfg80211_put_bss
);
1253 void cfg80211_unlink_bss(struct wiphy
*wiphy
, struct cfg80211_bss
*pub
)
1255 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
1256 struct cfg80211_internal_bss
*bss
;
1261 bss
= container_of(pub
, struct cfg80211_internal_bss
, pub
);
1263 spin_lock_bh(&rdev
->bss_lock
);
1264 if (!list_empty(&bss
->list
)) {
1265 if (__cfg80211_unlink_bss(rdev
, bss
))
1266 rdev
->bss_generation
++;
1268 spin_unlock_bh(&rdev
->bss_lock
);
1270 EXPORT_SYMBOL(cfg80211_unlink_bss
);
1272 #ifdef CONFIG_CFG80211_WEXT
1273 static struct cfg80211_registered_device
*
1274 cfg80211_get_dev_from_ifindex(struct net
*net
, int ifindex
)
1276 struct cfg80211_registered_device
*rdev
;
1277 struct net_device
*dev
;
1281 dev
= dev_get_by_index(net
, ifindex
);
1283 return ERR_PTR(-ENODEV
);
1284 if (dev
->ieee80211_ptr
)
1285 rdev
= wiphy_to_rdev(dev
->ieee80211_ptr
->wiphy
);
1287 rdev
= ERR_PTR(-ENODEV
);
1292 int cfg80211_wext_siwscan(struct net_device
*dev
,
1293 struct iw_request_info
*info
,
1294 union iwreq_data
*wrqu
, char *extra
)
1296 struct cfg80211_registered_device
*rdev
;
1297 struct wiphy
*wiphy
;
1298 struct iw_scan_req
*wreq
= NULL
;
1299 struct cfg80211_scan_request
*creq
= NULL
;
1300 int i
, err
, n_channels
= 0;
1301 enum nl80211_band band
;
1303 if (!netif_running(dev
))
1306 if (wrqu
->data
.length
== sizeof(struct iw_scan_req
))
1307 wreq
= (struct iw_scan_req
*)extra
;
1309 rdev
= cfg80211_get_dev_from_ifindex(dev_net(dev
), dev
->ifindex
);
1312 return PTR_ERR(rdev
);
1314 if (rdev
->scan_req
|| rdev
->scan_msg
) {
1319 wiphy
= &rdev
->wiphy
;
1321 /* Determine number of channels, needed to allocate creq */
1322 if (wreq
&& wreq
->num_channels
)
1323 n_channels
= wreq
->num_channels
;
1325 n_channels
= ieee80211_get_num_supported_channels(wiphy
);
1327 creq
= kzalloc(sizeof(*creq
) + sizeof(struct cfg80211_ssid
) +
1328 n_channels
* sizeof(void *),
1335 creq
->wiphy
= wiphy
;
1336 creq
->wdev
= dev
->ieee80211_ptr
;
1337 /* SSIDs come after channels */
1338 creq
->ssids
= (void *)&creq
->channels
[n_channels
];
1339 creq
->n_channels
= n_channels
;
1341 creq
->scan_start
= jiffies
;
1343 /* translate "Scan on frequencies" request */
1345 for (band
= 0; band
< NUM_NL80211_BANDS
; band
++) {
1348 if (!wiphy
->bands
[band
])
1351 for (j
= 0; j
< wiphy
->bands
[band
]->n_channels
; j
++) {
1352 /* ignore disabled channels */
1353 if (wiphy
->bands
[band
]->channels
[j
].flags
&
1354 IEEE80211_CHAN_DISABLED
)
1357 /* If we have a wireless request structure and the
1358 * wireless request specifies frequencies, then search
1359 * for the matching hardware channel.
1361 if (wreq
&& wreq
->num_channels
) {
1363 int wiphy_freq
= wiphy
->bands
[band
]->channels
[j
].center_freq
;
1364 for (k
= 0; k
< wreq
->num_channels
; k
++) {
1365 struct iw_freq
*freq
=
1366 &wreq
->channel_list
[k
];
1368 cfg80211_wext_freq(freq
);
1370 if (wext_freq
== wiphy_freq
)
1371 goto wext_freq_found
;
1373 goto wext_freq_not_found
;
1377 creq
->channels
[i
] = &wiphy
->bands
[band
]->channels
[j
];
1379 wext_freq_not_found
: ;
1382 /* No channels found? */
1388 /* Set real number of channels specified in creq->channels[] */
1389 creq
->n_channels
= i
;
1391 /* translate "Scan for SSID" request */
1393 if (wrqu
->data
.flags
& IW_SCAN_THIS_ESSID
) {
1394 if (wreq
->essid_len
> IEEE80211_MAX_SSID_LEN
) {
1398 memcpy(creq
->ssids
[0].ssid
, wreq
->essid
, wreq
->essid_len
);
1399 creq
->ssids
[0].ssid_len
= wreq
->essid_len
;
1401 if (wreq
->scan_type
== IW_SCAN_TYPE_PASSIVE
)
1405 for (i
= 0; i
< NUM_NL80211_BANDS
; i
++)
1406 if (wiphy
->bands
[i
])
1407 creq
->rates
[i
] = (1 << wiphy
->bands
[i
]->n_bitrates
) - 1;
1409 eth_broadcast_addr(creq
->bssid
);
1411 rdev
->scan_req
= creq
;
1412 err
= rdev_scan(rdev
, creq
);
1414 rdev
->scan_req
= NULL
;
1415 /* creq will be freed below */
1417 nl80211_send_scan_start(rdev
, dev
->ieee80211_ptr
);
1418 /* creq now owned by driver */
1426 EXPORT_WEXT_HANDLER(cfg80211_wext_siwscan
);
1428 static char *ieee80211_scan_add_ies(struct iw_request_info
*info
,
1429 const struct cfg80211_bss_ies
*ies
,
1430 char *current_ev
, char *end_buf
)
1432 const u8
*pos
, *end
, *next
;
1433 struct iw_event iwe
;
1439 * If needed, fragment the IEs buffer (at IE boundaries) into short
1440 * enough fragments to fit into IW_GENERIC_IE_MAX octet messages.
1443 end
= pos
+ ies
->len
;
1445 while (end
- pos
> IW_GENERIC_IE_MAX
) {
1446 next
= pos
+ 2 + pos
[1];
1447 while (next
+ 2 + next
[1] - pos
< IW_GENERIC_IE_MAX
)
1448 next
= next
+ 2 + next
[1];
1450 memset(&iwe
, 0, sizeof(iwe
));
1451 iwe
.cmd
= IWEVGENIE
;
1452 iwe
.u
.data
.length
= next
- pos
;
1453 current_ev
= iwe_stream_add_point_check(info
, current_ev
,
1456 if (IS_ERR(current_ev
))
1462 memset(&iwe
, 0, sizeof(iwe
));
1463 iwe
.cmd
= IWEVGENIE
;
1464 iwe
.u
.data
.length
= end
- pos
;
1465 current_ev
= iwe_stream_add_point_check(info
, current_ev
,
1468 if (IS_ERR(current_ev
))
1476 ieee80211_bss(struct wiphy
*wiphy
, struct iw_request_info
*info
,
1477 struct cfg80211_internal_bss
*bss
, char *current_ev
,
1480 const struct cfg80211_bss_ies
*ies
;
1481 struct iw_event iwe
;
1486 bool ismesh
= false;
1488 memset(&iwe
, 0, sizeof(iwe
));
1489 iwe
.cmd
= SIOCGIWAP
;
1490 iwe
.u
.ap_addr
.sa_family
= ARPHRD_ETHER
;
1491 memcpy(iwe
.u
.ap_addr
.sa_data
, bss
->pub
.bssid
, ETH_ALEN
);
1492 current_ev
= iwe_stream_add_event_check(info
, current_ev
, end_buf
, &iwe
,
1494 if (IS_ERR(current_ev
))
1497 memset(&iwe
, 0, sizeof(iwe
));
1498 iwe
.cmd
= SIOCGIWFREQ
;
1499 iwe
.u
.freq
.m
= ieee80211_frequency_to_channel(bss
->pub
.channel
->center_freq
);
1501 current_ev
= iwe_stream_add_event_check(info
, current_ev
, end_buf
, &iwe
,
1503 if (IS_ERR(current_ev
))
1506 memset(&iwe
, 0, sizeof(iwe
));
1507 iwe
.cmd
= SIOCGIWFREQ
;
1508 iwe
.u
.freq
.m
= bss
->pub
.channel
->center_freq
;
1510 current_ev
= iwe_stream_add_event_check(info
, current_ev
, end_buf
, &iwe
,
1512 if (IS_ERR(current_ev
))
1515 if (wiphy
->signal_type
!= CFG80211_SIGNAL_TYPE_NONE
) {
1516 memset(&iwe
, 0, sizeof(iwe
));
1518 iwe
.u
.qual
.updated
= IW_QUAL_LEVEL_UPDATED
|
1519 IW_QUAL_NOISE_INVALID
|
1520 IW_QUAL_QUAL_UPDATED
;
1521 switch (wiphy
->signal_type
) {
1522 case CFG80211_SIGNAL_TYPE_MBM
:
1523 sig
= bss
->pub
.signal
/ 100;
1524 iwe
.u
.qual
.level
= sig
;
1525 iwe
.u
.qual
.updated
|= IW_QUAL_DBM
;
1526 if (sig
< -110) /* rather bad */
1528 else if (sig
> -40) /* perfect */
1530 /* will give a range of 0 .. 70 */
1531 iwe
.u
.qual
.qual
= sig
+ 110;
1533 case CFG80211_SIGNAL_TYPE_UNSPEC
:
1534 iwe
.u
.qual
.level
= bss
->pub
.signal
;
1535 /* will give range 0 .. 100 */
1536 iwe
.u
.qual
.qual
= bss
->pub
.signal
;
1542 current_ev
= iwe_stream_add_event_check(info
, current_ev
,
1545 if (IS_ERR(current_ev
))
1549 memset(&iwe
, 0, sizeof(iwe
));
1550 iwe
.cmd
= SIOCGIWENCODE
;
1551 if (bss
->pub
.capability
& WLAN_CAPABILITY_PRIVACY
)
1552 iwe
.u
.data
.flags
= IW_ENCODE_ENABLED
| IW_ENCODE_NOKEY
;
1554 iwe
.u
.data
.flags
= IW_ENCODE_DISABLED
;
1555 iwe
.u
.data
.length
= 0;
1556 current_ev
= iwe_stream_add_point_check(info
, current_ev
, end_buf
,
1558 if (IS_ERR(current_ev
))
1562 ies
= rcu_dereference(bss
->pub
.ies
);
1568 if (ie
[1] > rem
- 2)
1573 memset(&iwe
, 0, sizeof(iwe
));
1574 iwe
.cmd
= SIOCGIWESSID
;
1575 iwe
.u
.data
.length
= ie
[1];
1576 iwe
.u
.data
.flags
= 1;
1577 current_ev
= iwe_stream_add_point_check(info
,
1581 if (IS_ERR(current_ev
))
1584 case WLAN_EID_MESH_ID
:
1585 memset(&iwe
, 0, sizeof(iwe
));
1586 iwe
.cmd
= SIOCGIWESSID
;
1587 iwe
.u
.data
.length
= ie
[1];
1588 iwe
.u
.data
.flags
= 1;
1589 current_ev
= iwe_stream_add_point_check(info
,
1593 if (IS_ERR(current_ev
))
1596 case WLAN_EID_MESH_CONFIG
:
1598 if (ie
[1] != sizeof(struct ieee80211_meshconf_ie
))
1601 memset(&iwe
, 0, sizeof(iwe
));
1602 iwe
.cmd
= IWEVCUSTOM
;
1603 sprintf(buf
, "Mesh Network Path Selection Protocol ID: "
1605 iwe
.u
.data
.length
= strlen(buf
);
1606 current_ev
= iwe_stream_add_point_check(info
,
1610 if (IS_ERR(current_ev
))
1612 sprintf(buf
, "Path Selection Metric ID: 0x%02X",
1614 iwe
.u
.data
.length
= strlen(buf
);
1615 current_ev
= iwe_stream_add_point_check(info
,
1619 if (IS_ERR(current_ev
))
1621 sprintf(buf
, "Congestion Control Mode ID: 0x%02X",
1623 iwe
.u
.data
.length
= strlen(buf
);
1624 current_ev
= iwe_stream_add_point_check(info
,
1628 if (IS_ERR(current_ev
))
1630 sprintf(buf
, "Synchronization ID: 0x%02X", cfg
[3]);
1631 iwe
.u
.data
.length
= strlen(buf
);
1632 current_ev
= iwe_stream_add_point_check(info
,
1636 if (IS_ERR(current_ev
))
1638 sprintf(buf
, "Authentication ID: 0x%02X", cfg
[4]);
1639 iwe
.u
.data
.length
= strlen(buf
);
1640 current_ev
= iwe_stream_add_point_check(info
,
1644 if (IS_ERR(current_ev
))
1646 sprintf(buf
, "Formation Info: 0x%02X", cfg
[5]);
1647 iwe
.u
.data
.length
= strlen(buf
);
1648 current_ev
= iwe_stream_add_point_check(info
,
1652 if (IS_ERR(current_ev
))
1654 sprintf(buf
, "Capabilities: 0x%02X", cfg
[6]);
1655 iwe
.u
.data
.length
= strlen(buf
);
1656 current_ev
= iwe_stream_add_point_check(info
,
1660 if (IS_ERR(current_ev
))
1663 case WLAN_EID_SUPP_RATES
:
1664 case WLAN_EID_EXT_SUPP_RATES
:
1665 /* display all supported rates in readable format */
1666 p
= current_ev
+ iwe_stream_lcp_len(info
);
1668 memset(&iwe
, 0, sizeof(iwe
));
1669 iwe
.cmd
= SIOCGIWRATE
;
1670 /* Those two flags are ignored... */
1671 iwe
.u
.bitrate
.fixed
= iwe
.u
.bitrate
.disabled
= 0;
1673 for (i
= 0; i
< ie
[1]; i
++) {
1674 iwe
.u
.bitrate
.value
=
1675 ((ie
[i
+ 2] & 0x7f) * 500000);
1677 p
= iwe_stream_add_value(info
, current_ev
, p
,
1681 current_ev
= ERR_PTR(-E2BIG
);
1692 if (bss
->pub
.capability
& (WLAN_CAPABILITY_ESS
| WLAN_CAPABILITY_IBSS
) ||
1694 memset(&iwe
, 0, sizeof(iwe
));
1695 iwe
.cmd
= SIOCGIWMODE
;
1697 iwe
.u
.mode
= IW_MODE_MESH
;
1698 else if (bss
->pub
.capability
& WLAN_CAPABILITY_ESS
)
1699 iwe
.u
.mode
= IW_MODE_MASTER
;
1701 iwe
.u
.mode
= IW_MODE_ADHOC
;
1702 current_ev
= iwe_stream_add_event_check(info
, current_ev
,
1705 if (IS_ERR(current_ev
))
1709 memset(&iwe
, 0, sizeof(iwe
));
1710 iwe
.cmd
= IWEVCUSTOM
;
1711 sprintf(buf
, "tsf=%016llx", (unsigned long long)(ies
->tsf
));
1712 iwe
.u
.data
.length
= strlen(buf
);
1713 current_ev
= iwe_stream_add_point_check(info
, current_ev
, end_buf
,
1715 if (IS_ERR(current_ev
))
1717 memset(&iwe
, 0, sizeof(iwe
));
1718 iwe
.cmd
= IWEVCUSTOM
;
1719 sprintf(buf
, " Last beacon: %ums ago",
1720 elapsed_jiffies_msecs(bss
->ts
));
1721 iwe
.u
.data
.length
= strlen(buf
);
1722 current_ev
= iwe_stream_add_point_check(info
, current_ev
,
1723 end_buf
, &iwe
, buf
);
1724 if (IS_ERR(current_ev
))
1727 current_ev
= ieee80211_scan_add_ies(info
, ies
, current_ev
, end_buf
);
1735 static int ieee80211_scan_results(struct cfg80211_registered_device
*rdev
,
1736 struct iw_request_info
*info
,
1737 char *buf
, size_t len
)
1739 char *current_ev
= buf
;
1740 char *end_buf
= buf
+ len
;
1741 struct cfg80211_internal_bss
*bss
;
1744 spin_lock_bh(&rdev
->bss_lock
);
1745 cfg80211_bss_expire(rdev
);
1747 list_for_each_entry(bss
, &rdev
->bss_list
, list
) {
1748 if (buf
+ len
- current_ev
<= IW_EV_ADDR_LEN
) {
1752 current_ev
= ieee80211_bss(&rdev
->wiphy
, info
, bss
,
1753 current_ev
, end_buf
);
1754 if (IS_ERR(current_ev
)) {
1755 err
= PTR_ERR(current_ev
);
1759 spin_unlock_bh(&rdev
->bss_lock
);
1763 return current_ev
- buf
;
1767 int cfg80211_wext_giwscan(struct net_device
*dev
,
1768 struct iw_request_info
*info
,
1769 struct iw_point
*data
, char *extra
)
1771 struct cfg80211_registered_device
*rdev
;
1774 if (!netif_running(dev
))
1777 rdev
= cfg80211_get_dev_from_ifindex(dev_net(dev
), dev
->ifindex
);
1780 return PTR_ERR(rdev
);
1782 if (rdev
->scan_req
|| rdev
->scan_msg
)
1785 res
= ieee80211_scan_results(rdev
, info
, extra
, data
->length
);
1794 EXPORT_WEXT_HANDLER(cfg80211_wext_giwscan
);