bss.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630
  1. /*
  2. * BSS table
  3. * Copyright (c) 2009-2010, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "utils/includes.h"
  15. #include "utils/common.h"
  16. #include "utils/eloop.h"
  17. #include "common/ieee802_11_defs.h"
  18. #include "drivers/driver.h"
  19. #include "wpa_supplicant_i.h"
  20. #include "config.h"
  21. #include "notify.h"
  22. #include "scan.h"
  23. #include "bss.h"
  24. /**
  25. * WPA_BSS_EXPIRATION_PERIOD - Period of expiration run in seconds
  26. */
  27. #define WPA_BSS_EXPIRATION_PERIOD 10
  28. /**
  29. * WPA_BSS_EXPIRATION_AGE - BSS entry age after which it can be expired
  30. *
  31. * This value control the time in seconds after which a BSS entry gets removed
  32. * if it has not been updated or is not in use.
  33. */
  34. #define WPA_BSS_EXPIRATION_AGE 180
  35. /**
  36. * WPA_BSS_EXPIRATION_SCAN_COUNT - Expire BSS after number of scans
  37. *
  38. * If the BSS entry has not been seen in this many scans, it will be removed.
  39. * Value 1 means that the entry is removed after the first scan without the
  40. * BSSID being seen. Larger values can be used to avoid BSS entries
  41. * disappearing if they are not visible in every scan (e.g., low signal quality
  42. * or interference).
  43. */
  44. #define WPA_BSS_EXPIRATION_SCAN_COUNT 2
  45. #define WPA_BSS_FREQ_CHANGED_FLAG BIT(0)
  46. #define WPA_BSS_SIGNAL_CHANGED_FLAG BIT(1)
  47. #define WPA_BSS_PRIVACY_CHANGED_FLAG BIT(2)
  48. #define WPA_BSS_MODE_CHANGED_FLAG BIT(3)
  49. #define WPA_BSS_WPAIE_CHANGED_FLAG BIT(4)
  50. #define WPA_BSS_RSNIE_CHANGED_FLAG BIT(5)
  51. #define WPA_BSS_WPS_CHANGED_FLAG BIT(6)
  52. #define WPA_BSS_RATES_CHANGED_FLAG BIT(7)
  53. #define WPA_BSS_IES_CHANGED_FLAG BIT(8)
  54. static void wpa_bss_remove(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  55. {
  56. dl_list_del(&bss->list);
  57. dl_list_del(&bss->list_id);
  58. wpa_s->num_bss--;
  59. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Remove id %u BSSID " MACSTR
  60. " SSID '%s'", bss->id, MAC2STR(bss->bssid),
  61. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  62. wpas_notify_bss_removed(wpa_s, bss->bssid, bss->id);
  63. os_free(bss);
  64. }
  65. struct wpa_bss * wpa_bss_get(struct wpa_supplicant *wpa_s, const u8 *bssid,
  66. const u8 *ssid, size_t ssid_len)
  67. {
  68. struct wpa_bss *bss;
  69. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  70. if (os_memcmp(bss->bssid, bssid, ETH_ALEN) == 0 &&
  71. bss->ssid_len == ssid_len &&
  72. os_memcmp(bss->ssid, ssid, ssid_len) == 0)
  73. return bss;
  74. }
  75. return NULL;
  76. }
  77. static void wpa_bss_copy_res(struct wpa_bss *dst, struct wpa_scan_res *src)
  78. {
  79. os_time_t usec;
  80. dst->flags = src->flags;
  81. os_memcpy(dst->bssid, src->bssid, ETH_ALEN);
  82. dst->freq = src->freq;
  83. dst->beacon_int = src->beacon_int;
  84. dst->caps = src->caps;
  85. dst->qual = src->qual;
  86. dst->noise = src->noise;
  87. dst->level = src->level;
  88. dst->tsf = src->tsf;
  89. os_get_time(&dst->last_update);
  90. dst->last_update.sec -= src->age / 1000;
  91. usec = (src->age % 1000) * 1000;
  92. if (dst->last_update.usec < usec) {
  93. dst->last_update.sec--;
  94. dst->last_update.usec += 1000000;
  95. }
  96. dst->last_update.usec -= usec;
  97. }
  98. static void wpa_bss_add(struct wpa_supplicant *wpa_s,
  99. const u8 *ssid, size_t ssid_len,
  100. struct wpa_scan_res *res)
  101. {
  102. struct wpa_bss *bss;
  103. bss = os_zalloc(sizeof(*bss) + res->ie_len + res->beacon_ie_len);
  104. if (bss == NULL)
  105. return;
  106. bss->id = wpa_s->bss_next_id++;
  107. bss->last_update_idx = wpa_s->bss_update_idx;
  108. wpa_bss_copy_res(bss, res);
  109. os_memcpy(bss->ssid, ssid, ssid_len);
  110. bss->ssid_len = ssid_len;
  111. bss->ie_len = res->ie_len;
  112. bss->beacon_ie_len = res->beacon_ie_len;
  113. os_memcpy(bss + 1, res + 1, res->ie_len + res->beacon_ie_len);
  114. dl_list_add_tail(&wpa_s->bss, &bss->list);
  115. dl_list_add_tail(&wpa_s->bss_id, &bss->list_id);
  116. wpa_s->num_bss++;
  117. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Add new id %u BSSID " MACSTR
  118. " SSID '%s'",
  119. bss->id, MAC2STR(bss->bssid), wpa_ssid_txt(ssid, ssid_len));
  120. wpas_notify_bss_added(wpa_s, bss->bssid, bss->id);
  121. if (wpa_s->num_bss > wpa_s->conf->bss_max_count) {
  122. /* Remove the oldest entry */
  123. wpa_bss_remove(wpa_s, dl_list_first(&wpa_s->bss,
  124. struct wpa_bss, list));
  125. }
  126. }
  127. static int are_ies_equal(const struct wpa_bss *old,
  128. const struct wpa_scan_res *new, u32 ie)
  129. {
  130. const u8 *old_ie, *new_ie;
  131. struct wpabuf *old_ie_buff = NULL;
  132. struct wpabuf *new_ie_buff = NULL;
  133. int new_ie_len, old_ie_len, ret, is_multi;
  134. switch (ie) {
  135. case WPA_IE_VENDOR_TYPE:
  136. old_ie = wpa_bss_get_vendor_ie(old, ie);
  137. new_ie = wpa_scan_get_vendor_ie(new, ie);
  138. is_multi = 0;
  139. break;
  140. case WPS_IE_VENDOR_TYPE:
  141. old_ie_buff = wpa_bss_get_vendor_ie_multi(old, ie);
  142. new_ie_buff = wpa_scan_get_vendor_ie_multi(new, ie);
  143. is_multi = 1;
  144. break;
  145. case WLAN_EID_RSN:
  146. case WLAN_EID_SUPP_RATES:
  147. case WLAN_EID_EXT_SUPP_RATES:
  148. old_ie = wpa_bss_get_ie(old, ie);
  149. new_ie = wpa_scan_get_ie(new, ie);
  150. is_multi = 0;
  151. break;
  152. default:
  153. wpa_printf(MSG_DEBUG, "bss: %s: cannot compare IEs", __func__);
  154. return 0;
  155. }
  156. if (is_multi) {
  157. /* in case of multiple IEs stored in buffer */
  158. old_ie = old_ie_buff ? wpabuf_head_u8(old_ie_buff) : NULL;
  159. new_ie = new_ie_buff ? wpabuf_head_u8(new_ie_buff) : NULL;
  160. old_ie_len = old_ie_buff ? wpabuf_len(old_ie_buff) : 0;
  161. new_ie_len = new_ie_buff ? wpabuf_len(new_ie_buff) : 0;
  162. } else {
  163. /* in case of single IE */
  164. old_ie_len = old_ie ? old_ie[1] + 2 : 0;
  165. new_ie_len = new_ie ? new_ie[1] + 2 : 0;
  166. }
  167. ret = (old_ie_len == new_ie_len &&
  168. os_memcmp(old_ie, new_ie, old_ie_len) == 0);
  169. wpabuf_free(old_ie_buff);
  170. wpabuf_free(new_ie_buff);
  171. return ret;
  172. }
  173. static u32 wpa_bss_compare_res(const struct wpa_bss *old,
  174. const struct wpa_scan_res *new)
  175. {
  176. u32 changes = 0;
  177. int caps_diff = old->caps ^ new->caps;
  178. if (old->freq != new->freq)
  179. changes |= WPA_BSS_FREQ_CHANGED_FLAG;
  180. if (old->level != new->level)
  181. changes |= WPA_BSS_SIGNAL_CHANGED_FLAG;
  182. if (caps_diff & IEEE80211_CAP_PRIVACY)
  183. changes |= WPA_BSS_PRIVACY_CHANGED_FLAG;
  184. if (caps_diff & IEEE80211_CAP_IBSS)
  185. changes |= WPA_BSS_MODE_CHANGED_FLAG;
  186. if (old->ie_len == new->ie_len &&
  187. os_memcmp(old + 1, new + 1, old->ie_len) == 0)
  188. return changes;
  189. changes |= WPA_BSS_IES_CHANGED_FLAG;
  190. if (!are_ies_equal(old, new, WPA_IE_VENDOR_TYPE))
  191. changes |= WPA_BSS_WPAIE_CHANGED_FLAG;
  192. if (!are_ies_equal(old, new, WLAN_EID_RSN))
  193. changes |= WPA_BSS_RSNIE_CHANGED_FLAG;
  194. if (!are_ies_equal(old, new, WPS_IE_VENDOR_TYPE))
  195. changes |= WPA_BSS_WPS_CHANGED_FLAG;
  196. if (!are_ies_equal(old, new, WLAN_EID_SUPP_RATES) ||
  197. !are_ies_equal(old, new, WLAN_EID_EXT_SUPP_RATES))
  198. changes |= WPA_BSS_RATES_CHANGED_FLAG;
  199. return changes;
  200. }
  201. static void notify_bss_changes(struct wpa_supplicant *wpa_s, u32 changes,
  202. const struct wpa_bss *bss)
  203. {
  204. if (changes & WPA_BSS_FREQ_CHANGED_FLAG)
  205. wpas_notify_bss_freq_changed(wpa_s, bss->id);
  206. if (changes & WPA_BSS_SIGNAL_CHANGED_FLAG)
  207. wpas_notify_bss_signal_changed(wpa_s, bss->id);
  208. if (changes & WPA_BSS_PRIVACY_CHANGED_FLAG)
  209. wpas_notify_bss_privacy_changed(wpa_s, bss->id);
  210. if (changes & WPA_BSS_MODE_CHANGED_FLAG)
  211. wpas_notify_bss_mode_changed(wpa_s, bss->id);
  212. if (changes & WPA_BSS_WPAIE_CHANGED_FLAG)
  213. wpas_notify_bss_wpaie_changed(wpa_s, bss->id);
  214. if (changes & WPA_BSS_RSNIE_CHANGED_FLAG)
  215. wpas_notify_bss_rsnie_changed(wpa_s, bss->id);
  216. if (changes & WPA_BSS_WPS_CHANGED_FLAG)
  217. wpas_notify_bss_wps_changed(wpa_s, bss->id);
  218. if (changes & WPA_BSS_IES_CHANGED_FLAG)
  219. wpas_notify_bss_ies_changed(wpa_s, bss->id);
  220. if (changes & WPA_BSS_RATES_CHANGED_FLAG)
  221. wpas_notify_bss_rates_changed(wpa_s, bss->id);
  222. }
  223. static void wpa_bss_update(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
  224. struct wpa_scan_res *res)
  225. {
  226. u32 changes;
  227. changes = wpa_bss_compare_res(bss, res);
  228. bss->scan_miss_count = 0;
  229. bss->last_update_idx = wpa_s->bss_update_idx;
  230. wpa_bss_copy_res(bss, res);
  231. /* Move the entry to the end of the list */
  232. dl_list_del(&bss->list);
  233. if (bss->ie_len + bss->beacon_ie_len >=
  234. res->ie_len + res->beacon_ie_len) {
  235. os_memcpy(bss + 1, res + 1, res->ie_len + res->beacon_ie_len);
  236. bss->ie_len = res->ie_len;
  237. bss->beacon_ie_len = res->beacon_ie_len;
  238. } else {
  239. struct wpa_bss *nbss;
  240. struct dl_list *prev = bss->list_id.prev;
  241. dl_list_del(&bss->list_id);
  242. nbss = os_realloc(bss, sizeof(*bss) + res->ie_len +
  243. res->beacon_ie_len);
  244. if (nbss) {
  245. bss = nbss;
  246. os_memcpy(bss + 1, res + 1,
  247. res->ie_len + res->beacon_ie_len);
  248. bss->ie_len = res->ie_len;
  249. bss->beacon_ie_len = res->beacon_ie_len;
  250. }
  251. dl_list_add(prev, &bss->list_id);
  252. }
  253. dl_list_add_tail(&wpa_s->bss, &bss->list);
  254. notify_bss_changes(wpa_s, changes, bss);
  255. }
  256. static int wpa_bss_in_use(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  257. {
  258. return bss == wpa_s->current_bss ||
  259. os_memcmp(bss->bssid, wpa_s->bssid, ETH_ALEN) == 0 ||
  260. os_memcmp(bss->bssid, wpa_s->pending_bssid, ETH_ALEN) == 0;
  261. }
  262. void wpa_bss_update_start(struct wpa_supplicant *wpa_s)
  263. {
  264. wpa_s->bss_update_idx++;
  265. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Start scan result update %u",
  266. wpa_s->bss_update_idx);
  267. }
  268. void wpa_bss_update_scan_res(struct wpa_supplicant *wpa_s,
  269. struct wpa_scan_res *res)
  270. {
  271. const u8 *ssid, *p2p;
  272. struct wpa_bss *bss;
  273. ssid = wpa_scan_get_ie(res, WLAN_EID_SSID);
  274. if (ssid == NULL) {
  275. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: No SSID IE included for "
  276. MACSTR, MAC2STR(res->bssid));
  277. return;
  278. }
  279. if (ssid[1] > 32) {
  280. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Too long SSID IE included for "
  281. MACSTR, MAC2STR(res->bssid));
  282. return;
  283. }
  284. p2p = wpa_scan_get_vendor_ie(res, P2P_IE_VENDOR_TYPE);
  285. if (p2p && ssid[1] == P2P_WILDCARD_SSID_LEN &&
  286. os_memcmp(ssid + 2, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN) == 0)
  287. return; /* Skip P2P listen discovery results here */
  288. /* TODO: add option for ignoring BSSes we are not interested in
  289. * (to save memory) */
  290. bss = wpa_bss_get(wpa_s, res->bssid, ssid + 2, ssid[1]);
  291. if (bss == NULL)
  292. wpa_bss_add(wpa_s, ssid + 2, ssid[1], res);
  293. else
  294. wpa_bss_update(wpa_s, bss, res);
  295. }
  296. static int wpa_bss_included_in_scan(const struct wpa_bss *bss,
  297. const struct scan_info *info)
  298. {
  299. int found;
  300. size_t i;
  301. if (info == NULL)
  302. return 1;
  303. if (info->num_freqs) {
  304. found = 0;
  305. for (i = 0; i < info->num_freqs; i++) {
  306. if (bss->freq == info->freqs[i]) {
  307. found = 1;
  308. break;
  309. }
  310. }
  311. if (!found)
  312. return 0;
  313. }
  314. if (info->num_ssids) {
  315. found = 0;
  316. for (i = 0; i < info->num_ssids; i++) {
  317. const struct wpa_driver_scan_ssid *s = &info->ssids[i];
  318. if ((s->ssid == NULL || s->ssid_len == 0) ||
  319. (s->ssid_len == bss->ssid_len &&
  320. os_memcmp(s->ssid, bss->ssid, bss->ssid_len) ==
  321. 0)) {
  322. found = 1;
  323. break;
  324. }
  325. }
  326. if (!found)
  327. return 0;
  328. }
  329. return 1;
  330. }
  331. void wpa_bss_update_end(struct wpa_supplicant *wpa_s, struct scan_info *info,
  332. int new_scan)
  333. {
  334. struct wpa_bss *bss, *n;
  335. if (!new_scan)
  336. return; /* do not expire entries without new scan */
  337. dl_list_for_each_safe(bss, n, &wpa_s->bss, struct wpa_bss, list) {
  338. if (wpa_bss_in_use(wpa_s, bss))
  339. continue;
  340. if (!wpa_bss_included_in_scan(bss, info))
  341. continue; /* expire only BSSes that were scanned */
  342. if (bss->last_update_idx < wpa_s->bss_update_idx)
  343. bss->scan_miss_count++;
  344. if (bss->scan_miss_count >= WPA_BSS_EXPIRATION_SCAN_COUNT) {
  345. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Expire BSS %u due to "
  346. "no match in scan", bss->id);
  347. wpa_bss_remove(wpa_s, bss);
  348. }
  349. }
  350. }
  351. void wpa_bss_flush_by_age(struct wpa_supplicant *wpa_s, int age)
  352. {
  353. struct wpa_bss *bss, *n;
  354. struct os_time t;
  355. if (dl_list_empty(&wpa_s->bss))
  356. return;
  357. os_get_time(&t);
  358. t.sec -= age;
  359. dl_list_for_each_safe(bss, n, &wpa_s->bss, struct wpa_bss, list) {
  360. if (wpa_bss_in_use(wpa_s, bss))
  361. continue;
  362. if (os_time_before(&bss->last_update, &t)) {
  363. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Expire BSS %u due to "
  364. "age", bss->id);
  365. wpa_bss_remove(wpa_s, bss);
  366. } else
  367. break;
  368. }
  369. }
  370. static void wpa_bss_timeout(void *eloop_ctx, void *timeout_ctx)
  371. {
  372. struct wpa_supplicant *wpa_s = eloop_ctx;
  373. wpa_bss_flush_by_age(wpa_s, WPA_BSS_EXPIRATION_AGE);
  374. eloop_register_timeout(WPA_BSS_EXPIRATION_PERIOD, 0,
  375. wpa_bss_timeout, wpa_s, NULL);
  376. }
  377. int wpa_bss_init(struct wpa_supplicant *wpa_s)
  378. {
  379. dl_list_init(&wpa_s->bss);
  380. dl_list_init(&wpa_s->bss_id);
  381. eloop_register_timeout(WPA_BSS_EXPIRATION_PERIOD, 0,
  382. wpa_bss_timeout, wpa_s, NULL);
  383. return 0;
  384. }
  385. void wpa_bss_flush(struct wpa_supplicant *wpa_s)
  386. {
  387. struct wpa_bss *bss, *n;
  388. if (wpa_s->bss.next == NULL)
  389. return; /* BSS table not yet initialized */
  390. dl_list_for_each_safe(bss, n, &wpa_s->bss, struct wpa_bss, list) {
  391. if (wpa_bss_in_use(wpa_s, bss))
  392. continue;
  393. wpa_bss_remove(wpa_s, bss);
  394. }
  395. }
  396. void wpa_bss_deinit(struct wpa_supplicant *wpa_s)
  397. {
  398. eloop_cancel_timeout(wpa_bss_timeout, wpa_s, NULL);
  399. wpa_bss_flush(wpa_s);
  400. }
  401. struct wpa_bss * wpa_bss_get_bssid(struct wpa_supplicant *wpa_s,
  402. const u8 *bssid)
  403. {
  404. struct wpa_bss *bss;
  405. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  406. if (os_memcmp(bss->bssid, bssid, ETH_ALEN) == 0)
  407. return bss;
  408. }
  409. return NULL;
  410. }
  411. struct wpa_bss * wpa_bss_get_id(struct wpa_supplicant *wpa_s, unsigned int id)
  412. {
  413. struct wpa_bss *bss;
  414. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  415. if (bss->id == id)
  416. return bss;
  417. }
  418. return NULL;
  419. }
  420. const u8 * wpa_bss_get_ie(const struct wpa_bss *bss, u8 ie)
  421. {
  422. const u8 *end, *pos;
  423. pos = (const u8 *) (bss + 1);
  424. end = pos + bss->ie_len;
  425. while (pos + 1 < end) {
  426. if (pos + 2 + pos[1] > end)
  427. break;
  428. if (pos[0] == ie)
  429. return pos;
  430. pos += 2 + pos[1];
  431. }
  432. return NULL;
  433. }
  434. const u8 * wpa_bss_get_vendor_ie(const struct wpa_bss *bss, u32 vendor_type)
  435. {
  436. const u8 *end, *pos;
  437. pos = (const u8 *) (bss + 1);
  438. end = pos + bss->ie_len;
  439. while (pos + 1 < end) {
  440. if (pos + 2 + pos[1] > end)
  441. break;
  442. if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
  443. vendor_type == WPA_GET_BE32(&pos[2]))
  444. return pos;
  445. pos += 2 + pos[1];
  446. }
  447. return NULL;
  448. }
  449. struct wpabuf * wpa_bss_get_vendor_ie_multi(const struct wpa_bss *bss,
  450. u32 vendor_type)
  451. {
  452. struct wpabuf *buf;
  453. const u8 *end, *pos;
  454. buf = wpabuf_alloc(bss->ie_len);
  455. if (buf == NULL)
  456. return NULL;
  457. pos = (const u8 *) (bss + 1);
  458. end = pos + bss->ie_len;
  459. while (pos + 1 < end) {
  460. if (pos + 2 + pos[1] > end)
  461. break;
  462. if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
  463. vendor_type == WPA_GET_BE32(&pos[2]))
  464. wpabuf_put_data(buf, pos + 2 + 4, pos[1] - 4);
  465. pos += 2 + pos[1];
  466. }
  467. if (wpabuf_len(buf) == 0) {
  468. wpabuf_free(buf);
  469. buf = NULL;
  470. }
  471. return buf;
  472. }
  473. int wpa_bss_get_max_rate(const struct wpa_bss *bss)
  474. {
  475. int rate = 0;
  476. const u8 *ie;
  477. int i;
  478. ie = wpa_bss_get_ie(bss, WLAN_EID_SUPP_RATES);
  479. for (i = 0; ie && i < ie[1]; i++) {
  480. if ((ie[i + 2] & 0x7f) > rate)
  481. rate = ie[i + 2] & 0x7f;
  482. }
  483. ie = wpa_bss_get_ie(bss, WLAN_EID_EXT_SUPP_RATES);
  484. for (i = 0; ie && i < ie[1]; i++) {
  485. if ((ie[i + 2] & 0x7f) > rate)
  486. rate = ie[i + 2] & 0x7f;
  487. }
  488. return rate;
  489. }
  490. int wpa_bss_get_bit_rates(const struct wpa_bss *bss, u8 **rates)
  491. {
  492. const u8 *ie, *ie2;
  493. int i, j;
  494. unsigned int len;
  495. u8 *r;
  496. ie = wpa_bss_get_ie(bss, WLAN_EID_SUPP_RATES);
  497. ie2 = wpa_bss_get_ie(bss, WLAN_EID_EXT_SUPP_RATES);
  498. len = (ie ? ie[1] : 0) + (ie2 ? ie2[1] : 0);
  499. r = os_malloc(len);
  500. if (!r)
  501. return -1;
  502. for (i = 0; ie && i < ie[1]; i++)
  503. r[i] = ie[i + 2] & 0x7f;
  504. for (j = 0; ie2 && j < ie2[1]; j++)
  505. r[i + j] = ie2[j + 2] & 0x7f;
  506. *rates = r;
  507. return len;
  508. }