bss.c 15 KB

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