bss.c 14 KB

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