| 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> | 
|  | 5 | */ | 
|  | 6 | #include <linux/kernel.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 7 | #include <linux/slab.h> | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 8 | #include <linux/module.h> | 
|  | 9 | #include <linux/netdevice.h> | 
|  | 10 | #include <linux/wireless.h> | 
|  | 11 | #include <linux/nl80211.h> | 
|  | 12 | #include <linux/etherdevice.h> | 
|  | 13 | #include <net/arp.h> | 
|  | 14 | #include <net/cfg80211.h> | 
|  | 15 | #include <net/iw_handler.h> | 
|  | 16 | #include "core.h" | 
|  | 17 | #include "nl80211.h" | 
| Johannes Berg | a9a1162 | 2009-07-27 12:01:53 +0200 | [diff] [blame] | 18 | #include "wext-compat.h" | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 19 |  | 
| jun.ho.lee | d18e4b8 | 2011-09-09 18:50:02 +0900 | [diff] [blame] | 20 | #define IEEE80211_SCAN_RESULT_EXPIRE	(3 * HZ) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 21 |  | 
| Johannes Berg | 01a0ac4 | 2009-08-20 21:36:16 +0200 | [diff] [blame] | 22 | void ___cfg80211_scan_done(struct cfg80211_registered_device *rdev, bool leak) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 23 | { | 
| Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 24 | struct cfg80211_scan_request *request; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 25 | struct net_device *dev; | 
| Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 26 | #ifdef CONFIG_CFG80211_WEXT | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 27 | union iwreq_data wrqu; | 
|  | 28 | #endif | 
|  | 29 |  | 
| Johannes Berg | 01a0ac4 | 2009-08-20 21:36:16 +0200 | [diff] [blame] | 30 | ASSERT_RDEV_LOCK(rdev); | 
|  | 31 |  | 
| Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 32 | request = rdev->scan_req; | 
|  | 33 |  | 
| Johannes Berg | 01a0ac4 | 2009-08-20 21:36:16 +0200 | [diff] [blame] | 34 | if (!request) | 
|  | 35 | return; | 
|  | 36 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 37 | dev = request->dev; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 38 |  | 
| Johannes Berg | 6829c87 | 2009-07-02 09:13:27 +0200 | [diff] [blame] | 39 | /* | 
|  | 40 | * This must be before sending the other events! | 
|  | 41 | * Otherwise, wpa_supplicant gets completely confused with | 
|  | 42 | * wext events. | 
|  | 43 | */ | 
|  | 44 | cfg80211_sme_scan_done(dev); | 
|  | 45 |  | 
| Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 46 | if (request->aborted) | 
| Johannes Berg | 36e6fea | 2009-08-12 22:21:21 +0200 | [diff] [blame] | 47 | nl80211_send_scan_aborted(rdev, dev); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 48 | else | 
| Johannes Berg | 36e6fea | 2009-08-12 22:21:21 +0200 | [diff] [blame] | 49 | nl80211_send_scan_done(rdev, dev); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 50 |  | 
| Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 51 | #ifdef CONFIG_CFG80211_WEXT | 
| Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 52 | if (!request->aborted) { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 53 | memset(&wrqu, 0, sizeof(wrqu)); | 
|  | 54 |  | 
|  | 55 | wireless_send_event(dev, SIOCGIWSCAN, &wrqu, NULL); | 
|  | 56 | } | 
|  | 57 | #endif | 
|  | 58 |  | 
|  | 59 | dev_put(dev); | 
|  | 60 |  | 
| Johannes Berg | 36e6fea | 2009-08-12 22:21:21 +0200 | [diff] [blame] | 61 | rdev->scan_req = NULL; | 
| Johannes Berg | 01a0ac4 | 2009-08-20 21:36:16 +0200 | [diff] [blame] | 62 |  | 
|  | 63 | /* | 
|  | 64 | * OK. If this is invoked with "leak" then we can't | 
|  | 65 | * free this ... but we've cleaned it up anyway. The | 
|  | 66 | * driver failed to call the scan_done callback, so | 
|  | 67 | * all bets are off, it might still be trying to use | 
|  | 68 | * the scan request or not ... if it accesses the dev | 
|  | 69 | * in there (it shouldn't anyway) then it may crash. | 
|  | 70 | */ | 
|  | 71 | if (!leak) | 
|  | 72 | kfree(request); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 73 | } | 
| Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 74 |  | 
| Johannes Berg | 36e6fea | 2009-08-12 22:21:21 +0200 | [diff] [blame] | 75 | void __cfg80211_scan_done(struct work_struct *wk) | 
|  | 76 | { | 
|  | 77 | struct cfg80211_registered_device *rdev; | 
|  | 78 |  | 
|  | 79 | rdev = container_of(wk, struct cfg80211_registered_device, | 
|  | 80 | scan_done_wk); | 
|  | 81 |  | 
|  | 82 | cfg80211_lock_rdev(rdev); | 
| Johannes Berg | 01a0ac4 | 2009-08-20 21:36:16 +0200 | [diff] [blame] | 83 | ___cfg80211_scan_done(rdev, false); | 
| Johannes Berg | 36e6fea | 2009-08-12 22:21:21 +0200 | [diff] [blame] | 84 | cfg80211_unlock_rdev(rdev); | 
|  | 85 | } | 
|  | 86 |  | 
| Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 87 | void cfg80211_scan_done(struct cfg80211_scan_request *request, bool aborted) | 
|  | 88 | { | 
| Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 89 | WARN_ON(request != wiphy_to_dev(request->wiphy)->scan_req); | 
|  | 90 |  | 
|  | 91 | request->aborted = aborted; | 
| Alban Browaeys | e60d744 | 2009-11-25 15:13:00 +0100 | [diff] [blame] | 92 | queue_work(cfg80211_wq, &wiphy_to_dev(request->wiphy)->scan_done_wk); | 
| Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 93 | } | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 94 | EXPORT_SYMBOL(cfg80211_scan_done); | 
|  | 95 |  | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 96 | void __cfg80211_sched_scan_results(struct work_struct *wk) | 
|  | 97 | { | 
|  | 98 | struct cfg80211_registered_device *rdev; | 
|  | 99 |  | 
|  | 100 | rdev = container_of(wk, struct cfg80211_registered_device, | 
|  | 101 | sched_scan_results_wk); | 
|  | 102 |  | 
| Luciano Coelho | c10841c | 2011-06-30 08:32:41 +0300 | [diff] [blame] | 103 | mutex_lock(&rdev->sched_scan_mtx); | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 104 |  | 
|  | 105 | /* we don't have sched_scan_req anymore if the scan is stopping */ | 
|  | 106 | if (rdev->sched_scan_req) | 
|  | 107 | nl80211_send_sched_scan_results(rdev, | 
|  | 108 | rdev->sched_scan_req->dev); | 
|  | 109 |  | 
| Luciano Coelho | c10841c | 2011-06-30 08:32:41 +0300 | [diff] [blame] | 110 | mutex_unlock(&rdev->sched_scan_mtx); | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 111 | } | 
|  | 112 |  | 
|  | 113 | void cfg80211_sched_scan_results(struct wiphy *wiphy) | 
|  | 114 | { | 
|  | 115 | /* ignore if we're not scanning */ | 
|  | 116 | if (wiphy_to_dev(wiphy)->sched_scan_req) | 
|  | 117 | queue_work(cfg80211_wq, | 
|  | 118 | &wiphy_to_dev(wiphy)->sched_scan_results_wk); | 
|  | 119 | } | 
|  | 120 | EXPORT_SYMBOL(cfg80211_sched_scan_results); | 
|  | 121 |  | 
| Luciano Coelho | 85a9994 | 2011-05-12 16:28:29 +0300 | [diff] [blame] | 122 | void cfg80211_sched_scan_stopped(struct wiphy *wiphy) | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 123 | { | 
| Luciano Coelho | 85a9994 | 2011-05-12 16:28:29 +0300 | [diff] [blame] | 124 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy); | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 125 |  | 
| Luciano Coelho | c10841c | 2011-06-30 08:32:41 +0300 | [diff] [blame] | 126 | mutex_lock(&rdev->sched_scan_mtx); | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 127 | __cfg80211_stop_sched_scan(rdev, true); | 
| Luciano Coelho | c10841c | 2011-06-30 08:32:41 +0300 | [diff] [blame] | 128 | mutex_unlock(&rdev->sched_scan_mtx); | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 129 | } | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 130 | EXPORT_SYMBOL(cfg80211_sched_scan_stopped); | 
|  | 131 |  | 
|  | 132 | int __cfg80211_stop_sched_scan(struct cfg80211_registered_device *rdev, | 
|  | 133 | bool driver_initiated) | 
|  | 134 | { | 
|  | 135 | int err; | 
|  | 136 | struct net_device *dev; | 
|  | 137 |  | 
| Luciano Coelho | c10841c | 2011-06-30 08:32:41 +0300 | [diff] [blame] | 138 | lockdep_assert_held(&rdev->sched_scan_mtx); | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 139 |  | 
|  | 140 | if (!rdev->sched_scan_req) | 
|  | 141 | return 0; | 
|  | 142 |  | 
|  | 143 | dev = rdev->sched_scan_req->dev; | 
|  | 144 |  | 
| Luciano Coelho | 85a9994 | 2011-05-12 16:28:29 +0300 | [diff] [blame] | 145 | if (!driver_initiated) { | 
|  | 146 | err = rdev->ops->sched_scan_stop(&rdev->wiphy, dev); | 
|  | 147 | if (err) | 
|  | 148 | return err; | 
|  | 149 | } | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 150 |  | 
|  | 151 | nl80211_send_sched_scan(rdev, dev, NL80211_CMD_SCHED_SCAN_STOPPED); | 
|  | 152 |  | 
|  | 153 | kfree(rdev->sched_scan_req); | 
|  | 154 | rdev->sched_scan_req = NULL; | 
|  | 155 |  | 
|  | 156 | return err; | 
|  | 157 | } | 
|  | 158 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 159 | static void bss_release(struct kref *ref) | 
|  | 160 | { | 
|  | 161 | struct cfg80211_internal_bss *bss; | 
|  | 162 |  | 
|  | 163 | bss = container_of(ref, struct cfg80211_internal_bss, ref); | 
| Johannes Berg | 78c1c7e | 2009-02-10 21:25:57 +0100 | [diff] [blame] | 164 | if (bss->pub.free_priv) | 
|  | 165 | bss->pub.free_priv(&bss->pub); | 
| Johannes Berg | cd1658f | 2009-04-16 15:00:58 +0200 | [diff] [blame] | 166 |  | 
| Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 167 | if (bss->beacon_ies_allocated) | 
|  | 168 | kfree(bss->pub.beacon_ies); | 
|  | 169 | if (bss->proberesp_ies_allocated) | 
|  | 170 | kfree(bss->pub.proberesp_ies); | 
| Johannes Berg | cd1658f | 2009-04-16 15:00:58 +0200 | [diff] [blame] | 171 |  | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 172 | BUG_ON(atomic_read(&bss->hold)); | 
|  | 173 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 174 | kfree(bss); | 
|  | 175 | } | 
|  | 176 |  | 
|  | 177 | /* must hold dev->bss_lock! */ | 
| Dan Williams | cb3a8ee | 2009-02-11 17:14:43 -0500 | [diff] [blame] | 178 | void cfg80211_bss_age(struct cfg80211_registered_device *dev, | 
|  | 179 | unsigned long age_secs) | 
|  | 180 | { | 
|  | 181 | struct cfg80211_internal_bss *bss; | 
|  | 182 | unsigned long age_jiffies = msecs_to_jiffies(age_secs * MSEC_PER_SEC); | 
|  | 183 |  | 
|  | 184 | list_for_each_entry(bss, &dev->bss_list, list) { | 
|  | 185 | bss->ts -= age_jiffies; | 
|  | 186 | } | 
|  | 187 | } | 
|  | 188 |  | 
|  | 189 | /* must hold dev->bss_lock! */ | 
| Juuso Oikarinen | 2b78ac9 | 2011-03-28 14:32:32 +0300 | [diff] [blame] | 190 | static void __cfg80211_unlink_bss(struct cfg80211_registered_device *dev, | 
|  | 191 | struct cfg80211_internal_bss *bss) | 
|  | 192 | { | 
|  | 193 | list_del_init(&bss->list); | 
|  | 194 | rb_erase(&bss->rbn, &dev->bss_tree); | 
|  | 195 | kref_put(&bss->ref, bss_release); | 
|  | 196 | } | 
|  | 197 |  | 
|  | 198 | /* must hold dev->bss_lock! */ | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 199 | void cfg80211_bss_expire(struct cfg80211_registered_device *dev) | 
|  | 200 | { | 
|  | 201 | struct cfg80211_internal_bss *bss, *tmp; | 
|  | 202 | bool expired = false; | 
|  | 203 |  | 
|  | 204 | list_for_each_entry_safe(bss, tmp, &dev->bss_list, list) { | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 205 | if (atomic_read(&bss->hold)) | 
|  | 206 | continue; | 
|  | 207 | if (!time_after(jiffies, bss->ts + IEEE80211_SCAN_RESULT_EXPIRE)) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 208 | continue; | 
| Juuso Oikarinen | 2b78ac9 | 2011-03-28 14:32:32 +0300 | [diff] [blame] | 209 | __cfg80211_unlink_bss(dev, bss); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 210 | expired = true; | 
|  | 211 | } | 
|  | 212 |  | 
|  | 213 | if (expired) | 
|  | 214 | dev->bss_generation++; | 
|  | 215 | } | 
|  | 216 |  | 
| Johannes Berg | c21dbf9 | 2010-01-26 14:15:46 +0100 | [diff] [blame] | 217 | const u8 *cfg80211_find_ie(u8 eid, const u8 *ies, int len) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 218 | { | 
| Johannes Berg | c21dbf9 | 2010-01-26 14:15:46 +0100 | [diff] [blame] | 219 | while (len > 2 && ies[0] != eid) { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 220 | len -= ies[1] + 2; | 
|  | 221 | ies += ies[1] + 2; | 
|  | 222 | } | 
|  | 223 | if (len < 2) | 
|  | 224 | return NULL; | 
|  | 225 | if (len < 2 + ies[1]) | 
|  | 226 | return NULL; | 
|  | 227 | return ies; | 
|  | 228 | } | 
| Johannes Berg | c21dbf9 | 2010-01-26 14:15:46 +0100 | [diff] [blame] | 229 | EXPORT_SYMBOL(cfg80211_find_ie); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 230 |  | 
|  | 231 | static int cmp_ies(u8 num, u8 *ies1, size_t len1, u8 *ies2, size_t len2) | 
|  | 232 | { | 
| Johannes Berg | c21dbf9 | 2010-01-26 14:15:46 +0100 | [diff] [blame] | 233 | const u8 *ie1 = cfg80211_find_ie(num, ies1, len1); | 
|  | 234 | const u8 *ie2 = cfg80211_find_ie(num, ies2, len2); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 235 | int r; | 
|  | 236 |  | 
|  | 237 | if (!ie1 && !ie2) | 
|  | 238 | return 0; | 
| Johannes Berg | cd3468b | 2009-07-29 22:07:44 +0200 | [diff] [blame] | 239 | if (!ie1 || !ie2) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 240 | return -1; | 
|  | 241 |  | 
|  | 242 | r = memcmp(ie1 + 2, ie2 + 2, min(ie1[1], ie2[1])); | 
|  | 243 | if (r == 0 && ie1[1] != ie2[1]) | 
|  | 244 | return ie2[1] - ie1[1]; | 
|  | 245 | return r; | 
|  | 246 | } | 
|  | 247 |  | 
|  | 248 | static bool is_bss(struct cfg80211_bss *a, | 
|  | 249 | const u8 *bssid, | 
|  | 250 | const u8 *ssid, size_t ssid_len) | 
|  | 251 | { | 
|  | 252 | const u8 *ssidie; | 
|  | 253 |  | 
| Johannes Berg | 79420f0 | 2009-02-10 21:25:59 +0100 | [diff] [blame] | 254 | if (bssid && compare_ether_addr(a->bssid, bssid)) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 255 | return false; | 
|  | 256 |  | 
| Johannes Berg | 79420f0 | 2009-02-10 21:25:59 +0100 | [diff] [blame] | 257 | if (!ssid) | 
|  | 258 | return true; | 
|  | 259 |  | 
| Johannes Berg | c21dbf9 | 2010-01-26 14:15:46 +0100 | [diff] [blame] | 260 | ssidie = cfg80211_find_ie(WLAN_EID_SSID, | 
|  | 261 | a->information_elements, | 
|  | 262 | a->len_information_elements); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 263 | if (!ssidie) | 
|  | 264 | return false; | 
|  | 265 | if (ssidie[1] != ssid_len) | 
|  | 266 | return false; | 
|  | 267 | return memcmp(ssidie + 2, ssid, ssid_len) == 0; | 
|  | 268 | } | 
|  | 269 |  | 
| Eliad Peller | 333ba73 | 2011-05-29 15:53:20 +0300 | [diff] [blame] | 270 | static bool is_mesh_bss(struct cfg80211_bss *a) | 
|  | 271 | { | 
|  | 272 | const u8 *ie; | 
|  | 273 |  | 
|  | 274 | if (!WLAN_CAPABILITY_IS_STA_BSS(a->capability)) | 
|  | 275 | return false; | 
|  | 276 |  | 
|  | 277 | ie = cfg80211_find_ie(WLAN_EID_MESH_ID, | 
|  | 278 | a->information_elements, | 
|  | 279 | a->len_information_elements); | 
|  | 280 | if (!ie) | 
|  | 281 | return false; | 
|  | 282 |  | 
|  | 283 | ie = cfg80211_find_ie(WLAN_EID_MESH_CONFIG, | 
|  | 284 | a->information_elements, | 
|  | 285 | a->len_information_elements); | 
|  | 286 | if (!ie) | 
|  | 287 | return false; | 
|  | 288 |  | 
|  | 289 | return true; | 
|  | 290 | } | 
|  | 291 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 292 | static bool is_mesh(struct cfg80211_bss *a, | 
|  | 293 | const u8 *meshid, size_t meshidlen, | 
|  | 294 | const u8 *meshcfg) | 
|  | 295 | { | 
|  | 296 | const u8 *ie; | 
|  | 297 |  | 
| Eliad Peller | 333ba73 | 2011-05-29 15:53:20 +0300 | [diff] [blame] | 298 | if (!WLAN_CAPABILITY_IS_STA_BSS(a->capability)) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 299 | return false; | 
|  | 300 |  | 
| Johannes Berg | c21dbf9 | 2010-01-26 14:15:46 +0100 | [diff] [blame] | 301 | ie = cfg80211_find_ie(WLAN_EID_MESH_ID, | 
|  | 302 | a->information_elements, | 
|  | 303 | a->len_information_elements); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 304 | if (!ie) | 
|  | 305 | return false; | 
|  | 306 | if (ie[1] != meshidlen) | 
|  | 307 | return false; | 
|  | 308 | if (memcmp(ie + 2, meshid, meshidlen)) | 
|  | 309 | return false; | 
|  | 310 |  | 
| Johannes Berg | c21dbf9 | 2010-01-26 14:15:46 +0100 | [diff] [blame] | 311 | ie = cfg80211_find_ie(WLAN_EID_MESH_CONFIG, | 
|  | 312 | a->information_elements, | 
|  | 313 | a->len_information_elements); | 
| Johannes Berg | cd3468b | 2009-07-29 22:07:44 +0200 | [diff] [blame] | 314 | if (!ie) | 
|  | 315 | return false; | 
| Rui Paulo | 136cfa2 | 2009-11-18 18:40:00 +0000 | [diff] [blame] | 316 | if (ie[1] != sizeof(struct ieee80211_meshconf_ie)) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 317 | return false; | 
|  | 318 |  | 
|  | 319 | /* | 
|  | 320 | * Ignore mesh capability (last two bytes of the IE) when | 
|  | 321 | * comparing since that may differ between stations taking | 
|  | 322 | * part in the same mesh. | 
|  | 323 | */ | 
| Rui Paulo | 136cfa2 | 2009-11-18 18:40:00 +0000 | [diff] [blame] | 324 | return memcmp(ie + 2, meshcfg, | 
|  | 325 | sizeof(struct ieee80211_meshconf_ie) - 2) == 0; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 326 | } | 
|  | 327 |  | 
|  | 328 | static int cmp_bss(struct cfg80211_bss *a, | 
|  | 329 | struct cfg80211_bss *b) | 
|  | 330 | { | 
|  | 331 | int r; | 
|  | 332 |  | 
|  | 333 | if (a->channel != b->channel) | 
|  | 334 | return b->channel->center_freq - a->channel->center_freq; | 
|  | 335 |  | 
| Eliad Peller | 333ba73 | 2011-05-29 15:53:20 +0300 | [diff] [blame] | 336 | if (is_mesh_bss(a) && is_mesh_bss(b)) { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 337 | r = cmp_ies(WLAN_EID_MESH_ID, | 
|  | 338 | a->information_elements, | 
|  | 339 | a->len_information_elements, | 
|  | 340 | b->information_elements, | 
|  | 341 | b->len_information_elements); | 
|  | 342 | if (r) | 
|  | 343 | return r; | 
|  | 344 | return cmp_ies(WLAN_EID_MESH_CONFIG, | 
|  | 345 | a->information_elements, | 
|  | 346 | a->len_information_elements, | 
|  | 347 | b->information_elements, | 
|  | 348 | b->len_information_elements); | 
|  | 349 | } | 
|  | 350 |  | 
| Javier Cardona | 0a35d36 | 2011-05-04 10:24:56 -0700 | [diff] [blame] | 351 | r = memcmp(a->bssid, b->bssid, ETH_ALEN); | 
|  | 352 | if (r) | 
|  | 353 | return r; | 
|  | 354 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 355 | return cmp_ies(WLAN_EID_SSID, | 
|  | 356 | a->information_elements, | 
|  | 357 | a->len_information_elements, | 
|  | 358 | b->information_elements, | 
|  | 359 | b->len_information_elements); | 
|  | 360 | } | 
|  | 361 |  | 
|  | 362 | struct cfg80211_bss *cfg80211_get_bss(struct wiphy *wiphy, | 
|  | 363 | struct ieee80211_channel *channel, | 
|  | 364 | const u8 *bssid, | 
| Johannes Berg | 79420f0 | 2009-02-10 21:25:59 +0100 | [diff] [blame] | 365 | const u8 *ssid, size_t ssid_len, | 
|  | 366 | u16 capa_mask, u16 capa_val) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 367 | { | 
|  | 368 | struct cfg80211_registered_device *dev = wiphy_to_dev(wiphy); | 
|  | 369 | struct cfg80211_internal_bss *bss, *res = NULL; | 
| Johannes Berg | ccb6c13 | 2010-07-13 10:55:38 +0200 | [diff] [blame] | 370 | unsigned long now = jiffies; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 371 |  | 
|  | 372 | spin_lock_bh(&dev->bss_lock); | 
|  | 373 |  | 
|  | 374 | list_for_each_entry(bss, &dev->bss_list, list) { | 
| Johannes Berg | 79420f0 | 2009-02-10 21:25:59 +0100 | [diff] [blame] | 375 | if ((bss->pub.capability & capa_mask) != capa_val) | 
|  | 376 | continue; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 377 | if (channel && bss->pub.channel != channel) | 
|  | 378 | continue; | 
| Johannes Berg | ccb6c13 | 2010-07-13 10:55:38 +0200 | [diff] [blame] | 379 | /* Don't get expired BSS structs */ | 
|  | 380 | if (time_after(now, bss->ts + IEEE80211_SCAN_RESULT_EXPIRE) && | 
|  | 381 | !atomic_read(&bss->hold)) | 
|  | 382 | continue; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 383 | if (is_bss(&bss->pub, bssid, ssid, ssid_len)) { | 
|  | 384 | res = bss; | 
|  | 385 | kref_get(&res->ref); | 
|  | 386 | break; | 
|  | 387 | } | 
|  | 388 | } | 
|  | 389 |  | 
|  | 390 | spin_unlock_bh(&dev->bss_lock); | 
|  | 391 | if (!res) | 
|  | 392 | return NULL; | 
|  | 393 | return &res->pub; | 
|  | 394 | } | 
|  | 395 | EXPORT_SYMBOL(cfg80211_get_bss); | 
|  | 396 |  | 
|  | 397 | struct cfg80211_bss *cfg80211_get_mesh(struct wiphy *wiphy, | 
|  | 398 | struct ieee80211_channel *channel, | 
|  | 399 | const u8 *meshid, size_t meshidlen, | 
|  | 400 | const u8 *meshcfg) | 
|  | 401 | { | 
|  | 402 | struct cfg80211_registered_device *dev = wiphy_to_dev(wiphy); | 
|  | 403 | struct cfg80211_internal_bss *bss, *res = NULL; | 
|  | 404 |  | 
|  | 405 | spin_lock_bh(&dev->bss_lock); | 
|  | 406 |  | 
|  | 407 | list_for_each_entry(bss, &dev->bss_list, list) { | 
|  | 408 | if (channel && bss->pub.channel != channel) | 
|  | 409 | continue; | 
|  | 410 | if (is_mesh(&bss->pub, meshid, meshidlen, meshcfg)) { | 
|  | 411 | res = bss; | 
|  | 412 | kref_get(&res->ref); | 
|  | 413 | break; | 
|  | 414 | } | 
|  | 415 | } | 
|  | 416 |  | 
|  | 417 | spin_unlock_bh(&dev->bss_lock); | 
|  | 418 | if (!res) | 
|  | 419 | return NULL; | 
|  | 420 | return &res->pub; | 
|  | 421 | } | 
|  | 422 | EXPORT_SYMBOL(cfg80211_get_mesh); | 
|  | 423 |  | 
|  | 424 |  | 
|  | 425 | static void rb_insert_bss(struct cfg80211_registered_device *dev, | 
|  | 426 | struct cfg80211_internal_bss *bss) | 
|  | 427 | { | 
|  | 428 | struct rb_node **p = &dev->bss_tree.rb_node; | 
|  | 429 | struct rb_node *parent = NULL; | 
|  | 430 | struct cfg80211_internal_bss *tbss; | 
|  | 431 | int cmp; | 
|  | 432 |  | 
|  | 433 | while (*p) { | 
|  | 434 | parent = *p; | 
|  | 435 | tbss = rb_entry(parent, struct cfg80211_internal_bss, rbn); | 
|  | 436 |  | 
|  | 437 | cmp = cmp_bss(&bss->pub, &tbss->pub); | 
|  | 438 |  | 
|  | 439 | if (WARN_ON(!cmp)) { | 
|  | 440 | /* will sort of leak this BSS */ | 
|  | 441 | return; | 
|  | 442 | } | 
|  | 443 |  | 
|  | 444 | if (cmp < 0) | 
|  | 445 | p = &(*p)->rb_left; | 
|  | 446 | else | 
|  | 447 | p = &(*p)->rb_right; | 
|  | 448 | } | 
|  | 449 |  | 
|  | 450 | rb_link_node(&bss->rbn, parent, p); | 
|  | 451 | rb_insert_color(&bss->rbn, &dev->bss_tree); | 
|  | 452 | } | 
|  | 453 |  | 
|  | 454 | static struct cfg80211_internal_bss * | 
|  | 455 | rb_find_bss(struct cfg80211_registered_device *dev, | 
|  | 456 | struct cfg80211_internal_bss *res) | 
|  | 457 | { | 
|  | 458 | struct rb_node *n = dev->bss_tree.rb_node; | 
|  | 459 | struct cfg80211_internal_bss *bss; | 
|  | 460 | int r; | 
|  | 461 |  | 
|  | 462 | while (n) { | 
|  | 463 | bss = rb_entry(n, struct cfg80211_internal_bss, rbn); | 
|  | 464 | r = cmp_bss(&res->pub, &bss->pub); | 
|  | 465 |  | 
|  | 466 | if (r == 0) | 
|  | 467 | return bss; | 
|  | 468 | else if (r < 0) | 
|  | 469 | n = n->rb_left; | 
|  | 470 | else | 
|  | 471 | n = n->rb_right; | 
|  | 472 | } | 
|  | 473 |  | 
|  | 474 | return NULL; | 
|  | 475 | } | 
|  | 476 |  | 
|  | 477 | static struct cfg80211_internal_bss * | 
|  | 478 | cfg80211_bss_update(struct cfg80211_registered_device *dev, | 
| Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 479 | struct cfg80211_internal_bss *res) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 480 | { | 
|  | 481 | struct cfg80211_internal_bss *found = NULL; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 482 |  | 
|  | 483 | /* | 
|  | 484 | * The reference to "res" is donated to this function. | 
|  | 485 | */ | 
|  | 486 |  | 
|  | 487 | if (WARN_ON(!res->pub.channel)) { | 
|  | 488 | kref_put(&res->ref, bss_release); | 
|  | 489 | return NULL; | 
|  | 490 | } | 
|  | 491 |  | 
|  | 492 | res->ts = jiffies; | 
|  | 493 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 494 | spin_lock_bh(&dev->bss_lock); | 
|  | 495 |  | 
|  | 496 | found = rb_find_bss(dev, res); | 
|  | 497 |  | 
| Johannes Berg | cd1658f | 2009-04-16 15:00:58 +0200 | [diff] [blame] | 498 | if (found) { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 499 | found->pub.beacon_interval = res->pub.beacon_interval; | 
|  | 500 | found->pub.tsf = res->pub.tsf; | 
|  | 501 | found->pub.signal = res->pub.signal; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 502 | found->pub.capability = res->pub.capability; | 
|  | 503 | found->ts = res->ts; | 
| Johannes Berg | cd1658f | 2009-04-16 15:00:58 +0200 | [diff] [blame] | 504 |  | 
| Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 505 | /* Update IEs */ | 
|  | 506 | if (res->pub.proberesp_ies) { | 
| Johannes Berg | cd1658f | 2009-04-16 15:00:58 +0200 | [diff] [blame] | 507 | size_t used = dev->wiphy.bss_priv_size + sizeof(*res); | 
| Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 508 | size_t ielen = res->pub.len_proberesp_ies; | 
| Johannes Berg | cd1658f | 2009-04-16 15:00:58 +0200 | [diff] [blame] | 509 |  | 
| Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 510 | if (found->pub.proberesp_ies && | 
|  | 511 | !found->proberesp_ies_allocated && | 
|  | 512 | ksize(found) >= used + ielen) { | 
|  | 513 | memcpy(found->pub.proberesp_ies, | 
|  | 514 | res->pub.proberesp_ies, ielen); | 
|  | 515 | found->pub.len_proberesp_ies = ielen; | 
| Johannes Berg | cd1658f | 2009-04-16 15:00:58 +0200 | [diff] [blame] | 516 | } else { | 
| Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 517 | u8 *ies = found->pub.proberesp_ies; | 
| Johannes Berg | cd1658f | 2009-04-16 15:00:58 +0200 | [diff] [blame] | 518 |  | 
| Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 519 | if (found->proberesp_ies_allocated) | 
| Michael Buesch | 273de92 | 2009-04-25 22:28:55 +0200 | [diff] [blame] | 520 | ies = krealloc(ies, ielen, GFP_ATOMIC); | 
|  | 521 | else | 
| Johannes Berg | cd1658f | 2009-04-16 15:00:58 +0200 | [diff] [blame] | 522 | ies = kmalloc(ielen, GFP_ATOMIC); | 
|  | 523 |  | 
|  | 524 | if (ies) { | 
| Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 525 | memcpy(ies, res->pub.proberesp_ies, | 
|  | 526 | ielen); | 
|  | 527 | found->proberesp_ies_allocated = true; | 
|  | 528 | found->pub.proberesp_ies = ies; | 
|  | 529 | found->pub.len_proberesp_ies = ielen; | 
|  | 530 | } | 
|  | 531 | } | 
|  | 532 |  | 
|  | 533 | /* Override possible earlier Beacon frame IEs */ | 
|  | 534 | found->pub.information_elements = | 
|  | 535 | found->pub.proberesp_ies; | 
|  | 536 | found->pub.len_information_elements = | 
|  | 537 | found->pub.len_proberesp_ies; | 
|  | 538 | } | 
|  | 539 | if (res->pub.beacon_ies) { | 
|  | 540 | size_t used = dev->wiphy.bss_priv_size + sizeof(*res); | 
|  | 541 | size_t ielen = res->pub.len_beacon_ies; | 
| Sven Neumann | 01123e2 | 2010-12-09 15:05:24 +0100 | [diff] [blame] | 542 | bool information_elements_is_beacon_ies = | 
|  | 543 | (found->pub.information_elements == | 
|  | 544 | found->pub.beacon_ies); | 
| Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 545 |  | 
|  | 546 | if (found->pub.beacon_ies && | 
|  | 547 | !found->beacon_ies_allocated && | 
|  | 548 | ksize(found) >= used + ielen) { | 
|  | 549 | memcpy(found->pub.beacon_ies, | 
|  | 550 | res->pub.beacon_ies, ielen); | 
|  | 551 | found->pub.len_beacon_ies = ielen; | 
|  | 552 | } else { | 
|  | 553 | u8 *ies = found->pub.beacon_ies; | 
|  | 554 |  | 
|  | 555 | if (found->beacon_ies_allocated) | 
|  | 556 | ies = krealloc(ies, ielen, GFP_ATOMIC); | 
|  | 557 | else | 
|  | 558 | ies = kmalloc(ielen, GFP_ATOMIC); | 
|  | 559 |  | 
|  | 560 | if (ies) { | 
|  | 561 | memcpy(ies, res->pub.beacon_ies, | 
|  | 562 | ielen); | 
|  | 563 | found->beacon_ies_allocated = true; | 
|  | 564 | found->pub.beacon_ies = ies; | 
|  | 565 | found->pub.len_beacon_ies = ielen; | 
| Johannes Berg | cd1658f | 2009-04-16 15:00:58 +0200 | [diff] [blame] | 566 | } | 
|  | 567 | } | 
| Sven Neumann | 01123e2 | 2010-12-09 15:05:24 +0100 | [diff] [blame] | 568 |  | 
|  | 569 | /* Override IEs if they were from a beacon before */ | 
|  | 570 | if (information_elements_is_beacon_ies) { | 
|  | 571 | found->pub.information_elements = | 
|  | 572 | found->pub.beacon_ies; | 
|  | 573 | found->pub.len_information_elements = | 
|  | 574 | found->pub.len_beacon_ies; | 
|  | 575 | } | 
| Johannes Berg | cd1658f | 2009-04-16 15:00:58 +0200 | [diff] [blame] | 576 | } | 
|  | 577 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 578 | kref_put(&res->ref, bss_release); | 
|  | 579 | } else { | 
|  | 580 | /* this "consumes" the reference */ | 
|  | 581 | list_add_tail(&res->list, &dev->bss_list); | 
|  | 582 | rb_insert_bss(dev, res); | 
|  | 583 | found = res; | 
|  | 584 | } | 
|  | 585 |  | 
|  | 586 | dev->bss_generation++; | 
|  | 587 | spin_unlock_bh(&dev->bss_lock); | 
|  | 588 |  | 
|  | 589 | kref_get(&found->ref); | 
|  | 590 | return found; | 
|  | 591 | } | 
|  | 592 |  | 
| Jussi Kivilinna | 06aa7af | 2009-03-26 23:40:09 +0200 | [diff] [blame] | 593 | struct cfg80211_bss* | 
|  | 594 | cfg80211_inform_bss(struct wiphy *wiphy, | 
|  | 595 | struct ieee80211_channel *channel, | 
|  | 596 | const u8 *bssid, | 
|  | 597 | u64 timestamp, u16 capability, u16 beacon_interval, | 
|  | 598 | const u8 *ie, size_t ielen, | 
|  | 599 | s32 signal, gfp_t gfp) | 
|  | 600 | { | 
|  | 601 | struct cfg80211_internal_bss *res; | 
|  | 602 | size_t privsz; | 
|  | 603 |  | 
|  | 604 | if (WARN_ON(!wiphy)) | 
|  | 605 | return NULL; | 
|  | 606 |  | 
|  | 607 | privsz = wiphy->bss_priv_size; | 
|  | 608 |  | 
| Sujith | 22fe88d | 2010-05-13 10:34:08 +0530 | [diff] [blame] | 609 | if (WARN_ON(wiphy->signal_type == CFG80211_SIGNAL_TYPE_UNSPEC && | 
| Jussi Kivilinna | 06aa7af | 2009-03-26 23:40:09 +0200 | [diff] [blame] | 610 | (signal < 0 || signal > 100))) | 
|  | 611 | return NULL; | 
|  | 612 |  | 
|  | 613 | res = kzalloc(sizeof(*res) + privsz + ielen, gfp); | 
|  | 614 | if (!res) | 
|  | 615 | return NULL; | 
|  | 616 |  | 
|  | 617 | memcpy(res->pub.bssid, bssid, ETH_ALEN); | 
|  | 618 | res->pub.channel = channel; | 
|  | 619 | res->pub.signal = signal; | 
|  | 620 | res->pub.tsf = timestamp; | 
|  | 621 | res->pub.beacon_interval = beacon_interval; | 
|  | 622 | res->pub.capability = capability; | 
| Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 623 | /* | 
|  | 624 | * Since we do not know here whether the IEs are from a Beacon or Probe | 
|  | 625 | * Response frame, we need to pick one of the options and only use it | 
|  | 626 | * with the driver that does not provide the full Beacon/Probe Response | 
|  | 627 | * frame. Use Beacon frame pointer to avoid indicating that this should | 
|  | 628 | * override the information_elements pointer should we have received an | 
|  | 629 | * earlier indication of Probe Response data. | 
|  | 630 | * | 
|  | 631 | * The initial buffer for the IEs is allocated with the BSS entry and | 
|  | 632 | * is located after the private area. | 
|  | 633 | */ | 
|  | 634 | res->pub.beacon_ies = (u8 *)res + sizeof(*res) + privsz; | 
|  | 635 | memcpy(res->pub.beacon_ies, ie, ielen); | 
|  | 636 | res->pub.len_beacon_ies = ielen; | 
|  | 637 | res->pub.information_elements = res->pub.beacon_ies; | 
|  | 638 | res->pub.len_information_elements = res->pub.len_beacon_ies; | 
| Jussi Kivilinna | 06aa7af | 2009-03-26 23:40:09 +0200 | [diff] [blame] | 639 |  | 
|  | 640 | kref_init(&res->ref); | 
|  | 641 |  | 
| Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 642 | res = cfg80211_bss_update(wiphy_to_dev(wiphy), res); | 
| Jussi Kivilinna | 06aa7af | 2009-03-26 23:40:09 +0200 | [diff] [blame] | 643 | if (!res) | 
|  | 644 | return NULL; | 
|  | 645 |  | 
|  | 646 | if (res->pub.capability & WLAN_CAPABILITY_ESS) | 
|  | 647 | regulatory_hint_found_beacon(wiphy, channel, gfp); | 
|  | 648 |  | 
|  | 649 | /* cfg80211_bss_update gives us a referenced result */ | 
|  | 650 | return &res->pub; | 
|  | 651 | } | 
|  | 652 | EXPORT_SYMBOL(cfg80211_inform_bss); | 
|  | 653 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 654 | struct cfg80211_bss * | 
|  | 655 | cfg80211_inform_bss_frame(struct wiphy *wiphy, | 
|  | 656 | struct ieee80211_channel *channel, | 
|  | 657 | struct ieee80211_mgmt *mgmt, size_t len, | 
| Johannes Berg | 77965c9 | 2009-02-18 18:45:06 +0100 | [diff] [blame] | 658 | s32 signal, gfp_t gfp) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 659 | { | 
|  | 660 | struct cfg80211_internal_bss *res; | 
|  | 661 | size_t ielen = len - offsetof(struct ieee80211_mgmt, | 
|  | 662 | u.probe_resp.variable); | 
| Mariusz Kozlowski | bef9bac | 2011-03-26 19:26:55 +0100 | [diff] [blame] | 663 | size_t privsz; | 
|  | 664 |  | 
|  | 665 | if (WARN_ON(!mgmt)) | 
|  | 666 | return NULL; | 
|  | 667 |  | 
|  | 668 | if (WARN_ON(!wiphy)) | 
|  | 669 | return NULL; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 670 |  | 
| Sujith | 22fe88d | 2010-05-13 10:34:08 +0530 | [diff] [blame] | 671 | if (WARN_ON(wiphy->signal_type == CFG80211_SIGNAL_TYPE_UNSPEC && | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 672 | (signal < 0 || signal > 100))) | 
|  | 673 | return NULL; | 
|  | 674 |  | 
| Mariusz Kozlowski | bef9bac | 2011-03-26 19:26:55 +0100 | [diff] [blame] | 675 | if (WARN_ON(len < offsetof(struct ieee80211_mgmt, u.probe_resp.variable))) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 676 | return NULL; | 
|  | 677 |  | 
| Mariusz Kozlowski | bef9bac | 2011-03-26 19:26:55 +0100 | [diff] [blame] | 678 | privsz = wiphy->bss_priv_size; | 
|  | 679 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 680 | res = kzalloc(sizeof(*res) + privsz + ielen, gfp); | 
|  | 681 | if (!res) | 
|  | 682 | return NULL; | 
|  | 683 |  | 
|  | 684 | memcpy(res->pub.bssid, mgmt->bssid, ETH_ALEN); | 
|  | 685 | res->pub.channel = channel; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 686 | res->pub.signal = signal; | 
|  | 687 | res->pub.tsf = le64_to_cpu(mgmt->u.probe_resp.timestamp); | 
|  | 688 | res->pub.beacon_interval = le16_to_cpu(mgmt->u.probe_resp.beacon_int); | 
|  | 689 | res->pub.capability = le16_to_cpu(mgmt->u.probe_resp.capab_info); | 
| Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 690 | /* | 
|  | 691 | * The initial buffer for the IEs is allocated with the BSS entry and | 
|  | 692 | * is located after the private area. | 
|  | 693 | */ | 
|  | 694 | if (ieee80211_is_probe_resp(mgmt->frame_control)) { | 
|  | 695 | res->pub.proberesp_ies = (u8 *) res + sizeof(*res) + privsz; | 
|  | 696 | memcpy(res->pub.proberesp_ies, mgmt->u.probe_resp.variable, | 
|  | 697 | ielen); | 
|  | 698 | res->pub.len_proberesp_ies = ielen; | 
|  | 699 | res->pub.information_elements = res->pub.proberesp_ies; | 
|  | 700 | res->pub.len_information_elements = res->pub.len_proberesp_ies; | 
|  | 701 | } else { | 
|  | 702 | res->pub.beacon_ies = (u8 *) res + sizeof(*res) + privsz; | 
|  | 703 | memcpy(res->pub.beacon_ies, mgmt->u.beacon.variable, ielen); | 
|  | 704 | res->pub.len_beacon_ies = ielen; | 
|  | 705 | res->pub.information_elements = res->pub.beacon_ies; | 
|  | 706 | res->pub.len_information_elements = res->pub.len_beacon_ies; | 
|  | 707 | } | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 708 |  | 
|  | 709 | kref_init(&res->ref); | 
|  | 710 |  | 
| Jouni Malinen | 34a6edd | 2010-01-06 16:19:24 +0200 | [diff] [blame] | 711 | res = cfg80211_bss_update(wiphy_to_dev(wiphy), res); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 712 | if (!res) | 
|  | 713 | return NULL; | 
|  | 714 |  | 
| Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 715 | if (res->pub.capability & WLAN_CAPABILITY_ESS) | 
|  | 716 | regulatory_hint_found_beacon(wiphy, channel, gfp); | 
|  | 717 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 718 | /* cfg80211_bss_update gives us a referenced result */ | 
|  | 719 | return &res->pub; | 
|  | 720 | } | 
|  | 721 | EXPORT_SYMBOL(cfg80211_inform_bss_frame); | 
|  | 722 |  | 
|  | 723 | void cfg80211_put_bss(struct cfg80211_bss *pub) | 
|  | 724 | { | 
|  | 725 | struct cfg80211_internal_bss *bss; | 
|  | 726 |  | 
|  | 727 | if (!pub) | 
|  | 728 | return; | 
|  | 729 |  | 
|  | 730 | bss = container_of(pub, struct cfg80211_internal_bss, pub); | 
|  | 731 | kref_put(&bss->ref, bss_release); | 
|  | 732 | } | 
|  | 733 | EXPORT_SYMBOL(cfg80211_put_bss); | 
|  | 734 |  | 
| Johannes Berg | d491af1 | 2009-02-10 21:25:58 +0100 | [diff] [blame] | 735 | void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *pub) | 
|  | 736 | { | 
|  | 737 | struct cfg80211_registered_device *dev = wiphy_to_dev(wiphy); | 
|  | 738 | struct cfg80211_internal_bss *bss; | 
|  | 739 |  | 
|  | 740 | if (WARN_ON(!pub)) | 
|  | 741 | return; | 
|  | 742 |  | 
|  | 743 | bss = container_of(pub, struct cfg80211_internal_bss, pub); | 
|  | 744 |  | 
|  | 745 | spin_lock_bh(&dev->bss_lock); | 
| Johannes Berg | 3207390 | 2010-10-06 21:18:04 +0200 | [diff] [blame] | 746 | if (!list_empty(&bss->list)) { | 
| Juuso Oikarinen | 2b78ac9 | 2011-03-28 14:32:32 +0300 | [diff] [blame] | 747 | __cfg80211_unlink_bss(dev, bss); | 
| Johannes Berg | 3207390 | 2010-10-06 21:18:04 +0200 | [diff] [blame] | 748 | dev->bss_generation++; | 
| Johannes Berg | 3207390 | 2010-10-06 21:18:04 +0200 | [diff] [blame] | 749 | } | 
| Johannes Berg | d491af1 | 2009-02-10 21:25:58 +0100 | [diff] [blame] | 750 | spin_unlock_bh(&dev->bss_lock); | 
| Johannes Berg | d491af1 | 2009-02-10 21:25:58 +0100 | [diff] [blame] | 751 | } | 
|  | 752 | EXPORT_SYMBOL(cfg80211_unlink_bss); | 
|  | 753 |  | 
| Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 754 | #ifdef CONFIG_CFG80211_WEXT | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 755 | int cfg80211_wext_siwscan(struct net_device *dev, | 
|  | 756 | struct iw_request_info *info, | 
|  | 757 | union iwreq_data *wrqu, char *extra) | 
|  | 758 | { | 
|  | 759 | struct cfg80211_registered_device *rdev; | 
|  | 760 | struct wiphy *wiphy; | 
|  | 761 | struct iw_scan_req *wreq = NULL; | 
| Johannes Berg | 65486c8 | 2009-12-23 15:33:35 +0100 | [diff] [blame] | 762 | struct cfg80211_scan_request *creq = NULL; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 763 | int i, err, n_channels = 0; | 
|  | 764 | enum ieee80211_band band; | 
|  | 765 |  | 
|  | 766 | if (!netif_running(dev)) | 
|  | 767 | return -ENETDOWN; | 
|  | 768 |  | 
| Holger Schurig | b2e3abd | 2009-09-09 13:09:54 +0200 | [diff] [blame] | 769 | if (wrqu->data.length == sizeof(struct iw_scan_req)) | 
|  | 770 | wreq = (struct iw_scan_req *)extra; | 
|  | 771 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 772 | rdev = cfg80211_get_dev_from_ifindex(dev_net(dev), dev->ifindex); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 773 |  | 
|  | 774 | if (IS_ERR(rdev)) | 
|  | 775 | return PTR_ERR(rdev); | 
|  | 776 |  | 
|  | 777 | if (rdev->scan_req) { | 
|  | 778 | err = -EBUSY; | 
|  | 779 | goto out; | 
|  | 780 | } | 
|  | 781 |  | 
|  | 782 | wiphy = &rdev->wiphy; | 
|  | 783 |  | 
| Holger Schurig | b2e3abd | 2009-09-09 13:09:54 +0200 | [diff] [blame] | 784 | /* Determine number of channels, needed to allocate creq */ | 
|  | 785 | if (wreq && wreq->num_channels) | 
|  | 786 | n_channels = wreq->num_channels; | 
|  | 787 | else { | 
|  | 788 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) | 
|  | 789 | if (wiphy->bands[band]) | 
|  | 790 | n_channels += wiphy->bands[band]->n_channels; | 
|  | 791 | } | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 792 |  | 
|  | 793 | creq = kzalloc(sizeof(*creq) + sizeof(struct cfg80211_ssid) + | 
|  | 794 | n_channels * sizeof(void *), | 
|  | 795 | GFP_ATOMIC); | 
|  | 796 | if (!creq) { | 
|  | 797 | err = -ENOMEM; | 
|  | 798 | goto out; | 
|  | 799 | } | 
|  | 800 |  | 
|  | 801 | creq->wiphy = wiphy; | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 802 | creq->dev = dev; | 
| Johannes Berg | 5ba6353 | 2009-08-07 17:54:07 +0200 | [diff] [blame] | 803 | /* SSIDs come after channels */ | 
|  | 804 | creq->ssids = (void *)&creq->channels[n_channels]; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 805 | creq->n_channels = n_channels; | 
|  | 806 | creq->n_ssids = 1; | 
|  | 807 |  | 
| Holger Schurig | b2e3abd | 2009-09-09 13:09:54 +0200 | [diff] [blame] | 808 | /* translate "Scan on frequencies" request */ | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 809 | i = 0; | 
|  | 810 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { | 
|  | 811 | int j; | 
| Johannes Berg | 584991d | 2009-11-02 13:32:03 +0100 | [diff] [blame] | 812 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 813 | if (!wiphy->bands[band]) | 
|  | 814 | continue; | 
| Johannes Berg | 584991d | 2009-11-02 13:32:03 +0100 | [diff] [blame] | 815 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 816 | for (j = 0; j < wiphy->bands[band]->n_channels; j++) { | 
| Johannes Berg | 584991d | 2009-11-02 13:32:03 +0100 | [diff] [blame] | 817 | /* ignore disabled channels */ | 
|  | 818 | if (wiphy->bands[band]->channels[j].flags & | 
|  | 819 | IEEE80211_CHAN_DISABLED) | 
|  | 820 | continue; | 
| Holger Schurig | b2e3abd | 2009-09-09 13:09:54 +0200 | [diff] [blame] | 821 |  | 
|  | 822 | /* If we have a wireless request structure and the | 
|  | 823 | * wireless request specifies frequencies, then search | 
|  | 824 | * for the matching hardware channel. | 
|  | 825 | */ | 
|  | 826 | if (wreq && wreq->num_channels) { | 
|  | 827 | int k; | 
|  | 828 | int wiphy_freq = wiphy->bands[band]->channels[j].center_freq; | 
|  | 829 | for (k = 0; k < wreq->num_channels; k++) { | 
| Holger Schurig | a4e7b73 | 2009-09-11 10:13:53 +0200 | [diff] [blame] | 830 | int wext_freq = cfg80211_wext_freq(wiphy, &wreq->channel_list[k]); | 
| Holger Schurig | b2e3abd | 2009-09-09 13:09:54 +0200 | [diff] [blame] | 831 | if (wext_freq == wiphy_freq) | 
|  | 832 | goto wext_freq_found; | 
|  | 833 | } | 
|  | 834 | goto wext_freq_not_found; | 
|  | 835 | } | 
|  | 836 |  | 
|  | 837 | wext_freq_found: | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 838 | creq->channels[i] = &wiphy->bands[band]->channels[j]; | 
|  | 839 | i++; | 
| Holger Schurig | b2e3abd | 2009-09-09 13:09:54 +0200 | [diff] [blame] | 840 | wext_freq_not_found: ; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 841 | } | 
|  | 842 | } | 
| Holger Schurig | 8862dc5 | 2009-09-11 10:13:55 +0200 | [diff] [blame] | 843 | /* No channels found? */ | 
|  | 844 | if (!i) { | 
|  | 845 | err = -EINVAL; | 
|  | 846 | goto out; | 
|  | 847 | } | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 848 |  | 
| Holger Schurig | b2e3abd | 2009-09-09 13:09:54 +0200 | [diff] [blame] | 849 | /* Set real number of channels specified in creq->channels[] */ | 
|  | 850 | creq->n_channels = i; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 851 |  | 
| Holger Schurig | b2e3abd | 2009-09-09 13:09:54 +0200 | [diff] [blame] | 852 | /* translate "Scan for SSID" request */ | 
|  | 853 | if (wreq) { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 854 | if (wrqu->data.flags & IW_SCAN_THIS_ESSID) { | 
| Johannes Berg | 65486c8 | 2009-12-23 15:33:35 +0100 | [diff] [blame] | 855 | if (wreq->essid_len > IEEE80211_MAX_SSID_LEN) { | 
|  | 856 | err = -EINVAL; | 
|  | 857 | goto out; | 
|  | 858 | } | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 859 | memcpy(creq->ssids[0].ssid, wreq->essid, wreq->essid_len); | 
|  | 860 | creq->ssids[0].ssid_len = wreq->essid_len; | 
|  | 861 | } | 
|  | 862 | if (wreq->scan_type == IW_SCAN_TYPE_PASSIVE) | 
|  | 863 | creq->n_ssids = 0; | 
|  | 864 | } | 
| Sunil Dutt Undekari | 08166fc | 2012-03-05 21:01:23 +0530 | [diff] [blame] | 865 | for (i = 0; i < IEEE80211_NUM_BANDS; i++) | 
|  | 866 | creq->rates[i] = (1 << wiphy->bands[i]->n_bitrates) - 1; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 867 |  | 
|  | 868 | rdev->scan_req = creq; | 
|  | 869 | err = rdev->ops->scan(wiphy, dev, creq); | 
|  | 870 | if (err) { | 
|  | 871 | rdev->scan_req = NULL; | 
| Johannes Berg | 65486c8 | 2009-12-23 15:33:35 +0100 | [diff] [blame] | 872 | /* creq will be freed below */ | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 873 | } else { | 
| Johannes Berg | a538e2d | 2009-06-16 19:56:42 +0200 | [diff] [blame] | 874 | nl80211_send_scan_start(rdev, dev); | 
| Johannes Berg | 65486c8 | 2009-12-23 15:33:35 +0100 | [diff] [blame] | 875 | /* creq now owned by driver */ | 
|  | 876 | creq = NULL; | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 877 | dev_hold(dev); | 
|  | 878 | } | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 879 | out: | 
| Johannes Berg | 65486c8 | 2009-12-23 15:33:35 +0100 | [diff] [blame] | 880 | kfree(creq); | 
| Johannes Berg | 4d0c8ae | 2009-07-07 03:56:09 +0200 | [diff] [blame] | 881 | cfg80211_unlock_rdev(rdev); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 882 | return err; | 
|  | 883 | } | 
| Johannes Berg | ba44cb7 | 2009-04-20 18:49:39 +0200 | [diff] [blame] | 884 | EXPORT_SYMBOL_GPL(cfg80211_wext_siwscan); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 885 |  | 
|  | 886 | static void ieee80211_scan_add_ies(struct iw_request_info *info, | 
|  | 887 | struct cfg80211_bss *bss, | 
|  | 888 | char **current_ev, char *end_buf) | 
|  | 889 | { | 
|  | 890 | u8 *pos, *end, *next; | 
|  | 891 | struct iw_event iwe; | 
|  | 892 |  | 
|  | 893 | if (!bss->information_elements || | 
|  | 894 | !bss->len_information_elements) | 
|  | 895 | return; | 
|  | 896 |  | 
|  | 897 | /* | 
|  | 898 | * If needed, fragment the IEs buffer (at IE boundaries) into short | 
|  | 899 | * enough fragments to fit into IW_GENERIC_IE_MAX octet messages. | 
|  | 900 | */ | 
|  | 901 | pos = bss->information_elements; | 
|  | 902 | end = pos + bss->len_information_elements; | 
|  | 903 |  | 
|  | 904 | while (end - pos > IW_GENERIC_IE_MAX) { | 
|  | 905 | next = pos + 2 + pos[1]; | 
|  | 906 | while (next + 2 + next[1] - pos < IW_GENERIC_IE_MAX) | 
|  | 907 | next = next + 2 + next[1]; | 
|  | 908 |  | 
|  | 909 | memset(&iwe, 0, sizeof(iwe)); | 
|  | 910 | iwe.cmd = IWEVGENIE; | 
|  | 911 | iwe.u.data.length = next - pos; | 
|  | 912 | *current_ev = iwe_stream_add_point(info, *current_ev, | 
|  | 913 | end_buf, &iwe, pos); | 
|  | 914 |  | 
|  | 915 | pos = next; | 
|  | 916 | } | 
|  | 917 |  | 
|  | 918 | if (end > pos) { | 
|  | 919 | memset(&iwe, 0, sizeof(iwe)); | 
|  | 920 | iwe.cmd = IWEVGENIE; | 
|  | 921 | iwe.u.data.length = end - pos; | 
|  | 922 | *current_ev = iwe_stream_add_point(info, *current_ev, | 
|  | 923 | end_buf, &iwe, pos); | 
|  | 924 | } | 
|  | 925 | } | 
|  | 926 |  | 
| Dan Williams | cb3a8ee | 2009-02-11 17:14:43 -0500 | [diff] [blame] | 927 | static inline unsigned int elapsed_jiffies_msecs(unsigned long start) | 
|  | 928 | { | 
|  | 929 | unsigned long end = jiffies; | 
|  | 930 |  | 
|  | 931 | if (end >= start) | 
|  | 932 | return jiffies_to_msecs(end - start); | 
|  | 933 |  | 
|  | 934 | return jiffies_to_msecs(end + (MAX_JIFFY_OFFSET - start) + 1); | 
|  | 935 | } | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 936 |  | 
|  | 937 | static char * | 
| Johannes Berg | 77965c9 | 2009-02-18 18:45:06 +0100 | [diff] [blame] | 938 | ieee80211_bss(struct wiphy *wiphy, struct iw_request_info *info, | 
|  | 939 | struct cfg80211_internal_bss *bss, char *current_ev, | 
|  | 940 | char *end_buf) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 941 | { | 
|  | 942 | struct iw_event iwe; | 
|  | 943 | u8 *buf, *cfg, *p; | 
|  | 944 | u8 *ie = bss->pub.information_elements; | 
| Johannes Berg | a77b855 | 2009-02-18 18:27:22 +0100 | [diff] [blame] | 945 | int rem = bss->pub.len_information_elements, i, sig; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 946 | bool ismesh = false; | 
|  | 947 |  | 
|  | 948 | memset(&iwe, 0, sizeof(iwe)); | 
|  | 949 | iwe.cmd = SIOCGIWAP; | 
|  | 950 | iwe.u.ap_addr.sa_family = ARPHRD_ETHER; | 
|  | 951 | memcpy(iwe.u.ap_addr.sa_data, bss->pub.bssid, ETH_ALEN); | 
|  | 952 | current_ev = iwe_stream_add_event(info, current_ev, end_buf, &iwe, | 
|  | 953 | IW_EV_ADDR_LEN); | 
|  | 954 |  | 
|  | 955 | memset(&iwe, 0, sizeof(iwe)); | 
|  | 956 | iwe.cmd = SIOCGIWFREQ; | 
|  | 957 | iwe.u.freq.m = ieee80211_frequency_to_channel(bss->pub.channel->center_freq); | 
|  | 958 | iwe.u.freq.e = 0; | 
|  | 959 | current_ev = iwe_stream_add_event(info, current_ev, end_buf, &iwe, | 
|  | 960 | IW_EV_FREQ_LEN); | 
|  | 961 |  | 
|  | 962 | memset(&iwe, 0, sizeof(iwe)); | 
|  | 963 | iwe.cmd = SIOCGIWFREQ; | 
|  | 964 | iwe.u.freq.m = bss->pub.channel->center_freq; | 
|  | 965 | iwe.u.freq.e = 6; | 
|  | 966 | current_ev = iwe_stream_add_event(info, current_ev, end_buf, &iwe, | 
|  | 967 | IW_EV_FREQ_LEN); | 
|  | 968 |  | 
| Johannes Berg | 77965c9 | 2009-02-18 18:45:06 +0100 | [diff] [blame] | 969 | if (wiphy->signal_type != CFG80211_SIGNAL_TYPE_NONE) { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 970 | memset(&iwe, 0, sizeof(iwe)); | 
|  | 971 | iwe.cmd = IWEVQUAL; | 
|  | 972 | iwe.u.qual.updated = IW_QUAL_LEVEL_UPDATED | | 
|  | 973 | IW_QUAL_NOISE_INVALID | | 
| Johannes Berg | a77b855 | 2009-02-18 18:27:22 +0100 | [diff] [blame] | 974 | IW_QUAL_QUAL_UPDATED; | 
| Johannes Berg | 77965c9 | 2009-02-18 18:45:06 +0100 | [diff] [blame] | 975 | switch (wiphy->signal_type) { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 976 | case CFG80211_SIGNAL_TYPE_MBM: | 
| Johannes Berg | a77b855 | 2009-02-18 18:27:22 +0100 | [diff] [blame] | 977 | sig = bss->pub.signal / 100; | 
|  | 978 | iwe.u.qual.level = sig; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 979 | iwe.u.qual.updated |= IW_QUAL_DBM; | 
| Johannes Berg | a77b855 | 2009-02-18 18:27:22 +0100 | [diff] [blame] | 980 | if (sig < -110)		/* rather bad */ | 
|  | 981 | sig = -110; | 
|  | 982 | else if (sig > -40)	/* perfect */ | 
|  | 983 | sig = -40; | 
|  | 984 | /* will give a range of 0 .. 70 */ | 
|  | 985 | iwe.u.qual.qual = sig + 110; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 986 | break; | 
|  | 987 | case CFG80211_SIGNAL_TYPE_UNSPEC: | 
|  | 988 | iwe.u.qual.level = bss->pub.signal; | 
| Johannes Berg | a77b855 | 2009-02-18 18:27:22 +0100 | [diff] [blame] | 989 | /* will give range 0 .. 100 */ | 
|  | 990 | iwe.u.qual.qual = bss->pub.signal; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 991 | break; | 
|  | 992 | default: | 
|  | 993 | /* not reached */ | 
|  | 994 | break; | 
|  | 995 | } | 
|  | 996 | current_ev = iwe_stream_add_event(info, current_ev, end_buf, | 
|  | 997 | &iwe, IW_EV_QUAL_LEN); | 
|  | 998 | } | 
|  | 999 |  | 
|  | 1000 | memset(&iwe, 0, sizeof(iwe)); | 
|  | 1001 | iwe.cmd = SIOCGIWENCODE; | 
|  | 1002 | if (bss->pub.capability & WLAN_CAPABILITY_PRIVACY) | 
|  | 1003 | iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY; | 
|  | 1004 | else | 
|  | 1005 | iwe.u.data.flags = IW_ENCODE_DISABLED; | 
|  | 1006 | iwe.u.data.length = 0; | 
|  | 1007 | current_ev = iwe_stream_add_point(info, current_ev, end_buf, | 
|  | 1008 | &iwe, ""); | 
|  | 1009 |  | 
|  | 1010 | while (rem >= 2) { | 
|  | 1011 | /* invalid data */ | 
|  | 1012 | if (ie[1] > rem - 2) | 
|  | 1013 | break; | 
|  | 1014 |  | 
|  | 1015 | switch (ie[0]) { | 
|  | 1016 | case WLAN_EID_SSID: | 
|  | 1017 | memset(&iwe, 0, sizeof(iwe)); | 
|  | 1018 | iwe.cmd = SIOCGIWESSID; | 
|  | 1019 | iwe.u.data.length = ie[1]; | 
|  | 1020 | iwe.u.data.flags = 1; | 
|  | 1021 | current_ev = iwe_stream_add_point(info, current_ev, end_buf, | 
|  | 1022 | &iwe, ie + 2); | 
|  | 1023 | break; | 
|  | 1024 | case WLAN_EID_MESH_ID: | 
|  | 1025 | memset(&iwe, 0, sizeof(iwe)); | 
|  | 1026 | iwe.cmd = SIOCGIWESSID; | 
|  | 1027 | iwe.u.data.length = ie[1]; | 
|  | 1028 | iwe.u.data.flags = 1; | 
|  | 1029 | current_ev = iwe_stream_add_point(info, current_ev, end_buf, | 
|  | 1030 | &iwe, ie + 2); | 
|  | 1031 | break; | 
|  | 1032 | case WLAN_EID_MESH_CONFIG: | 
|  | 1033 | ismesh = true; | 
| Rui Paulo | 136cfa2 | 2009-11-18 18:40:00 +0000 | [diff] [blame] | 1034 | if (ie[1] != sizeof(struct ieee80211_meshconf_ie)) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1035 | break; | 
|  | 1036 | buf = kmalloc(50, GFP_ATOMIC); | 
|  | 1037 | if (!buf) | 
|  | 1038 | break; | 
|  | 1039 | cfg = ie + 2; | 
|  | 1040 | memset(&iwe, 0, sizeof(iwe)); | 
|  | 1041 | iwe.cmd = IWEVCUSTOM; | 
| Rui Paulo | 76aa5e7 | 2009-11-18 18:22:59 +0000 | [diff] [blame] | 1042 | sprintf(buf, "Mesh Network Path Selection Protocol ID: " | 
|  | 1043 | "0x%02X", cfg[0]); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1044 | iwe.u.data.length = strlen(buf); | 
|  | 1045 | current_ev = iwe_stream_add_point(info, current_ev, | 
|  | 1046 | end_buf, | 
|  | 1047 | &iwe, buf); | 
| Rui Paulo | 76aa5e7 | 2009-11-18 18:22:59 +0000 | [diff] [blame] | 1048 | sprintf(buf, "Path Selection Metric ID: 0x%02X", | 
|  | 1049 | cfg[1]); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1050 | iwe.u.data.length = strlen(buf); | 
|  | 1051 | current_ev = iwe_stream_add_point(info, current_ev, | 
|  | 1052 | end_buf, | 
|  | 1053 | &iwe, buf); | 
| Rui Paulo | 76aa5e7 | 2009-11-18 18:22:59 +0000 | [diff] [blame] | 1054 | sprintf(buf, "Congestion Control Mode ID: 0x%02X", | 
|  | 1055 | cfg[2]); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1056 | iwe.u.data.length = strlen(buf); | 
|  | 1057 | current_ev = iwe_stream_add_point(info, current_ev, | 
|  | 1058 | end_buf, | 
|  | 1059 | &iwe, buf); | 
| Rui Paulo | 76aa5e7 | 2009-11-18 18:22:59 +0000 | [diff] [blame] | 1060 | sprintf(buf, "Synchronization ID: 0x%02X", cfg[3]); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1061 | iwe.u.data.length = strlen(buf); | 
|  | 1062 | current_ev = iwe_stream_add_point(info, current_ev, | 
|  | 1063 | end_buf, | 
|  | 1064 | &iwe, buf); | 
| Rui Paulo | 76aa5e7 | 2009-11-18 18:22:59 +0000 | [diff] [blame] | 1065 | sprintf(buf, "Authentication ID: 0x%02X", cfg[4]); | 
|  | 1066 | iwe.u.data.length = strlen(buf); | 
|  | 1067 | current_ev = iwe_stream_add_point(info, current_ev, | 
|  | 1068 | end_buf, | 
|  | 1069 | &iwe, buf); | 
|  | 1070 | sprintf(buf, "Formation Info: 0x%02X", cfg[5]); | 
|  | 1071 | iwe.u.data.length = strlen(buf); | 
|  | 1072 | current_ev = iwe_stream_add_point(info, current_ev, | 
|  | 1073 | end_buf, | 
|  | 1074 | &iwe, buf); | 
|  | 1075 | sprintf(buf, "Capabilities: 0x%02X", cfg[6]); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1076 | iwe.u.data.length = strlen(buf); | 
|  | 1077 | current_ev = iwe_stream_add_point(info, current_ev, | 
|  | 1078 | end_buf, | 
|  | 1079 | &iwe, buf); | 
|  | 1080 | kfree(buf); | 
|  | 1081 | break; | 
|  | 1082 | case WLAN_EID_SUPP_RATES: | 
|  | 1083 | case WLAN_EID_EXT_SUPP_RATES: | 
|  | 1084 | /* display all supported rates in readable format */ | 
|  | 1085 | p = current_ev + iwe_stream_lcp_len(info); | 
|  | 1086 |  | 
|  | 1087 | memset(&iwe, 0, sizeof(iwe)); | 
|  | 1088 | iwe.cmd = SIOCGIWRATE; | 
|  | 1089 | /* Those two flags are ignored... */ | 
|  | 1090 | iwe.u.bitrate.fixed = iwe.u.bitrate.disabled = 0; | 
|  | 1091 |  | 
|  | 1092 | for (i = 0; i < ie[1]; i++) { | 
|  | 1093 | iwe.u.bitrate.value = | 
|  | 1094 | ((ie[i + 2] & 0x7f) * 500000); | 
|  | 1095 | p = iwe_stream_add_value(info, current_ev, p, | 
|  | 1096 | end_buf, &iwe, IW_EV_PARAM_LEN); | 
|  | 1097 | } | 
|  | 1098 | current_ev = p; | 
|  | 1099 | break; | 
|  | 1100 | } | 
|  | 1101 | rem -= ie[1] + 2; | 
|  | 1102 | ie += ie[1] + 2; | 
|  | 1103 | } | 
|  | 1104 |  | 
| Joe Perches | f64f9e7 | 2009-11-29 16:55:45 -0800 | [diff] [blame] | 1105 | if (bss->pub.capability & (WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_IBSS) || | 
|  | 1106 | ismesh) { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1107 | memset(&iwe, 0, sizeof(iwe)); | 
|  | 1108 | iwe.cmd = SIOCGIWMODE; | 
|  | 1109 | if (ismesh) | 
|  | 1110 | iwe.u.mode = IW_MODE_MESH; | 
|  | 1111 | else if (bss->pub.capability & WLAN_CAPABILITY_ESS) | 
|  | 1112 | iwe.u.mode = IW_MODE_MASTER; | 
|  | 1113 | else | 
|  | 1114 | iwe.u.mode = IW_MODE_ADHOC; | 
|  | 1115 | current_ev = iwe_stream_add_event(info, current_ev, end_buf, | 
|  | 1116 | &iwe, IW_EV_UINT_LEN); | 
|  | 1117 | } | 
|  | 1118 |  | 
|  | 1119 | buf = kmalloc(30, GFP_ATOMIC); | 
|  | 1120 | if (buf) { | 
|  | 1121 | memset(&iwe, 0, sizeof(iwe)); | 
|  | 1122 | iwe.cmd = IWEVCUSTOM; | 
|  | 1123 | sprintf(buf, "tsf=%016llx", (unsigned long long)(bss->pub.tsf)); | 
|  | 1124 | iwe.u.data.length = strlen(buf); | 
|  | 1125 | current_ev = iwe_stream_add_point(info, current_ev, end_buf, | 
|  | 1126 | &iwe, buf); | 
|  | 1127 | memset(&iwe, 0, sizeof(iwe)); | 
|  | 1128 | iwe.cmd = IWEVCUSTOM; | 
| Dan Williams | cb3a8ee | 2009-02-11 17:14:43 -0500 | [diff] [blame] | 1129 | sprintf(buf, " Last beacon: %ums ago", | 
|  | 1130 | elapsed_jiffies_msecs(bss->ts)); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1131 | iwe.u.data.length = strlen(buf); | 
|  | 1132 | current_ev = iwe_stream_add_point(info, current_ev, | 
|  | 1133 | end_buf, &iwe, buf); | 
|  | 1134 | kfree(buf); | 
|  | 1135 | } | 
|  | 1136 |  | 
|  | 1137 | ieee80211_scan_add_ies(info, &bss->pub, ¤t_ev, end_buf); | 
|  | 1138 |  | 
|  | 1139 | return current_ev; | 
|  | 1140 | } | 
|  | 1141 |  | 
|  | 1142 |  | 
|  | 1143 | static int ieee80211_scan_results(struct cfg80211_registered_device *dev, | 
|  | 1144 | struct iw_request_info *info, | 
|  | 1145 | char *buf, size_t len) | 
|  | 1146 | { | 
|  | 1147 | char *current_ev = buf; | 
|  | 1148 | char *end_buf = buf + len; | 
|  | 1149 | struct cfg80211_internal_bss *bss; | 
|  | 1150 |  | 
|  | 1151 | spin_lock_bh(&dev->bss_lock); | 
|  | 1152 | cfg80211_bss_expire(dev); | 
|  | 1153 |  | 
|  | 1154 | list_for_each_entry(bss, &dev->bss_list, list) { | 
|  | 1155 | if (buf + len - current_ev <= IW_EV_ADDR_LEN) { | 
|  | 1156 | spin_unlock_bh(&dev->bss_lock); | 
|  | 1157 | return -E2BIG; | 
|  | 1158 | } | 
| Johannes Berg | 77965c9 | 2009-02-18 18:45:06 +0100 | [diff] [blame] | 1159 | current_ev = ieee80211_bss(&dev->wiphy, info, bss, | 
|  | 1160 | current_ev, end_buf); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1161 | } | 
|  | 1162 | spin_unlock_bh(&dev->bss_lock); | 
|  | 1163 | return current_ev - buf; | 
|  | 1164 | } | 
|  | 1165 |  | 
|  | 1166 |  | 
|  | 1167 | int cfg80211_wext_giwscan(struct net_device *dev, | 
|  | 1168 | struct iw_request_info *info, | 
|  | 1169 | struct iw_point *data, char *extra) | 
|  | 1170 | { | 
|  | 1171 | struct cfg80211_registered_device *rdev; | 
|  | 1172 | int res; | 
|  | 1173 |  | 
|  | 1174 | if (!netif_running(dev)) | 
|  | 1175 | return -ENETDOWN; | 
|  | 1176 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 1177 | rdev = cfg80211_get_dev_from_ifindex(dev_net(dev), dev->ifindex); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1178 |  | 
|  | 1179 | if (IS_ERR(rdev)) | 
|  | 1180 | return PTR_ERR(rdev); | 
|  | 1181 |  | 
|  | 1182 | if (rdev->scan_req) { | 
|  | 1183 | res = -EAGAIN; | 
|  | 1184 | goto out; | 
|  | 1185 | } | 
|  | 1186 |  | 
|  | 1187 | res = ieee80211_scan_results(rdev, info, extra, data->length); | 
|  | 1188 | data->length = 0; | 
|  | 1189 | if (res >= 0) { | 
|  | 1190 | data->length = res; | 
|  | 1191 | res = 0; | 
|  | 1192 | } | 
|  | 1193 |  | 
|  | 1194 | out: | 
| Johannes Berg | 4d0c8ae | 2009-07-07 03:56:09 +0200 | [diff] [blame] | 1195 | cfg80211_unlock_rdev(rdev); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1196 | return res; | 
|  | 1197 | } | 
| Johannes Berg | ba44cb7 | 2009-04-20 18:49:39 +0200 | [diff] [blame] | 1198 | EXPORT_SYMBOL_GPL(cfg80211_wext_giwscan); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1199 | #endif |