bss.c 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198
  1. /*
  2. * BSS table
  3. * Copyright (c) 2009-2012, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "utils/eloop.h"
  11. #include "common/ieee802_11_defs.h"
  12. #include "drivers/driver.h"
  13. #include "wpa_supplicant_i.h"
  14. #include "config.h"
  15. #include "notify.h"
  16. #include "scan.h"
  17. #include "bss.h"
  18. /**
  19. * WPA_BSS_EXPIRATION_PERIOD - Period of expiration run in seconds
  20. */
  21. #define WPA_BSS_EXPIRATION_PERIOD 10
  22. #define WPA_BSS_FREQ_CHANGED_FLAG BIT(0)
  23. #define WPA_BSS_SIGNAL_CHANGED_FLAG BIT(1)
  24. #define WPA_BSS_PRIVACY_CHANGED_FLAG BIT(2)
  25. #define WPA_BSS_MODE_CHANGED_FLAG BIT(3)
  26. #define WPA_BSS_WPAIE_CHANGED_FLAG BIT(4)
  27. #define WPA_BSS_RSNIE_CHANGED_FLAG BIT(5)
  28. #define WPA_BSS_WPS_CHANGED_FLAG BIT(6)
  29. #define WPA_BSS_RATES_CHANGED_FLAG BIT(7)
  30. #define WPA_BSS_IES_CHANGED_FLAG BIT(8)
  31. static void wpa_bss_set_hessid(struct wpa_bss *bss)
  32. {
  33. #ifdef CONFIG_INTERWORKING
  34. const u8 *ie = wpa_bss_get_ie(bss, WLAN_EID_INTERWORKING);
  35. if (ie == NULL || (ie[1] != 7 && ie[1] != 9)) {
  36. os_memset(bss->hessid, 0, ETH_ALEN);
  37. return;
  38. }
  39. if (ie[1] == 7)
  40. os_memcpy(bss->hessid, ie + 3, ETH_ALEN);
  41. else
  42. os_memcpy(bss->hessid, ie + 5, ETH_ALEN);
  43. #endif /* CONFIG_INTERWORKING */
  44. }
  45. /**
  46. * wpa_bss_anqp_alloc - Allocate ANQP data structure for a BSS entry
  47. * Returns: Allocated ANQP data structure or %NULL on failure
  48. *
  49. * The allocated ANQP data structure has its users count set to 1. It may be
  50. * shared by multiple BSS entries and each shared entry is freed with
  51. * wpa_bss_anqp_free().
  52. */
  53. struct wpa_bss_anqp * wpa_bss_anqp_alloc(void)
  54. {
  55. struct wpa_bss_anqp *anqp;
  56. anqp = os_zalloc(sizeof(*anqp));
  57. if (anqp == NULL)
  58. return NULL;
  59. anqp->users = 1;
  60. return anqp;
  61. }
  62. /**
  63. * wpa_bss_anqp_clone - Clone an ANQP data structure
  64. * @anqp: ANQP data structure from wpa_bss_anqp_alloc()
  65. * Returns: Cloned ANQP data structure or %NULL on failure
  66. */
  67. static struct wpa_bss_anqp * wpa_bss_anqp_clone(struct wpa_bss_anqp *anqp)
  68. {
  69. struct wpa_bss_anqp *n;
  70. n = os_zalloc(sizeof(*n));
  71. if (n == NULL)
  72. return NULL;
  73. #define ANQP_DUP(f) if (anqp->f) n->f = wpabuf_dup(anqp->f)
  74. #ifdef CONFIG_INTERWORKING
  75. ANQP_DUP(venue_name);
  76. ANQP_DUP(network_auth_type);
  77. ANQP_DUP(roaming_consortium);
  78. ANQP_DUP(ip_addr_type_availability);
  79. ANQP_DUP(nai_realm);
  80. ANQP_DUP(anqp_3gpp);
  81. ANQP_DUP(domain_name);
  82. #endif /* CONFIG_INTERWORKING */
  83. #ifdef CONFIG_HS20
  84. ANQP_DUP(hs20_operator_friendly_name);
  85. ANQP_DUP(hs20_wan_metrics);
  86. ANQP_DUP(hs20_connection_capability);
  87. ANQP_DUP(hs20_operating_class);
  88. #endif /* CONFIG_HS20 */
  89. #undef ANQP_DUP
  90. return n;
  91. }
  92. /**
  93. * wpa_bss_anqp_unshare_alloc - Unshare ANQP data (if shared) in a BSS entry
  94. * @bss: BSS entry
  95. * Returns: 0 on success, -1 on failure
  96. *
  97. * This function ensures the specific BSS entry has an ANQP data structure that
  98. * is not shared with any other BSS entry.
  99. */
  100. int wpa_bss_anqp_unshare_alloc(struct wpa_bss *bss)
  101. {
  102. struct wpa_bss_anqp *anqp;
  103. if (bss->anqp && bss->anqp->users > 1) {
  104. /* allocated, but shared - clone an unshared copy */
  105. anqp = wpa_bss_anqp_clone(bss->anqp);
  106. if (anqp == NULL)
  107. return -1;
  108. anqp->users = 1;
  109. bss->anqp->users--;
  110. bss->anqp = anqp;
  111. return 0;
  112. }
  113. if (bss->anqp)
  114. return 0; /* already allocated and not shared */
  115. /* not allocated - allocate a new storage area */
  116. bss->anqp = wpa_bss_anqp_alloc();
  117. return bss->anqp ? 0 : -1;
  118. }
  119. /**
  120. * wpa_bss_anqp_free - Free an ANQP data structure
  121. * @anqp: ANQP data structure from wpa_bss_anqp_alloc() or wpa_bss_anqp_clone()
  122. */
  123. static void wpa_bss_anqp_free(struct wpa_bss_anqp *anqp)
  124. {
  125. if (anqp == NULL)
  126. return;
  127. anqp->users--;
  128. if (anqp->users > 0) {
  129. /* Another BSS entry holds a pointer to this ANQP info */
  130. return;
  131. }
  132. #ifdef CONFIG_INTERWORKING
  133. wpabuf_free(anqp->venue_name);
  134. wpabuf_free(anqp->network_auth_type);
  135. wpabuf_free(anqp->roaming_consortium);
  136. wpabuf_free(anqp->ip_addr_type_availability);
  137. wpabuf_free(anqp->nai_realm);
  138. wpabuf_free(anqp->anqp_3gpp);
  139. wpabuf_free(anqp->domain_name);
  140. #endif /* CONFIG_INTERWORKING */
  141. #ifdef CONFIG_HS20
  142. wpabuf_free(anqp->hs20_operator_friendly_name);
  143. wpabuf_free(anqp->hs20_wan_metrics);
  144. wpabuf_free(anqp->hs20_connection_capability);
  145. wpabuf_free(anqp->hs20_operating_class);
  146. #endif /* CONFIG_HS20 */
  147. os_free(anqp);
  148. }
  149. static void wpa_bss_remove(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
  150. const char *reason)
  151. {
  152. if (wpa_s->last_scan_res) {
  153. unsigned int i;
  154. for (i = 0; i < wpa_s->last_scan_res_used; i++) {
  155. if (wpa_s->last_scan_res[i] == bss) {
  156. os_memmove(&wpa_s->last_scan_res[i],
  157. &wpa_s->last_scan_res[i + 1],
  158. (wpa_s->last_scan_res_used - i - 1)
  159. * sizeof(struct wpa_bss *));
  160. wpa_s->last_scan_res_used--;
  161. break;
  162. }
  163. }
  164. }
  165. dl_list_del(&bss->list);
  166. dl_list_del(&bss->list_id);
  167. wpa_s->num_bss--;
  168. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Remove id %u BSSID " MACSTR
  169. " SSID '%s' due to %s", bss->id, MAC2STR(bss->bssid),
  170. wpa_ssid_txt(bss->ssid, bss->ssid_len), reason);
  171. wpas_notify_bss_removed(wpa_s, bss->bssid, bss->id);
  172. wpa_bss_anqp_free(bss->anqp);
  173. os_free(bss);
  174. }
  175. /**
  176. * wpa_bss_get - Fetch a BSS table entry based on BSSID and SSID
  177. * @wpa_s: Pointer to wpa_supplicant data
  178. * @bssid: BSSID
  179. * @ssid: SSID
  180. * @ssid_len: Length of @ssid
  181. * Returns: Pointer to the BSS entry or %NULL if not found
  182. */
  183. struct wpa_bss * wpa_bss_get(struct wpa_supplicant *wpa_s, const u8 *bssid,
  184. const u8 *ssid, size_t ssid_len)
  185. {
  186. struct wpa_bss *bss;
  187. if (!wpa_supplicant_filter_bssid_match(wpa_s, bssid))
  188. return NULL;
  189. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  190. if (os_memcmp(bss->bssid, bssid, ETH_ALEN) == 0 &&
  191. bss->ssid_len == ssid_len &&
  192. os_memcmp(bss->ssid, ssid, ssid_len) == 0)
  193. return bss;
  194. }
  195. return NULL;
  196. }
  197. static void calculate_update_time(const struct os_reltime *fetch_time,
  198. unsigned int age_ms,
  199. struct os_reltime *update_time)
  200. {
  201. os_time_t usec;
  202. update_time->sec = fetch_time->sec;
  203. update_time->usec = fetch_time->usec;
  204. update_time->sec -= age_ms / 1000;
  205. usec = (age_ms % 1000) * 1000;
  206. if (update_time->usec < usec) {
  207. update_time->sec--;
  208. update_time->usec += 1000000;
  209. }
  210. update_time->usec -= usec;
  211. }
  212. static void wpa_bss_copy_res(struct wpa_bss *dst, struct wpa_scan_res *src,
  213. struct os_reltime *fetch_time)
  214. {
  215. dst->flags = src->flags;
  216. os_memcpy(dst->bssid, src->bssid, ETH_ALEN);
  217. dst->freq = src->freq;
  218. dst->beacon_int = src->beacon_int;
  219. dst->caps = src->caps;
  220. dst->qual = src->qual;
  221. dst->noise = src->noise;
  222. dst->level = src->level;
  223. dst->tsf = src->tsf;
  224. calculate_update_time(fetch_time, src->age, &dst->last_update);
  225. }
  226. static int wpa_bss_known(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  227. {
  228. struct wpa_ssid *ssid;
  229. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  230. if (ssid->ssid == NULL || ssid->ssid_len == 0)
  231. continue;
  232. if (ssid->ssid_len == bss->ssid_len &&
  233. os_memcmp(ssid->ssid, bss->ssid, ssid->ssid_len) == 0)
  234. return 1;
  235. }
  236. return 0;
  237. }
  238. static int wpa_bss_in_use(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  239. {
  240. return bss == wpa_s->current_bss ||
  241. os_memcmp(bss->bssid, wpa_s->bssid, ETH_ALEN) == 0 ||
  242. os_memcmp(bss->bssid, wpa_s->pending_bssid, ETH_ALEN) == 0;
  243. }
  244. static int wpa_bss_remove_oldest_unknown(struct wpa_supplicant *wpa_s)
  245. {
  246. struct wpa_bss *bss;
  247. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  248. if (!wpa_bss_known(wpa_s, bss)) {
  249. wpa_bss_remove(wpa_s, bss, __func__);
  250. return 0;
  251. }
  252. }
  253. return -1;
  254. }
  255. static int wpa_bss_remove_oldest(struct wpa_supplicant *wpa_s)
  256. {
  257. struct wpa_bss *bss;
  258. /*
  259. * Remove the oldest entry that does not match with any configured
  260. * network.
  261. */
  262. if (wpa_bss_remove_oldest_unknown(wpa_s) == 0)
  263. return 0;
  264. /*
  265. * Remove the oldest entry that isn't currently in use.
  266. */
  267. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  268. if (!wpa_bss_in_use(wpa_s, bss)) {
  269. wpa_bss_remove(wpa_s, bss, __func__);
  270. return 0;
  271. }
  272. }
  273. return -1;
  274. }
  275. static struct wpa_bss * wpa_bss_add(struct wpa_supplicant *wpa_s,
  276. const u8 *ssid, size_t ssid_len,
  277. struct wpa_scan_res *res,
  278. struct os_reltime *fetch_time)
  279. {
  280. struct wpa_bss *bss;
  281. bss = os_zalloc(sizeof(*bss) + res->ie_len + res->beacon_ie_len);
  282. if (bss == NULL)
  283. return NULL;
  284. bss->id = wpa_s->bss_next_id++;
  285. bss->last_update_idx = wpa_s->bss_update_idx;
  286. wpa_bss_copy_res(bss, res, fetch_time);
  287. os_memcpy(bss->ssid, ssid, ssid_len);
  288. bss->ssid_len = ssid_len;
  289. bss->ie_len = res->ie_len;
  290. bss->beacon_ie_len = res->beacon_ie_len;
  291. os_memcpy(bss + 1, res + 1, res->ie_len + res->beacon_ie_len);
  292. wpa_bss_set_hessid(bss);
  293. if (wpa_s->num_bss + 1 > wpa_s->conf->bss_max_count &&
  294. wpa_bss_remove_oldest(wpa_s) != 0) {
  295. wpa_printf(MSG_ERROR, "Increasing the MAX BSS count to %d "
  296. "because all BSSes are in use. We should normally "
  297. "not get here!", (int) wpa_s->num_bss + 1);
  298. wpa_s->conf->bss_max_count = wpa_s->num_bss + 1;
  299. }
  300. dl_list_add_tail(&wpa_s->bss, &bss->list);
  301. dl_list_add_tail(&wpa_s->bss_id, &bss->list_id);
  302. wpa_s->num_bss++;
  303. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Add new id %u BSSID " MACSTR
  304. " SSID '%s'",
  305. bss->id, MAC2STR(bss->bssid), wpa_ssid_txt(ssid, ssid_len));
  306. wpas_notify_bss_added(wpa_s, bss->bssid, bss->id);
  307. return bss;
  308. }
  309. static int are_ies_equal(const struct wpa_bss *old,
  310. const struct wpa_scan_res *new, u32 ie)
  311. {
  312. const u8 *old_ie, *new_ie;
  313. struct wpabuf *old_ie_buff = NULL;
  314. struct wpabuf *new_ie_buff = NULL;
  315. int new_ie_len, old_ie_len, ret, is_multi;
  316. switch (ie) {
  317. case WPA_IE_VENDOR_TYPE:
  318. old_ie = wpa_bss_get_vendor_ie(old, ie);
  319. new_ie = wpa_scan_get_vendor_ie(new, ie);
  320. is_multi = 0;
  321. break;
  322. case WPS_IE_VENDOR_TYPE:
  323. old_ie_buff = wpa_bss_get_vendor_ie_multi(old, ie);
  324. new_ie_buff = wpa_scan_get_vendor_ie_multi(new, ie);
  325. is_multi = 1;
  326. break;
  327. case WLAN_EID_RSN:
  328. case WLAN_EID_SUPP_RATES:
  329. case WLAN_EID_EXT_SUPP_RATES:
  330. old_ie = wpa_bss_get_ie(old, ie);
  331. new_ie = wpa_scan_get_ie(new, ie);
  332. is_multi = 0;
  333. break;
  334. default:
  335. wpa_printf(MSG_DEBUG, "bss: %s: cannot compare IEs", __func__);
  336. return 0;
  337. }
  338. if (is_multi) {
  339. /* in case of multiple IEs stored in buffer */
  340. old_ie = old_ie_buff ? wpabuf_head_u8(old_ie_buff) : NULL;
  341. new_ie = new_ie_buff ? wpabuf_head_u8(new_ie_buff) : NULL;
  342. old_ie_len = old_ie_buff ? wpabuf_len(old_ie_buff) : 0;
  343. new_ie_len = new_ie_buff ? wpabuf_len(new_ie_buff) : 0;
  344. } else {
  345. /* in case of single IE */
  346. old_ie_len = old_ie ? old_ie[1] + 2 : 0;
  347. new_ie_len = new_ie ? new_ie[1] + 2 : 0;
  348. }
  349. if (!old_ie || !new_ie)
  350. ret = !old_ie && !new_ie;
  351. else
  352. ret = (old_ie_len == new_ie_len &&
  353. os_memcmp(old_ie, new_ie, old_ie_len) == 0);
  354. wpabuf_free(old_ie_buff);
  355. wpabuf_free(new_ie_buff);
  356. return ret;
  357. }
  358. static u32 wpa_bss_compare_res(const struct wpa_bss *old,
  359. const struct wpa_scan_res *new)
  360. {
  361. u32 changes = 0;
  362. int caps_diff = old->caps ^ new->caps;
  363. if (old->freq != new->freq)
  364. changes |= WPA_BSS_FREQ_CHANGED_FLAG;
  365. if (old->level != new->level)
  366. changes |= WPA_BSS_SIGNAL_CHANGED_FLAG;
  367. if (caps_diff & IEEE80211_CAP_PRIVACY)
  368. changes |= WPA_BSS_PRIVACY_CHANGED_FLAG;
  369. if (caps_diff & IEEE80211_CAP_IBSS)
  370. changes |= WPA_BSS_MODE_CHANGED_FLAG;
  371. if (old->ie_len == new->ie_len &&
  372. os_memcmp(old + 1, new + 1, old->ie_len) == 0)
  373. return changes;
  374. changes |= WPA_BSS_IES_CHANGED_FLAG;
  375. if (!are_ies_equal(old, new, WPA_IE_VENDOR_TYPE))
  376. changes |= WPA_BSS_WPAIE_CHANGED_FLAG;
  377. if (!are_ies_equal(old, new, WLAN_EID_RSN))
  378. changes |= WPA_BSS_RSNIE_CHANGED_FLAG;
  379. if (!are_ies_equal(old, new, WPS_IE_VENDOR_TYPE))
  380. changes |= WPA_BSS_WPS_CHANGED_FLAG;
  381. if (!are_ies_equal(old, new, WLAN_EID_SUPP_RATES) ||
  382. !are_ies_equal(old, new, WLAN_EID_EXT_SUPP_RATES))
  383. changes |= WPA_BSS_RATES_CHANGED_FLAG;
  384. return changes;
  385. }
  386. static void notify_bss_changes(struct wpa_supplicant *wpa_s, u32 changes,
  387. const struct wpa_bss *bss)
  388. {
  389. if (changes & WPA_BSS_FREQ_CHANGED_FLAG)
  390. wpas_notify_bss_freq_changed(wpa_s, bss->id);
  391. if (changes & WPA_BSS_SIGNAL_CHANGED_FLAG)
  392. wpas_notify_bss_signal_changed(wpa_s, bss->id);
  393. if (changes & WPA_BSS_PRIVACY_CHANGED_FLAG)
  394. wpas_notify_bss_privacy_changed(wpa_s, bss->id);
  395. if (changes & WPA_BSS_MODE_CHANGED_FLAG)
  396. wpas_notify_bss_mode_changed(wpa_s, bss->id);
  397. if (changes & WPA_BSS_WPAIE_CHANGED_FLAG)
  398. wpas_notify_bss_wpaie_changed(wpa_s, bss->id);
  399. if (changes & WPA_BSS_RSNIE_CHANGED_FLAG)
  400. wpas_notify_bss_rsnie_changed(wpa_s, bss->id);
  401. if (changes & WPA_BSS_WPS_CHANGED_FLAG)
  402. wpas_notify_bss_wps_changed(wpa_s, bss->id);
  403. if (changes & WPA_BSS_IES_CHANGED_FLAG)
  404. wpas_notify_bss_ies_changed(wpa_s, bss->id);
  405. if (changes & WPA_BSS_RATES_CHANGED_FLAG)
  406. wpas_notify_bss_rates_changed(wpa_s, bss->id);
  407. }
  408. static struct wpa_bss *
  409. wpa_bss_update(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
  410. struct wpa_scan_res *res, struct os_reltime *fetch_time)
  411. {
  412. u32 changes;
  413. changes = wpa_bss_compare_res(bss, res);
  414. bss->scan_miss_count = 0;
  415. bss->last_update_idx = wpa_s->bss_update_idx;
  416. wpa_bss_copy_res(bss, res, fetch_time);
  417. /* Move the entry to the end of the list */
  418. dl_list_del(&bss->list);
  419. #ifdef CONFIG_P2P
  420. if (wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE) &&
  421. !wpa_scan_get_vendor_ie(res, P2P_IE_VENDOR_TYPE)) {
  422. /*
  423. * This can happen when non-P2P station interface runs a scan
  424. * without P2P IE in the Probe Request frame. P2P GO would reply
  425. * to that with a Probe Response that does not include P2P IE.
  426. * Do not update the IEs in this BSS entry to avoid such loss of
  427. * information that may be needed for P2P operations to
  428. * determine group information.
  429. */
  430. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Do not update scan IEs for "
  431. MACSTR " since that would remove P2P IE information",
  432. MAC2STR(bss->bssid));
  433. } else
  434. #endif /* CONFIG_P2P */
  435. if (bss->ie_len + bss->beacon_ie_len >=
  436. res->ie_len + res->beacon_ie_len) {
  437. os_memcpy(bss + 1, res + 1, res->ie_len + res->beacon_ie_len);
  438. bss->ie_len = res->ie_len;
  439. bss->beacon_ie_len = res->beacon_ie_len;
  440. } else {
  441. struct wpa_bss *nbss;
  442. struct dl_list *prev = bss->list_id.prev;
  443. dl_list_del(&bss->list_id);
  444. nbss = os_realloc(bss, sizeof(*bss) + res->ie_len +
  445. res->beacon_ie_len);
  446. if (nbss) {
  447. unsigned int i;
  448. for (i = 0; i < wpa_s->last_scan_res_used; i++) {
  449. if (wpa_s->last_scan_res[i] == bss) {
  450. wpa_s->last_scan_res[i] = nbss;
  451. break;
  452. }
  453. }
  454. if (wpa_s->current_bss == bss)
  455. wpa_s->current_bss = nbss;
  456. bss = nbss;
  457. os_memcpy(bss + 1, res + 1,
  458. res->ie_len + res->beacon_ie_len);
  459. bss->ie_len = res->ie_len;
  460. bss->beacon_ie_len = res->beacon_ie_len;
  461. }
  462. dl_list_add(prev, &bss->list_id);
  463. }
  464. if (changes & WPA_BSS_IES_CHANGED_FLAG)
  465. wpa_bss_set_hessid(bss);
  466. dl_list_add_tail(&wpa_s->bss, &bss->list);
  467. notify_bss_changes(wpa_s, changes, bss);
  468. return bss;
  469. }
  470. /**
  471. * wpa_bss_update_start - Start a BSS table update from scan results
  472. * @wpa_s: Pointer to wpa_supplicant data
  473. *
  474. * This function is called at the start of each BSS table update round for new
  475. * scan results. The actual scan result entries are indicated with calls to
  476. * wpa_bss_update_scan_res() and the update round is finished with a call to
  477. * wpa_bss_update_end().
  478. */
  479. void wpa_bss_update_start(struct wpa_supplicant *wpa_s)
  480. {
  481. wpa_s->bss_update_idx++;
  482. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Start scan result update %u",
  483. wpa_s->bss_update_idx);
  484. wpa_s->last_scan_res_used = 0;
  485. }
  486. /**
  487. * wpa_bss_update_scan_res - Update a BSS table entry based on a scan result
  488. * @wpa_s: Pointer to wpa_supplicant data
  489. * @res: Scan result
  490. * @fetch_time: Time when the result was fetched from the driver
  491. *
  492. * This function updates a BSS table entry (or adds one) based on a scan result.
  493. * This is called separately for each scan result between the calls to
  494. * wpa_bss_update_start() and wpa_bss_update_end().
  495. */
  496. void wpa_bss_update_scan_res(struct wpa_supplicant *wpa_s,
  497. struct wpa_scan_res *res,
  498. struct os_reltime *fetch_time)
  499. {
  500. const u8 *ssid, *p2p;
  501. struct wpa_bss *bss;
  502. if (wpa_s->conf->ignore_old_scan_res) {
  503. struct os_reltime update;
  504. calculate_update_time(fetch_time, res->age, &update);
  505. if (os_reltime_before(&update, &wpa_s->scan_trigger_time)) {
  506. struct os_reltime age;
  507. os_reltime_sub(&wpa_s->scan_trigger_time, &update,
  508. &age);
  509. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Ignore driver BSS "
  510. "table entry that is %u.%06u seconds older "
  511. "than our scan trigger",
  512. (unsigned int) age.sec,
  513. (unsigned int) age.usec);
  514. return;
  515. }
  516. }
  517. ssid = wpa_scan_get_ie(res, WLAN_EID_SSID);
  518. if (ssid == NULL) {
  519. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: No SSID IE included for "
  520. MACSTR, MAC2STR(res->bssid));
  521. return;
  522. }
  523. if (ssid[1] > 32) {
  524. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Too long SSID IE included for "
  525. MACSTR, MAC2STR(res->bssid));
  526. return;
  527. }
  528. p2p = wpa_scan_get_vendor_ie(res, P2P_IE_VENDOR_TYPE);
  529. #ifdef CONFIG_P2P
  530. if (p2p == NULL &&
  531. wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE) {
  532. /*
  533. * If it's a P2P specific interface, then don't update
  534. * the scan result without a P2P IE.
  535. */
  536. wpa_printf(MSG_DEBUG, "BSS: No P2P IE - skipping BSS " MACSTR
  537. " update for P2P interface", MAC2STR(res->bssid));
  538. return;
  539. }
  540. #endif /* CONFIG_P2P */
  541. if (p2p && ssid[1] == P2P_WILDCARD_SSID_LEN &&
  542. os_memcmp(ssid + 2, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN) == 0)
  543. return; /* Skip P2P listen discovery results here */
  544. /* TODO: add option for ignoring BSSes we are not interested in
  545. * (to save memory) */
  546. bss = wpa_bss_get(wpa_s, res->bssid, ssid + 2, ssid[1]);
  547. if (bss == NULL)
  548. bss = wpa_bss_add(wpa_s, ssid + 2, ssid[1], res, fetch_time);
  549. else {
  550. bss = wpa_bss_update(wpa_s, bss, res, fetch_time);
  551. if (wpa_s->last_scan_res) {
  552. unsigned int i;
  553. for (i = 0; i < wpa_s->last_scan_res_used; i++) {
  554. if (bss == wpa_s->last_scan_res[i]) {
  555. /* Already in the list */
  556. return;
  557. }
  558. }
  559. }
  560. }
  561. if (bss == NULL)
  562. return;
  563. if (wpa_s->last_scan_res_used >= wpa_s->last_scan_res_size) {
  564. struct wpa_bss **n;
  565. unsigned int siz;
  566. if (wpa_s->last_scan_res_size == 0)
  567. siz = 32;
  568. else
  569. siz = wpa_s->last_scan_res_size * 2;
  570. n = os_realloc_array(wpa_s->last_scan_res, siz,
  571. sizeof(struct wpa_bss *));
  572. if (n == NULL)
  573. return;
  574. wpa_s->last_scan_res = n;
  575. wpa_s->last_scan_res_size = siz;
  576. }
  577. wpa_s->last_scan_res[wpa_s->last_scan_res_used++] = bss;
  578. }
  579. static int wpa_bss_included_in_scan(const struct wpa_bss *bss,
  580. const struct scan_info *info)
  581. {
  582. int found;
  583. size_t i;
  584. if (info == NULL)
  585. return 1;
  586. if (info->num_freqs) {
  587. found = 0;
  588. for (i = 0; i < info->num_freqs; i++) {
  589. if (bss->freq == info->freqs[i]) {
  590. found = 1;
  591. break;
  592. }
  593. }
  594. if (!found)
  595. return 0;
  596. }
  597. if (info->num_ssids) {
  598. found = 0;
  599. for (i = 0; i < info->num_ssids; i++) {
  600. const struct wpa_driver_scan_ssid *s = &info->ssids[i];
  601. if ((s->ssid == NULL || s->ssid_len == 0) ||
  602. (s->ssid_len == bss->ssid_len &&
  603. os_memcmp(s->ssid, bss->ssid, bss->ssid_len) ==
  604. 0)) {
  605. found = 1;
  606. break;
  607. }
  608. }
  609. if (!found)
  610. return 0;
  611. }
  612. return 1;
  613. }
  614. /**
  615. * wpa_bss_update_end - End a BSS table update from scan results
  616. * @wpa_s: Pointer to wpa_supplicant data
  617. * @info: Information about scan parameters
  618. * @new_scan: Whether this update round was based on a new scan
  619. *
  620. * This function is called at the end of each BSS table update round for new
  621. * scan results. The start of the update was indicated with a call to
  622. * wpa_bss_update_start().
  623. */
  624. void wpa_bss_update_end(struct wpa_supplicant *wpa_s, struct scan_info *info,
  625. int new_scan)
  626. {
  627. struct wpa_bss *bss, *n;
  628. os_get_reltime(&wpa_s->last_scan);
  629. if (!new_scan)
  630. return; /* do not expire entries without new scan */
  631. dl_list_for_each_safe(bss, n, &wpa_s->bss, struct wpa_bss, list) {
  632. if (wpa_bss_in_use(wpa_s, bss))
  633. continue;
  634. if (!wpa_bss_included_in_scan(bss, info))
  635. continue; /* expire only BSSes that were scanned */
  636. if (bss->last_update_idx < wpa_s->bss_update_idx)
  637. bss->scan_miss_count++;
  638. if (bss->scan_miss_count >=
  639. wpa_s->conf->bss_expiration_scan_count) {
  640. wpa_bss_remove(wpa_s, bss, "no match in scan");
  641. }
  642. }
  643. wpa_printf(MSG_DEBUG, "BSS: last_scan_res_used=%u/%u",
  644. wpa_s->last_scan_res_used, wpa_s->last_scan_res_size);
  645. }
  646. /**
  647. * wpa_bss_flush_by_age - Flush old BSS entries
  648. * @wpa_s: Pointer to wpa_supplicant data
  649. * @age: Maximum entry age in seconds
  650. *
  651. * Remove BSS entries that have not been updated during the last @age seconds.
  652. */
  653. void wpa_bss_flush_by_age(struct wpa_supplicant *wpa_s, int age)
  654. {
  655. struct wpa_bss *bss, *n;
  656. struct os_reltime t;
  657. if (dl_list_empty(&wpa_s->bss))
  658. return;
  659. os_get_reltime(&t);
  660. t.sec -= age;
  661. dl_list_for_each_safe(bss, n, &wpa_s->bss, struct wpa_bss, list) {
  662. if (wpa_bss_in_use(wpa_s, bss))
  663. continue;
  664. if (os_reltime_before(&bss->last_update, &t)) {
  665. wpa_bss_remove(wpa_s, bss, __func__);
  666. } else
  667. break;
  668. }
  669. }
  670. static void wpa_bss_timeout(void *eloop_ctx, void *timeout_ctx)
  671. {
  672. struct wpa_supplicant *wpa_s = eloop_ctx;
  673. wpa_bss_flush_by_age(wpa_s, wpa_s->conf->bss_expiration_age);
  674. eloop_register_timeout(WPA_BSS_EXPIRATION_PERIOD, 0,
  675. wpa_bss_timeout, wpa_s, NULL);
  676. }
  677. /**
  678. * wpa_bss_init - Initialize BSS table
  679. * @wpa_s: Pointer to wpa_supplicant data
  680. * Returns: 0 on success, -1 on failure
  681. *
  682. * This prepares BSS table lists and timer for periodic updates. The BSS table
  683. * is deinitialized with wpa_bss_deinit() once not needed anymore.
  684. */
  685. int wpa_bss_init(struct wpa_supplicant *wpa_s)
  686. {
  687. dl_list_init(&wpa_s->bss);
  688. dl_list_init(&wpa_s->bss_id);
  689. eloop_register_timeout(WPA_BSS_EXPIRATION_PERIOD, 0,
  690. wpa_bss_timeout, wpa_s, NULL);
  691. return 0;
  692. }
  693. /**
  694. * wpa_bss_flush - Flush all unused BSS entries
  695. * @wpa_s: Pointer to wpa_supplicant data
  696. */
  697. void wpa_bss_flush(struct wpa_supplicant *wpa_s)
  698. {
  699. struct wpa_bss *bss, *n;
  700. wpa_s->clear_driver_scan_cache = 1;
  701. if (wpa_s->bss.next == NULL)
  702. return; /* BSS table not yet initialized */
  703. dl_list_for_each_safe(bss, n, &wpa_s->bss, struct wpa_bss, list) {
  704. if (wpa_bss_in_use(wpa_s, bss))
  705. continue;
  706. wpa_bss_remove(wpa_s, bss, __func__);
  707. }
  708. }
  709. /**
  710. * wpa_bss_deinit - Deinitialize BSS table
  711. * @wpa_s: Pointer to wpa_supplicant data
  712. */
  713. void wpa_bss_deinit(struct wpa_supplicant *wpa_s)
  714. {
  715. eloop_cancel_timeout(wpa_bss_timeout, wpa_s, NULL);
  716. wpa_bss_flush(wpa_s);
  717. }
  718. /**
  719. * wpa_bss_get_bssid - Fetch a BSS table entry based on BSSID
  720. * @wpa_s: Pointer to wpa_supplicant data
  721. * @bssid: BSSID
  722. * Returns: Pointer to the BSS entry or %NULL if not found
  723. */
  724. struct wpa_bss * wpa_bss_get_bssid(struct wpa_supplicant *wpa_s,
  725. const u8 *bssid)
  726. {
  727. struct wpa_bss *bss;
  728. if (!wpa_supplicant_filter_bssid_match(wpa_s, bssid))
  729. return NULL;
  730. dl_list_for_each_reverse(bss, &wpa_s->bss, struct wpa_bss, list) {
  731. if (os_memcmp(bss->bssid, bssid, ETH_ALEN) == 0)
  732. return bss;
  733. }
  734. return NULL;
  735. }
  736. /**
  737. * wpa_bss_get_bssid_latest - Fetch the latest BSS table entry based on BSSID
  738. * @wpa_s: Pointer to wpa_supplicant data
  739. * @bssid: BSSID
  740. * Returns: Pointer to the BSS entry or %NULL if not found
  741. *
  742. * This function is like wpa_bss_get_bssid(), but full BSS table is iterated to
  743. * find the entry that has the most recent update. This can help in finding the
  744. * correct entry in cases where the SSID of the AP may have changed recently
  745. * (e.g., in WPS reconfiguration cases).
  746. */
  747. struct wpa_bss * wpa_bss_get_bssid_latest(struct wpa_supplicant *wpa_s,
  748. const u8 *bssid)
  749. {
  750. struct wpa_bss *bss, *found = NULL;
  751. if (!wpa_supplicant_filter_bssid_match(wpa_s, bssid))
  752. return NULL;
  753. dl_list_for_each_reverse(bss, &wpa_s->bss, struct wpa_bss, list) {
  754. if (os_memcmp(bss->bssid, bssid, ETH_ALEN) != 0)
  755. continue;
  756. if (found == NULL ||
  757. os_reltime_before(&found->last_update, &bss->last_update))
  758. found = bss;
  759. }
  760. return found;
  761. }
  762. #ifdef CONFIG_P2P
  763. /**
  764. * wpa_bss_get_p2p_dev_addr - Fetch a BSS table entry based on P2P Device Addr
  765. * @wpa_s: Pointer to wpa_supplicant data
  766. * @dev_addr: P2P Device Address of the GO
  767. * Returns: Pointer to the BSS entry or %NULL if not found
  768. */
  769. struct wpa_bss * wpa_bss_get_p2p_dev_addr(struct wpa_supplicant *wpa_s,
  770. const u8 *dev_addr)
  771. {
  772. struct wpa_bss *bss;
  773. dl_list_for_each_reverse(bss, &wpa_s->bss, struct wpa_bss, list) {
  774. u8 addr[ETH_ALEN];
  775. if (p2p_parse_dev_addr((const u8 *) (bss + 1), bss->ie_len,
  776. addr) == 0 &&
  777. os_memcmp(addr, dev_addr, ETH_ALEN) == 0)
  778. return bss;
  779. }
  780. return NULL;
  781. }
  782. #endif /* CONFIG_P2P */
  783. /**
  784. * wpa_bss_get_id - Fetch a BSS table entry based on identifier
  785. * @wpa_s: Pointer to wpa_supplicant data
  786. * @id: Unique identifier (struct wpa_bss::id) assigned for the entry
  787. * Returns: Pointer to the BSS entry or %NULL if not found
  788. */
  789. struct wpa_bss * wpa_bss_get_id(struct wpa_supplicant *wpa_s, unsigned int id)
  790. {
  791. struct wpa_bss *bss;
  792. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  793. if (bss->id == id)
  794. return bss;
  795. }
  796. return NULL;
  797. }
  798. /**
  799. * wpa_bss_get_id_range - Fetch a BSS table entry based on identifier range
  800. * @wpa_s: Pointer to wpa_supplicant data
  801. * @idf: Smallest allowed identifier assigned for the entry
  802. * @idf: Largest allowed identifier assigned for the entry
  803. * Returns: Pointer to the BSS entry or %NULL if not found
  804. *
  805. * This function is similar to wpa_bss_get_id() but allows a BSS entry with the
  806. * smallest id value to be fetched within the specified range without the
  807. * caller having to know the exact id.
  808. */
  809. struct wpa_bss * wpa_bss_get_id_range(struct wpa_supplicant *wpa_s,
  810. unsigned int idf, unsigned int idl)
  811. {
  812. struct wpa_bss *bss;
  813. dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
  814. if (bss->id >= idf && bss->id <= idl)
  815. return bss;
  816. }
  817. return NULL;
  818. }
  819. /**
  820. * wpa_bss_get_ie - Fetch a specified information element from a BSS entry
  821. * @bss: BSS table entry
  822. * @ie: Information element identitifier (WLAN_EID_*)
  823. * Returns: Pointer to the information element (id field) or %NULL if not found
  824. *
  825. * This function returns the first matching information element in the BSS
  826. * entry.
  827. */
  828. const u8 * wpa_bss_get_ie(const struct wpa_bss *bss, u8 ie)
  829. {
  830. const u8 *end, *pos;
  831. pos = (const u8 *) (bss + 1);
  832. end = pos + bss->ie_len;
  833. while (pos + 1 < end) {
  834. if (pos + 2 + pos[1] > end)
  835. break;
  836. if (pos[0] == ie)
  837. return pos;
  838. pos += 2 + pos[1];
  839. }
  840. return NULL;
  841. }
  842. /**
  843. * wpa_bss_get_vendor_ie - Fetch a vendor information element from a BSS entry
  844. * @bss: BSS table entry
  845. * @vendor_type: Vendor type (four octets starting the IE payload)
  846. * Returns: Pointer to the information element (id field) or %NULL if not found
  847. *
  848. * This function returns the first matching information element in the BSS
  849. * entry.
  850. */
  851. const u8 * wpa_bss_get_vendor_ie(const struct wpa_bss *bss, u32 vendor_type)
  852. {
  853. const u8 *end, *pos;
  854. pos = (const u8 *) (bss + 1);
  855. end = pos + bss->ie_len;
  856. while (pos + 1 < end) {
  857. if (pos + 2 + pos[1] > end)
  858. break;
  859. if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
  860. vendor_type == WPA_GET_BE32(&pos[2]))
  861. return pos;
  862. pos += 2 + pos[1];
  863. }
  864. return NULL;
  865. }
  866. /**
  867. * wpa_bss_get_vendor_ie_beacon - Fetch a vendor information from a BSS entry
  868. * @bss: BSS table entry
  869. * @vendor_type: Vendor type (four octets starting the IE payload)
  870. * Returns: Pointer to the information element (id field) or %NULL if not found
  871. *
  872. * This function returns the first matching information element in the BSS
  873. * entry.
  874. *
  875. * This function is like wpa_bss_get_vendor_ie(), but uses IE buffer only
  876. * from Beacon frames instead of either Beacon or Probe Response frames.
  877. */
  878. const u8 * wpa_bss_get_vendor_ie_beacon(const struct wpa_bss *bss,
  879. u32 vendor_type)
  880. {
  881. const u8 *end, *pos;
  882. if (bss->beacon_ie_len == 0)
  883. return NULL;
  884. pos = (const u8 *) (bss + 1);
  885. pos += bss->ie_len;
  886. end = pos + bss->beacon_ie_len;
  887. while (pos + 1 < end) {
  888. if (pos + 2 + pos[1] > end)
  889. break;
  890. if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
  891. vendor_type == WPA_GET_BE32(&pos[2]))
  892. return pos;
  893. pos += 2 + pos[1];
  894. }
  895. return NULL;
  896. }
  897. /**
  898. * wpa_bss_get_vendor_ie_multi - Fetch vendor IE data from a BSS entry
  899. * @bss: BSS table entry
  900. * @vendor_type: Vendor type (four octets starting the IE payload)
  901. * Returns: Pointer to the information element payload or %NULL if not found
  902. *
  903. * This function returns concatenated payload of possibly fragmented vendor
  904. * specific information elements in the BSS entry. The caller is responsible for
  905. * freeing the returned buffer.
  906. */
  907. struct wpabuf * wpa_bss_get_vendor_ie_multi(const struct wpa_bss *bss,
  908. u32 vendor_type)
  909. {
  910. struct wpabuf *buf;
  911. const u8 *end, *pos;
  912. buf = wpabuf_alloc(bss->ie_len);
  913. if (buf == NULL)
  914. return NULL;
  915. pos = (const u8 *) (bss + 1);
  916. end = pos + bss->ie_len;
  917. while (pos + 1 < end) {
  918. if (pos + 2 + pos[1] > end)
  919. break;
  920. if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
  921. vendor_type == WPA_GET_BE32(&pos[2]))
  922. wpabuf_put_data(buf, pos + 2 + 4, pos[1] - 4);
  923. pos += 2 + pos[1];
  924. }
  925. if (wpabuf_len(buf) == 0) {
  926. wpabuf_free(buf);
  927. buf = NULL;
  928. }
  929. return buf;
  930. }
  931. /**
  932. * wpa_bss_get_vendor_ie_multi_beacon - Fetch vendor IE data from a BSS entry
  933. * @bss: BSS table entry
  934. * @vendor_type: Vendor type (four octets starting the IE payload)
  935. * Returns: Pointer to the information element payload or %NULL if not found
  936. *
  937. * This function returns concatenated payload of possibly fragmented vendor
  938. * specific information elements in the BSS entry. The caller is responsible for
  939. * freeing the returned buffer.
  940. *
  941. * This function is like wpa_bss_get_vendor_ie_multi(), but uses IE buffer only
  942. * from Beacon frames instead of either Beacon or Probe Response frames.
  943. */
  944. struct wpabuf * wpa_bss_get_vendor_ie_multi_beacon(const struct wpa_bss *bss,
  945. u32 vendor_type)
  946. {
  947. struct wpabuf *buf;
  948. const u8 *end, *pos;
  949. buf = wpabuf_alloc(bss->beacon_ie_len);
  950. if (buf == NULL)
  951. return NULL;
  952. pos = (const u8 *) (bss + 1);
  953. pos += bss->ie_len;
  954. end = pos + bss->beacon_ie_len;
  955. while (pos + 1 < end) {
  956. if (pos + 2 + pos[1] > end)
  957. break;
  958. if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
  959. vendor_type == WPA_GET_BE32(&pos[2]))
  960. wpabuf_put_data(buf, pos + 2 + 4, pos[1] - 4);
  961. pos += 2 + pos[1];
  962. }
  963. if (wpabuf_len(buf) == 0) {
  964. wpabuf_free(buf);
  965. buf = NULL;
  966. }
  967. return buf;
  968. }
  969. /**
  970. * wpa_bss_get_max_rate - Get maximum legacy TX rate supported in a BSS
  971. * @bss: BSS table entry
  972. * Returns: Maximum legacy rate in units of 500 kbps
  973. */
  974. int wpa_bss_get_max_rate(const struct wpa_bss *bss)
  975. {
  976. int rate = 0;
  977. const u8 *ie;
  978. int i;
  979. ie = wpa_bss_get_ie(bss, WLAN_EID_SUPP_RATES);
  980. for (i = 0; ie && i < ie[1]; i++) {
  981. if ((ie[i + 2] & 0x7f) > rate)
  982. rate = ie[i + 2] & 0x7f;
  983. }
  984. ie = wpa_bss_get_ie(bss, WLAN_EID_EXT_SUPP_RATES);
  985. for (i = 0; ie && i < ie[1]; i++) {
  986. if ((ie[i + 2] & 0x7f) > rate)
  987. rate = ie[i + 2] & 0x7f;
  988. }
  989. return rate;
  990. }
  991. /**
  992. * wpa_bss_get_bit_rates - Get legacy TX rates supported in a BSS
  993. * @bss: BSS table entry
  994. * @rates: Buffer for returning a pointer to the rates list (units of 500 kbps)
  995. * Returns: number of legacy TX rates or -1 on failure
  996. *
  997. * The caller is responsible for freeing the returned buffer with os_free() in
  998. * case of success.
  999. */
  1000. int wpa_bss_get_bit_rates(const struct wpa_bss *bss, u8 **rates)
  1001. {
  1002. const u8 *ie, *ie2;
  1003. int i, j;
  1004. unsigned int len;
  1005. u8 *r;
  1006. ie = wpa_bss_get_ie(bss, WLAN_EID_SUPP_RATES);
  1007. ie2 = wpa_bss_get_ie(bss, WLAN_EID_EXT_SUPP_RATES);
  1008. len = (ie ? ie[1] : 0) + (ie2 ? ie2[1] : 0);
  1009. r = os_malloc(len);
  1010. if (!r)
  1011. return -1;
  1012. for (i = 0; ie && i < ie[1]; i++)
  1013. r[i] = ie[i + 2] & 0x7f;
  1014. for (j = 0; ie2 && j < ie2[1]; j++)
  1015. r[i + j] = ie2[j + 2] & 0x7f;
  1016. *rates = r;
  1017. return len;
  1018. }