Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1 | /* |
| 2 | * cfg80211 scan result handling |
| 3 | * |
| 4 | * Copyright 2008 Johannes Berg <johannes@sipsolutions.net> |
Johannes Berg | 2740f0c | 2014-09-03 15:24:58 +0300 | [diff] [blame] | 5 | * Copyright 2013-2014 Intel Mobile Communications GmbH |
Avraham Stern | 1d76250 | 2016-07-05 17:10:13 +0300 | [diff] [blame] | 6 | * Copyright 2016 Intel Deutschland GmbH |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 7 | */ |
| 8 | #include <linux/kernel.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 9 | #include <linux/slab.h> |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 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> |
| 15 | #include <net/arp.h> |
| 16 | #include <net/cfg80211.h> |
Johannes Berg | 262eb9b2 | 2011-07-13 10:39:09 +0200 | [diff] [blame] | 17 | #include <net/cfg80211-wext.h> |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 18 | #include <net/iw_handler.h> |
| 19 | #include "core.h" |
| 20 | #include "nl80211.h" |
Johannes Berg | a9a1162 | 2009-07-27 12:01:53 +0200 | [diff] [blame] | 21 | #include "wext-compat.h" |
Hila Gonen | e35e4d2 | 2012-06-27 17:19:42 +0300 | [diff] [blame] | 22 | #include "rdev-ops.h" |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 23 | |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 24 | /** |
| 25 | * DOC: BSS tree/list structure |
| 26 | * |
| 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 |
| 31 | * for other BSSes. |
| 32 | * |
| 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. |
| 40 | * |
| 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. |
| 49 | * |
| 50 | * Note that the hidden_beacon_bss pointer never changes, due to |
| 51 | * the reference counting. Therefore, no locking is needed for |
| 52 | * it. |
| 53 | * |
| 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. |
| 58 | */ |
| 59 | |
Rajkumar Manoharan | f9616e0 | 2012-04-13 16:38:40 +0530 | [diff] [blame] | 60 | #define IEEE80211_SCAN_RESULT_EXPIRE (30 * HZ) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 61 | |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 62 | static void bss_free(struct cfg80211_internal_bss *bss) |
Amitkumar Karwar | e8e27c6 | 2012-10-11 21:03:33 -0700 | [diff] [blame] | 63 | { |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 64 | struct cfg80211_bss_ies *ies; |
Johannes Berg | b629ea3 | 2012-11-28 22:14:56 +0100 | [diff] [blame] | 65 | |
| 66 | if (WARN_ON(atomic_read(&bss->hold))) |
| 67 | return; |
| 68 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 69 | ies = (void *)rcu_access_pointer(bss->pub.beacon_ies); |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 70 | if (ies && !bss->pub.hidden_beacon_bss) |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 71 | kfree_rcu(ies, rcu_head); |
| 72 | ies = (void *)rcu_access_pointer(bss->pub.proberesp_ies); |
| 73 | if (ies) |
| 74 | kfree_rcu(ies, rcu_head); |
Amitkumar Karwar | e8e27c6 | 2012-10-11 21:03:33 -0700 | [diff] [blame] | 75 | |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 76 | /* |
| 77 | * This happens when the module is removed, it doesn't |
| 78 | * really matter any more save for completeness |
| 79 | */ |
| 80 | if (!list_empty(&bss->hidden_list)) |
| 81 | list_del(&bss->hidden_list); |
| 82 | |
Amitkumar Karwar | e8e27c6 | 2012-10-11 21:03:33 -0700 | [diff] [blame] | 83 | kfree(bss); |
| 84 | } |
| 85 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 86 | static inline void bss_ref_get(struct cfg80211_registered_device *rdev, |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 87 | struct cfg80211_internal_bss *bss) |
Johannes Berg | 0532d4f | 2013-02-01 01:34:36 +0100 | [diff] [blame] | 88 | { |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 89 | lockdep_assert_held(&rdev->bss_lock); |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 90 | |
| 91 | bss->refcount++; |
| 92 | if (bss->pub.hidden_beacon_bss) { |
| 93 | bss = container_of(bss->pub.hidden_beacon_bss, |
| 94 | struct cfg80211_internal_bss, |
| 95 | pub); |
| 96 | bss->refcount++; |
| 97 | } |
Johannes Berg | 0532d4f | 2013-02-01 01:34:36 +0100 | [diff] [blame] | 98 | } |
| 99 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 100 | static inline void bss_ref_put(struct cfg80211_registered_device *rdev, |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 101 | struct cfg80211_internal_bss *bss) |
Johannes Berg | 0532d4f | 2013-02-01 01:34:36 +0100 | [diff] [blame] | 102 | { |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 103 | lockdep_assert_held(&rdev->bss_lock); |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 104 | |
| 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, |
| 109 | pub); |
| 110 | hbss->refcount--; |
| 111 | if (hbss->refcount == 0) |
| 112 | bss_free(hbss); |
| 113 | } |
| 114 | bss->refcount--; |
| 115 | if (bss->refcount == 0) |
| 116 | bss_free(bss); |
Johannes Berg | 0532d4f | 2013-02-01 01:34:36 +0100 | [diff] [blame] | 117 | } |
| 118 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 119 | static bool __cfg80211_unlink_bss(struct cfg80211_registered_device *rdev, |
Amitkumar Karwar | e8e27c6 | 2012-10-11 21:03:33 -0700 | [diff] [blame] | 120 | struct cfg80211_internal_bss *bss) |
| 121 | { |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 122 | lockdep_assert_held(&rdev->bss_lock); |
Johannes Berg | 4b1af47 | 2013-02-01 01:05:43 +0100 | [diff] [blame] | 123 | |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 124 | if (!list_empty(&bss->hidden_list)) { |
| 125 | /* |
| 126 | * don't remove the beacon entry if it has |
| 127 | * probe responses associated with it |
| 128 | */ |
| 129 | if (!bss->pub.hidden_beacon_bss) |
| 130 | return false; |
| 131 | /* |
| 132 | * if it's a probe response entry break its |
| 133 | * link to the other entries in the group |
| 134 | */ |
| 135 | list_del_init(&bss->hidden_list); |
| 136 | } |
| 137 | |
Amitkumar Karwar | e8e27c6 | 2012-10-11 21:03:33 -0700 | [diff] [blame] | 138 | list_del_init(&bss->list); |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 139 | rb_erase(&bss->rbn, &rdev->bss_tree); |
| 140 | bss_ref_put(rdev, bss); |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 141 | return true; |
Amitkumar Karwar | e8e27c6 | 2012-10-11 21:03:33 -0700 | [diff] [blame] | 142 | } |
| 143 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 144 | static void __cfg80211_bss_expire(struct cfg80211_registered_device *rdev, |
Sam Leffler | 15d6030 | 2012-10-11 21:03:34 -0700 | [diff] [blame] | 145 | unsigned long expire_time) |
| 146 | { |
| 147 | struct cfg80211_internal_bss *bss, *tmp; |
| 148 | bool expired = false; |
| 149 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 150 | lockdep_assert_held(&rdev->bss_lock); |
Johannes Berg | 4b1af47 | 2013-02-01 01:05:43 +0100 | [diff] [blame] | 151 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 152 | list_for_each_entry_safe(bss, tmp, &rdev->bss_list, list) { |
Sam Leffler | 15d6030 | 2012-10-11 21:03:34 -0700 | [diff] [blame] | 153 | if (atomic_read(&bss->hold)) |
| 154 | continue; |
| 155 | if (!time_after(expire_time, bss->ts)) |
| 156 | continue; |
| 157 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 158 | if (__cfg80211_unlink_bss(rdev, bss)) |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 159 | expired = true; |
Sam Leffler | 15d6030 | 2012-10-11 21:03:34 -0700 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | if (expired) |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 163 | rdev->bss_generation++; |
Sam Leffler | 15d6030 | 2012-10-11 21:03:34 -0700 | [diff] [blame] | 164 | } |
| 165 | |
Johannes Berg | f9d15d1 | 2014-01-22 11:14:19 +0200 | [diff] [blame] | 166 | void ___cfg80211_scan_done(struct cfg80211_registered_device *rdev, |
| 167 | bool send_message) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 168 | { |
Johannes Berg | 667503dd | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 169 | struct cfg80211_scan_request *request; |
Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 170 | struct wireless_dev *wdev; |
Johannes Berg | f9d15d1 | 2014-01-22 11:14:19 +0200 | [diff] [blame] | 171 | struct sk_buff *msg; |
Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 172 | #ifdef CONFIG_CFG80211_WEXT |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 173 | union iwreq_data wrqu; |
| 174 | #endif |
| 175 | |
Johannes Berg | 5fe231e | 2013-05-08 21:45:15 +0200 | [diff] [blame] | 176 | ASSERT_RTNL(); |
Johannes Berg | 01a0ac4 | 2009-08-20 21:36:16 +0200 | [diff] [blame] | 177 | |
Johannes Berg | f9d15d1 | 2014-01-22 11:14:19 +0200 | [diff] [blame] | 178 | if (rdev->scan_msg) { |
| 179 | nl80211_send_scan_result(rdev, rdev->scan_msg); |
| 180 | rdev->scan_msg = NULL; |
| 181 | return; |
| 182 | } |
Johannes Berg | 667503dd | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 183 | |
Johannes Berg | f9d15d1 | 2014-01-22 11:14:19 +0200 | [diff] [blame] | 184 | request = rdev->scan_req; |
Johannes Berg | 01a0ac4 | 2009-08-20 21:36:16 +0200 | [diff] [blame] | 185 | if (!request) |
| 186 | return; |
| 187 | |
Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 188 | wdev = request->wdev; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 189 | |
Johannes Berg | 6829c87 | 2009-07-02 09:13:27 +0200 | [diff] [blame] | 190 | /* |
| 191 | * This must be before sending the other events! |
| 192 | * Otherwise, wpa_supplicant gets completely confused with |
| 193 | * wext events. |
| 194 | */ |
Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 195 | if (wdev->netdev) |
| 196 | cfg80211_sme_scan_done(wdev->netdev); |
Johannes Berg | 6829c87 | 2009-07-02 09:13:27 +0200 | [diff] [blame] | 197 | |
Avraham Stern | 1d76250 | 2016-07-05 17:10:13 +0300 | [diff] [blame] | 198 | if (!request->info.aborted && |
Johannes Berg | f9d15d1 | 2014-01-22 11:14:19 +0200 | [diff] [blame] | 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); |
Sam Leffler | 15d6030 | 2012-10-11 21:03:34 -0700 | [diff] [blame] | 204 | } |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 205 | |
Avraham Stern | 1d76250 | 2016-07-05 17:10:13 +0300 | [diff] [blame] | 206 | msg = nl80211_build_scan_msg(rdev, wdev, request->info.aborted); |
Johannes Berg | f9d15d1 | 2014-01-22 11:14:19 +0200 | [diff] [blame] | 207 | |
Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 208 | #ifdef CONFIG_CFG80211_WEXT |
Avraham Stern | 1d76250 | 2016-07-05 17:10:13 +0300 | [diff] [blame] | 209 | if (wdev->netdev && !request->info.aborted) { |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 210 | memset(&wrqu, 0, sizeof(wrqu)); |
| 211 | |
Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 212 | wireless_send_event(wdev->netdev, SIOCGIWSCAN, &wrqu, NULL); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 213 | } |
| 214 | #endif |
| 215 | |
Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 216 | if (wdev->netdev) |
| 217 | dev_put(wdev->netdev); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 218 | |
Johannes Berg | 36e6fea | 2009-08-12 22:21:21 +0200 | [diff] [blame] | 219 | rdev->scan_req = NULL; |
Eliad Peller | 4a58e7c | 2013-12-05 18:30:17 +0200 | [diff] [blame] | 220 | kfree(request); |
Johannes Berg | f9d15d1 | 2014-01-22 11:14:19 +0200 | [diff] [blame] | 221 | |
| 222 | if (!send_message) |
| 223 | rdev->scan_msg = msg; |
| 224 | else |
| 225 | nl80211_send_scan_result(rdev, msg); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 226 | } |
Johannes Berg | 667503dd | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 227 | |
Johannes Berg | 36e6fea | 2009-08-12 22:21:21 +0200 | [diff] [blame] | 228 | void __cfg80211_scan_done(struct work_struct *wk) |
| 229 | { |
| 230 | struct cfg80211_registered_device *rdev; |
| 231 | |
| 232 | rdev = container_of(wk, struct cfg80211_registered_device, |
| 233 | scan_done_wk); |
| 234 | |
Johannes Berg | 5fe231e | 2013-05-08 21:45:15 +0200 | [diff] [blame] | 235 | rtnl_lock(); |
Johannes Berg | f9d15d1 | 2014-01-22 11:14:19 +0200 | [diff] [blame] | 236 | ___cfg80211_scan_done(rdev, true); |
Johannes Berg | 5fe231e | 2013-05-08 21:45:15 +0200 | [diff] [blame] | 237 | rtnl_unlock(); |
Johannes Berg | 36e6fea | 2009-08-12 22:21:21 +0200 | [diff] [blame] | 238 | } |
| 239 | |
Avraham Stern | 1d76250 | 2016-07-05 17:10:13 +0300 | [diff] [blame] | 240 | void cfg80211_scan_done(struct cfg80211_scan_request *request, |
| 241 | struct cfg80211_scan_info *info) |
Johannes Berg | 667503dd | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 242 | { |
Avraham Stern | 1d76250 | 2016-07-05 17:10:13 +0300 | [diff] [blame] | 243 | trace_cfg80211_scan_done(request, info); |
Zhao, Gang | f26cbf4 | 2014-04-21 12:53:03 +0800 | [diff] [blame] | 244 | WARN_ON(request != wiphy_to_rdev(request->wiphy)->scan_req); |
Johannes Berg | 667503dd | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 245 | |
Avraham Stern | 1d76250 | 2016-07-05 17:10:13 +0300 | [diff] [blame] | 246 | request->info = *info; |
Johannes Berg | 5fe231e | 2013-05-08 21:45:15 +0200 | [diff] [blame] | 247 | request->notified = true; |
Zhao, Gang | f26cbf4 | 2014-04-21 12:53:03 +0800 | [diff] [blame] | 248 | queue_work(cfg80211_wq, &wiphy_to_rdev(request->wiphy)->scan_done_wk); |
Johannes Berg | 667503dd | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 249 | } |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 250 | EXPORT_SYMBOL(cfg80211_scan_done); |
| 251 | |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 252 | void __cfg80211_sched_scan_results(struct work_struct *wk) |
| 253 | { |
| 254 | struct cfg80211_registered_device *rdev; |
Sam Leffler | 15d6030 | 2012-10-11 21:03:34 -0700 | [diff] [blame] | 255 | struct cfg80211_sched_scan_request *request; |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 256 | |
| 257 | rdev = container_of(wk, struct cfg80211_registered_device, |
| 258 | sched_scan_results_wk); |
| 259 | |
Johannes Berg | 5fe231e | 2013-05-08 21:45:15 +0200 | [diff] [blame] | 260 | rtnl_lock(); |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 261 | |
Jukka Rissanen | 31a60ed | 2014-12-15 13:25:38 +0200 | [diff] [blame] | 262 | request = rtnl_dereference(rdev->sched_scan_req); |
Johannes Berg | 79845c6 | 2013-10-21 11:33:35 +0200 | [diff] [blame] | 263 | |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 264 | /* we don't have sched_scan_req anymore if the scan is stopping */ |
Sam Leffler | 15d6030 | 2012-10-11 21:03:34 -0700 | [diff] [blame] | 265 | if (request) { |
| 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); |
Avraham Stern | 3b06d27 | 2015-10-12 09:51:34 +0300 | [diff] [blame] | 271 | request->scan_start = jiffies; |
Sam Leffler | 15d6030 | 2012-10-11 21:03:34 -0700 | [diff] [blame] | 272 | } |
| 273 | nl80211_send_sched_scan_results(rdev, request->dev); |
| 274 | } |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 275 | |
Johannes Berg | 5fe231e | 2013-05-08 21:45:15 +0200 | [diff] [blame] | 276 | rtnl_unlock(); |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 277 | } |
| 278 | |
| 279 | void cfg80211_sched_scan_results(struct wiphy *wiphy) |
| 280 | { |
Beni Lev | 4ee3e06 | 2012-08-27 12:49:39 +0300 | [diff] [blame] | 281 | trace_cfg80211_sched_scan_results(wiphy); |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 282 | /* ignore if we're not scanning */ |
Jukka Rissanen | 31a60ed | 2014-12-15 13:25:38 +0200 | [diff] [blame] | 283 | |
| 284 | if (rcu_access_pointer(wiphy_to_rdev(wiphy)->sched_scan_req)) |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 285 | queue_work(cfg80211_wq, |
Zhao, Gang | f26cbf4 | 2014-04-21 12:53:03 +0800 | [diff] [blame] | 286 | &wiphy_to_rdev(wiphy)->sched_scan_results_wk); |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 287 | } |
| 288 | EXPORT_SYMBOL(cfg80211_sched_scan_results); |
| 289 | |
Eliad Peller | 792e6aa | 2014-04-30 16:14:23 +0300 | [diff] [blame] | 290 | void cfg80211_sched_scan_stopped_rtnl(struct wiphy *wiphy) |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 291 | { |
Zhao, Gang | f26cbf4 | 2014-04-21 12:53:03 +0800 | [diff] [blame] | 292 | struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy); |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 293 | |
Eliad Peller | 792e6aa | 2014-04-30 16:14:23 +0300 | [diff] [blame] | 294 | ASSERT_RTNL(); |
| 295 | |
Beni Lev | 4ee3e06 | 2012-08-27 12:49:39 +0300 | [diff] [blame] | 296 | trace_cfg80211_sched_scan_stopped(wiphy); |
| 297 | |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 298 | __cfg80211_stop_sched_scan(rdev, true); |
Eliad Peller | 792e6aa | 2014-04-30 16:14:23 +0300 | [diff] [blame] | 299 | } |
| 300 | EXPORT_SYMBOL(cfg80211_sched_scan_stopped_rtnl); |
| 301 | |
| 302 | void cfg80211_sched_scan_stopped(struct wiphy *wiphy) |
| 303 | { |
| 304 | rtnl_lock(); |
| 305 | cfg80211_sched_scan_stopped_rtnl(wiphy); |
Johannes Berg | 5fe231e | 2013-05-08 21:45:15 +0200 | [diff] [blame] | 306 | rtnl_unlock(); |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 307 | } |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 308 | EXPORT_SYMBOL(cfg80211_sched_scan_stopped); |
| 309 | |
| 310 | int __cfg80211_stop_sched_scan(struct cfg80211_registered_device *rdev, |
| 311 | bool driver_initiated) |
| 312 | { |
Jukka Rissanen | 31a60ed | 2014-12-15 13:25:38 +0200 | [diff] [blame] | 313 | struct cfg80211_sched_scan_request *sched_scan_req; |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 314 | struct net_device *dev; |
| 315 | |
Johannes Berg | 5fe231e | 2013-05-08 21:45:15 +0200 | [diff] [blame] | 316 | ASSERT_RTNL(); |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 317 | |
| 318 | if (!rdev->sched_scan_req) |
Luciano Coelho | 1a84ff7 | 2011-07-08 11:16:16 +0300 | [diff] [blame] | 319 | return -ENOENT; |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 320 | |
Jukka Rissanen | 31a60ed | 2014-12-15 13:25:38 +0200 | [diff] [blame] | 321 | sched_scan_req = rtnl_dereference(rdev->sched_scan_req); |
| 322 | dev = sched_scan_req->dev; |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 323 | |
Luciano Coelho | 85a9994 | 2011-05-12 16:28:29 +0300 | [diff] [blame] | 324 | if (!driver_initiated) { |
Hila Gonen | e35e4d2 | 2012-06-27 17:19:42 +0300 | [diff] [blame] | 325 | int err = rdev_sched_scan_stop(rdev, dev); |
Luciano Coelho | 85a9994 | 2011-05-12 16:28:29 +0300 | [diff] [blame] | 326 | if (err) |
| 327 | return err; |
| 328 | } |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 329 | |
| 330 | nl80211_send_sched_scan(rdev, dev, NL80211_CMD_SCHED_SCAN_STOPPED); |
| 331 | |
Jukka Rissanen | 31a60ed | 2014-12-15 13:25:38 +0200 | [diff] [blame] | 332 | RCU_INIT_POINTER(rdev->sched_scan_req, NULL); |
| 333 | kfree_rcu(sched_scan_req, rcu_head); |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 334 | |
Jesper Juhl | 3b4670f | 2011-06-29 22:49:33 +0200 | [diff] [blame] | 335 | return 0; |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 336 | } |
| 337 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 338 | void cfg80211_bss_age(struct cfg80211_registered_device *rdev, |
Dan Williams | cb3a8ee | 2009-02-11 17:14:43 -0500 | [diff] [blame] | 339 | unsigned long age_secs) |
| 340 | { |
| 341 | struct cfg80211_internal_bss *bss; |
| 342 | unsigned long age_jiffies = msecs_to_jiffies(age_secs * MSEC_PER_SEC); |
| 343 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 344 | spin_lock_bh(&rdev->bss_lock); |
| 345 | list_for_each_entry(bss, &rdev->bss_list, list) |
Dan Williams | cb3a8ee | 2009-02-11 17:14:43 -0500 | [diff] [blame] | 346 | bss->ts -= age_jiffies; |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 347 | spin_unlock_bh(&rdev->bss_lock); |
Dan Williams | cb3a8ee | 2009-02-11 17:14:43 -0500 | [diff] [blame] | 348 | } |
| 349 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 350 | void cfg80211_bss_expire(struct cfg80211_registered_device *rdev) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 351 | { |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 352 | __cfg80211_bss_expire(rdev, jiffies - IEEE80211_SCAN_RESULT_EXPIRE); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 353 | } |
| 354 | |
Luca Coelho | fbd05e4 | 2016-09-15 18:15:09 +0300 | [diff] [blame^] | 355 | const u8 *cfg80211_find_ie_match(u8 eid, const u8 *ies, int len, |
| 356 | const u8 *match, int match_len, |
| 357 | int match_offset) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 358 | { |
Luca Coelho | fbd05e4 | 2016-09-15 18:15:09 +0300 | [diff] [blame^] | 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. |
| 361 | */ |
| 362 | if (WARN_ON((match_len && match_offset < 2) || |
| 363 | (!match_len && match_offset))) |
| 364 | return NULL; |
| 365 | |
| 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)) |
| 370 | return ies; |
| 371 | |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 372 | len -= ies[1] + 2; |
| 373 | ies += ies[1] + 2; |
| 374 | } |
Luca Coelho | fbd05e4 | 2016-09-15 18:15:09 +0300 | [diff] [blame^] | 375 | |
| 376 | return NULL; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 377 | } |
Luca Coelho | fbd05e4 | 2016-09-15 18:15:09 +0300 | [diff] [blame^] | 378 | EXPORT_SYMBOL(cfg80211_find_ie_match); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 379 | |
Emmanuel Grumbach | 9e9ea43 | 2016-05-03 16:08:07 +0300 | [diff] [blame] | 380 | const u8 *cfg80211_find_vendor_ie(unsigned int oui, int oui_type, |
Eliad Peller | 0c28ec5 | 2011-09-15 11:53:01 +0300 | [diff] [blame] | 381 | const u8 *ies, int len) |
| 382 | { |
Luca Coelho | fbd05e4 | 2016-09-15 18:15:09 +0300 | [diff] [blame^] | 383 | const u8 *ie; |
| 384 | u8 match[] = { oui >> 16, oui >> 8, oui, oui_type }; |
| 385 | int match_len = (oui_type < 0) ? 3 : sizeof(match); |
Eliad Peller | 0c28ec5 | 2011-09-15 11:53:01 +0300 | [diff] [blame] | 386 | |
Emmanuel Grumbach | 9e9ea43 | 2016-05-03 16:08:07 +0300 | [diff] [blame] | 387 | if (WARN_ON(oui_type > 0xff)) |
| 388 | return NULL; |
| 389 | |
Luca Coelho | fbd05e4 | 2016-09-15 18:15:09 +0300 | [diff] [blame^] | 390 | ie = cfg80211_find_ie_match(WLAN_EID_VENDOR_SPECIFIC, ies, len, |
| 391 | match, match_len, 2); |
Eliad Peller | 0c28ec5 | 2011-09-15 11:53:01 +0300 | [diff] [blame] | 392 | |
Luca Coelho | fbd05e4 | 2016-09-15 18:15:09 +0300 | [diff] [blame^] | 393 | if (ie && (ie[1] < 4)) |
| 394 | return NULL; |
Luciano Coelho | 6719429 | 2013-02-12 20:11:38 +0200 | [diff] [blame] | 395 | |
Luca Coelho | fbd05e4 | 2016-09-15 18:15:09 +0300 | [diff] [blame^] | 396 | return ie; |
Eliad Peller | 0c28ec5 | 2011-09-15 11:53:01 +0300 | [diff] [blame] | 397 | } |
| 398 | EXPORT_SYMBOL(cfg80211_find_vendor_ie); |
| 399 | |
Johannes Berg | 915de2f | 2012-11-28 22:39:37 +0100 | [diff] [blame] | 400 | static bool is_bss(struct cfg80211_bss *a, const u8 *bssid, |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 401 | const u8 *ssid, size_t ssid_len) |
| 402 | { |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 403 | const struct cfg80211_bss_ies *ies; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 404 | const u8 *ssidie; |
| 405 | |
Joe Perches | ac422d3 | 2012-05-08 18:56:55 +0000 | [diff] [blame] | 406 | if (bssid && !ether_addr_equal(a->bssid, bssid)) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 407 | return false; |
| 408 | |
Johannes Berg | 79420f0 | 2009-02-10 21:25:59 +0100 | [diff] [blame] | 409 | if (!ssid) |
| 410 | return true; |
| 411 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 412 | ies = rcu_access_pointer(a->ies); |
| 413 | if (!ies) |
| 414 | return false; |
| 415 | ssidie = cfg80211_find_ie(WLAN_EID_SSID, ies->data, ies->len); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 416 | if (!ssidie) |
| 417 | return false; |
| 418 | if (ssidie[1] != ssid_len) |
| 419 | return false; |
| 420 | return memcmp(ssidie + 2, ssid, ssid_len) == 0; |
| 421 | } |
| 422 | |
Johannes Berg | 4593c4c | 2013-02-01 19:20:03 +0100 | [diff] [blame] | 423 | /** |
| 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 |
| 428 | */ |
| 429 | enum bss_compare_mode { |
| 430 | BSS_CMP_REGULAR, |
| 431 | BSS_CMP_HIDE_ZLEN, |
| 432 | BSS_CMP_HIDE_NUL, |
| 433 | }; |
| 434 | |
Dmitry Tarnyagin | dd9dfb9 | 2011-11-04 17:12:07 +0100 | [diff] [blame] | 435 | static int cmp_bss(struct cfg80211_bss *a, |
Johannes Berg | 5622f5b | 2013-01-30 00:26:45 +0100 | [diff] [blame] | 436 | struct cfg80211_bss *b, |
Johannes Berg | 4593c4c | 2013-02-01 19:20:03 +0100 | [diff] [blame] | 437 | enum bss_compare_mode mode) |
Dmitry Tarnyagin | dd9dfb9 | 2011-11-04 17:12:07 +0100 | [diff] [blame] | 438 | { |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 439 | const struct cfg80211_bss_ies *a_ies, *b_ies; |
Johannes Berg | 3af6341 | 2013-01-30 00:40:20 +0100 | [diff] [blame] | 440 | const u8 *ie1 = NULL; |
| 441 | const u8 *ie2 = NULL; |
Johannes Berg | 5622f5b | 2013-01-30 00:26:45 +0100 | [diff] [blame] | 442 | int i, r; |
Dmitry Tarnyagin | dd9dfb9 | 2011-11-04 17:12:07 +0100 | [diff] [blame] | 443 | |
Johannes Berg | 3af6341 | 2013-01-30 00:40:20 +0100 | [diff] [blame] | 444 | if (a->channel != b->channel) |
| 445 | return b->channel->center_freq - a->channel->center_freq; |
Dmitry Tarnyagin | dd9dfb9 | 2011-11-04 17:12:07 +0100 | [diff] [blame] | 446 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 447 | a_ies = rcu_access_pointer(a->ies); |
| 448 | if (!a_ies) |
| 449 | return -1; |
| 450 | b_ies = rcu_access_pointer(b->ies); |
| 451 | if (!b_ies) |
| 452 | return 1; |
| 453 | |
Johannes Berg | 3af6341 | 2013-01-30 00:40:20 +0100 | [diff] [blame] | 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); |
| 460 | if (ie1 && ie2) { |
| 461 | int mesh_id_cmp; |
| 462 | |
| 463 | if (ie1[1] == ie2[1]) |
| 464 | mesh_id_cmp = memcmp(ie1 + 2, ie2 + 2, ie1[1]); |
| 465 | else |
| 466 | mesh_id_cmp = ie2[1] - ie1[1]; |
| 467 | |
| 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); |
| 472 | if (ie1 && ie2) { |
| 473 | if (mesh_id_cmp) |
| 474 | return mesh_id_cmp; |
| 475 | if (ie1[1] != ie2[1]) |
| 476 | return ie2[1] - ie1[1]; |
| 477 | return memcmp(ie1 + 2, ie2 + 2, ie1[1]); |
| 478 | } |
| 479 | } |
| 480 | |
Johannes Berg | 3af6341 | 2013-01-30 00:40:20 +0100 | [diff] [blame] | 481 | r = memcmp(a->bssid, b->bssid, sizeof(a->bssid)); |
| 482 | if (r) |
| 483 | return r; |
| 484 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 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); |
Dmitry Tarnyagin | dd9dfb9 | 2011-11-04 17:12:07 +0100 | [diff] [blame] | 487 | |
Johannes Berg | 5622f5b | 2013-01-30 00:26:45 +0100 | [diff] [blame] | 488 | if (!ie1 && !ie2) |
| 489 | return 0; |
| 490 | |
Johannes Berg | f94f8b1 | 2012-11-28 22:42:34 +0100 | [diff] [blame] | 491 | /* |
Johannes Berg | 5622f5b | 2013-01-30 00:26:45 +0100 | [diff] [blame] | 492 | * Note that with "hide_ssid", the function returns a match if |
| 493 | * the already-present BSS ("b") is a hidden SSID beacon for |
| 494 | * the new BSS ("a"). |
Johannes Berg | f94f8b1 | 2012-11-28 22:42:34 +0100 | [diff] [blame] | 495 | */ |
Dmitry Tarnyagin | dd9dfb9 | 2011-11-04 17:12:07 +0100 | [diff] [blame] | 496 | |
| 497 | /* sort missing IE before (left of) present IE */ |
| 498 | if (!ie1) |
| 499 | return -1; |
| 500 | if (!ie2) |
| 501 | return 1; |
| 502 | |
Johannes Berg | 4593c4c | 2013-02-01 19:20:03 +0100 | [diff] [blame] | 503 | switch (mode) { |
| 504 | case BSS_CMP_HIDE_ZLEN: |
| 505 | /* |
| 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. |
| 513 | * |
| 514 | * No content comparison is needed as we assume |
| 515 | * the content length is zero. |
| 516 | */ |
| 517 | return ie2[1]; |
| 518 | case BSS_CMP_REGULAR: |
| 519 | default: |
| 520 | /* sort by length first, then by contents */ |
| 521 | if (ie1[1] != ie2[1]) |
| 522 | return ie2[1] - ie1[1]; |
Johannes Berg | 5622f5b | 2013-01-30 00:26:45 +0100 | [diff] [blame] | 523 | return memcmp(ie1 + 2, ie2 + 2, ie1[1]); |
Johannes Berg | 4593c4c | 2013-02-01 19:20:03 +0100 | [diff] [blame] | 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++) |
| 529 | if (ie2[i + 2]) |
| 530 | return -1; |
| 531 | return 0; |
| 532 | } |
Dmitry Tarnyagin | dd9dfb9 | 2011-11-04 17:12:07 +0100 | [diff] [blame] | 533 | } |
| 534 | |
Dedy Lansky | 6eb1813 | 2015-02-08 15:52:03 +0200 | [diff] [blame] | 535 | static bool cfg80211_bss_type_match(u16 capability, |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 536 | enum nl80211_band band, |
Dedy Lansky | 6eb1813 | 2015-02-08 15:52:03 +0200 | [diff] [blame] | 537 | enum ieee80211_bss_type bss_type) |
| 538 | { |
| 539 | bool ret = true; |
| 540 | u16 mask, val; |
| 541 | |
| 542 | if (bss_type == IEEE80211_BSS_TYPE_ANY) |
| 543 | return ret; |
| 544 | |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 545 | if (band == NL80211_BAND_60GHZ) { |
Dedy Lansky | 6eb1813 | 2015-02-08 15:52:03 +0200 | [diff] [blame] | 546 | mask = WLAN_CAPABILITY_DMG_TYPE_MASK; |
| 547 | switch (bss_type) { |
| 548 | case IEEE80211_BSS_TYPE_ESS: |
| 549 | val = WLAN_CAPABILITY_DMG_TYPE_AP; |
| 550 | break; |
| 551 | case IEEE80211_BSS_TYPE_PBSS: |
| 552 | val = WLAN_CAPABILITY_DMG_TYPE_PBSS; |
| 553 | break; |
| 554 | case IEEE80211_BSS_TYPE_IBSS: |
| 555 | val = WLAN_CAPABILITY_DMG_TYPE_IBSS; |
| 556 | break; |
| 557 | default: |
| 558 | return false; |
| 559 | } |
| 560 | } else { |
| 561 | mask = WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_IBSS; |
| 562 | switch (bss_type) { |
| 563 | case IEEE80211_BSS_TYPE_ESS: |
| 564 | val = WLAN_CAPABILITY_ESS; |
| 565 | break; |
| 566 | case IEEE80211_BSS_TYPE_IBSS: |
| 567 | val = WLAN_CAPABILITY_IBSS; |
| 568 | break; |
| 569 | case IEEE80211_BSS_TYPE_MBSS: |
| 570 | val = 0; |
| 571 | break; |
| 572 | default: |
| 573 | return false; |
| 574 | } |
| 575 | } |
| 576 | |
| 577 | ret = ((capability & mask) == val); |
| 578 | return ret; |
| 579 | } |
| 580 | |
Ben Greear | 0e3a39b | 2013-06-19 14:06:27 -0700 | [diff] [blame] | 581 | /* Returned bss is reference counted and must be cleaned up appropriately. */ |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 582 | struct cfg80211_bss *cfg80211_get_bss(struct wiphy *wiphy, |
| 583 | struct ieee80211_channel *channel, |
| 584 | const u8 *bssid, |
Johannes Berg | 79420f0 | 2009-02-10 21:25:59 +0100 | [diff] [blame] | 585 | const u8 *ssid, size_t ssid_len, |
Dedy Lansky | 6eb1813 | 2015-02-08 15:52:03 +0200 | [diff] [blame] | 586 | enum ieee80211_bss_type bss_type, |
| 587 | enum ieee80211_privacy privacy) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 588 | { |
Zhao, Gang | f26cbf4 | 2014-04-21 12:53:03 +0800 | [diff] [blame] | 589 | struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 590 | struct cfg80211_internal_bss *bss, *res = NULL; |
Johannes Berg | ccb6c13 | 2010-07-13 10:55:38 +0200 | [diff] [blame] | 591 | unsigned long now = jiffies; |
Dedy Lansky | 6eb1813 | 2015-02-08 15:52:03 +0200 | [diff] [blame] | 592 | int bss_privacy; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 593 | |
Dedy Lansky | 6eb1813 | 2015-02-08 15:52:03 +0200 | [diff] [blame] | 594 | trace_cfg80211_get_bss(wiphy, channel, bssid, ssid, ssid_len, bss_type, |
| 595 | privacy); |
Beni Lev | 4ee3e06 | 2012-08-27 12:49:39 +0300 | [diff] [blame] | 596 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 597 | spin_lock_bh(&rdev->bss_lock); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 598 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 599 | list_for_each_entry(bss, &rdev->bss_list, list) { |
Dedy Lansky | 6eb1813 | 2015-02-08 15:52:03 +0200 | [diff] [blame] | 600 | if (!cfg80211_bss_type_match(bss->pub.capability, |
| 601 | bss->pub.channel->band, bss_type)) |
| 602 | continue; |
| 603 | |
| 604 | bss_privacy = (bss->pub.capability & WLAN_CAPABILITY_PRIVACY); |
| 605 | if ((privacy == IEEE80211_PRIVACY_ON && !bss_privacy) || |
| 606 | (privacy == IEEE80211_PRIVACY_OFF && bss_privacy)) |
Johannes Berg | 79420f0 | 2009-02-10 21:25:59 +0100 | [diff] [blame] | 607 | continue; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 608 | if (channel && bss->pub.channel != channel) |
| 609 | continue; |
Johannes Berg | c14a740 | 2014-04-09 22:36:50 +0200 | [diff] [blame] | 610 | if (!is_valid_ether_addr(bss->pub.bssid)) |
| 611 | continue; |
Johannes Berg | ccb6c13 | 2010-07-13 10:55:38 +0200 | [diff] [blame] | 612 | /* Don't get expired BSS structs */ |
| 613 | if (time_after(now, bss->ts + IEEE80211_SCAN_RESULT_EXPIRE) && |
| 614 | !atomic_read(&bss->hold)) |
| 615 | continue; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 616 | if (is_bss(&bss->pub, bssid, ssid, ssid_len)) { |
| 617 | res = bss; |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 618 | bss_ref_get(rdev, res); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 619 | break; |
| 620 | } |
| 621 | } |
| 622 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 623 | spin_unlock_bh(&rdev->bss_lock); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 624 | if (!res) |
| 625 | return NULL; |
Beni Lev | 4ee3e06 | 2012-08-27 12:49:39 +0300 | [diff] [blame] | 626 | trace_cfg80211_return_bss(&res->pub); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 627 | return &res->pub; |
| 628 | } |
| 629 | EXPORT_SYMBOL(cfg80211_get_bss); |
| 630 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 631 | static void rb_insert_bss(struct cfg80211_registered_device *rdev, |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 632 | struct cfg80211_internal_bss *bss) |
| 633 | { |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 634 | struct rb_node **p = &rdev->bss_tree.rb_node; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 635 | struct rb_node *parent = NULL; |
| 636 | struct cfg80211_internal_bss *tbss; |
| 637 | int cmp; |
| 638 | |
| 639 | while (*p) { |
| 640 | parent = *p; |
| 641 | tbss = rb_entry(parent, struct cfg80211_internal_bss, rbn); |
| 642 | |
Johannes Berg | 4593c4c | 2013-02-01 19:20:03 +0100 | [diff] [blame] | 643 | cmp = cmp_bss(&bss->pub, &tbss->pub, BSS_CMP_REGULAR); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 644 | |
| 645 | if (WARN_ON(!cmp)) { |
| 646 | /* will sort of leak this BSS */ |
| 647 | return; |
| 648 | } |
| 649 | |
| 650 | if (cmp < 0) |
| 651 | p = &(*p)->rb_left; |
| 652 | else |
| 653 | p = &(*p)->rb_right; |
| 654 | } |
| 655 | |
| 656 | rb_link_node(&bss->rbn, parent, p); |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 657 | rb_insert_color(&bss->rbn, &rdev->bss_tree); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 658 | } |
| 659 | |
| 660 | static struct cfg80211_internal_bss * |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 661 | rb_find_bss(struct cfg80211_registered_device *rdev, |
Johannes Berg | 5622f5b | 2013-01-30 00:26:45 +0100 | [diff] [blame] | 662 | struct cfg80211_internal_bss *res, |
Johannes Berg | 4593c4c | 2013-02-01 19:20:03 +0100 | [diff] [blame] | 663 | enum bss_compare_mode mode) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 664 | { |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 665 | struct rb_node *n = rdev->bss_tree.rb_node; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 666 | struct cfg80211_internal_bss *bss; |
| 667 | int r; |
| 668 | |
| 669 | while (n) { |
| 670 | bss = rb_entry(n, struct cfg80211_internal_bss, rbn); |
Johannes Berg | 4593c4c | 2013-02-01 19:20:03 +0100 | [diff] [blame] | 671 | r = cmp_bss(&res->pub, &bss->pub, mode); |
Dmitry Tarnyagin | dd9dfb9 | 2011-11-04 17:12:07 +0100 | [diff] [blame] | 672 | |
| 673 | if (r == 0) |
| 674 | return bss; |
| 675 | else if (r < 0) |
| 676 | n = n->rb_left; |
| 677 | else |
| 678 | n = n->rb_right; |
| 679 | } |
| 680 | |
| 681 | return NULL; |
| 682 | } |
| 683 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 684 | static bool cfg80211_combine_bsses(struct cfg80211_registered_device *rdev, |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 685 | struct cfg80211_internal_bss *new) |
Dmitry Tarnyagin | dd9dfb9 | 2011-11-04 17:12:07 +0100 | [diff] [blame] | 686 | { |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 687 | const struct cfg80211_bss_ies *ies; |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 688 | struct cfg80211_internal_bss *bss; |
| 689 | const u8 *ie; |
| 690 | int i, ssidlen; |
| 691 | u8 fold = 0; |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 692 | |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 693 | ies = rcu_access_pointer(new->pub.beacon_ies); |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 694 | if (WARN_ON(!ies)) |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 695 | return false; |
Dmitry Tarnyagin | dd9dfb9 | 2011-11-04 17:12:07 +0100 | [diff] [blame] | 696 | |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 697 | ie = cfg80211_find_ie(WLAN_EID_SSID, ies->data, ies->len); |
| 698 | if (!ie) { |
| 699 | /* nothing to do */ |
| 700 | return true; |
| 701 | } |
| 702 | |
| 703 | ssidlen = ie[1]; |
| 704 | for (i = 0; i < ssidlen; i++) |
| 705 | fold |= ie[2 + i]; |
| 706 | |
| 707 | if (fold) { |
| 708 | /* not a hidden SSID */ |
| 709 | return true; |
| 710 | } |
| 711 | |
| 712 | /* This is the bad part ... */ |
| 713 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 714 | list_for_each_entry(bss, &rdev->bss_list, list) { |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 715 | if (!ether_addr_equal(bss->pub.bssid, new->pub.bssid)) |
| 716 | continue; |
| 717 | if (bss->pub.channel != new->pub.channel) |
| 718 | continue; |
Simon Wunderlich | dcd6eac | 2013-07-08 16:55:49 +0200 | [diff] [blame] | 719 | if (bss->pub.scan_width != new->pub.scan_width) |
| 720 | continue; |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 721 | if (rcu_access_pointer(bss->pub.beacon_ies)) |
| 722 | continue; |
| 723 | ies = rcu_access_pointer(bss->pub.ies); |
| 724 | if (!ies) |
| 725 | continue; |
| 726 | ie = cfg80211_find_ie(WLAN_EID_SSID, ies->data, ies->len); |
| 727 | if (!ie) |
| 728 | continue; |
| 729 | if (ssidlen && ie[1] != ssidlen) |
| 730 | continue; |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 731 | if (WARN_ON_ONCE(bss->pub.hidden_beacon_bss)) |
| 732 | continue; |
| 733 | if (WARN_ON_ONCE(!list_empty(&bss->hidden_list))) |
| 734 | list_del(&bss->hidden_list); |
| 735 | /* combine them */ |
| 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); |
| 741 | } |
| 742 | |
| 743 | return true; |
Dmitry Tarnyagin | dd9dfb9 | 2011-11-04 17:12:07 +0100 | [diff] [blame] | 744 | } |
| 745 | |
Ben Greear | 0e3a39b | 2013-06-19 14:06:27 -0700 | [diff] [blame] | 746 | /* Returned bss is reference counted and must be cleaned up appropriately. */ |
Dmitry Tarnyagin | dd9dfb9 | 2011-11-04 17:12:07 +0100 | [diff] [blame] | 747 | static struct cfg80211_internal_bss * |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 748 | cfg80211_bss_update(struct cfg80211_registered_device *rdev, |
Emmanuel Grumbach | 3afc216 | 2014-03-04 16:50:13 +0200 | [diff] [blame] | 749 | struct cfg80211_internal_bss *tmp, |
| 750 | bool signal_valid) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 751 | { |
| 752 | struct cfg80211_internal_bss *found = NULL; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 753 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 754 | if (WARN_ON(!tmp->pub.channel)) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 755 | return NULL; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 756 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 757 | tmp->ts = jiffies; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 758 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 759 | spin_lock_bh(&rdev->bss_lock); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 760 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 761 | if (WARN_ON(!rcu_access_pointer(tmp->pub.ies))) { |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 762 | spin_unlock_bh(&rdev->bss_lock); |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 763 | return NULL; |
| 764 | } |
| 765 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 766 | found = rb_find_bss(rdev, tmp, BSS_CMP_REGULAR); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 767 | |
Johannes Berg | cd1658f | 2009-04-16 15:00:58 +0200 | [diff] [blame] | 768 | if (found) { |
Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 769 | /* Update IEs */ |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 770 | if (rcu_access_pointer(tmp->pub.proberesp_ies)) { |
| 771 | const struct cfg80211_bss_ies *old; |
Johannes Berg | cd1658f | 2009-04-16 15:00:58 +0200 | [diff] [blame] | 772 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 773 | old = rcu_access_pointer(found->pub.proberesp_ies); |
Johannes Berg | cd1658f | 2009-04-16 15:00:58 +0200 | [diff] [blame] | 774 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 775 | rcu_assign_pointer(found->pub.proberesp_ies, |
| 776 | tmp->pub.proberesp_ies); |
Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 777 | /* Override possible earlier Beacon frame IEs */ |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 778 | rcu_assign_pointer(found->pub.ies, |
| 779 | tmp->pub.proberesp_ies); |
| 780 | if (old) |
| 781 | kfree_rcu((struct cfg80211_bss_ies *)old, |
| 782 | rcu_head); |
| 783 | } else if (rcu_access_pointer(tmp->pub.beacon_ies)) { |
Johannes Berg | 9537f22 | 2013-02-01 01:19:48 +0100 | [diff] [blame] | 784 | const struct cfg80211_bss_ies *old; |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 785 | struct cfg80211_internal_bss *bss; |
| 786 | |
| 787 | if (found->pub.hidden_beacon_bss && |
| 788 | !list_empty(&found->hidden_list)) { |
Johannes Berg | 1345ee6 | 2013-03-06 10:31:05 +0100 | [diff] [blame] | 789 | const struct cfg80211_bss_ies *f; |
| 790 | |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 791 | /* |
| 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. |
| 799 | */ |
Johannes Berg | 1345ee6 | 2013-03-06 10:31:05 +0100 | [diff] [blame] | 800 | |
| 801 | f = rcu_access_pointer(tmp->pub.beacon_ies); |
| 802 | kfree_rcu((struct cfg80211_bss_ies *)f, |
| 803 | rcu_head); |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 804 | goto drop; |
| 805 | } |
Johannes Berg | 915de2f | 2012-11-28 22:39:37 +0100 | [diff] [blame] | 806 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 807 | old = rcu_access_pointer(found->pub.beacon_ies); |
Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 808 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 809 | rcu_assign_pointer(found->pub.beacon_ies, |
| 810 | tmp->pub.beacon_ies); |
Sven Neumann | 01123e2 | 2010-12-09 15:05:24 +0100 | [diff] [blame] | 811 | |
| 812 | /* Override IEs if they were from a beacon before */ |
Johannes Berg | 9537f22 | 2013-02-01 01:19:48 +0100 | [diff] [blame] | 813 | if (old == rcu_access_pointer(found->pub.ies)) |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 814 | rcu_assign_pointer(found->pub.ies, |
| 815 | tmp->pub.beacon_ies); |
Johannes Berg | cd1658f | 2009-04-16 15:00:58 +0200 | [diff] [blame] | 816 | |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 817 | /* Assign beacon IEs to all sub entries */ |
| 818 | list_for_each_entry(bss, &found->hidden_list, |
| 819 | hidden_list) { |
| 820 | const struct cfg80211_bss_ies *ies; |
| 821 | |
| 822 | ies = rcu_access_pointer(bss->pub.beacon_ies); |
| 823 | WARN_ON(ies != old); |
| 824 | |
| 825 | rcu_assign_pointer(bss->pub.beacon_ies, |
| 826 | tmp->pub.beacon_ies); |
| 827 | } |
| 828 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 829 | if (old) |
| 830 | kfree_rcu((struct cfg80211_bss_ies *)old, |
| 831 | rcu_head); |
| 832 | } |
Johannes Berg | 1345ee6 | 2013-03-06 10:31:05 +0100 | [diff] [blame] | 833 | |
| 834 | found->pub.beacon_interval = tmp->pub.beacon_interval; |
Emmanuel Grumbach | 3afc216 | 2014-03-04 16:50:13 +0200 | [diff] [blame] | 835 | /* |
| 836 | * don't update the signal if beacon was heard on |
| 837 | * adjacent channel. |
| 838 | */ |
| 839 | if (signal_valid) |
| 840 | found->pub.signal = tmp->pub.signal; |
Johannes Berg | 1345ee6 | 2013-03-06 10:31:05 +0100 | [diff] [blame] | 841 | found->pub.capability = tmp->pub.capability; |
| 842 | found->ts = tmp->ts; |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 843 | found->ts_boottime = tmp->ts_boottime; |
Avraham Stern | 1d76250 | 2016-07-05 17:10:13 +0300 | [diff] [blame] | 844 | found->parent_tsf = tmp->parent_tsf; |
| 845 | ether_addr_copy(found->parent_bssid, tmp->parent_bssid); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 846 | } else { |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 847 | struct cfg80211_internal_bss *new; |
Dmitry Tarnyagin | dd9dfb9 | 2011-11-04 17:12:07 +0100 | [diff] [blame] | 848 | struct cfg80211_internal_bss *hidden; |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 849 | struct cfg80211_bss_ies *ies; |
Dmitry Tarnyagin | dd9dfb9 | 2011-11-04 17:12:07 +0100 | [diff] [blame] | 850 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 851 | /* |
| 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 |
| 855 | */ |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 856 | new = kzalloc(sizeof(*new) + rdev->wiphy.bss_priv_size, |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 857 | GFP_ATOMIC); |
| 858 | if (!new) { |
| 859 | ies = (void *)rcu_dereference(tmp->pub.beacon_ies); |
| 860 | if (ies) |
| 861 | kfree_rcu(ies, rcu_head); |
| 862 | ies = (void *)rcu_dereference(tmp->pub.proberesp_ies); |
| 863 | if (ies) |
| 864 | kfree_rcu(ies, rcu_head); |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 865 | goto drop; |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 866 | } |
| 867 | memcpy(new, tmp, sizeof(*new)); |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 868 | new->refcount = 1; |
| 869 | INIT_LIST_HEAD(&new->hidden_list); |
| 870 | |
| 871 | if (rcu_access_pointer(tmp->pub.proberesp_ies)) { |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 872 | hidden = rb_find_bss(rdev, tmp, BSS_CMP_HIDE_ZLEN); |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 873 | if (!hidden) |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 874 | hidden = rb_find_bss(rdev, tmp, |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 875 | BSS_CMP_HIDE_NUL); |
| 876 | if (hidden) { |
| 877 | new->pub.hidden_beacon_bss = &hidden->pub; |
| 878 | list_add(&new->hidden_list, |
| 879 | &hidden->hidden_list); |
| 880 | hidden->refcount++; |
| 881 | rcu_assign_pointer(new->pub.beacon_ies, |
| 882 | hidden->pub.beacon_ies); |
| 883 | } |
| 884 | } else { |
| 885 | /* |
| 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 ... |
| 890 | */ |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 891 | if (!cfg80211_combine_bsses(rdev, new)) { |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 892 | kfree(new); |
| 893 | goto drop; |
| 894 | } |
| 895 | } |
| 896 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 897 | list_add_tail(&new->list, &rdev->bss_list); |
| 898 | rb_insert_bss(rdev, new); |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 899 | found = new; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 900 | } |
| 901 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 902 | rdev->bss_generation++; |
| 903 | bss_ref_get(rdev, found); |
| 904 | spin_unlock_bh(&rdev->bss_lock); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 905 | |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 906 | return found; |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 907 | drop: |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 908 | spin_unlock_bh(&rdev->bss_lock); |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 909 | return NULL; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 910 | } |
| 911 | |
Johannes Berg | 0172bb7 | 2012-11-23 14:23:30 +0100 | [diff] [blame] | 912 | static struct ieee80211_channel * |
| 913 | cfg80211_get_bss_channel(struct wiphy *wiphy, const u8 *ie, size_t ielen, |
| 914 | struct ieee80211_channel *channel) |
| 915 | { |
| 916 | const u8 *tmp; |
| 917 | u32 freq; |
| 918 | int channel_number = -1; |
| 919 | |
| 920 | tmp = cfg80211_find_ie(WLAN_EID_DS_PARAMS, ie, ielen); |
| 921 | if (tmp && tmp[1] == 1) { |
| 922 | channel_number = tmp[2]; |
| 923 | } else { |
| 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); |
| 927 | |
| 928 | channel_number = htop->primary_chan; |
| 929 | } |
| 930 | } |
| 931 | |
| 932 | if (channel_number < 0) |
| 933 | return channel; |
| 934 | |
| 935 | freq = ieee80211_channel_to_frequency(channel_number, channel->band); |
| 936 | channel = ieee80211_get_channel(wiphy, freq); |
| 937 | if (!channel) |
| 938 | return NULL; |
| 939 | if (channel->flags & IEEE80211_CHAN_DISABLED) |
| 940 | return NULL; |
| 941 | return channel; |
| 942 | } |
| 943 | |
Ben Greear | 0e3a39b | 2013-06-19 14:06:27 -0700 | [diff] [blame] | 944 | /* Returned bss is reference counted and must be cleaned up appropriately. */ |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 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, |
| 951 | gfp_t gfp) |
Jussi Kivilinna | 06aa7af | 2009-03-26 23:40:09 +0200 | [diff] [blame] | 952 | { |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 953 | struct cfg80211_bss_ies *ies; |
Emmanuel Grumbach | 3afc216 | 2014-03-04 16:50:13 +0200 | [diff] [blame] | 954 | struct ieee80211_channel *channel; |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 955 | struct cfg80211_internal_bss tmp = {}, *res; |
Dedy Lansky | 6eb1813 | 2015-02-08 15:52:03 +0200 | [diff] [blame] | 956 | int bss_type; |
Emmanuel Grumbach | 67af981 | 2014-05-18 10:15:24 +0300 | [diff] [blame] | 957 | bool signal_valid; |
Jussi Kivilinna | 06aa7af | 2009-03-26 23:40:09 +0200 | [diff] [blame] | 958 | |
| 959 | if (WARN_ON(!wiphy)) |
| 960 | return NULL; |
| 961 | |
Sujith | 22fe88d | 2010-05-13 10:34:08 +0530 | [diff] [blame] | 962 | if (WARN_ON(wiphy->signal_type == CFG80211_SIGNAL_TYPE_UNSPEC && |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 963 | (data->signal < 0 || data->signal > 100))) |
Jussi Kivilinna | 06aa7af | 2009-03-26 23:40:09 +0200 | [diff] [blame] | 964 | return NULL; |
| 965 | |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 966 | channel = cfg80211_get_bss_channel(wiphy, ie, ielen, data->chan); |
Johannes Berg | 0172bb7 | 2012-11-23 14:23:30 +0100 | [diff] [blame] | 967 | if (!channel) |
| 968 | return NULL; |
| 969 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 970 | memcpy(tmp.pub.bssid, bssid, ETH_ALEN); |
| 971 | tmp.pub.channel = channel; |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 972 | tmp.pub.scan_width = data->scan_width; |
| 973 | tmp.pub.signal = data->signal; |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 974 | tmp.pub.beacon_interval = beacon_interval; |
| 975 | tmp.pub.capability = capability; |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 976 | tmp.ts_boottime = data->boottime_ns; |
| 977 | |
Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 978 | /* |
Johannes Berg | 5bc8c1f | 2014-08-12 21:01:28 +0200 | [diff] [blame] | 979 | * If we do not know here whether the IEs are from a Beacon or Probe |
Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 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 |
Johannes Berg | 50521aa | 2013-01-30 21:33:19 +0100 | [diff] [blame] | 983 | * override the IEs pointer should we have received an earlier |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 984 | * indication of Probe Response data. |
Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 985 | */ |
Johannes Berg | 0e22708 | 2014-08-12 20:34:30 +0200 | [diff] [blame] | 986 | ies = kzalloc(sizeof(*ies) + ielen, gfp); |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 987 | if (!ies) |
| 988 | return NULL; |
| 989 | ies->len = ielen; |
Johannes Berg | 8cef2c9 | 2013-02-05 16:54:31 +0100 | [diff] [blame] | 990 | ies->tsf = tsf; |
Johannes Berg | 0e22708 | 2014-08-12 20:34:30 +0200 | [diff] [blame] | 991 | ies->from_beacon = false; |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 992 | memcpy(ies->data, ie, ielen); |
Jussi Kivilinna | 06aa7af | 2009-03-26 23:40:09 +0200 | [diff] [blame] | 993 | |
Johannes Berg | 5bc8c1f | 2014-08-12 21:01:28 +0200 | [diff] [blame] | 994 | switch (ftype) { |
| 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); |
| 1000 | break; |
| 1001 | case CFG80211_BSS_FTYPE_PRESP: |
| 1002 | rcu_assign_pointer(tmp.pub.proberesp_ies, ies); |
| 1003 | break; |
| 1004 | } |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 1005 | rcu_assign_pointer(tmp.pub.ies, ies); |
Jussi Kivilinna | 06aa7af | 2009-03-26 23:40:09 +0200 | [diff] [blame] | 1006 | |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 1007 | signal_valid = abs(data->chan->center_freq - channel->center_freq) <= |
Emmanuel Grumbach | 67af981 | 2014-05-18 10:15:24 +0300 | [diff] [blame] | 1008 | wiphy->max_adj_channel_rssi_comp; |
| 1009 | res = cfg80211_bss_update(wiphy_to_rdev(wiphy), &tmp, signal_valid); |
Jussi Kivilinna | 06aa7af | 2009-03-26 23:40:09 +0200 | [diff] [blame] | 1010 | if (!res) |
| 1011 | return NULL; |
| 1012 | |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 1013 | if (channel->band == NL80211_BAND_60GHZ) { |
Dedy Lansky | 6eb1813 | 2015-02-08 15:52:03 +0200 | [diff] [blame] | 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); |
| 1018 | } else { |
| 1019 | if (res->pub.capability & WLAN_CAPABILITY_ESS) |
| 1020 | regulatory_hint_found_beacon(wiphy, channel, gfp); |
| 1021 | } |
Jussi Kivilinna | 06aa7af | 2009-03-26 23:40:09 +0200 | [diff] [blame] | 1022 | |
Beni Lev | 4ee3e06 | 2012-08-27 12:49:39 +0300 | [diff] [blame] | 1023 | trace_cfg80211_return_bss(&res->pub); |
Jussi Kivilinna | 06aa7af | 2009-03-26 23:40:09 +0200 | [diff] [blame] | 1024 | /* cfg80211_bss_update gives us a referenced result */ |
| 1025 | return &res->pub; |
| 1026 | } |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 1027 | EXPORT_SYMBOL(cfg80211_inform_bss_data); |
Jussi Kivilinna | 06aa7af | 2009-03-26 23:40:09 +0200 | [diff] [blame] | 1028 | |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 1029 | /* cfg80211_inform_bss_width_frame helper */ |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1030 | struct cfg80211_bss * |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 1031 | cfg80211_inform_bss_frame_data(struct wiphy *wiphy, |
| 1032 | struct cfg80211_inform_bss *data, |
| 1033 | struct ieee80211_mgmt *mgmt, size_t len, |
| 1034 | gfp_t gfp) |
| 1035 | |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1036 | { |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 1037 | struct cfg80211_internal_bss tmp = {}, *res; |
| 1038 | struct cfg80211_bss_ies *ies; |
Emmanuel Grumbach | 3afc216 | 2014-03-04 16:50:13 +0200 | [diff] [blame] | 1039 | struct ieee80211_channel *channel; |
Emmanuel Grumbach | 67af981 | 2014-05-18 10:15:24 +0300 | [diff] [blame] | 1040 | bool signal_valid; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1041 | size_t ielen = len - offsetof(struct ieee80211_mgmt, |
| 1042 | u.probe_resp.variable); |
Dedy Lansky | 6eb1813 | 2015-02-08 15:52:03 +0200 | [diff] [blame] | 1043 | int bss_type; |
Mariusz Kozlowski | bef9bac | 2011-03-26 19:26:55 +0100 | [diff] [blame] | 1044 | |
Johannes Berg | 0172bb7 | 2012-11-23 14:23:30 +0100 | [diff] [blame] | 1045 | BUILD_BUG_ON(offsetof(struct ieee80211_mgmt, u.probe_resp.variable) != |
| 1046 | offsetof(struct ieee80211_mgmt, u.beacon.variable)); |
| 1047 | |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 1048 | trace_cfg80211_inform_bss_frame(wiphy, data, mgmt, len); |
Beni Lev | 4ee3e06 | 2012-08-27 12:49:39 +0300 | [diff] [blame] | 1049 | |
Mariusz Kozlowski | bef9bac | 2011-03-26 19:26:55 +0100 | [diff] [blame] | 1050 | if (WARN_ON(!mgmt)) |
| 1051 | return NULL; |
| 1052 | |
| 1053 | if (WARN_ON(!wiphy)) |
| 1054 | return NULL; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1055 | |
Sujith | 22fe88d | 2010-05-13 10:34:08 +0530 | [diff] [blame] | 1056 | if (WARN_ON(wiphy->signal_type == CFG80211_SIGNAL_TYPE_UNSPEC && |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 1057 | (data->signal < 0 || data->signal > 100))) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1058 | return NULL; |
| 1059 | |
Mariusz Kozlowski | bef9bac | 2011-03-26 19:26:55 +0100 | [diff] [blame] | 1060 | if (WARN_ON(len < offsetof(struct ieee80211_mgmt, u.probe_resp.variable))) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1061 | return NULL; |
| 1062 | |
Johannes Berg | 0172bb7 | 2012-11-23 14:23:30 +0100 | [diff] [blame] | 1063 | channel = cfg80211_get_bss_channel(wiphy, mgmt->u.beacon.variable, |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 1064 | ielen, data->chan); |
Johannes Berg | 0172bb7 | 2012-11-23 14:23:30 +0100 | [diff] [blame] | 1065 | if (!channel) |
| 1066 | return NULL; |
| 1067 | |
Johannes Berg | 0e22708 | 2014-08-12 20:34:30 +0200 | [diff] [blame] | 1068 | ies = kzalloc(sizeof(*ies) + ielen, gfp); |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 1069 | if (!ies) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1070 | return NULL; |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 1071 | ies->len = ielen; |
Johannes Berg | 8cef2c9 | 2013-02-05 16:54:31 +0100 | [diff] [blame] | 1072 | ies->tsf = le64_to_cpu(mgmt->u.probe_resp.timestamp); |
Johannes Berg | 0e22708 | 2014-08-12 20:34:30 +0200 | [diff] [blame] | 1073 | ies->from_beacon = ieee80211_is_beacon(mgmt->frame_control); |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 1074 | memcpy(ies->data, mgmt->u.probe_resp.variable, ielen); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1075 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 1076 | if (ieee80211_is_probe_resp(mgmt->frame_control)) |
| 1077 | rcu_assign_pointer(tmp.pub.proberesp_ies, ies); |
| 1078 | else |
| 1079 | rcu_assign_pointer(tmp.pub.beacon_ies, ies); |
| 1080 | rcu_assign_pointer(tmp.pub.ies, ies); |
| 1081 | |
| 1082 | memcpy(tmp.pub.bssid, mgmt->bssid, ETH_ALEN); |
| 1083 | tmp.pub.channel = channel; |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 1084 | tmp.pub.scan_width = data->scan_width; |
| 1085 | tmp.pub.signal = data->signal; |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 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); |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 1088 | tmp.ts_boottime = data->boottime_ns; |
Avraham Stern | 1d76250 | 2016-07-05 17:10:13 +0300 | [diff] [blame] | 1089 | tmp.parent_tsf = data->parent_tsf; |
| 1090 | ether_addr_copy(tmp.parent_bssid, data->parent_bssid); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1091 | |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 1092 | signal_valid = abs(data->chan->center_freq - channel->center_freq) <= |
Emmanuel Grumbach | 67af981 | 2014-05-18 10:15:24 +0300 | [diff] [blame] | 1093 | wiphy->max_adj_channel_rssi_comp; |
| 1094 | res = cfg80211_bss_update(wiphy_to_rdev(wiphy), &tmp, signal_valid); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1095 | if (!res) |
| 1096 | return NULL; |
| 1097 | |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 1098 | if (channel->band == NL80211_BAND_60GHZ) { |
Dedy Lansky | 6eb1813 | 2015-02-08 15:52:03 +0200 | [diff] [blame] | 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); |
| 1103 | } else { |
| 1104 | if (res->pub.capability & WLAN_CAPABILITY_ESS) |
| 1105 | regulatory_hint_found_beacon(wiphy, channel, gfp); |
| 1106 | } |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1107 | |
Beni Lev | 4ee3e06 | 2012-08-27 12:49:39 +0300 | [diff] [blame] | 1108 | trace_cfg80211_return_bss(&res->pub); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1109 | /* cfg80211_bss_update gives us a referenced result */ |
| 1110 | return &res->pub; |
| 1111 | } |
Dmitry Shmidt | 6e19bc4 | 2015-10-07 11:32:53 +0200 | [diff] [blame] | 1112 | EXPORT_SYMBOL(cfg80211_inform_bss_frame_data); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1113 | |
Johannes Berg | 5b112d3 | 2013-02-01 01:49:58 +0100 | [diff] [blame] | 1114 | void cfg80211_ref_bss(struct wiphy *wiphy, struct cfg80211_bss *pub) |
Johannes Berg | 4c0c0b7 | 2012-01-20 13:55:26 +0100 | [diff] [blame] | 1115 | { |
Zhao, Gang | f26cbf4 | 2014-04-21 12:53:03 +0800 | [diff] [blame] | 1116 | struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy); |
Johannes Berg | 4c0c0b7 | 2012-01-20 13:55:26 +0100 | [diff] [blame] | 1117 | struct cfg80211_internal_bss *bss; |
| 1118 | |
| 1119 | if (!pub) |
| 1120 | return; |
| 1121 | |
| 1122 | bss = container_of(pub, struct cfg80211_internal_bss, pub); |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 1123 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 1124 | spin_lock_bh(&rdev->bss_lock); |
| 1125 | bss_ref_get(rdev, bss); |
| 1126 | spin_unlock_bh(&rdev->bss_lock); |
Johannes Berg | 4c0c0b7 | 2012-01-20 13:55:26 +0100 | [diff] [blame] | 1127 | } |
| 1128 | EXPORT_SYMBOL(cfg80211_ref_bss); |
| 1129 | |
Johannes Berg | 5b112d3 | 2013-02-01 01:49:58 +0100 | [diff] [blame] | 1130 | void cfg80211_put_bss(struct wiphy *wiphy, struct cfg80211_bss *pub) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1131 | { |
Zhao, Gang | f26cbf4 | 2014-04-21 12:53:03 +0800 | [diff] [blame] | 1132 | struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1133 | struct cfg80211_internal_bss *bss; |
| 1134 | |
| 1135 | if (!pub) |
| 1136 | return; |
| 1137 | |
| 1138 | bss = container_of(pub, struct cfg80211_internal_bss, pub); |
Johannes Berg | 776b358 | 2013-02-01 02:06:18 +0100 | [diff] [blame] | 1139 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 1140 | spin_lock_bh(&rdev->bss_lock); |
| 1141 | bss_ref_put(rdev, bss); |
| 1142 | spin_unlock_bh(&rdev->bss_lock); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1143 | } |
| 1144 | EXPORT_SYMBOL(cfg80211_put_bss); |
| 1145 | |
Johannes Berg | d491af1 | 2009-02-10 21:25:58 +0100 | [diff] [blame] | 1146 | void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *pub) |
| 1147 | { |
Zhao, Gang | f26cbf4 | 2014-04-21 12:53:03 +0800 | [diff] [blame] | 1148 | struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy); |
Johannes Berg | d491af1 | 2009-02-10 21:25:58 +0100 | [diff] [blame] | 1149 | struct cfg80211_internal_bss *bss; |
| 1150 | |
| 1151 | if (WARN_ON(!pub)) |
| 1152 | return; |
| 1153 | |
| 1154 | bss = container_of(pub, struct cfg80211_internal_bss, pub); |
| 1155 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 1156 | spin_lock_bh(&rdev->bss_lock); |
Johannes Berg | 3207390 | 2010-10-06 21:18:04 +0200 | [diff] [blame] | 1157 | if (!list_empty(&bss->list)) { |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 1158 | if (__cfg80211_unlink_bss(rdev, bss)) |
| 1159 | rdev->bss_generation++; |
Johannes Berg | 3207390 | 2010-10-06 21:18:04 +0200 | [diff] [blame] | 1160 | } |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 1161 | spin_unlock_bh(&rdev->bss_lock); |
Johannes Berg | d491af1 | 2009-02-10 21:25:58 +0100 | [diff] [blame] | 1162 | } |
| 1163 | EXPORT_SYMBOL(cfg80211_unlink_bss); |
| 1164 | |
Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 1165 | #ifdef CONFIG_CFG80211_WEXT |
Johannes Berg | 9f419f3 | 2013-05-08 21:34:22 +0200 | [diff] [blame] | 1166 | static struct cfg80211_registered_device * |
| 1167 | cfg80211_get_dev_from_ifindex(struct net *net, int ifindex) |
| 1168 | { |
Johannes Berg | 5fe231e | 2013-05-08 21:45:15 +0200 | [diff] [blame] | 1169 | struct cfg80211_registered_device *rdev; |
Johannes Berg | 9f419f3 | 2013-05-08 21:34:22 +0200 | [diff] [blame] | 1170 | struct net_device *dev; |
| 1171 | |
Johannes Berg | 5fe231e | 2013-05-08 21:45:15 +0200 | [diff] [blame] | 1172 | ASSERT_RTNL(); |
| 1173 | |
Johannes Berg | 9f419f3 | 2013-05-08 21:34:22 +0200 | [diff] [blame] | 1174 | dev = dev_get_by_index(net, ifindex); |
| 1175 | if (!dev) |
Johannes Berg | 5fe231e | 2013-05-08 21:45:15 +0200 | [diff] [blame] | 1176 | return ERR_PTR(-ENODEV); |
| 1177 | if (dev->ieee80211_ptr) |
Zhao, Gang | f26cbf4 | 2014-04-21 12:53:03 +0800 | [diff] [blame] | 1178 | rdev = wiphy_to_rdev(dev->ieee80211_ptr->wiphy); |
Johannes Berg | 5fe231e | 2013-05-08 21:45:15 +0200 | [diff] [blame] | 1179 | else |
Johannes Berg | 9f419f3 | 2013-05-08 21:34:22 +0200 | [diff] [blame] | 1180 | rdev = ERR_PTR(-ENODEV); |
| 1181 | dev_put(dev); |
Johannes Berg | 9f419f3 | 2013-05-08 21:34:22 +0200 | [diff] [blame] | 1182 | return rdev; |
| 1183 | } |
| 1184 | |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1185 | int cfg80211_wext_siwscan(struct net_device *dev, |
| 1186 | struct iw_request_info *info, |
| 1187 | union iwreq_data *wrqu, char *extra) |
| 1188 | { |
| 1189 | struct cfg80211_registered_device *rdev; |
| 1190 | struct wiphy *wiphy; |
| 1191 | struct iw_scan_req *wreq = NULL; |
Johannes Berg | 65486c8 | 2009-12-23 15:33:35 +0100 | [diff] [blame] | 1192 | struct cfg80211_scan_request *creq = NULL; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1193 | int i, err, n_channels = 0; |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 1194 | enum nl80211_band band; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1195 | |
| 1196 | if (!netif_running(dev)) |
| 1197 | return -ENETDOWN; |
| 1198 | |
Holger Schurig | b2e3abd | 2009-09-09 13:09:54 +0200 | [diff] [blame] | 1199 | if (wrqu->data.length == sizeof(struct iw_scan_req)) |
| 1200 | wreq = (struct iw_scan_req *)extra; |
| 1201 | |
Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 1202 | rdev = cfg80211_get_dev_from_ifindex(dev_net(dev), dev->ifindex); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1203 | |
| 1204 | if (IS_ERR(rdev)) |
| 1205 | return PTR_ERR(rdev); |
| 1206 | |
Johannes Berg | f9d15d1 | 2014-01-22 11:14:19 +0200 | [diff] [blame] | 1207 | if (rdev->scan_req || rdev->scan_msg) { |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1208 | err = -EBUSY; |
| 1209 | goto out; |
| 1210 | } |
| 1211 | |
| 1212 | wiphy = &rdev->wiphy; |
| 1213 | |
Holger Schurig | b2e3abd | 2009-09-09 13:09:54 +0200 | [diff] [blame] | 1214 | /* Determine number of channels, needed to allocate creq */ |
| 1215 | if (wreq && wreq->num_channels) |
| 1216 | n_channels = wreq->num_channels; |
Ilan Peer | bdfbec2 | 2014-01-09 11:37:23 +0200 | [diff] [blame] | 1217 | else |
| 1218 | n_channels = ieee80211_get_num_supported_channels(wiphy); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1219 | |
| 1220 | creq = kzalloc(sizeof(*creq) + sizeof(struct cfg80211_ssid) + |
| 1221 | n_channels * sizeof(void *), |
| 1222 | GFP_ATOMIC); |
| 1223 | if (!creq) { |
| 1224 | err = -ENOMEM; |
| 1225 | goto out; |
| 1226 | } |
| 1227 | |
| 1228 | creq->wiphy = wiphy; |
Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 1229 | creq->wdev = dev->ieee80211_ptr; |
Johannes Berg | 5ba6353 | 2009-08-07 17:54:07 +0200 | [diff] [blame] | 1230 | /* SSIDs come after channels */ |
| 1231 | creq->ssids = (void *)&creq->channels[n_channels]; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1232 | creq->n_channels = n_channels; |
| 1233 | creq->n_ssids = 1; |
Sam Leffler | 15d6030 | 2012-10-11 21:03:34 -0700 | [diff] [blame] | 1234 | creq->scan_start = jiffies; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1235 | |
Holger Schurig | b2e3abd | 2009-09-09 13:09:54 +0200 | [diff] [blame] | 1236 | /* translate "Scan on frequencies" request */ |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1237 | i = 0; |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 1238 | for (band = 0; band < NUM_NL80211_BANDS; band++) { |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1239 | int j; |
Johannes Berg | 584991d | 2009-11-02 13:32:03 +0100 | [diff] [blame] | 1240 | |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1241 | if (!wiphy->bands[band]) |
| 1242 | continue; |
Johannes Berg | 584991d | 2009-11-02 13:32:03 +0100 | [diff] [blame] | 1243 | |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1244 | for (j = 0; j < wiphy->bands[band]->n_channels; j++) { |
Johannes Berg | 584991d | 2009-11-02 13:32:03 +0100 | [diff] [blame] | 1245 | /* ignore disabled channels */ |
| 1246 | if (wiphy->bands[band]->channels[j].flags & |
| 1247 | IEEE80211_CHAN_DISABLED) |
| 1248 | continue; |
Holger Schurig | b2e3abd | 2009-09-09 13:09:54 +0200 | [diff] [blame] | 1249 | |
| 1250 | /* If we have a wireless request structure and the |
| 1251 | * wireless request specifies frequencies, then search |
| 1252 | * for the matching hardware channel. |
| 1253 | */ |
| 1254 | if (wreq && wreq->num_channels) { |
| 1255 | int k; |
| 1256 | int wiphy_freq = wiphy->bands[band]->channels[j].center_freq; |
| 1257 | for (k = 0; k < wreq->num_channels; k++) { |
Zhao, Gang | 96998e3 | 2014-04-09 09:28:06 +0800 | [diff] [blame] | 1258 | struct iw_freq *freq = |
| 1259 | &wreq->channel_list[k]; |
| 1260 | int wext_freq = |
| 1261 | cfg80211_wext_freq(freq); |
| 1262 | |
Holger Schurig | b2e3abd | 2009-09-09 13:09:54 +0200 | [diff] [blame] | 1263 | if (wext_freq == wiphy_freq) |
| 1264 | goto wext_freq_found; |
| 1265 | } |
| 1266 | goto wext_freq_not_found; |
| 1267 | } |
| 1268 | |
| 1269 | wext_freq_found: |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1270 | creq->channels[i] = &wiphy->bands[band]->channels[j]; |
| 1271 | i++; |
Holger Schurig | b2e3abd | 2009-09-09 13:09:54 +0200 | [diff] [blame] | 1272 | wext_freq_not_found: ; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1273 | } |
| 1274 | } |
Holger Schurig | 8862dc5 | 2009-09-11 10:13:55 +0200 | [diff] [blame] | 1275 | /* No channels found? */ |
| 1276 | if (!i) { |
| 1277 | err = -EINVAL; |
| 1278 | goto out; |
| 1279 | } |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1280 | |
Holger Schurig | b2e3abd | 2009-09-09 13:09:54 +0200 | [diff] [blame] | 1281 | /* Set real number of channels specified in creq->channels[] */ |
| 1282 | creq->n_channels = i; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1283 | |
Holger Schurig | b2e3abd | 2009-09-09 13:09:54 +0200 | [diff] [blame] | 1284 | /* translate "Scan for SSID" request */ |
| 1285 | if (wreq) { |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1286 | if (wrqu->data.flags & IW_SCAN_THIS_ESSID) { |
Johannes Berg | 65486c8 | 2009-12-23 15:33:35 +0100 | [diff] [blame] | 1287 | if (wreq->essid_len > IEEE80211_MAX_SSID_LEN) { |
| 1288 | err = -EINVAL; |
| 1289 | goto out; |
| 1290 | } |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1291 | memcpy(creq->ssids[0].ssid, wreq->essid, wreq->essid_len); |
| 1292 | creq->ssids[0].ssid_len = wreq->essid_len; |
| 1293 | } |
| 1294 | if (wreq->scan_type == IW_SCAN_TYPE_PASSIVE) |
| 1295 | creq->n_ssids = 0; |
| 1296 | } |
| 1297 | |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 1298 | for (i = 0; i < NUM_NL80211_BANDS; i++) |
Johannes Berg | a401d2b | 2011-07-20 00:52:16 +0200 | [diff] [blame] | 1299 | if (wiphy->bands[i]) |
| 1300 | creq->rates[i] = (1 << wiphy->bands[i]->n_bitrates) - 1; |
Johannes Berg | 34850ab | 2011-07-18 18:08:35 +0200 | [diff] [blame] | 1301 | |
Jouni Malinen | 818965d | 2016-02-26 22:12:47 +0200 | [diff] [blame] | 1302 | eth_broadcast_addr(creq->bssid); |
| 1303 | |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1304 | rdev->scan_req = creq; |
Hila Gonen | e35e4d2 | 2012-06-27 17:19:42 +0300 | [diff] [blame] | 1305 | err = rdev_scan(rdev, creq); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1306 | if (err) { |
| 1307 | rdev->scan_req = NULL; |
Johannes Berg | 65486c8 | 2009-12-23 15:33:35 +0100 | [diff] [blame] | 1308 | /* creq will be freed below */ |
Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 1309 | } else { |
Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 1310 | nl80211_send_scan_start(rdev, dev->ieee80211_ptr); |
Johannes Berg | 65486c8 | 2009-12-23 15:33:35 +0100 | [diff] [blame] | 1311 | /* creq now owned by driver */ |
| 1312 | creq = NULL; |
Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 1313 | dev_hold(dev); |
| 1314 | } |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1315 | out: |
Johannes Berg | 65486c8 | 2009-12-23 15:33:35 +0100 | [diff] [blame] | 1316 | kfree(creq); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1317 | return err; |
| 1318 | } |
Johannes Berg | 2afe38d | 2015-01-06 14:00:53 +0100 | [diff] [blame] | 1319 | EXPORT_WEXT_HANDLER(cfg80211_wext_siwscan); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1320 | |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 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) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1324 | { |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 1325 | const u8 *pos, *end, *next; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1326 | struct iw_event iwe; |
| 1327 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 1328 | if (!ies) |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1329 | return current_ev; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1330 | |
| 1331 | /* |
| 1332 | * If needed, fragment the IEs buffer (at IE boundaries) into short |
| 1333 | * enough fragments to fit into IW_GENERIC_IE_MAX octet messages. |
| 1334 | */ |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 1335 | pos = ies->data; |
| 1336 | end = pos + ies->len; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1337 | |
| 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]; |
| 1342 | |
| 1343 | memset(&iwe, 0, sizeof(iwe)); |
| 1344 | iwe.cmd = IWEVGENIE; |
| 1345 | iwe.u.data.length = next - pos; |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1346 | current_ev = iwe_stream_add_point_check(info, current_ev, |
| 1347 | end_buf, &iwe, |
| 1348 | (void *)pos); |
| 1349 | if (IS_ERR(current_ev)) |
| 1350 | return current_ev; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1351 | pos = next; |
| 1352 | } |
| 1353 | |
| 1354 | if (end > pos) { |
| 1355 | memset(&iwe, 0, sizeof(iwe)); |
| 1356 | iwe.cmd = IWEVGENIE; |
| 1357 | iwe.u.data.length = end - pos; |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1358 | current_ev = iwe_stream_add_point_check(info, current_ev, |
| 1359 | end_buf, &iwe, |
| 1360 | (void *)pos); |
| 1361 | if (IS_ERR(current_ev)) |
| 1362 | return current_ev; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1363 | } |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1364 | |
| 1365 | return current_ev; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1366 | } |
| 1367 | |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1368 | static char * |
Johannes Berg | 77965c9 | 2009-02-18 18:45:06 +0100 | [diff] [blame] | 1369 | ieee80211_bss(struct wiphy *wiphy, struct iw_request_info *info, |
| 1370 | struct cfg80211_internal_bss *bss, char *current_ev, |
| 1371 | char *end_buf) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1372 | { |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 1373 | const struct cfg80211_bss_ies *ies; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1374 | struct iw_event iwe; |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 1375 | const u8 *ie; |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1376 | u8 buf[50]; |
| 1377 | u8 *cfg, *p, *tmp; |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 1378 | int rem, i, sig; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1379 | bool ismesh = false; |
| 1380 | |
| 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); |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1385 | current_ev = iwe_stream_add_event_check(info, current_ev, end_buf, &iwe, |
| 1386 | IW_EV_ADDR_LEN); |
| 1387 | if (IS_ERR(current_ev)) |
| 1388 | return current_ev; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1389 | |
| 1390 | memset(&iwe, 0, sizeof(iwe)); |
| 1391 | iwe.cmd = SIOCGIWFREQ; |
| 1392 | iwe.u.freq.m = ieee80211_frequency_to_channel(bss->pub.channel->center_freq); |
| 1393 | iwe.u.freq.e = 0; |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1394 | current_ev = iwe_stream_add_event_check(info, current_ev, end_buf, &iwe, |
| 1395 | IW_EV_FREQ_LEN); |
| 1396 | if (IS_ERR(current_ev)) |
| 1397 | return current_ev; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1398 | |
| 1399 | memset(&iwe, 0, sizeof(iwe)); |
| 1400 | iwe.cmd = SIOCGIWFREQ; |
| 1401 | iwe.u.freq.m = bss->pub.channel->center_freq; |
| 1402 | iwe.u.freq.e = 6; |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1403 | current_ev = iwe_stream_add_event_check(info, current_ev, end_buf, &iwe, |
| 1404 | IW_EV_FREQ_LEN); |
| 1405 | if (IS_ERR(current_ev)) |
| 1406 | return current_ev; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1407 | |
Johannes Berg | 77965c9 | 2009-02-18 18:45:06 +0100 | [diff] [blame] | 1408 | if (wiphy->signal_type != CFG80211_SIGNAL_TYPE_NONE) { |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1409 | memset(&iwe, 0, sizeof(iwe)); |
| 1410 | iwe.cmd = IWEVQUAL; |
| 1411 | iwe.u.qual.updated = IW_QUAL_LEVEL_UPDATED | |
| 1412 | IW_QUAL_NOISE_INVALID | |
Johannes Berg | a77b855 | 2009-02-18 18:27:22 +0100 | [diff] [blame] | 1413 | IW_QUAL_QUAL_UPDATED; |
Johannes Berg | 77965c9 | 2009-02-18 18:45:06 +0100 | [diff] [blame] | 1414 | switch (wiphy->signal_type) { |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1415 | case CFG80211_SIGNAL_TYPE_MBM: |
Johannes Berg | a77b855 | 2009-02-18 18:27:22 +0100 | [diff] [blame] | 1416 | sig = bss->pub.signal / 100; |
| 1417 | iwe.u.qual.level = sig; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1418 | iwe.u.qual.updated |= IW_QUAL_DBM; |
Johannes Berg | a77b855 | 2009-02-18 18:27:22 +0100 | [diff] [blame] | 1419 | if (sig < -110) /* rather bad */ |
| 1420 | sig = -110; |
| 1421 | else if (sig > -40) /* perfect */ |
| 1422 | sig = -40; |
| 1423 | /* will give a range of 0 .. 70 */ |
| 1424 | iwe.u.qual.qual = sig + 110; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1425 | break; |
| 1426 | case CFG80211_SIGNAL_TYPE_UNSPEC: |
| 1427 | iwe.u.qual.level = bss->pub.signal; |
Johannes Berg | a77b855 | 2009-02-18 18:27:22 +0100 | [diff] [blame] | 1428 | /* will give range 0 .. 100 */ |
| 1429 | iwe.u.qual.qual = bss->pub.signal; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1430 | break; |
| 1431 | default: |
| 1432 | /* not reached */ |
| 1433 | break; |
| 1434 | } |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1435 | current_ev = iwe_stream_add_event_check(info, current_ev, |
| 1436 | end_buf, &iwe, |
| 1437 | IW_EV_QUAL_LEN); |
| 1438 | if (IS_ERR(current_ev)) |
| 1439 | return current_ev; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1440 | } |
| 1441 | |
| 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; |
| 1446 | else |
| 1447 | iwe.u.data.flags = IW_ENCODE_DISABLED; |
| 1448 | iwe.u.data.length = 0; |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1449 | current_ev = iwe_stream_add_point_check(info, current_ev, end_buf, |
| 1450 | &iwe, ""); |
| 1451 | if (IS_ERR(current_ev)) |
| 1452 | return current_ev; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1453 | |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 1454 | rcu_read_lock(); |
| 1455 | ies = rcu_dereference(bss->pub.ies); |
Johannes Berg | 83c7aa1 | 2013-02-05 16:51:29 +0100 | [diff] [blame] | 1456 | rem = ies->len; |
| 1457 | ie = ies->data; |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 1458 | |
Johannes Berg | 83c7aa1 | 2013-02-05 16:51:29 +0100 | [diff] [blame] | 1459 | while (rem >= 2) { |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1460 | /* invalid data */ |
| 1461 | if (ie[1] > rem - 2) |
| 1462 | break; |
| 1463 | |
| 1464 | switch (ie[0]) { |
| 1465 | case WLAN_EID_SSID: |
| 1466 | memset(&iwe, 0, sizeof(iwe)); |
| 1467 | iwe.cmd = SIOCGIWESSID; |
| 1468 | iwe.u.data.length = ie[1]; |
| 1469 | iwe.u.data.flags = 1; |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1470 | current_ev = iwe_stream_add_point_check(info, |
| 1471 | current_ev, |
| 1472 | end_buf, &iwe, |
| 1473 | (u8 *)ie + 2); |
| 1474 | if (IS_ERR(current_ev)) |
| 1475 | goto unlock; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1476 | break; |
| 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; |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1482 | current_ev = iwe_stream_add_point_check(info, |
| 1483 | current_ev, |
| 1484 | end_buf, &iwe, |
| 1485 | (u8 *)ie + 2); |
| 1486 | if (IS_ERR(current_ev)) |
| 1487 | goto unlock; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1488 | break; |
| 1489 | case WLAN_EID_MESH_CONFIG: |
| 1490 | ismesh = true; |
Rui Paulo | 136cfa2 | 2009-11-18 18:40:00 +0000 | [diff] [blame] | 1491 | if (ie[1] != sizeof(struct ieee80211_meshconf_ie)) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1492 | break; |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 1493 | cfg = (u8 *)ie + 2; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1494 | memset(&iwe, 0, sizeof(iwe)); |
| 1495 | iwe.cmd = IWEVCUSTOM; |
Rui Paulo | 76aa5e7 | 2009-11-18 18:22:59 +0000 | [diff] [blame] | 1496 | sprintf(buf, "Mesh Network Path Selection Protocol ID: " |
| 1497 | "0x%02X", cfg[0]); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1498 | iwe.u.data.length = strlen(buf); |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1499 | current_ev = iwe_stream_add_point_check(info, |
| 1500 | current_ev, |
| 1501 | end_buf, |
| 1502 | &iwe, buf); |
| 1503 | if (IS_ERR(current_ev)) |
| 1504 | goto unlock; |
Rui Paulo | 76aa5e7 | 2009-11-18 18:22:59 +0000 | [diff] [blame] | 1505 | sprintf(buf, "Path Selection Metric ID: 0x%02X", |
| 1506 | cfg[1]); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1507 | iwe.u.data.length = strlen(buf); |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1508 | current_ev = iwe_stream_add_point_check(info, |
| 1509 | current_ev, |
| 1510 | end_buf, |
| 1511 | &iwe, buf); |
| 1512 | if (IS_ERR(current_ev)) |
| 1513 | goto unlock; |
Rui Paulo | 76aa5e7 | 2009-11-18 18:22:59 +0000 | [diff] [blame] | 1514 | sprintf(buf, "Congestion Control Mode ID: 0x%02X", |
| 1515 | cfg[2]); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1516 | iwe.u.data.length = strlen(buf); |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1517 | current_ev = iwe_stream_add_point_check(info, |
| 1518 | current_ev, |
| 1519 | end_buf, |
| 1520 | &iwe, buf); |
| 1521 | if (IS_ERR(current_ev)) |
| 1522 | goto unlock; |
Rui Paulo | 76aa5e7 | 2009-11-18 18:22:59 +0000 | [diff] [blame] | 1523 | sprintf(buf, "Synchronization ID: 0x%02X", cfg[3]); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1524 | iwe.u.data.length = strlen(buf); |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1525 | current_ev = iwe_stream_add_point_check(info, |
| 1526 | current_ev, |
| 1527 | end_buf, |
| 1528 | &iwe, buf); |
| 1529 | if (IS_ERR(current_ev)) |
| 1530 | goto unlock; |
Rui Paulo | 76aa5e7 | 2009-11-18 18:22:59 +0000 | [diff] [blame] | 1531 | sprintf(buf, "Authentication ID: 0x%02X", cfg[4]); |
| 1532 | iwe.u.data.length = strlen(buf); |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1533 | current_ev = iwe_stream_add_point_check(info, |
| 1534 | current_ev, |
| 1535 | end_buf, |
| 1536 | &iwe, buf); |
| 1537 | if (IS_ERR(current_ev)) |
| 1538 | goto unlock; |
Rui Paulo | 76aa5e7 | 2009-11-18 18:22:59 +0000 | [diff] [blame] | 1539 | sprintf(buf, "Formation Info: 0x%02X", cfg[5]); |
| 1540 | iwe.u.data.length = strlen(buf); |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1541 | current_ev = iwe_stream_add_point_check(info, |
| 1542 | current_ev, |
| 1543 | end_buf, |
| 1544 | &iwe, buf); |
| 1545 | if (IS_ERR(current_ev)) |
| 1546 | goto unlock; |
Rui Paulo | 76aa5e7 | 2009-11-18 18:22:59 +0000 | [diff] [blame] | 1547 | sprintf(buf, "Capabilities: 0x%02X", cfg[6]); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1548 | iwe.u.data.length = strlen(buf); |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1549 | current_ev = iwe_stream_add_point_check(info, |
| 1550 | current_ev, |
| 1551 | end_buf, |
| 1552 | &iwe, buf); |
| 1553 | if (IS_ERR(current_ev)) |
| 1554 | goto unlock; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1555 | break; |
| 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); |
| 1560 | |
| 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; |
| 1565 | |
| 1566 | for (i = 0; i < ie[1]; i++) { |
| 1567 | iwe.u.bitrate.value = |
| 1568 | ((ie[i + 2] & 0x7f) * 500000); |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1569 | tmp = p; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1570 | p = iwe_stream_add_value(info, current_ev, p, |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1571 | end_buf, &iwe, |
| 1572 | IW_EV_PARAM_LEN); |
| 1573 | if (p == tmp) { |
| 1574 | current_ev = ERR_PTR(-E2BIG); |
| 1575 | goto unlock; |
| 1576 | } |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1577 | } |
| 1578 | current_ev = p; |
| 1579 | break; |
| 1580 | } |
| 1581 | rem -= ie[1] + 2; |
| 1582 | ie += ie[1] + 2; |
| 1583 | } |
| 1584 | |
Joe Perches | f64f9e7 | 2009-11-29 16:55:45 -0800 | [diff] [blame] | 1585 | if (bss->pub.capability & (WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_IBSS) || |
| 1586 | ismesh) { |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1587 | memset(&iwe, 0, sizeof(iwe)); |
| 1588 | iwe.cmd = SIOCGIWMODE; |
| 1589 | if (ismesh) |
| 1590 | iwe.u.mode = IW_MODE_MESH; |
| 1591 | else if (bss->pub.capability & WLAN_CAPABILITY_ESS) |
| 1592 | iwe.u.mode = IW_MODE_MASTER; |
| 1593 | else |
| 1594 | iwe.u.mode = IW_MODE_ADHOC; |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1595 | current_ev = iwe_stream_add_event_check(info, current_ev, |
| 1596 | end_buf, &iwe, |
| 1597 | IW_EV_UINT_LEN); |
| 1598 | if (IS_ERR(current_ev)) |
| 1599 | goto unlock; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1600 | } |
| 1601 | |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 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, |
| 1607 | &iwe, buf); |
| 1608 | if (IS_ERR(current_ev)) |
| 1609 | goto unlock; |
| 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)) |
| 1618 | goto unlock; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1619 | |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1620 | current_ev = ieee80211_scan_add_ies(info, ies, current_ev, end_buf); |
| 1621 | |
| 1622 | unlock: |
Johannes Berg | 9caf036 | 2012-11-29 01:25:20 +0100 | [diff] [blame] | 1623 | rcu_read_unlock(); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1624 | return current_ev; |
| 1625 | } |
| 1626 | |
| 1627 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 1628 | static int ieee80211_scan_results(struct cfg80211_registered_device *rdev, |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1629 | struct iw_request_info *info, |
| 1630 | char *buf, size_t len) |
| 1631 | { |
| 1632 | char *current_ev = buf; |
| 1633 | char *end_buf = buf + len; |
| 1634 | struct cfg80211_internal_bss *bss; |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1635 | int err = 0; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1636 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 1637 | spin_lock_bh(&rdev->bss_lock); |
| 1638 | cfg80211_bss_expire(rdev); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1639 | |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 1640 | list_for_each_entry(bss, &rdev->bss_list, list) { |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1641 | if (buf + len - current_ev <= IW_EV_ADDR_LEN) { |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1642 | err = -E2BIG; |
| 1643 | break; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1644 | } |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 1645 | current_ev = ieee80211_bss(&rdev->wiphy, info, bss, |
Johannes Berg | 77965c9 | 2009-02-18 18:45:06 +0100 | [diff] [blame] | 1646 | current_ev, end_buf); |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1647 | if (IS_ERR(current_ev)) { |
| 1648 | err = PTR_ERR(current_ev); |
| 1649 | break; |
| 1650 | } |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1651 | } |
Zhao, Gang | 1b8ec87 | 2014-04-21 12:53:02 +0800 | [diff] [blame] | 1652 | spin_unlock_bh(&rdev->bss_lock); |
James Minor | 76a70e9 | 2015-02-24 12:58:20 -0600 | [diff] [blame] | 1653 | |
| 1654 | if (err) |
| 1655 | return err; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1656 | return current_ev - buf; |
| 1657 | } |
| 1658 | |
| 1659 | |
| 1660 | int cfg80211_wext_giwscan(struct net_device *dev, |
| 1661 | struct iw_request_info *info, |
| 1662 | struct iw_point *data, char *extra) |
| 1663 | { |
| 1664 | struct cfg80211_registered_device *rdev; |
| 1665 | int res; |
| 1666 | |
| 1667 | if (!netif_running(dev)) |
| 1668 | return -ENETDOWN; |
| 1669 | |
Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 1670 | rdev = cfg80211_get_dev_from_ifindex(dev_net(dev), dev->ifindex); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1671 | |
| 1672 | if (IS_ERR(rdev)) |
| 1673 | return PTR_ERR(rdev); |
| 1674 | |
Johannes Berg | f9d15d1 | 2014-01-22 11:14:19 +0200 | [diff] [blame] | 1675 | if (rdev->scan_req || rdev->scan_msg) |
Johannes Berg | 5fe231e | 2013-05-08 21:45:15 +0200 | [diff] [blame] | 1676 | return -EAGAIN; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1677 | |
| 1678 | res = ieee80211_scan_results(rdev, info, extra, data->length); |
| 1679 | data->length = 0; |
| 1680 | if (res >= 0) { |
| 1681 | data->length = res; |
| 1682 | res = 0; |
| 1683 | } |
| 1684 | |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1685 | return res; |
| 1686 | } |
Johannes Berg | 2afe38d | 2015-01-06 14:00:53 +0100 | [diff] [blame] | 1687 | EXPORT_WEXT_HANDLER(cfg80211_wext_giwscan); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1688 | #endif |