2 * cfg80211 scan result handling
4 * Copyright 2008 Johannes Berg <johannes@sipsolutions.net>
5 * Copyright 2013-2014 Intel Mobile Communications GmbH
7 #include <linux/kernel.h>
8 #include <linux/slab.h>
9 #include <linux/module.h>
10 #include <linux/netdevice.h>
11 #include <linux/wireless.h>
12 #include <linux/nl80211.h>
13 #include <linux/etherdevice.h>
15 #include <net/cfg80211.h>
16 #include <net/cfg80211-wext.h>
17 #include <net/iw_handler.h>
20 #include "wext-compat.h"
24 * DOC: BSS tree/list structure
26 * At the top level, the BSS list is kept in both a list in each
27 * registered device (@bss_list) as well as an RB-tree for faster
28 * lookup. In the RB-tree, entries can be looked up using their
29 * channel, MESHID, MESHCONF (for MBSSes) or channel, BSSID, SSID
32 * Due to the possibility of hidden SSIDs, there's a second level
33 * structure, the "hidden_list" and "hidden_beacon_bss" pointer.
34 * The hidden_list connects all BSSes belonging to a single AP
35 * that has a hidden SSID, and connects beacon and probe response
36 * entries. For a probe response entry for a hidden SSID, the
37 * hidden_beacon_bss pointer points to the BSS struct holding the
38 * beacon's information.
40 * Reference counting is done for all these references except for
41 * the hidden_list, so that a beacon BSS struct that is otherwise
42 * not referenced has one reference for being on the bss_list and
43 * one for each probe response entry that points to it using the
44 * hidden_beacon_bss pointer. When a BSS struct that has such a
45 * pointer is get/put, the refcount update is also propagated to
46 * the referenced struct, this ensure that it cannot get removed
47 * while somebody is using the probe response version.
49 * Note that the hidden_beacon_bss pointer never changes, due to
50 * the reference counting. Therefore, no locking is needed for
53 * Also note that the hidden_beacon_bss pointer is only relevant
54 * if the driver uses something other than the IEs, e.g. private
55 * data stored stored in the BSS struct, since the beacon IEs are
56 * also linked into the probe response struct.
59 #define IEEE80211_SCAN_RESULT_EXPIRE (30 * HZ)
61 static void bss_free(struct cfg80211_internal_bss *bss)
63 struct cfg80211_bss_ies *ies;
65 if (WARN_ON(atomic_read(&bss->hold)))
68 ies = (void *)rcu_access_pointer(bss->pub.beacon_ies);
69 if (ies && !bss->pub.hidden_beacon_bss)
70 kfree_rcu(ies, rcu_head);
71 ies = (void *)rcu_access_pointer(bss->pub.proberesp_ies);
73 kfree_rcu(ies, rcu_head);
76 * This happens when the module is removed, it doesn't
77 * really matter any more save for completeness
79 if (!list_empty(&bss->hidden_list))
80 list_del(&bss->hidden_list);
85 static inline void bss_ref_get(struct cfg80211_registered_device *rdev,
86 struct cfg80211_internal_bss *bss)
88 lockdep_assert_held(&rdev->bss_lock);
91 if (bss->pub.hidden_beacon_bss) {
92 bss = container_of(bss->pub.hidden_beacon_bss,
93 struct cfg80211_internal_bss,
99 static inline void bss_ref_put(struct cfg80211_registered_device *rdev,
100 struct cfg80211_internal_bss *bss)
102 lockdep_assert_held(&rdev->bss_lock);
104 if (bss->pub.hidden_beacon_bss) {
105 struct cfg80211_internal_bss *hbss;
106 hbss = container_of(bss->pub.hidden_beacon_bss,
107 struct cfg80211_internal_bss,
110 if (hbss->refcount == 0)
114 if (bss->refcount == 0)
118 static bool __cfg80211_unlink_bss(struct cfg80211_registered_device *rdev,
119 struct cfg80211_internal_bss *bss)
121 lockdep_assert_held(&rdev->bss_lock);
123 if (!list_empty(&bss->hidden_list)) {
125 * don't remove the beacon entry if it has
126 * probe responses associated with it
128 if (!bss->pub.hidden_beacon_bss)
131 * if it's a probe response entry break its
132 * link to the other entries in the group
134 list_del_init(&bss->hidden_list);
137 list_del_init(&bss->list);
138 rb_erase(&bss->rbn, &rdev->bss_tree);
139 bss_ref_put(rdev, bss);
143 static void __cfg80211_bss_expire(struct cfg80211_registered_device *rdev,
144 unsigned long expire_time)
146 struct cfg80211_internal_bss *bss, *tmp;
147 bool expired = false;
149 lockdep_assert_held(&rdev->bss_lock);
151 list_for_each_entry_safe(bss, tmp, &rdev->bss_list, list) {
152 if (atomic_read(&bss->hold))
154 if (!time_after(expire_time, bss->ts))
157 if (__cfg80211_unlink_bss(rdev, bss))
162 rdev->bss_generation++;
165 void ___cfg80211_scan_done(struct cfg80211_registered_device *rdev,
168 struct cfg80211_scan_request *request;
169 struct wireless_dev *wdev;
171 #ifdef CONFIG_CFG80211_WEXT
172 union iwreq_data wrqu;
177 if (rdev->scan_msg) {
178 nl80211_send_scan_result(rdev, rdev->scan_msg);
179 rdev->scan_msg = NULL;
183 request = rdev->scan_req;
187 wdev = request->wdev;
190 * This must be before sending the other events!
191 * Otherwise, wpa_supplicant gets completely confused with
195 cfg80211_sme_scan_done(wdev->netdev);
197 if (!request->aborted &&
198 request->flags & NL80211_SCAN_FLAG_FLUSH) {
199 /* flush entries from previous scans */
200 spin_lock_bh(&rdev->bss_lock);
201 __cfg80211_bss_expire(rdev, request->scan_start);
202 spin_unlock_bh(&rdev->bss_lock);
205 msg = nl80211_build_scan_msg(rdev, wdev, request->aborted);
207 #ifdef CONFIG_CFG80211_WEXT
208 if (wdev->netdev && !request->aborted) {
209 memset(&wrqu, 0, sizeof(wrqu));
211 wireless_send_event(wdev->netdev, SIOCGIWSCAN, &wrqu, NULL);
216 dev_put(wdev->netdev);
218 rdev->scan_req = NULL;
222 rdev->scan_msg = msg;
224 nl80211_send_scan_result(rdev, msg);
227 void __cfg80211_scan_done(struct work_struct *wk)
229 struct cfg80211_registered_device *rdev;
231 rdev = container_of(wk, struct cfg80211_registered_device,
235 ___cfg80211_scan_done(rdev, true);
239 void cfg80211_scan_done(struct cfg80211_scan_request *request, bool aborted)
241 trace_cfg80211_scan_done(request, aborted);
242 WARN_ON(request != wiphy_to_rdev(request->wiphy)->scan_req);
244 request->aborted = aborted;
245 request->notified = true;
246 queue_work(cfg80211_wq, &wiphy_to_rdev(request->wiphy)->scan_done_wk);
248 EXPORT_SYMBOL(cfg80211_scan_done);
250 void __cfg80211_sched_scan_results(struct work_struct *wk)
252 struct cfg80211_registered_device *rdev;
253 struct cfg80211_sched_scan_request *request;
255 rdev = container_of(wk, struct cfg80211_registered_device,
256 sched_scan_results_wk);
260 request = rtnl_dereference(rdev->sched_scan_req);
262 /* we don't have sched_scan_req anymore if the scan is stopping */
264 if (request->flags & NL80211_SCAN_FLAG_FLUSH) {
265 /* flush entries from previous scans */
266 spin_lock_bh(&rdev->bss_lock);
267 __cfg80211_bss_expire(rdev, request->scan_start);
268 spin_unlock_bh(&rdev->bss_lock);
269 request->scan_start = jiffies;
271 nl80211_send_sched_scan_results(rdev, request->dev);
277 void cfg80211_sched_scan_results(struct wiphy *wiphy)
279 trace_cfg80211_sched_scan_results(wiphy);
280 /* ignore if we're not scanning */
282 if (rcu_access_pointer(wiphy_to_rdev(wiphy)->sched_scan_req))
283 queue_work(cfg80211_wq,
284 &wiphy_to_rdev(wiphy)->sched_scan_results_wk);
286 EXPORT_SYMBOL(cfg80211_sched_scan_results);
288 void cfg80211_sched_scan_stopped_rtnl(struct wiphy *wiphy)
290 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
294 trace_cfg80211_sched_scan_stopped(wiphy);
296 __cfg80211_stop_sched_scan(rdev, true);
298 EXPORT_SYMBOL(cfg80211_sched_scan_stopped_rtnl);
300 void cfg80211_sched_scan_stopped(struct wiphy *wiphy)
303 cfg80211_sched_scan_stopped_rtnl(wiphy);
306 EXPORT_SYMBOL(cfg80211_sched_scan_stopped);
308 int __cfg80211_stop_sched_scan(struct cfg80211_registered_device *rdev,
309 bool driver_initiated)
311 struct cfg80211_sched_scan_request *sched_scan_req;
312 struct net_device *dev;
316 if (!rdev->sched_scan_req)
319 sched_scan_req = rtnl_dereference(rdev->sched_scan_req);
320 dev = sched_scan_req->dev;
322 if (!driver_initiated) {
323 int err = rdev_sched_scan_stop(rdev, dev);
328 nl80211_send_sched_scan(rdev, dev, NL80211_CMD_SCHED_SCAN_STOPPED);
330 RCU_INIT_POINTER(rdev->sched_scan_req, NULL);
331 kfree_rcu(sched_scan_req, rcu_head);
336 void cfg80211_bss_age(struct cfg80211_registered_device *rdev,
337 unsigned long age_secs)
339 struct cfg80211_internal_bss *bss;
340 unsigned long age_jiffies = msecs_to_jiffies(age_secs * MSEC_PER_SEC);
342 spin_lock_bh(&rdev->bss_lock);
343 list_for_each_entry(bss, &rdev->bss_list, list)
344 bss->ts -= age_jiffies;
345 spin_unlock_bh(&rdev->bss_lock);
348 void cfg80211_bss_expire(struct cfg80211_registered_device *rdev)
350 __cfg80211_bss_expire(rdev, jiffies - IEEE80211_SCAN_RESULT_EXPIRE);
353 const u8 *cfg80211_find_ie(u8 eid, const u8 *ies, int len)
355 while (len > 2 && ies[0] != eid) {
361 if (len < 2 + ies[1])
365 EXPORT_SYMBOL(cfg80211_find_ie);
367 const u8 *cfg80211_find_vendor_ie(unsigned int oui, int oui_type,
368 const u8 *ies, int len)
370 struct ieee80211_vendor_ie *ie;
371 const u8 *pos = ies, *end = ies + len;
374 if (WARN_ON(oui_type > 0xff))
378 pos = cfg80211_find_ie(WLAN_EID_VENDOR_SPECIFIC, pos,
383 ie = (struct ieee80211_vendor_ie *)pos;
385 /* make sure we can access ie->len */
386 BUILD_BUG_ON(offsetof(struct ieee80211_vendor_ie, len) != 1);
388 if (ie->len < sizeof(*ie))
391 ie_oui = ie->oui[0] << 16 | ie->oui[1] << 8 | ie->oui[2];
393 (oui_type < 0 || ie->oui_type == oui_type))
400 EXPORT_SYMBOL(cfg80211_find_vendor_ie);
402 static bool is_bss(struct cfg80211_bss *a, const u8 *bssid,
403 const u8 *ssid, size_t ssid_len)
405 const struct cfg80211_bss_ies *ies;
408 if (bssid && !ether_addr_equal(a->bssid, bssid))
414 ies = rcu_access_pointer(a->ies);
417 ssidie = cfg80211_find_ie(WLAN_EID_SSID, ies->data, ies->len);
420 if (ssidie[1] != ssid_len)
422 return memcmp(ssidie + 2, ssid, ssid_len) == 0;
426 * enum bss_compare_mode - BSS compare mode
427 * @BSS_CMP_REGULAR: regular compare mode (for insertion and normal find)
428 * @BSS_CMP_HIDE_ZLEN: find hidden SSID with zero-length mode
429 * @BSS_CMP_HIDE_NUL: find hidden SSID with NUL-ed out mode
431 enum bss_compare_mode {
437 static int cmp_bss(struct cfg80211_bss *a,
438 struct cfg80211_bss *b,
439 enum bss_compare_mode mode)
441 const struct cfg80211_bss_ies *a_ies, *b_ies;
442 const u8 *ie1 = NULL;
443 const u8 *ie2 = NULL;
446 if (a->channel != b->channel)
447 return b->channel->center_freq - a->channel->center_freq;
449 a_ies = rcu_access_pointer(a->ies);
452 b_ies = rcu_access_pointer(b->ies);
456 if (WLAN_CAPABILITY_IS_STA_BSS(a->capability))
457 ie1 = cfg80211_find_ie(WLAN_EID_MESH_ID,
458 a_ies->data, a_ies->len);
459 if (WLAN_CAPABILITY_IS_STA_BSS(b->capability))
460 ie2 = cfg80211_find_ie(WLAN_EID_MESH_ID,
461 b_ies->data, b_ies->len);
465 if (ie1[1] == ie2[1])
466 mesh_id_cmp = memcmp(ie1 + 2, ie2 + 2, ie1[1]);
468 mesh_id_cmp = ie2[1] - ie1[1];
470 ie1 = cfg80211_find_ie(WLAN_EID_MESH_CONFIG,
471 a_ies->data, a_ies->len);
472 ie2 = cfg80211_find_ie(WLAN_EID_MESH_CONFIG,
473 b_ies->data, b_ies->len);
477 if (ie1[1] != ie2[1])
478 return ie2[1] - ie1[1];
479 return memcmp(ie1 + 2, ie2 + 2, ie1[1]);
483 r = memcmp(a->bssid, b->bssid, sizeof(a->bssid));
487 ie1 = cfg80211_find_ie(WLAN_EID_SSID, a_ies->data, a_ies->len);
488 ie2 = cfg80211_find_ie(WLAN_EID_SSID, b_ies->data, b_ies->len);
494 * Note that with "hide_ssid", the function returns a match if
495 * the already-present BSS ("b") is a hidden SSID beacon for
499 /* sort missing IE before (left of) present IE */
506 case BSS_CMP_HIDE_ZLEN:
508 * In ZLEN mode we assume the BSS entry we're
509 * looking for has a zero-length SSID. So if
510 * the one we're looking at right now has that,
511 * return 0. Otherwise, return the difference
512 * in length, but since we're looking for the
513 * 0-length it's really equivalent to returning
514 * the length of the one we're looking at.
516 * No content comparison is needed as we assume
517 * the content length is zero.
520 case BSS_CMP_REGULAR:
522 /* sort by length first, then by contents */
523 if (ie1[1] != ie2[1])
524 return ie2[1] - ie1[1];
525 return memcmp(ie1 + 2, ie2 + 2, ie1[1]);
526 case BSS_CMP_HIDE_NUL:
527 if (ie1[1] != ie2[1])
528 return ie2[1] - ie1[1];
529 /* this is equivalent to memcmp(zeroes, ie2 + 2, len) */
530 for (i = 0; i < ie2[1]; i++)
537 static bool cfg80211_bss_type_match(u16 capability,
538 enum nl80211_band band,
539 enum ieee80211_bss_type bss_type)
544 if (bss_type == IEEE80211_BSS_TYPE_ANY)
547 if (band == NL80211_BAND_60GHZ) {
548 mask = WLAN_CAPABILITY_DMG_TYPE_MASK;
550 case IEEE80211_BSS_TYPE_ESS:
551 val = WLAN_CAPABILITY_DMG_TYPE_AP;
553 case IEEE80211_BSS_TYPE_PBSS:
554 val = WLAN_CAPABILITY_DMG_TYPE_PBSS;
556 case IEEE80211_BSS_TYPE_IBSS:
557 val = WLAN_CAPABILITY_DMG_TYPE_IBSS;
563 mask = WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_IBSS;
565 case IEEE80211_BSS_TYPE_ESS:
566 val = WLAN_CAPABILITY_ESS;
568 case IEEE80211_BSS_TYPE_IBSS:
569 val = WLAN_CAPABILITY_IBSS;
571 case IEEE80211_BSS_TYPE_MBSS:
579 ret = ((capability & mask) == val);
583 /* Returned bss is reference counted and must be cleaned up appropriately. */
584 struct cfg80211_bss *cfg80211_get_bss(struct wiphy *wiphy,
585 struct ieee80211_channel *channel,
587 const u8 *ssid, size_t ssid_len,
588 enum ieee80211_bss_type bss_type,
589 enum ieee80211_privacy privacy)
591 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
592 struct cfg80211_internal_bss *bss, *res = NULL;
593 unsigned long now = jiffies;
596 trace_cfg80211_get_bss(wiphy, channel, bssid, ssid, ssid_len, bss_type,
599 spin_lock_bh(&rdev->bss_lock);
601 list_for_each_entry(bss, &rdev->bss_list, list) {
602 if (!cfg80211_bss_type_match(bss->pub.capability,
603 bss->pub.channel->band, bss_type))
606 bss_privacy = (bss->pub.capability & WLAN_CAPABILITY_PRIVACY);
607 if ((privacy == IEEE80211_PRIVACY_ON && !bss_privacy) ||
608 (privacy == IEEE80211_PRIVACY_OFF && bss_privacy))
610 if (channel && bss->pub.channel != channel)
612 if (!is_valid_ether_addr(bss->pub.bssid))
614 /* Don't get expired BSS structs */
615 if (time_after(now, bss->ts + IEEE80211_SCAN_RESULT_EXPIRE) &&
616 !atomic_read(&bss->hold))
618 if (is_bss(&bss->pub, bssid, ssid, ssid_len)) {
620 bss_ref_get(rdev, res);
625 spin_unlock_bh(&rdev->bss_lock);
628 trace_cfg80211_return_bss(&res->pub);
631 EXPORT_SYMBOL(cfg80211_get_bss);
633 static void rb_insert_bss(struct cfg80211_registered_device *rdev,
634 struct cfg80211_internal_bss *bss)
636 struct rb_node **p = &rdev->bss_tree.rb_node;
637 struct rb_node *parent = NULL;
638 struct cfg80211_internal_bss *tbss;
643 tbss = rb_entry(parent, struct cfg80211_internal_bss, rbn);
645 cmp = cmp_bss(&bss->pub, &tbss->pub, BSS_CMP_REGULAR);
648 /* will sort of leak this BSS */
658 rb_link_node(&bss->rbn, parent, p);
659 rb_insert_color(&bss->rbn, &rdev->bss_tree);
662 static struct cfg80211_internal_bss *
663 rb_find_bss(struct cfg80211_registered_device *rdev,
664 struct cfg80211_internal_bss *res,
665 enum bss_compare_mode mode)
667 struct rb_node *n = rdev->bss_tree.rb_node;
668 struct cfg80211_internal_bss *bss;
672 bss = rb_entry(n, struct cfg80211_internal_bss, rbn);
673 r = cmp_bss(&res->pub, &bss->pub, mode);
686 static bool cfg80211_combine_bsses(struct cfg80211_registered_device *rdev,
687 struct cfg80211_internal_bss *new)
689 const struct cfg80211_bss_ies *ies;
690 struct cfg80211_internal_bss *bss;
695 ies = rcu_access_pointer(new->pub.beacon_ies);
699 ie = cfg80211_find_ie(WLAN_EID_SSID, ies->data, ies->len);
706 for (i = 0; i < ssidlen; i++)
710 /* not a hidden SSID */
714 /* This is the bad part ... */
716 list_for_each_entry(bss, &rdev->bss_list, list) {
717 if (!ether_addr_equal(bss->pub.bssid, new->pub.bssid))
719 if (bss->pub.channel != new->pub.channel)
721 if (bss->pub.scan_width != new->pub.scan_width)
723 if (rcu_access_pointer(bss->pub.beacon_ies))
725 ies = rcu_access_pointer(bss->pub.ies);
728 ie = cfg80211_find_ie(WLAN_EID_SSID, ies->data, ies->len);
731 if (ssidlen && ie[1] != ssidlen)
733 if (WARN_ON_ONCE(bss->pub.hidden_beacon_bss))
735 if (WARN_ON_ONCE(!list_empty(&bss->hidden_list)))
736 list_del(&bss->hidden_list);
738 list_add(&bss->hidden_list, &new->hidden_list);
739 bss->pub.hidden_beacon_bss = &new->pub;
740 new->refcount += bss->refcount;
741 rcu_assign_pointer(bss->pub.beacon_ies,
742 new->pub.beacon_ies);
748 /* Returned bss is reference counted and must be cleaned up appropriately. */
749 static struct cfg80211_internal_bss *
750 cfg80211_bss_update(struct cfg80211_registered_device *rdev,
751 struct cfg80211_internal_bss *tmp,
754 struct cfg80211_internal_bss *found = NULL;
756 if (WARN_ON(!tmp->pub.channel))
761 spin_lock_bh(&rdev->bss_lock);
763 if (WARN_ON(!rcu_access_pointer(tmp->pub.ies))) {
764 spin_unlock_bh(&rdev->bss_lock);
768 found = rb_find_bss(rdev, tmp, BSS_CMP_REGULAR);
772 if (rcu_access_pointer(tmp->pub.proberesp_ies)) {
773 const struct cfg80211_bss_ies *old;
775 old = rcu_access_pointer(found->pub.proberesp_ies);
777 rcu_assign_pointer(found->pub.proberesp_ies,
778 tmp->pub.proberesp_ies);
779 /* Override possible earlier Beacon frame IEs */
780 rcu_assign_pointer(found->pub.ies,
781 tmp->pub.proberesp_ies);
783 kfree_rcu((struct cfg80211_bss_ies *)old,
785 } else if (rcu_access_pointer(tmp->pub.beacon_ies)) {
786 const struct cfg80211_bss_ies *old;
787 struct cfg80211_internal_bss *bss;
789 if (found->pub.hidden_beacon_bss &&
790 !list_empty(&found->hidden_list)) {
791 const struct cfg80211_bss_ies *f;
794 * The found BSS struct is one of the probe
795 * response members of a group, but we're
796 * receiving a beacon (beacon_ies in the tmp
797 * bss is used). This can only mean that the
798 * AP changed its beacon from not having an
799 * SSID to showing it, which is confusing so
800 * drop this information.
803 f = rcu_access_pointer(tmp->pub.beacon_ies);
804 kfree_rcu((struct cfg80211_bss_ies *)f,
809 old = rcu_access_pointer(found->pub.beacon_ies);
811 rcu_assign_pointer(found->pub.beacon_ies,
812 tmp->pub.beacon_ies);
814 /* Override IEs if they were from a beacon before */
815 if (old == rcu_access_pointer(found->pub.ies))
816 rcu_assign_pointer(found->pub.ies,
817 tmp->pub.beacon_ies);
819 /* Assign beacon IEs to all sub entries */
820 list_for_each_entry(bss, &found->hidden_list,
822 const struct cfg80211_bss_ies *ies;
824 ies = rcu_access_pointer(bss->pub.beacon_ies);
827 rcu_assign_pointer(bss->pub.beacon_ies,
828 tmp->pub.beacon_ies);
832 kfree_rcu((struct cfg80211_bss_ies *)old,
836 found->pub.beacon_interval = tmp->pub.beacon_interval;
838 * don't update the signal if beacon was heard on
842 found->pub.signal = tmp->pub.signal;
843 found->pub.capability = tmp->pub.capability;
845 found->ts_boottime = tmp->ts_boottime;
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;
1090 signal_valid = abs(data->chan->center_freq - channel->center_freq) <=
1091 wiphy->max_adj_channel_rssi_comp;
1092 res = cfg80211_bss_update(wiphy_to_rdev(wiphy), &tmp, signal_valid);
1096 if (channel->band == NL80211_BAND_60GHZ) {
1097 bss_type = res->pub.capability & WLAN_CAPABILITY_DMG_TYPE_MASK;
1098 if (bss_type == WLAN_CAPABILITY_DMG_TYPE_AP ||
1099 bss_type == WLAN_CAPABILITY_DMG_TYPE_PBSS)
1100 regulatory_hint_found_beacon(wiphy, channel, gfp);
1102 if (res->pub.capability & WLAN_CAPABILITY_ESS)
1103 regulatory_hint_found_beacon(wiphy, channel, gfp);
1106 trace_cfg80211_return_bss(&res->pub);
1107 /* cfg80211_bss_update gives us a referenced result */
1110 EXPORT_SYMBOL(cfg80211_inform_bss_frame_data);
1112 void cfg80211_ref_bss(struct wiphy *wiphy, struct cfg80211_bss *pub)
1114 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
1115 struct cfg80211_internal_bss *bss;
1120 bss = container_of(pub, struct cfg80211_internal_bss, pub);
1122 spin_lock_bh(&rdev->bss_lock);
1123 bss_ref_get(rdev, bss);
1124 spin_unlock_bh(&rdev->bss_lock);
1126 EXPORT_SYMBOL(cfg80211_ref_bss);
1128 void cfg80211_put_bss(struct wiphy *wiphy, struct cfg80211_bss *pub)
1130 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
1131 struct cfg80211_internal_bss *bss;
1136 bss = container_of(pub, struct cfg80211_internal_bss, pub);
1138 spin_lock_bh(&rdev->bss_lock);
1139 bss_ref_put(rdev, bss);
1140 spin_unlock_bh(&rdev->bss_lock);
1142 EXPORT_SYMBOL(cfg80211_put_bss);
1144 void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *pub)
1146 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
1147 struct cfg80211_internal_bss *bss;
1152 bss = container_of(pub, struct cfg80211_internal_bss, pub);
1154 spin_lock_bh(&rdev->bss_lock);
1155 if (!list_empty(&bss->list)) {
1156 if (__cfg80211_unlink_bss(rdev, bss))
1157 rdev->bss_generation++;
1159 spin_unlock_bh(&rdev->bss_lock);
1161 EXPORT_SYMBOL(cfg80211_unlink_bss);
1163 #ifdef CONFIG_CFG80211_WEXT
1164 static struct cfg80211_registered_device *
1165 cfg80211_get_dev_from_ifindex(struct net *net, int ifindex)
1167 struct cfg80211_registered_device *rdev;
1168 struct net_device *dev;
1172 dev = dev_get_by_index(net, ifindex);
1174 return ERR_PTR(-ENODEV);
1175 if (dev->ieee80211_ptr)
1176 rdev = wiphy_to_rdev(dev->ieee80211_ptr->wiphy);
1178 rdev = ERR_PTR(-ENODEV);
1183 int cfg80211_wext_siwscan(struct net_device *dev,
1184 struct iw_request_info *info,
1185 union iwreq_data *wrqu, char *extra)
1187 struct cfg80211_registered_device *rdev;
1188 struct wiphy *wiphy;
1189 struct iw_scan_req *wreq = NULL;
1190 struct cfg80211_scan_request *creq = NULL;
1191 int i, err, n_channels = 0;
1192 enum nl80211_band band;
1194 if (!netif_running(dev))
1197 if (wrqu->data.length == sizeof(struct iw_scan_req))
1198 wreq = (struct iw_scan_req *)extra;
1200 rdev = cfg80211_get_dev_from_ifindex(dev_net(dev), dev->ifindex);
1203 return PTR_ERR(rdev);
1205 if (rdev->scan_req || rdev->scan_msg) {
1210 wiphy = &rdev->wiphy;
1212 /* Determine number of channels, needed to allocate creq */
1213 if (wreq && wreq->num_channels)
1214 n_channels = wreq->num_channels;
1216 n_channels = ieee80211_get_num_supported_channels(wiphy);
1218 creq = kzalloc(sizeof(*creq) + sizeof(struct cfg80211_ssid) +
1219 n_channels * sizeof(void *),
1226 creq->wiphy = wiphy;
1227 creq->wdev = dev->ieee80211_ptr;
1228 /* SSIDs come after channels */
1229 creq->ssids = (void *)&creq->channels[n_channels];
1230 creq->n_channels = n_channels;
1232 creq->scan_start = jiffies;
1234 /* translate "Scan on frequencies" request */
1236 for (band = 0; band < NUM_NL80211_BANDS; band++) {
1239 if (!wiphy->bands[band])
1242 for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
1243 /* ignore disabled channels */
1244 if (wiphy->bands[band]->channels[j].flags &
1245 IEEE80211_CHAN_DISABLED)
1248 /* If we have a wireless request structure and the
1249 * wireless request specifies frequencies, then search
1250 * for the matching hardware channel.
1252 if (wreq && wreq->num_channels) {
1254 int wiphy_freq = wiphy->bands[band]->channels[j].center_freq;
1255 for (k = 0; k < wreq->num_channels; k++) {
1256 struct iw_freq *freq =
1257 &wreq->channel_list[k];
1259 cfg80211_wext_freq(freq);
1261 if (wext_freq == wiphy_freq)
1262 goto wext_freq_found;
1264 goto wext_freq_not_found;
1268 creq->channels[i] = &wiphy->bands[band]->channels[j];
1270 wext_freq_not_found: ;
1273 /* No channels found? */
1279 /* Set real number of channels specified in creq->channels[] */
1280 creq->n_channels = i;
1282 /* translate "Scan for SSID" request */
1284 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
1285 if (wreq->essid_len > IEEE80211_MAX_SSID_LEN) {
1289 memcpy(creq->ssids[0].ssid, wreq->essid, wreq->essid_len);
1290 creq->ssids[0].ssid_len = wreq->essid_len;
1292 if (wreq->scan_type == IW_SCAN_TYPE_PASSIVE)
1296 for (i = 0; i < NUM_NL80211_BANDS; i++)
1297 if (wiphy->bands[i])
1298 creq->rates[i] = (1 << wiphy->bands[i]->n_bitrates) - 1;
1300 eth_broadcast_addr(creq->bssid);
1302 rdev->scan_req = creq;
1303 err = rdev_scan(rdev, creq);
1305 rdev->scan_req = NULL;
1306 /* creq will be freed below */
1308 nl80211_send_scan_start(rdev, dev->ieee80211_ptr);
1309 /* creq now owned by driver */
1317 EXPORT_WEXT_HANDLER(cfg80211_wext_siwscan);
1319 static char *ieee80211_scan_add_ies(struct iw_request_info *info,
1320 const struct cfg80211_bss_ies *ies,
1321 char *current_ev, char *end_buf)
1323 const u8 *pos, *end, *next;
1324 struct iw_event iwe;
1330 * If needed, fragment the IEs buffer (at IE boundaries) into short
1331 * enough fragments to fit into IW_GENERIC_IE_MAX octet messages.
1334 end = pos + ies->len;
1336 while (end - pos > IW_GENERIC_IE_MAX) {
1337 next = pos + 2 + pos[1];
1338 while (next + 2 + next[1] - pos < IW_GENERIC_IE_MAX)
1339 next = next + 2 + next[1];
1341 memset(&iwe, 0, sizeof(iwe));
1342 iwe.cmd = IWEVGENIE;
1343 iwe.u.data.length = next - pos;
1344 current_ev = iwe_stream_add_point_check(info, current_ev,
1347 if (IS_ERR(current_ev))
1353 memset(&iwe, 0, sizeof(iwe));
1354 iwe.cmd = IWEVGENIE;
1355 iwe.u.data.length = end - pos;
1356 current_ev = iwe_stream_add_point_check(info, current_ev,
1359 if (IS_ERR(current_ev))
1367 ieee80211_bss(struct wiphy *wiphy, struct iw_request_info *info,
1368 struct cfg80211_internal_bss *bss, char *current_ev,
1371 const struct cfg80211_bss_ies *ies;
1372 struct iw_event iwe;
1377 bool ismesh = false;
1379 memset(&iwe, 0, sizeof(iwe));
1380 iwe.cmd = SIOCGIWAP;
1381 iwe.u.ap_addr.sa_family = ARPHRD_ETHER;
1382 memcpy(iwe.u.ap_addr.sa_data, bss->pub.bssid, ETH_ALEN);
1383 current_ev = iwe_stream_add_event_check(info, current_ev, end_buf, &iwe,
1385 if (IS_ERR(current_ev))
1388 memset(&iwe, 0, sizeof(iwe));
1389 iwe.cmd = SIOCGIWFREQ;
1390 iwe.u.freq.m = ieee80211_frequency_to_channel(bss->pub.channel->center_freq);
1392 current_ev = iwe_stream_add_event_check(info, current_ev, end_buf, &iwe,
1394 if (IS_ERR(current_ev))
1397 memset(&iwe, 0, sizeof(iwe));
1398 iwe.cmd = SIOCGIWFREQ;
1399 iwe.u.freq.m = bss->pub.channel->center_freq;
1401 current_ev = iwe_stream_add_event_check(info, current_ev, end_buf, &iwe,
1403 if (IS_ERR(current_ev))
1406 if (wiphy->signal_type != CFG80211_SIGNAL_TYPE_NONE) {
1407 memset(&iwe, 0, sizeof(iwe));
1409 iwe.u.qual.updated = IW_QUAL_LEVEL_UPDATED |
1410 IW_QUAL_NOISE_INVALID |
1411 IW_QUAL_QUAL_UPDATED;
1412 switch (wiphy->signal_type) {
1413 case CFG80211_SIGNAL_TYPE_MBM:
1414 sig = bss->pub.signal / 100;
1415 iwe.u.qual.level = sig;
1416 iwe.u.qual.updated |= IW_QUAL_DBM;
1417 if (sig < -110) /* rather bad */
1419 else if (sig > -40) /* perfect */
1421 /* will give a range of 0 .. 70 */
1422 iwe.u.qual.qual = sig + 110;
1424 case CFG80211_SIGNAL_TYPE_UNSPEC:
1425 iwe.u.qual.level = bss->pub.signal;
1426 /* will give range 0 .. 100 */
1427 iwe.u.qual.qual = bss->pub.signal;
1433 current_ev = iwe_stream_add_event_check(info, current_ev,
1436 if (IS_ERR(current_ev))
1440 memset(&iwe, 0, sizeof(iwe));
1441 iwe.cmd = SIOCGIWENCODE;
1442 if (bss->pub.capability & WLAN_CAPABILITY_PRIVACY)
1443 iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY;
1445 iwe.u.data.flags = IW_ENCODE_DISABLED;
1446 iwe.u.data.length = 0;
1447 current_ev = iwe_stream_add_point_check(info, current_ev, end_buf,
1449 if (IS_ERR(current_ev))
1453 ies = rcu_dereference(bss->pub.ies);
1459 if (ie[1] > rem - 2)
1464 memset(&iwe, 0, sizeof(iwe));
1465 iwe.cmd = SIOCGIWESSID;
1466 iwe.u.data.length = ie[1];
1467 iwe.u.data.flags = 1;
1468 current_ev = iwe_stream_add_point_check(info,
1472 if (IS_ERR(current_ev))
1475 case WLAN_EID_MESH_ID:
1476 memset(&iwe, 0, sizeof(iwe));
1477 iwe.cmd = SIOCGIWESSID;
1478 iwe.u.data.length = ie[1];
1479 iwe.u.data.flags = 1;
1480 current_ev = iwe_stream_add_point_check(info,
1484 if (IS_ERR(current_ev))
1487 case WLAN_EID_MESH_CONFIG:
1489 if (ie[1] != sizeof(struct ieee80211_meshconf_ie))
1492 memset(&iwe, 0, sizeof(iwe));
1493 iwe.cmd = IWEVCUSTOM;
1494 sprintf(buf, "Mesh Network Path Selection Protocol ID: "
1496 iwe.u.data.length = strlen(buf);
1497 current_ev = iwe_stream_add_point_check(info,
1501 if (IS_ERR(current_ev))
1503 sprintf(buf, "Path Selection Metric ID: 0x%02X",
1505 iwe.u.data.length = strlen(buf);
1506 current_ev = iwe_stream_add_point_check(info,
1510 if (IS_ERR(current_ev))
1512 sprintf(buf, "Congestion Control Mode ID: 0x%02X",
1514 iwe.u.data.length = strlen(buf);
1515 current_ev = iwe_stream_add_point_check(info,
1519 if (IS_ERR(current_ev))
1521 sprintf(buf, "Synchronization ID: 0x%02X", cfg[3]);
1522 iwe.u.data.length = strlen(buf);
1523 current_ev = iwe_stream_add_point_check(info,
1527 if (IS_ERR(current_ev))
1529 sprintf(buf, "Authentication ID: 0x%02X", cfg[4]);
1530 iwe.u.data.length = strlen(buf);
1531 current_ev = iwe_stream_add_point_check(info,
1535 if (IS_ERR(current_ev))
1537 sprintf(buf, "Formation Info: 0x%02X", cfg[5]);
1538 iwe.u.data.length = strlen(buf);
1539 current_ev = iwe_stream_add_point_check(info,
1543 if (IS_ERR(current_ev))
1545 sprintf(buf, "Capabilities: 0x%02X", cfg[6]);
1546 iwe.u.data.length = strlen(buf);
1547 current_ev = iwe_stream_add_point_check(info,
1551 if (IS_ERR(current_ev))
1554 case WLAN_EID_SUPP_RATES:
1555 case WLAN_EID_EXT_SUPP_RATES:
1556 /* display all supported rates in readable format */
1557 p = current_ev + iwe_stream_lcp_len(info);
1559 memset(&iwe, 0, sizeof(iwe));
1560 iwe.cmd = SIOCGIWRATE;
1561 /* Those two flags are ignored... */
1562 iwe.u.bitrate.fixed = iwe.u.bitrate.disabled = 0;
1564 for (i = 0; i < ie[1]; i++) {
1565 iwe.u.bitrate.value =
1566 ((ie[i + 2] & 0x7f) * 500000);
1568 p = iwe_stream_add_value(info, current_ev, p,
1572 current_ev = ERR_PTR(-E2BIG);
1583 if (bss->pub.capability & (WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_IBSS) ||
1585 memset(&iwe, 0, sizeof(iwe));
1586 iwe.cmd = SIOCGIWMODE;
1588 iwe.u.mode = IW_MODE_MESH;
1589 else if (bss->pub.capability & WLAN_CAPABILITY_ESS)
1590 iwe.u.mode = IW_MODE_MASTER;
1592 iwe.u.mode = IW_MODE_ADHOC;
1593 current_ev = iwe_stream_add_event_check(info, current_ev,
1596 if (IS_ERR(current_ev))
1600 memset(&iwe, 0, sizeof(iwe));
1601 iwe.cmd = IWEVCUSTOM;
1602 sprintf(buf, "tsf=%016llx", (unsigned long long)(ies->tsf));
1603 iwe.u.data.length = strlen(buf);
1604 current_ev = iwe_stream_add_point_check(info, current_ev, end_buf,
1606 if (IS_ERR(current_ev))
1608 memset(&iwe, 0, sizeof(iwe));
1609 iwe.cmd = IWEVCUSTOM;
1610 sprintf(buf, " Last beacon: %ums ago",
1611 elapsed_jiffies_msecs(bss->ts));
1612 iwe.u.data.length = strlen(buf);
1613 current_ev = iwe_stream_add_point_check(info, current_ev,
1614 end_buf, &iwe, buf);
1615 if (IS_ERR(current_ev))
1618 current_ev = ieee80211_scan_add_ies(info, ies, current_ev, end_buf);
1626 static int ieee80211_scan_results(struct cfg80211_registered_device *rdev,
1627 struct iw_request_info *info,
1628 char *buf, size_t len)
1630 char *current_ev = buf;
1631 char *end_buf = buf + len;
1632 struct cfg80211_internal_bss *bss;
1635 spin_lock_bh(&rdev->bss_lock);
1636 cfg80211_bss_expire(rdev);
1638 list_for_each_entry(bss, &rdev->bss_list, list) {
1639 if (buf + len - current_ev <= IW_EV_ADDR_LEN) {
1643 current_ev = ieee80211_bss(&rdev->wiphy, info, bss,
1644 current_ev, end_buf);
1645 if (IS_ERR(current_ev)) {
1646 err = PTR_ERR(current_ev);
1650 spin_unlock_bh(&rdev->bss_lock);
1654 return current_ev - buf;
1658 int cfg80211_wext_giwscan(struct net_device *dev,
1659 struct iw_request_info *info,
1660 struct iw_point *data, char *extra)
1662 struct cfg80211_registered_device *rdev;
1665 if (!netif_running(dev))
1668 rdev = cfg80211_get_dev_from_ifindex(dev_net(dev), dev->ifindex);
1671 return PTR_ERR(rdev);
1673 if (rdev->scan_req || rdev->scan_msg)
1676 res = ieee80211_scan_results(rdev, info, extra, data->length);
1685 EXPORT_WEXT_HANDLER(cfg80211_wext_giwscan);